From a0913bba011d514c25ff19efaa907f115f118e47 Mon Sep 17 00:00:00 2001 From: Shuxin Lin Date: Wed, 4 Mar 2026 13:59:18 -0500 Subject: [PATCH 01/16] refactor: implement Work Order Agent MCP server and agent_hive integration - Add src/servers/wo/main.py: FastMCP server with 3 tools (list_equipment, get_work_orders, summarize_work_orders) backed by the sample CSV dataset - Add src/servers/wo/tests/: conftest with mock_df fixture and 12 unit tests covering all tools; integration tests gated by requires_wo_data marker - Add src/tmp/agent_hive/tools/wo.py: agent_hive tool registration module (mirrors fmsr.py / tsfm.py pattern) referencing external woagent package - Add src/tmp/agent_hive/agents/wo_agent.py: WorderOrderAgent class backed by ReactReflectXenAgent, matching the interface expected by run_track tests - Register wo-mcp-server CLI entry point in pyproject.toml Signed-off-by: Shuxin Lin --- pyproject.toml | 1 + src/servers/wo/__init__.py | 0 src/servers/wo/main.py | 251 ++++++++++ src/servers/wo/tests/__init__.py | 0 src/servers/wo/tests/conftest.py | 74 +++ src/servers/wo/tests/test_tools.py | 154 ++++++ src/tmp/agent_hive/agents/wo_agent.py | 65 +++ src/tmp/agent_hive/tools/wo.py | 11 + uv.lock | 686 +++++++++++++++++++++++++- 9 files changed, 1238 insertions(+), 4 deletions(-) create mode 100644 src/servers/wo/__init__.py create mode 100644 src/servers/wo/main.py create mode 100644 src/servers/wo/tests/__init__.py create mode 100644 src/servers/wo/tests/conftest.py create mode 100644 src/servers/wo/tests/test_tools.py create mode 100644 src/tmp/agent_hive/agents/wo_agent.py create mode 100644 src/tmp/agent_hive/tools/wo.py diff --git a/pyproject.toml b/pyproject.toml index 905ed17d..e4118c82 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,7 @@ iot-mcp-server = "servers.iot.main:main" utilities-mcp-server = "servers.utilities.main:main" fmsr-mcp-server = "servers.fmsr.main:main" tsfm-mcp-server = "servers.tsfm.main:main" +wo-mcp-server = "servers.wo.main:main" [dependency-groups] diff --git a/src/servers/wo/__init__.py b/src/servers/wo/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/src/servers/wo/main.py b/src/servers/wo/main.py new file mode 100644 index 00000000..c56c1cb8 --- /dev/null +++ b/src/servers/wo/main.py @@ -0,0 +1,251 @@ +import logging +import os +from typing import List, Optional, Union + +import pandas as pd +from dotenv import load_dotenv +from mcp.server.fastmcp import FastMCP +from pydantic import BaseModel + +load_dotenv() + +# Setup logging — default WARNING so stderr stays quiet when used as MCP server; +# set LOG_LEVEL=INFO (or DEBUG) in the environment to see verbose output. +_log_level = getattr(logging, os.environ.get("LOG_LEVEL", "WARNING").upper(), logging.WARNING) +logging.basicConfig(level=_log_level) +logger = logging.getLogger("wo-mcp-server") + +WO_DATA_PATH = os.environ.get( + "WO_DATA_PATH", + os.path.join( + os.path.dirname(__file__), + "../../../src/tmp/assetopsbench/sample_data/all_wo_with_code_component_events.csv", + ), +) + +mcp = FastMCP("WorkOrderAgent") + + +# --------------------------------------------------------------------------- +# Data loading +# --------------------------------------------------------------------------- + +_df: Optional[pd.DataFrame] = None + + +def _load_data() -> Optional[pd.DataFrame]: + global _df + if _df is not None: + return _df + try: + df = pd.read_csv(WO_DATA_PATH) + df["actual_finish"] = pd.to_datetime(df["actual_finish"], errors="coerce") + _df = df + logger.info(f"Loaded {len(df)} work order records from {WO_DATA_PATH}") + return _df + except Exception as e: + logger.error(f"Failed to load work order data: {e}") + return None + + +# --------------------------------------------------------------------------- +# Result models +# --------------------------------------------------------------------------- + + +class ErrorResult(BaseModel): + error: str + + +class EquipmentListResult(BaseModel): + total_equipment: int + equipment_ids: List[str] + + +class WorkOrder(BaseModel): + wo_id: str + wo_description: str + collection: str + primary_code: str + primary_code_description: str + secondary_code: str + secondary_code_description: str + equipment_id: str + equipment_name: str + preventive: bool + work_priority: Optional[int] + actual_finish: Optional[str] + duration: Optional[str] + actual_labor_hours: Optional[str] + + +class WorkOrdersResult(BaseModel): + equipment_id: str + start_date: Optional[str] + end_date: Optional[str] + total_work_orders: int + work_orders: List[WorkOrder] + message: str + + +class WorkOrderSummaryResult(BaseModel): + equipment_id: str + start_date: Optional[str] + end_date: Optional[str] + total_work_orders: int + preventive_count: int + corrective_count: int + by_primary_code: dict + by_collection: dict + message: str + + +# --------------------------------------------------------------------------- +# Tools +# --------------------------------------------------------------------------- + + +@mcp.tool() +def list_equipment() -> Union[EquipmentListResult, ErrorResult]: + """Returns a list of all equipment IDs available in the work order dataset.""" + df = _load_data() + if df is None: + return ErrorResult(error="Work order data not available") + ids = sorted(df["equipment_id"].dropna().unique().tolist()) + return EquipmentListResult(total_equipment=len(ids), equipment_ids=ids) + + +@mcp.tool() +def get_work_orders( + equipment_id: str, + start_date: Optional[str] = None, + end_date: Optional[str] = None, +) -> Union[WorkOrdersResult, ErrorResult]: + """Retrieves work orders for a specific equipment within an optional date range. + + Args: + equipment_id: The equipment identifier (e.g. "CWC04013"). + start_date: Optional ISO date string for the start of the range (inclusive). + end_date: Optional ISO date string for the end of the range (exclusive). + """ + df = _load_data() + if df is None: + return ErrorResult(error="Work order data not available") + + filtered = df[df["equipment_id"] == equipment_id] + if filtered.empty: + return ErrorResult(error=f"No work orders found for equipment_id '{equipment_id}'") + + if start_date: + try: + filtered = filtered[filtered["actual_finish"] >= pd.to_datetime(start_date)] + except Exception as e: + return ErrorResult(error=f"Invalid start_date: {e}") + + if end_date: + try: + filtered = filtered[filtered["actual_finish"] < pd.to_datetime(end_date)] + except Exception as e: + return ErrorResult(error=f"Invalid end_date: {e}") + + records: List[WorkOrder] = [] + for _, row in filtered.iterrows(): + records.append( + WorkOrder( + wo_id=str(row.get("wo_id", "")), + wo_description=str(row.get("wo_description", "")), + collection=str(row.get("collection", "")), + primary_code=str(row.get("primary_code", "")), + primary_code_description=str(row.get("primary_code_description", "")), + secondary_code=str(row.get("secondary_code", "")), + secondary_code_description=str(row.get("secondary_code_description", "")), + equipment_id=str(row.get("equipment_id", "")), + equipment_name=str(row.get("equipment_name", "")), + preventive=bool(row.get("preventive", False)), + work_priority=int(row["work_priority"]) if pd.notna(row.get("work_priority")) else None, + actual_finish=row["actual_finish"].isoformat() if pd.notna(row.get("actual_finish")) else None, + duration=str(row.get("duration", "")) if pd.notna(row.get("duration")) else None, + actual_labor_hours=str(row.get("actual_labor_hours", "")) if pd.notna(row.get("actual_labor_hours")) else None, + ) + ) + + return WorkOrdersResult( + equipment_id=equipment_id, + start_date=start_date, + end_date=end_date, + total_work_orders=len(records), + work_orders=records, + message=f"Found {len(records)} work orders for equipment '{equipment_id}'.", + ) + + +@mcp.tool() +def summarize_work_orders( + equipment_id: str, + start_date: Optional[str] = None, + end_date: Optional[str] = None, +) -> Union[WorkOrderSummaryResult, ErrorResult]: + """Summarizes work orders for a specific equipment within an optional date range. + + Returns counts broken down by type (primary_code) and collection, plus + preventive vs. corrective totals. + + Args: + equipment_id: The equipment identifier (e.g. "CWC04013"). + start_date: Optional ISO date string for the start of the range (inclusive). + end_date: Optional ISO date string for the end of the range (exclusive). + """ + df = _load_data() + if df is None: + return ErrorResult(error="Work order data not available") + + filtered = df[df["equipment_id"] == equipment_id] + if filtered.empty: + return ErrorResult(error=f"No work orders found for equipment_id '{equipment_id}'") + + if start_date: + try: + filtered = filtered[filtered["actual_finish"] >= pd.to_datetime(start_date)] + except Exception as e: + return ErrorResult(error=f"Invalid start_date: {e}") + + if end_date: + try: + filtered = filtered[filtered["actual_finish"] < pd.to_datetime(end_date)] + except Exception as e: + return ErrorResult(error=f"Invalid end_date: {e}") + + total = len(filtered) + preventive_count = int((filtered["preventive"] == True).sum()) # noqa: E712 + corrective_count = total - preventive_count + + by_primary_code: dict = ( + filtered.groupby("primary_code").size().to_dict() + if total > 0 + else {} + ) + by_collection: dict = ( + filtered.groupby("collection").size().to_dict() + if total > 0 + else {} + ) + + return WorkOrderSummaryResult( + equipment_id=equipment_id, + start_date=start_date, + end_date=end_date, + total_work_orders=total, + preventive_count=preventive_count, + corrective_count=corrective_count, + by_primary_code=by_primary_code, + by_collection=by_collection, + message=f"Summarized {total} work orders for equipment '{equipment_id}'.", + ) + + +def main(): + mcp.run(transport="stdio") + + +if __name__ == "__main__": + main() diff --git a/src/servers/wo/tests/__init__.py b/src/servers/wo/tests/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/src/servers/wo/tests/conftest.py b/src/servers/wo/tests/conftest.py new file mode 100644 index 00000000..94a5236e --- /dev/null +++ b/src/servers/wo/tests/conftest.py @@ -0,0 +1,74 @@ +import json +import os + +import pytest +from unittest.mock import patch + +from dotenv import load_dotenv + +load_dotenv() + +# --- Custom markers --- + +requires_wo_data = pytest.mark.skipif( + not os.path.exists( + os.environ.get( + "WO_DATA_PATH", + os.path.join( + os.path.dirname(__file__), + "../../../../tmp/assetopsbench/sample_data/all_wo_with_code_component_events.csv", + ), + ) + ), + reason="Work order CSV data not available (set WO_DATA_PATH)", +) + + +# --- Fixtures --- + + +@pytest.fixture(autouse=True) +def reset_data_cache(): + """Reset the module-level DataFrame cache between tests.""" + import servers.wo.main as wo_main + original = wo_main._df + wo_main._df = None + yield + wo_main._df = original + + +@pytest.fixture +def mock_df(tmp_path): + """Patch the WO data path with a minimal CSV fixture.""" + import pandas as pd + import servers.wo.main as wo_main + + csv_path = tmp_path / "wo_test.csv" + data = { + "wo_id": ["WO001", "WO002", "WO003", "WO004"], + "wo_description": ["Oil Analysis", "Routine Maintenance", "Corrective Repair", "Emergency Fix"], + "collection": ["compressor", "compressor", "motor", "motor"], + "primary_code": ["MT010", "MT001", "MT013", "MT013"], + "primary_code_description": ["Oil Analysis", "Routine Maintenance", "Corrective", "Corrective"], + "secondary_code": ["MT010b", "MT001a", "MT013a", "MT013b"], + "secondary_code_description": ["Routine Oil Analysis", "Basic Maint", "Repair", "Emergency"], + "equipment_id": ["CWC04013", "CWC04013", "CWC04013", "CWC04007"], + "equipment_name": ["Chiller 13", "Chiller 13", "Chiller 13", "Chiller 7"], + "preventive": [True, True, False, False], + "work_priority": [5, 5, 3, 1], + "actual_finish": ["2017-06-01", "2017-08-15", "2017-11-20", "2018-03-10"], + "duration": ["3:00", "2:00", "4:00", "6:00"], + "actual_labor_hours": ["1:00", "1:00", "2:00", "3:00"], + } + pd.DataFrame(data).to_csv(csv_path, index=False) + + with patch.object(wo_main, "WO_DATA_PATH", str(csv_path)): + wo_main._df = None + yield + wo_main._df = None + + +async def call_tool(mcp_instance, tool_name: str, args: dict) -> dict: + """Helper: call an MCP tool and return parsed JSON response.""" + contents, _ = await mcp_instance.call_tool(tool_name, args) + return json.loads(contents[0].text) diff --git a/src/servers/wo/tests/test_tools.py b/src/servers/wo/tests/test_tools.py new file mode 100644 index 00000000..c70b9e78 --- /dev/null +++ b/src/servers/wo/tests/test_tools.py @@ -0,0 +1,154 @@ +"""Tests for Work Order MCP server tools. + +Unit tests use a mocked CSV fixture; integration tests require the real dataset +(skipped unless WO_DATA_PATH points to a valid CSV). +""" + +import pytest +from servers.wo.main import mcp +from .conftest import requires_wo_data, call_tool + + +# --------------------------------------------------------------------------- +# list_equipment +# --------------------------------------------------------------------------- + + +class TestListEquipment: + @pytest.mark.anyio + async def test_returns_equipment_list(self, mock_df): + data = await call_tool(mcp, "list_equipment", {}) + assert "equipment_ids" in data + assert "CWC04013" in data["equipment_ids"] + assert "CWC04007" in data["equipment_ids"] + assert data["total_equipment"] == 2 + + @requires_wo_data + @pytest.mark.anyio + async def test_integration_returns_equipment(self): + data = await call_tool(mcp, "list_equipment", {}) + assert "equipment_ids" in data + assert data["total_equipment"] > 0 + assert any("CWC" in eq for eq in data["equipment_ids"]) + + +# --------------------------------------------------------------------------- +# get_work_orders +# --------------------------------------------------------------------------- + + +class TestGetWorkOrders: + @pytest.mark.anyio + async def test_unknown_equipment(self, mock_df): + data = await call_tool(mcp, "get_work_orders", {"equipment_id": "UNKNOWN"}) + assert "error" in data + + @pytest.mark.anyio + async def test_returns_all_records(self, mock_df): + data = await call_tool(mcp, "get_work_orders", {"equipment_id": "CWC04013"}) + assert data["total_work_orders"] == 3 + assert len(data["work_orders"]) == 3 + + @pytest.mark.anyio + async def test_date_range_filter(self, mock_df): + data = await call_tool( + mcp, + "get_work_orders", + {"equipment_id": "CWC04013", "start_date": "2017-01-01", "end_date": "2018-01-01"}, + ) + assert data["total_work_orders"] == 3 + for wo in data["work_orders"]: + assert wo["actual_finish"] is not None + assert "2017" in wo["actual_finish"] + + @pytest.mark.anyio + async def test_invalid_start_date(self, mock_df): + data = await call_tool( + mcp, "get_work_orders", {"equipment_id": "CWC04013", "start_date": "not-a-date"} + ) + assert "error" in data + + @pytest.mark.anyio + async def test_work_order_fields(self, mock_df): + data = await call_tool(mcp, "get_work_orders", {"equipment_id": "CWC04013"}) + wo = data["work_orders"][0] + assert "wo_id" in wo + assert "wo_description" in wo + assert "primary_code" in wo + assert "preventive" in wo + assert "equipment_id" in wo + + @pytest.mark.anyio + async def test_preventive_filter_via_date(self, mock_df): + # CWC04013 has 2 preventive and 1 corrective; all in 2017 + data = await call_tool(mcp, "get_work_orders", {"equipment_id": "CWC04013"}) + preventive = [wo for wo in data["work_orders"] if wo["preventive"]] + corrective = [wo for wo in data["work_orders"] if not wo["preventive"]] + assert len(preventive) == 2 + assert len(corrective) == 1 + + @requires_wo_data + @pytest.mark.anyio + async def test_integration_cwc04013_2017(self): + data = await call_tool( + mcp, + "get_work_orders", + {"equipment_id": "CWC04013", "start_date": "2017-01-01", "end_date": "2018-01-01"}, + ) + assert "work_orders" in data + assert data["total_work_orders"] > 0 + + +# --------------------------------------------------------------------------- +# summarize_work_orders +# --------------------------------------------------------------------------- + + +class TestSummarizeWorkOrders: + @pytest.mark.anyio + async def test_unknown_equipment(self, mock_df): + data = await call_tool(mcp, "summarize_work_orders", {"equipment_id": "UNKNOWN"}) + assert "error" in data + + @pytest.mark.anyio + async def test_summary_counts(self, mock_df): + data = await call_tool(mcp, "summarize_work_orders", {"equipment_id": "CWC04013"}) + assert data["total_work_orders"] == 3 + assert data["preventive_count"] == 2 + assert data["corrective_count"] == 1 + + @pytest.mark.anyio + async def test_by_primary_code(self, mock_df): + data = await call_tool(mcp, "summarize_work_orders", {"equipment_id": "CWC04013"}) + assert "by_primary_code" in data + assert data["by_primary_code"]["MT010"] == 1 + assert data["by_primary_code"]["MT001"] == 1 + assert data["by_primary_code"]["MT013"] == 1 + + @pytest.mark.anyio + async def test_by_collection(self, mock_df): + data = await call_tool(mcp, "summarize_work_orders", {"equipment_id": "CWC04013"}) + assert "by_collection" in data + assert data["by_collection"]["compressor"] == 2 + assert data["by_collection"]["motor"] == 1 + + @pytest.mark.anyio + async def test_date_range_narrows_summary(self, mock_df): + data = await call_tool( + mcp, + "summarize_work_orders", + {"equipment_id": "CWC04013", "end_date": "2017-09-01"}, + ) + assert data["total_work_orders"] == 2 + + @requires_wo_data + @pytest.mark.anyio + async def test_integration_summary_cwc04013(self): + data = await call_tool( + mcp, + "summarize_work_orders", + {"equipment_id": "CWC04013", "start_date": "2017-01-01", "end_date": "2018-01-01"}, + ) + assert "total_work_orders" in data + assert "by_primary_code" in data + assert data["total_work_orders"] > 0 diff --git a/src/tmp/agent_hive/agents/wo_agent.py b/src/tmp/agent_hive/agents/wo_agent.py new file mode 100644 index 00000000..fde5696f --- /dev/null +++ b/src/tmp/agent_hive/agents/wo_agent.py @@ -0,0 +1,65 @@ +import re +from typing import List, Optional + +from langchain.tools import BaseTool +from reactxen.agents.react.agents import ReactReflectAgent as ReactReflectXenAgent +from reactxen.agents.react.prompts.fewshots import MPE_SIMPLE4 + +from agent_hive.agents.base_agent import BaseAgent +from agent_hive.logger import get_custom_logger + +logger = get_custom_logger(__name__) + + +class WorderOrderAgent(BaseAgent): + """ + Work Order agent that can retrieve, analyze, and generate work orders for equipment. + + Uses ReAct+Reflection to reason over work order history, anomalies, and alerts, + and produces recommendations for preventive/corrective maintenance actions. + """ + + few_shots: Optional[str] = None + task_examples: Optional[List[str]] = None + + def __init__( + self, + name: str, + description: str, + tools: list[BaseTool], + llm: str, + few_shots: str = MPE_SIMPLE4, + task_examples: Optional[List[str]] = None, + reflect_step: int = 1, + ): + self.name = name + self.description = description + self.tools = tools + self.llm = llm + self.memory = [] + self.few_shots = few_shots + self.reflect_step = reflect_step + if task_examples: + self.task_examples = task_examples + else: + self.task_examples = re.findall(r"^Question:(.*)$", self.few_shots, re.MULTILINE) + self.task_examples = [ex.strip() for ex in self.task_examples] + + def execute_task(self, user_input: str) -> str: + logger.info(f"WorderOrderAgent executing task: {user_input}, tools: {self.tools}") + self.agent_executor = ReactReflectXenAgent( + question=user_input, + key="", + cbm_tools=self.tools, + max_steps=6, + react_llm_model_id=self.llm, + reflect_llm_model_id=self.llm, + react_example=self.few_shots, + num_reflect_iteration=self.reflect_step, + handle_context_length_overflow=True, + apply_loop_detection_check=True, + log_structured_messages=True, + early_stop=True, + ) + self.agent_executor.run() + return self.agent_executor.answer diff --git a/src/tmp/agent_hive/tools/wo.py b/src/tmp/agent_hive/tools/wo.py new file mode 100644 index 00000000..1befea5b --- /dev/null +++ b/src/tmp/agent_hive/tools/wo.py @@ -0,0 +1,11 @@ +from woagent.agents.woagent.wofewshots import WO_FEW_SHOTS +from woagent.agents.woagent.wo_agent import getWOTools + +wo_agent_name = "Work Order Management" +wo_agent_description = ( + "Can retrieve, analyze, and generate work orders for equipment based on historical data, " + "anomalies, alerts, and performance metrics, offering recommendations for preventive and " + "corrective actions, including bundling, prioritization, and predictive maintenance" +) +wo_tools = getWOTools() +wo_fewshots = WO_FEW_SHOTS diff --git a/uv.lock b/uv.lock index 5fb8747b..0af782e0 100644 --- a/uv.lock +++ b/uv.lock @@ -1,10 +1,13 @@ version = 1 revision = 3 -requires-python = ">=3.14" +requires-python = ">=3.12" resolution-markers = [ - "sys_platform == 'win32'", - "sys_platform == 'emscripten'", - "sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.14' and sys_platform == 'win32'", + "python_full_version >= '3.14' and sys_platform == 'emscripten'", + "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version < '3.14' and sys_platform == 'win32'", + "python_full_version < '3.14' and sys_platform == 'emscripten'", + "python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", ] [[package]] @@ -31,6 +34,40 @@ dependencies = [ ] sdist = { url = "https://files.pythonhosted.org/packages/50/42/32cf8e7704ceb4481406eb87161349abb46a57fee3f008ba9cb610968646/aiohttp-3.13.3.tar.gz", hash = "sha256:a949eee43d3782f2daae4f4a2819b2cb9b0c5d3b7f7a927067cc84dafdbb9f88", size = 7844556, upload-time = "2026-01-03T17:33:05.204Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/be/4fc11f202955a69e0db803a12a062b8379c970c7c84f4882b6da17337cc1/aiohttp-3.13.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:b903a4dfee7d347e2d87697d0713be59e0b87925be030c9178c5faa58ea58d5c", size = 739732, upload-time = "2026-01-03T17:30:14.23Z" }, + { url = "https://files.pythonhosted.org/packages/97/2c/621d5b851f94fa0bb7430d6089b3aa970a9d9b75196bc93bb624b0db237a/aiohttp-3.13.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:a45530014d7a1e09f4a55f4f43097ba0fd155089372e105e4bff4ca76cb1b168", size = 494293, upload-time = "2026-01-03T17:30:15.96Z" }, + { url = "https://files.pythonhosted.org/packages/5d/43/4be01406b78e1be8320bb8316dc9c42dbab553d281c40364e0f862d5661c/aiohttp-3.13.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:27234ef6d85c914f9efeb77ff616dbf4ad2380be0cda40b4db086ffc7ddd1b7d", size = 493533, upload-time = "2026-01-03T17:30:17.431Z" }, + { url = "https://files.pythonhosted.org/packages/8d/a8/5a35dc56a06a2c90d4742cbf35294396907027f80eea696637945a106f25/aiohttp-3.13.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d32764c6c9aafb7fb55366a224756387cd50bfa720f32b88e0e6fa45b27dcf29", size = 1737839, upload-time = "2026-01-03T17:30:19.422Z" }, + { url = "https://files.pythonhosted.org/packages/bf/62/4b9eeb331da56530bf2e198a297e5303e1c1ebdceeb00fe9b568a65c5a0c/aiohttp-3.13.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:b1a6102b4d3ebc07dad44fbf07b45bb600300f15b552ddf1851b5390202ea2e3", size = 1703932, upload-time = "2026-01-03T17:30:21.756Z" }, + { url = "https://files.pythonhosted.org/packages/7c/f6/af16887b5d419e6a367095994c0b1332d154f647e7dc2bd50e61876e8e3d/aiohttp-3.13.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c014c7ea7fb775dd015b2d3137378b7be0249a448a1612268b5a90c2d81de04d", size = 1771906, upload-time = "2026-01-03T17:30:23.932Z" }, + { url = "https://files.pythonhosted.org/packages/ce/83/397c634b1bcc24292fa1e0c7822800f9f6569e32934bdeef09dae7992dfb/aiohttp-3.13.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2b8d8ddba8f95ba17582226f80e2de99c7a7948e66490ef8d947e272a93e9463", size = 1871020, upload-time = "2026-01-03T17:30:26Z" }, + { url = "https://files.pythonhosted.org/packages/86/f6/a62cbbf13f0ac80a70f71b1672feba90fdb21fd7abd8dbf25c0105fb6fa3/aiohttp-3.13.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9ae8dd55c8e6c4257eae3a20fd2c8f41edaea5992ed67156642493b8daf3cecc", size = 1755181, upload-time = "2026-01-03T17:30:27.554Z" }, + { url = "https://files.pythonhosted.org/packages/0a/87/20a35ad487efdd3fba93d5843efdfaa62d2f1479eaafa7453398a44faf13/aiohttp-3.13.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:01ad2529d4b5035578f5081606a465f3b814c542882804e2e8cda61adf5c71bf", size = 1561794, upload-time = "2026-01-03T17:30:29.254Z" }, + { url = "https://files.pythonhosted.org/packages/de/95/8fd69a66682012f6716e1bc09ef8a1a2a91922c5725cb904689f112309c4/aiohttp-3.13.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bb4f7475e359992b580559e008c598091c45b5088f28614e855e42d39c2f1033", size = 1697900, upload-time = "2026-01-03T17:30:31.033Z" }, + { url = "https://files.pythonhosted.org/packages/e5/66/7b94b3b5ba70e955ff597672dad1691333080e37f50280178967aff68657/aiohttp-3.13.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c19b90316ad3b24c69cd78d5c9b4f3aa4497643685901185b65166293d36a00f", size = 1728239, upload-time = "2026-01-03T17:30:32.703Z" }, + { url = "https://files.pythonhosted.org/packages/47/71/6f72f77f9f7d74719692ab65a2a0252584bf8d5f301e2ecb4c0da734530a/aiohttp-3.13.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:96d604498a7c782cb15a51c406acaea70d8c027ee6b90c569baa6e7b93073679", size = 1740527, upload-time = "2026-01-03T17:30:34.695Z" }, + { url = "https://files.pythonhosted.org/packages/fa/b4/75ec16cbbd5c01bdaf4a05b19e103e78d7ce1ef7c80867eb0ace42ff4488/aiohttp-3.13.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:084911a532763e9d3dd95adf78a78f4096cd5f58cdc18e6fdbc1b58417a45423", size = 1554489, upload-time = "2026-01-03T17:30:36.864Z" }, + { url = "https://files.pythonhosted.org/packages/52/8f/bc518c0eea29f8406dcf7ed1f96c9b48e3bc3995a96159b3fc11f9e08321/aiohttp-3.13.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:7a4a94eb787e606d0a09404b9c38c113d3b099d508021faa615d70a0131907ce", size = 1767852, upload-time = "2026-01-03T17:30:39.433Z" }, + { url = "https://files.pythonhosted.org/packages/9d/f2/a07a75173124f31f11ea6f863dc44e6f09afe2bca45dd4e64979490deab1/aiohttp-3.13.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:87797e645d9d8e222e04160ee32aa06bc5c163e8499f24db719e7852ec23093a", size = 1722379, upload-time = "2026-01-03T17:30:41.081Z" }, + { url = "https://files.pythonhosted.org/packages/3c/4a/1a3fee7c21350cac78e5c5cef711bac1b94feca07399f3d406972e2d8fcd/aiohttp-3.13.3-cp312-cp312-win32.whl", hash = "sha256:b04be762396457bef43f3597c991e192ee7da460a4953d7e647ee4b1c28e7046", size = 428253, upload-time = "2026-01-03T17:30:42.644Z" }, + { url = "https://files.pythonhosted.org/packages/d9/b7/76175c7cb4eb73d91ad63c34e29fc4f77c9386bba4a65b53ba8e05ee3c39/aiohttp-3.13.3-cp312-cp312-win_amd64.whl", hash = "sha256:e3531d63d3bdfa7e3ac5e9b27b2dd7ec9df3206a98e0b3445fa906f233264c57", size = 455407, upload-time = "2026-01-03T17:30:44.195Z" }, + { url = "https://files.pythonhosted.org/packages/97/8a/12ca489246ca1faaf5432844adbfce7ff2cc4997733e0af120869345643a/aiohttp-3.13.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5dff64413671b0d3e7d5918ea490bdccb97a4ad29b3f311ed423200b2203e01c", size = 734190, upload-time = "2026-01-03T17:30:45.832Z" }, + { url = "https://files.pythonhosted.org/packages/32/08/de43984c74ed1fca5c014808963cc83cb00d7bb06af228f132d33862ca76/aiohttp-3.13.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:87b9aab6d6ed88235aa2970294f496ff1a1f9adcd724d800e9b952395a80ffd9", size = 491783, upload-time = "2026-01-03T17:30:47.466Z" }, + { url = "https://files.pythonhosted.org/packages/17/f8/8dd2cf6112a5a76f81f81a5130c57ca829d101ad583ce57f889179accdda/aiohttp-3.13.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:425c126c0dc43861e22cb1c14ba4c8e45d09516d0a3ae0a3f7494b79f5f233a3", size = 490704, upload-time = "2026-01-03T17:30:49.373Z" }, + { url = "https://files.pythonhosted.org/packages/6d/40/a46b03ca03936f832bc7eaa47cfbb1ad012ba1be4790122ee4f4f8cba074/aiohttp-3.13.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7f9120f7093c2a32d9647abcaf21e6ad275b4fbec5b55969f978b1a97c7c86bf", size = 1720652, upload-time = "2026-01-03T17:30:50.974Z" }, + { url = "https://files.pythonhosted.org/packages/f7/7e/917fe18e3607af92657e4285498f500dca797ff8c918bd7d90b05abf6c2a/aiohttp-3.13.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:697753042d57f4bf7122cab985bf15d0cef23c770864580f5af4f52023a56bd6", size = 1692014, upload-time = "2026-01-03T17:30:52.729Z" }, + { url = "https://files.pythonhosted.org/packages/71/b6/cefa4cbc00d315d68973b671cf105b21a609c12b82d52e5d0c9ae61d2a09/aiohttp-3.13.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:6de499a1a44e7de70735d0b39f67c8f25eb3d91eb3103be99ca0fa882cdd987d", size = 1759777, upload-time = "2026-01-03T17:30:54.537Z" }, + { url = "https://files.pythonhosted.org/packages/fb/e3/e06ee07b45e59e6d81498b591fc589629be1553abb2a82ce33efe2a7b068/aiohttp-3.13.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:37239e9f9a7ea9ac5bf6b92b0260b01f8a22281996da609206a84df860bc1261", size = 1861276, upload-time = "2026-01-03T17:30:56.512Z" }, + { url = "https://files.pythonhosted.org/packages/7c/24/75d274228acf35ceeb2850b8ce04de9dd7355ff7a0b49d607ee60c29c518/aiohttp-3.13.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f76c1e3fe7d7c8afad7ed193f89a292e1999608170dcc9751a7462a87dfd5bc0", size = 1743131, upload-time = "2026-01-03T17:30:58.256Z" }, + { url = "https://files.pythonhosted.org/packages/04/98/3d21dde21889b17ca2eea54fdcff21b27b93f45b7bb94ca029c31ab59dc3/aiohttp-3.13.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:fc290605db2a917f6e81b0e1e0796469871f5af381ce15c604a3c5c7e51cb730", size = 1556863, upload-time = "2026-01-03T17:31:00.445Z" }, + { url = "https://files.pythonhosted.org/packages/9e/84/da0c3ab1192eaf64782b03971ab4055b475d0db07b17eff925e8c93b3aa5/aiohttp-3.13.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4021b51936308aeea0367b8f006dc999ca02bc118a0cc78c303f50a2ff6afb91", size = 1682793, upload-time = "2026-01-03T17:31:03.024Z" }, + { url = "https://files.pythonhosted.org/packages/ff/0f/5802ada182f575afa02cbd0ec5180d7e13a402afb7c2c03a9aa5e5d49060/aiohttp-3.13.3-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:49a03727c1bba9a97d3e93c9f93ca03a57300f484b6e935463099841261195d3", size = 1716676, upload-time = "2026-01-03T17:31:04.842Z" }, + { url = "https://files.pythonhosted.org/packages/3f/8c/714d53bd8b5a4560667f7bbbb06b20c2382f9c7847d198370ec6526af39c/aiohttp-3.13.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:3d9908a48eb7416dc1f4524e69f1d32e5d90e3981e4e37eb0aa1cd18f9cfa2a4", size = 1733217, upload-time = "2026-01-03T17:31:06.868Z" }, + { url = "https://files.pythonhosted.org/packages/7d/79/e2176f46d2e963facea939f5be2d26368ce543622be6f00a12844d3c991f/aiohttp-3.13.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:2712039939ec963c237286113c68dbad80a82a4281543f3abf766d9d73228998", size = 1552303, upload-time = "2026-01-03T17:31:08.958Z" }, + { url = "https://files.pythonhosted.org/packages/ab/6a/28ed4dea1759916090587d1fe57087b03e6c784a642b85ef48217b0277ae/aiohttp-3.13.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:7bfdc049127717581866fa4708791220970ce291c23e28ccf3922c700740fdc0", size = 1763673, upload-time = "2026-01-03T17:31:10.676Z" }, + { url = "https://files.pythonhosted.org/packages/e8/35/4a3daeb8b9fab49240d21c04d50732313295e4bd813a465d840236dd0ce1/aiohttp-3.13.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8057c98e0c8472d8846b9c79f56766bcc57e3e8ac7bfd510482332366c56c591", size = 1721120, upload-time = "2026-01-03T17:31:12.575Z" }, + { url = "https://files.pythonhosted.org/packages/bc/9f/d643bb3c5fb99547323e635e251c609fbbc660d983144cfebec529e09264/aiohttp-3.13.3-cp313-cp313-win32.whl", hash = "sha256:1449ceddcdbcf2e0446957863af03ebaaa03f94c090f945411b61269e2cb5daf", size = 427383, upload-time = "2026-01-03T17:31:14.382Z" }, + { url = "https://files.pythonhosted.org/packages/4e/f1/ab0395f8a79933577cdd996dd2f9aa6014af9535f65dddcf88204682fe62/aiohttp-3.13.3-cp313-cp313-win_amd64.whl", hash = "sha256:693781c45a4033d31d4187d2436f5ac701e7bbfe5df40d917736108c1cc7436e", size = 453899, upload-time = "2026-01-03T17:31:15.958Z" }, { url = "https://files.pythonhosted.org/packages/99/36/5b6514a9f5d66f4e2597e40dea2e3db271e023eb7a5d22defe96ba560996/aiohttp-3.13.3-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:ea37047c6b367fd4bd632bff8077449b8fa034b69e812a18e0132a00fae6e808", size = 737238, upload-time = "2026-01-03T17:31:17.909Z" }, { url = "https://files.pythonhosted.org/packages/f7/49/459327f0d5bcd8c6c9ca69e60fdeebc3622861e696490d8674a6d0cb90a6/aiohttp-3.13.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:6fc0e2337d1a4c3e6acafda6a78a39d4c14caea625124817420abceed36e2415", size = 492292, upload-time = "2026-01-03T17:31:19.919Z" }, { url = "https://files.pythonhosted.org/packages/e8/0b/b97660c5fd05d3495b4eb27f2d0ef18dc1dc4eff7511a9bf371397ff0264/aiohttp-3.13.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c685f2d80bb67ca8c3837823ad76196b3694b0159d232206d1e461d3d434666f", size = 493021, upload-time = "2026-01-03T17:31:21.636Z" }, @@ -73,6 +110,7 @@ version = "1.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "frozenlist" }, + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/61/62/06741b579156360248d1ec624842ad0edf697050bbaf7c3e46394e106ad1/aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7", size = 25007, upload-time = "2025-07-03T22:54:43.528Z" } wheels = [ @@ -103,6 +141,7 @@ version = "4.12.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "idna" }, + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/96/f0/5eb65b2bb0d09ac6776f2eb54adee6abe8228ea05b20a5ad0e4945de8aac/anyio-4.12.1.tar.gz", hash = "sha256:41cfcc3a4c85d3f05c932da7c26d0201ac36f72abd4435ba90d0464a3ffed703", size = 228685, upload-time = "2026-01-06T11:45:21.246Z" } wheels = [ @@ -215,6 +254,30 @@ dependencies = [ ] sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588, upload-time = "2025-09-08T23:24:04.541Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/ea/47/4f61023ea636104d4f16ab488e268b93008c3d0bb76893b1b31db1f96802/cffi-2.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6d02d6655b0e54f54c4ef0b94eb6be0607b70853c45ce98bd278dc7de718be5d", size = 185271, upload-time = "2025-09-08T23:22:44.795Z" }, + { url = "https://files.pythonhosted.org/packages/df/a2/781b623f57358e360d62cdd7a8c681f074a71d445418a776eef0aadb4ab4/cffi-2.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8eca2a813c1cb7ad4fb74d368c2ffbbb4789d377ee5bb8df98373c2cc0dee76c", size = 181048, upload-time = "2025-09-08T23:22:45.938Z" }, + { url = "https://files.pythonhosted.org/packages/ff/df/a4f0fbd47331ceeba3d37c2e51e9dfc9722498becbeec2bd8bc856c9538a/cffi-2.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:21d1152871b019407d8ac3985f6775c079416c282e431a4da6afe7aefd2bccbe", size = 212529, upload-time = "2025-09-08T23:22:47.349Z" }, + { url = "https://files.pythonhosted.org/packages/d5/72/12b5f8d3865bf0f87cf1404d8c374e7487dcf097a1c91c436e72e6badd83/cffi-2.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b21e08af67b8a103c71a250401c78d5e0893beff75e28c53c98f4de42f774062", size = 220097, upload-time = "2025-09-08T23:22:48.677Z" }, + { url = "https://files.pythonhosted.org/packages/c2/95/7a135d52a50dfa7c882ab0ac17e8dc11cec9d55d2c18dda414c051c5e69e/cffi-2.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:1e3a615586f05fc4065a8b22b8152f0c1b00cdbc60596d187c2a74f9e3036e4e", size = 207983, upload-time = "2025-09-08T23:22:50.06Z" }, + { url = "https://files.pythonhosted.org/packages/3a/c8/15cb9ada8895957ea171c62dc78ff3e99159ee7adb13c0123c001a2546c1/cffi-2.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:81afed14892743bbe14dacb9e36d9e0e504cd204e0b165062c488942b9718037", size = 206519, upload-time = "2025-09-08T23:22:51.364Z" }, + { url = "https://files.pythonhosted.org/packages/78/2d/7fa73dfa841b5ac06c7b8855cfc18622132e365f5b81d02230333ff26e9e/cffi-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3e17ed538242334bf70832644a32a7aae3d83b57567f9fd60a26257e992b79ba", size = 219572, upload-time = "2025-09-08T23:22:52.902Z" }, + { url = "https://files.pythonhosted.org/packages/07/e0/267e57e387b4ca276b90f0434ff88b2c2241ad72b16d31836adddfd6031b/cffi-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3925dd22fa2b7699ed2617149842d2e6adde22b262fcbfada50e3d195e4b3a94", size = 222963, upload-time = "2025-09-08T23:22:54.518Z" }, + { url = "https://files.pythonhosted.org/packages/b6/75/1f2747525e06f53efbd878f4d03bac5b859cbc11c633d0fb81432d98a795/cffi-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2c8f814d84194c9ea681642fd164267891702542f028a15fc97d4674b6206187", size = 221361, upload-time = "2025-09-08T23:22:55.867Z" }, + { url = "https://files.pythonhosted.org/packages/7b/2b/2b6435f76bfeb6bbf055596976da087377ede68df465419d192acf00c437/cffi-2.0.0-cp312-cp312-win32.whl", hash = "sha256:da902562c3e9c550df360bfa53c035b2f241fed6d9aef119048073680ace4a18", size = 172932, upload-time = "2025-09-08T23:22:57.188Z" }, + { url = "https://files.pythonhosted.org/packages/f8/ed/13bd4418627013bec4ed6e54283b1959cf6db888048c7cf4b4c3b5b36002/cffi-2.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:da68248800ad6320861f129cd9c1bf96ca849a2771a59e0344e88681905916f5", size = 183557, upload-time = "2025-09-08T23:22:58.351Z" }, + { url = "https://files.pythonhosted.org/packages/95/31/9f7f93ad2f8eff1dbc1c3656d7ca5bfd8fb52c9d786b4dcf19b2d02217fa/cffi-2.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:4671d9dd5ec934cb9a73e7ee9676f9362aba54f7f34910956b84d727b0d73fb6", size = 177762, upload-time = "2025-09-08T23:22:59.668Z" }, + { url = "https://files.pythonhosted.org/packages/4b/8d/a0a47a0c9e413a658623d014e91e74a50cdd2c423f7ccfd44086ef767f90/cffi-2.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:00bdf7acc5f795150faa6957054fbbca2439db2f775ce831222b66f192f03beb", size = 185230, upload-time = "2025-09-08T23:23:00.879Z" }, + { url = "https://files.pythonhosted.org/packages/4a/d2/a6c0296814556c68ee32009d9c2ad4f85f2707cdecfd7727951ec228005d/cffi-2.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:45d5e886156860dc35862657e1494b9bae8dfa63bf56796f2fb56e1679fc0bca", size = 181043, upload-time = "2025-09-08T23:23:02.231Z" }, + { url = "https://files.pythonhosted.org/packages/b0/1e/d22cc63332bd59b06481ceaac49d6c507598642e2230f201649058a7e704/cffi-2.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:07b271772c100085dd28b74fa0cd81c8fb1a3ba18b21e03d7c27f3436a10606b", size = 212446, upload-time = "2025-09-08T23:23:03.472Z" }, + { url = "https://files.pythonhosted.org/packages/a9/f5/a2c23eb03b61a0b8747f211eb716446c826ad66818ddc7810cc2cc19b3f2/cffi-2.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d48a880098c96020b02d5a1f7d9251308510ce8858940e6fa99ece33f610838b", size = 220101, upload-time = "2025-09-08T23:23:04.792Z" }, + { url = "https://files.pythonhosted.org/packages/f2/7f/e6647792fc5850d634695bc0e6ab4111ae88e89981d35ac269956605feba/cffi-2.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:f93fd8e5c8c0a4aa1f424d6173f14a892044054871c771f8566e4008eaa359d2", size = 207948, upload-time = "2025-09-08T23:23:06.127Z" }, + { url = "https://files.pythonhosted.org/packages/cb/1e/a5a1bd6f1fb30f22573f76533de12a00bf274abcdc55c8edab639078abb6/cffi-2.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:dd4f05f54a52fb558f1ba9f528228066954fee3ebe629fc1660d874d040ae5a3", size = 206422, upload-time = "2025-09-08T23:23:07.753Z" }, + { url = "https://files.pythonhosted.org/packages/98/df/0a1755e750013a2081e863e7cd37e0cdd02664372c754e5560099eb7aa44/cffi-2.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c8d3b5532fc71b7a77c09192b4a5a200ea992702734a2e9279a37f2478236f26", size = 219499, upload-time = "2025-09-08T23:23:09.648Z" }, + { url = "https://files.pythonhosted.org/packages/50/e1/a969e687fcf9ea58e6e2a928ad5e2dd88cc12f6f0ab477e9971f2309b57c/cffi-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d9b29c1f0ae438d5ee9acb31cadee00a58c46cc9c0b2f9038c6b0b3470877a8c", size = 222928, upload-time = "2025-09-08T23:23:10.928Z" }, + { url = "https://files.pythonhosted.org/packages/36/54/0362578dd2c9e557a28ac77698ed67323ed5b9775ca9d3fe73fe191bb5d8/cffi-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6d50360be4546678fc1b79ffe7a66265e28667840010348dd69a314145807a1b", size = 221302, upload-time = "2025-09-08T23:23:12.42Z" }, + { url = "https://files.pythonhosted.org/packages/eb/6d/bf9bda840d5f1dfdbf0feca87fbdb64a918a69bca42cfa0ba7b137c48cb8/cffi-2.0.0-cp313-cp313-win32.whl", hash = "sha256:74a03b9698e198d47562765773b4a8309919089150a0bb17d829ad7b44b60d27", size = 172909, upload-time = "2025-09-08T23:23:14.32Z" }, + { url = "https://files.pythonhosted.org/packages/37/18/6519e1ee6f5a1e579e04b9ddb6f1676c17368a7aba48299c3759bbc3c8b3/cffi-2.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:19f705ada2530c1167abacb171925dd886168931e0a7b78f5bffcae5c6b5be75", size = 183402, upload-time = "2025-09-08T23:23:15.535Z" }, + { url = "https://files.pythonhosted.org/packages/cb/0e/02ceeec9a7d6ee63bb596121c2c8e9b3a9e150936f4fbef6ca1943e6137c/cffi-2.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:256f80b80ca3853f90c21b23ee78cd008713787b1b1e93eae9f3d6a7134abd91", size = 177780, upload-time = "2025-09-08T23:23:16.761Z" }, { url = "https://files.pythonhosted.org/packages/92/c4/3ce07396253a83250ee98564f8d7e9789fab8e58858f35d07a9a2c78de9f/cffi-2.0.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:fc33c5141b55ed366cfaad382df24fe7dcbc686de5be719b207bb248e3053dc5", size = 185320, upload-time = "2025-09-08T23:23:18.087Z" }, { url = "https://files.pythonhosted.org/packages/59/dd/27e9fa567a23931c838c6b02d0764611c62290062a6d4e8ff7863daf9730/cffi-2.0.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c654de545946e0db659b3400168c9ad31b5d29593291482c43e3564effbcee13", size = 181487, upload-time = "2025-09-08T23:23:19.622Z" }, { url = "https://files.pythonhosted.org/packages/d6/43/0e822876f87ea8a4ef95442c3d766a06a51fc5298823f884ef87aaad168c/cffi-2.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:24b6f81f1983e6df8db3adc38562c83f7d4a0c36162885ec7f7b77c7dcbec97b", size = 220049, upload-time = "2025-09-08T23:23:20.853Z" }, @@ -245,6 +308,38 @@ version = "3.4.4" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/13/69/33ddede1939fdd074bce5434295f38fae7136463422fe4fd3e0e89b98062/charset_normalizer-3.4.4.tar.gz", hash = "sha256:94537985111c35f28720e43603b8e7b43a6ecfb2ce1d3058bbe955b73404e21a", size = 129418, upload-time = "2025-10-14T04:42:32.879Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/f3/85/1637cd4af66fa687396e757dec650f28025f2a2f5a5531a3208dc0ec43f2/charset_normalizer-3.4.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0a98e6759f854bd25a58a73fa88833fba3b7c491169f86ce1180c948ab3fd394", size = 208425, upload-time = "2025-10-14T04:40:53.353Z" }, + { url = "https://files.pythonhosted.org/packages/9d/6a/04130023fef2a0d9c62d0bae2649b69f7b7d8d24ea5536feef50551029df/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b5b290ccc2a263e8d185130284f8501e3e36c5e02750fc6b6bdeb2e9e96f1e25", size = 148162, upload-time = "2025-10-14T04:40:54.558Z" }, + { url = "https://files.pythonhosted.org/packages/78/29/62328d79aa60da22c9e0b9a66539feae06ca0f5a4171ac4f7dc285b83688/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74bb723680f9f7a6234dcf67aea57e708ec1fbdf5699fb91dfd6f511b0a320ef", size = 144558, upload-time = "2025-10-14T04:40:55.677Z" }, + { url = "https://files.pythonhosted.org/packages/86/bb/b32194a4bf15b88403537c2e120b817c61cd4ecffa9b6876e941c3ee38fe/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f1e34719c6ed0b92f418c7c780480b26b5d9c50349e9a9af7d76bf757530350d", size = 161497, upload-time = "2025-10-14T04:40:57.217Z" }, + { url = "https://files.pythonhosted.org/packages/19/89/a54c82b253d5b9b111dc74aca196ba5ccfcca8242d0fb64146d4d3183ff1/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2437418e20515acec67d86e12bf70056a33abdacb5cb1655042f6538d6b085a8", size = 159240, upload-time = "2025-10-14T04:40:58.358Z" }, + { url = "https://files.pythonhosted.org/packages/c0/10/d20b513afe03acc89ec33948320a5544d31f21b05368436d580dec4e234d/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:11d694519d7f29d6cd09f6ac70028dba10f92f6cdd059096db198c283794ac86", size = 153471, upload-time = "2025-10-14T04:40:59.468Z" }, + { url = "https://files.pythonhosted.org/packages/61/fa/fbf177b55bdd727010f9c0a3c49eefa1d10f960e5f09d1d887bf93c2e698/charset_normalizer-3.4.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:ac1c4a689edcc530fc9d9aa11f5774b9e2f33f9a0c6a57864e90908f5208d30a", size = 150864, upload-time = "2025-10-14T04:41:00.623Z" }, + { url = "https://files.pythonhosted.org/packages/05/12/9fbc6a4d39c0198adeebbde20b619790e9236557ca59fc40e0e3cebe6f40/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:21d142cc6c0ec30d2efee5068ca36c128a30b0f2c53c1c07bd78cb6bc1d3be5f", size = 150647, upload-time = "2025-10-14T04:41:01.754Z" }, + { url = "https://files.pythonhosted.org/packages/ad/1f/6a9a593d52e3e8c5d2b167daf8c6b968808efb57ef4c210acb907c365bc4/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:5dbe56a36425d26d6cfb40ce79c314a2e4dd6211d51d6d2191c00bed34f354cc", size = 145110, upload-time = "2025-10-14T04:41:03.231Z" }, + { url = "https://files.pythonhosted.org/packages/30/42/9a52c609e72471b0fc54386dc63c3781a387bb4fe61c20231a4ebcd58bdd/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5bfbb1b9acf3334612667b61bd3002196fe2a1eb4dd74d247e0f2a4d50ec9bbf", size = 162839, upload-time = "2025-10-14T04:41:04.715Z" }, + { url = "https://files.pythonhosted.org/packages/c4/5b/c0682bbf9f11597073052628ddd38344a3d673fda35a36773f7d19344b23/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:d055ec1e26e441f6187acf818b73564e6e6282709e9bcb5b63f5b23068356a15", size = 150667, upload-time = "2025-10-14T04:41:05.827Z" }, + { url = "https://files.pythonhosted.org/packages/e4/24/a41afeab6f990cf2daf6cb8c67419b63b48cf518e4f56022230840c9bfb2/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:af2d8c67d8e573d6de5bc30cdb27e9b95e49115cd9baad5ddbd1a6207aaa82a9", size = 160535, upload-time = "2025-10-14T04:41:06.938Z" }, + { url = "https://files.pythonhosted.org/packages/2a/e5/6a4ce77ed243c4a50a1fecca6aaaab419628c818a49434be428fe24c9957/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:780236ac706e66881f3b7f2f32dfe90507a09e67d1d454c762cf642e6e1586e0", size = 154816, upload-time = "2025-10-14T04:41:08.101Z" }, + { url = "https://files.pythonhosted.org/packages/a8/ef/89297262b8092b312d29cdb2517cb1237e51db8ecef2e9af5edbe7b683b1/charset_normalizer-3.4.4-cp312-cp312-win32.whl", hash = "sha256:5833d2c39d8896e4e19b689ffc198f08ea58116bee26dea51e362ecc7cd3ed26", size = 99694, upload-time = "2025-10-14T04:41:09.23Z" }, + { url = "https://files.pythonhosted.org/packages/3d/2d/1e5ed9dd3b3803994c155cd9aacb60c82c331bad84daf75bcb9c91b3295e/charset_normalizer-3.4.4-cp312-cp312-win_amd64.whl", hash = "sha256:a79cfe37875f822425b89a82333404539ae63dbdddf97f84dcbc3d339aae9525", size = 107131, upload-time = "2025-10-14T04:41:10.467Z" }, + { url = "https://files.pythonhosted.org/packages/d0/d9/0ed4c7098a861482a7b6a95603edce4c0d9db2311af23da1fb2b75ec26fc/charset_normalizer-3.4.4-cp312-cp312-win_arm64.whl", hash = "sha256:376bec83a63b8021bb5c8ea75e21c4ccb86e7e45ca4eb81146091b56599b80c3", size = 100390, upload-time = "2025-10-14T04:41:11.915Z" }, + { url = "https://files.pythonhosted.org/packages/97/45/4b3a1239bbacd321068ea6e7ac28875b03ab8bc0aa0966452db17cd36714/charset_normalizer-3.4.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e1f185f86a6f3403aa2420e815904c67b2f9ebc443f045edd0de921108345794", size = 208091, upload-time = "2025-10-14T04:41:13.346Z" }, + { url = "https://files.pythonhosted.org/packages/7d/62/73a6d7450829655a35bb88a88fca7d736f9882a27eacdca2c6d505b57e2e/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b39f987ae8ccdf0d2642338faf2abb1862340facc796048b604ef14919e55ed", size = 147936, upload-time = "2025-10-14T04:41:14.461Z" }, + { url = "https://files.pythonhosted.org/packages/89/c5/adb8c8b3d6625bef6d88b251bbb0d95f8205831b987631ab0c8bb5d937c2/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3162d5d8ce1bb98dd51af660f2121c55d0fa541b46dff7bb9b9f86ea1d87de72", size = 144180, upload-time = "2025-10-14T04:41:15.588Z" }, + { url = "https://files.pythonhosted.org/packages/91/ed/9706e4070682d1cc219050b6048bfd293ccf67b3d4f5a4f39207453d4b99/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:81d5eb2a312700f4ecaa977a8235b634ce853200e828fbadf3a9c50bab278328", size = 161346, upload-time = "2025-10-14T04:41:16.738Z" }, + { url = "https://files.pythonhosted.org/packages/d5/0d/031f0d95e4972901a2f6f09ef055751805ff541511dc1252ba3ca1f80cf5/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5bd2293095d766545ec1a8f612559f6b40abc0eb18bb2f5d1171872d34036ede", size = 158874, upload-time = "2025-10-14T04:41:17.923Z" }, + { url = "https://files.pythonhosted.org/packages/f5/83/6ab5883f57c9c801ce5e5677242328aa45592be8a00644310a008d04f922/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a8a8b89589086a25749f471e6a900d3f662d1d3b6e2e59dcecf787b1cc3a1894", size = 153076, upload-time = "2025-10-14T04:41:19.106Z" }, + { url = "https://files.pythonhosted.org/packages/75/1e/5ff781ddf5260e387d6419959ee89ef13878229732732ee73cdae01800f2/charset_normalizer-3.4.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc7637e2f80d8530ee4a78e878bce464f70087ce73cf7c1caf142416923b98f1", size = 150601, upload-time = "2025-10-14T04:41:20.245Z" }, + { url = "https://files.pythonhosted.org/packages/d7/57/71be810965493d3510a6ca79b90c19e48696fb1ff964da319334b12677f0/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f8bf04158c6b607d747e93949aa60618b61312fe647a6369f88ce2ff16043490", size = 150376, upload-time = "2025-10-14T04:41:21.398Z" }, + { url = "https://files.pythonhosted.org/packages/e5/d5/c3d057a78c181d007014feb7e9f2e65905a6c4ef182c0ddf0de2924edd65/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:554af85e960429cf30784dd47447d5125aaa3b99a6f0683589dbd27e2f45da44", size = 144825, upload-time = "2025-10-14T04:41:22.583Z" }, + { url = "https://files.pythonhosted.org/packages/e6/8c/d0406294828d4976f275ffbe66f00266c4b3136b7506941d87c00cab5272/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:74018750915ee7ad843a774364e13a3db91682f26142baddf775342c3f5b1133", size = 162583, upload-time = "2025-10-14T04:41:23.754Z" }, + { url = "https://files.pythonhosted.org/packages/d7/24/e2aa1f18c8f15c4c0e932d9287b8609dd30ad56dbe41d926bd846e22fb8d/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:c0463276121fdee9c49b98908b3a89c39be45d86d1dbaa22957e38f6321d4ce3", size = 150366, upload-time = "2025-10-14T04:41:25.27Z" }, + { url = "https://files.pythonhosted.org/packages/e4/5b/1e6160c7739aad1e2df054300cc618b06bf784a7a164b0f238360721ab86/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:362d61fd13843997c1c446760ef36f240cf81d3ebf74ac62652aebaf7838561e", size = 160300, upload-time = "2025-10-14T04:41:26.725Z" }, + { url = "https://files.pythonhosted.org/packages/7a/10/f882167cd207fbdd743e55534d5d9620e095089d176d55cb22d5322f2afd/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9a26f18905b8dd5d685d6d07b0cdf98a79f3c7a918906af7cc143ea2e164c8bc", size = 154465, upload-time = "2025-10-14T04:41:28.322Z" }, + { url = "https://files.pythonhosted.org/packages/89/66/c7a9e1b7429be72123441bfdbaf2bc13faab3f90b933f664db506dea5915/charset_normalizer-3.4.4-cp313-cp313-win32.whl", hash = "sha256:9b35f4c90079ff2e2edc5b26c0c77925e5d2d255c42c74fdb70fb49b172726ac", size = 99404, upload-time = "2025-10-14T04:41:29.95Z" }, + { url = "https://files.pythonhosted.org/packages/c4/26/b9924fa27db384bdcd97ab83b4f0a8058d96ad9626ead570674d5e737d90/charset_normalizer-3.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:b435cba5f4f750aa6c0a0d92c541fb79f69a387c91e61f1795227e4ed9cece14", size = 107092, upload-time = "2025-10-14T04:41:31.188Z" }, + { url = "https://files.pythonhosted.org/packages/af/8f/3ed4bfa0c0c72a7ca17f0380cd9e4dd842b09f664e780c13cff1dcf2ef1b/charset_normalizer-3.4.4-cp313-cp313-win_arm64.whl", hash = "sha256:542d2cee80be6f80247095cc36c418f7bddd14f4a6de45af91dfad36d817bba2", size = 100408, upload-time = "2025-10-14T04:41:32.624Z" }, { url = "https://files.pythonhosted.org/packages/2a/35/7051599bd493e62411d6ede36fd5af83a38f37c4767b92884df7301db25d/charset_normalizer-3.4.4-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:da3326d9e65ef63a817ecbcc0df6e94463713b754fe293eaa03da99befb9a5bd", size = 207746, upload-time = "2025-10-14T04:41:33.773Z" }, { url = "https://files.pythonhosted.org/packages/10/9a/97c8d48ef10d6cd4fcead2415523221624bf58bcf68a802721a6bc807c8f/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8af65f14dc14a79b924524b1e7fffe304517b2bff5a58bf64f30b98bbc5079eb", size = 147889, upload-time = "2025-10-14T04:41:34.897Z" }, { url = "https://files.pythonhosted.org/packages/10/bf/979224a919a1b606c82bd2c5fa49b5c6d5727aa47b4312bb27b1734f53cd/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74664978bb272435107de04e36db5a9735e78232b85b77d45cfb38f758efd33e", size = 143641, upload-time = "2025-10-14T04:41:36.116Z" }, @@ -449,6 +544,9 @@ wheels = [ name = "exceptiongroup" version = "1.3.1" source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, +] sdist = { url = "https://files.pythonhosted.org/packages/50/79/66800aadf48771f6b62f7eb014e352e5d06856655206165d775e675a02c9/exceptiongroup-1.3.1.tar.gz", hash = "sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219", size = 30371, upload-time = "2025-11-21T23:01:54.787Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/8a/0e/97c33bf5009bdbac74fd2beace167cab3f978feb69cc36f1ef79360d6c4e/exceptiongroup-1.3.1-py3-none-any.whl", hash = "sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598", size = 16740, upload-time = "2025-11-21T23:01:53.443Z" }, @@ -507,6 +605,28 @@ version = "0.14.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/c3/7d/d9daedf0f2ebcacd20d599928f8913e9d2aea1d56d2d355a93bfa2b611d7/fastuuid-0.14.0.tar.gz", hash = "sha256:178947fc2f995b38497a74172adee64fdeb8b7ec18f2a5934d037641ba265d26", size = 18232, upload-time = "2025-10-19T22:19:22.402Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/02/a2/e78fcc5df65467f0d207661b7ef86c5b7ac62eea337c0c0fcedbeee6fb13/fastuuid-0.14.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:77e94728324b63660ebf8adb27055e92d2e4611645bf12ed9d88d30486471d0a", size = 510164, upload-time = "2025-10-19T22:31:45.635Z" }, + { url = "https://files.pythonhosted.org/packages/2b/b3/c846f933f22f581f558ee63f81f29fa924acd971ce903dab1a9b6701816e/fastuuid-0.14.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:caa1f14d2102cb8d353096bc6ef6c13b2c81f347e6ab9d6fbd48b9dea41c153d", size = 261837, upload-time = "2025-10-19T22:38:38.53Z" }, + { url = "https://files.pythonhosted.org/packages/54/ea/682551030f8c4fa9a769d9825570ad28c0c71e30cf34020b85c1f7ee7382/fastuuid-0.14.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d23ef06f9e67163be38cece704170486715b177f6baae338110983f99a72c070", size = 251370, upload-time = "2025-10-19T22:40:26.07Z" }, + { url = "https://files.pythonhosted.org/packages/14/dd/5927f0a523d8e6a76b70968e6004966ee7df30322f5fc9b6cdfb0276646a/fastuuid-0.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0c9ec605ace243b6dbe3bd27ebdd5d33b00d8d1d3f580b39fdd15cd96fd71796", size = 277766, upload-time = "2025-10-19T22:37:23.779Z" }, + { url = "https://files.pythonhosted.org/packages/16/6e/c0fb547eef61293153348f12e0f75a06abb322664b34a1573a7760501336/fastuuid-0.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:808527f2407f58a76c916d6aa15d58692a4a019fdf8d4c32ac7ff303b7d7af09", size = 278105, upload-time = "2025-10-19T22:26:56.821Z" }, + { url = "https://files.pythonhosted.org/packages/2d/b1/b9c75e03b768f61cf2e84ee193dc18601aeaf89a4684b20f2f0e9f52b62c/fastuuid-0.14.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2fb3c0d7fef6674bbeacdd6dbd386924a7b60b26de849266d1ff6602937675c8", size = 301564, upload-time = "2025-10-19T22:30:31.604Z" }, + { url = "https://files.pythonhosted.org/packages/fc/fa/f7395fdac07c7a54f18f801744573707321ca0cee082e638e36452355a9d/fastuuid-0.14.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab3f5d36e4393e628a4df337c2c039069344db5f4b9d2a3c9cea48284f1dd741", size = 459659, upload-time = "2025-10-19T22:31:32.341Z" }, + { url = "https://files.pythonhosted.org/packages/66/49/c9fd06a4a0b1f0f048aacb6599e7d96e5d6bc6fa680ed0d46bf111929d1b/fastuuid-0.14.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:b9a0ca4f03b7e0b01425281ffd44e99d360e15c895f1907ca105854ed85e2057", size = 478430, upload-time = "2025-10-19T22:26:22.962Z" }, + { url = "https://files.pythonhosted.org/packages/be/9c/909e8c95b494e8e140e8be6165d5fc3f61fdc46198c1554df7b3e1764471/fastuuid-0.14.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3acdf655684cc09e60fb7e4cf524e8f42ea760031945aa8086c7eae2eeeabeb8", size = 450894, upload-time = "2025-10-19T22:27:01.647Z" }, + { url = "https://files.pythonhosted.org/packages/90/eb/d29d17521976e673c55ef7f210d4cdd72091a9ec6755d0fd4710d9b3c871/fastuuid-0.14.0-cp312-cp312-win32.whl", hash = "sha256:9579618be6280700ae36ac42c3efd157049fe4dd40ca49b021280481c78c3176", size = 154374, upload-time = "2025-10-19T22:29:19.879Z" }, + { url = "https://files.pythonhosted.org/packages/cc/fc/f5c799a6ea6d877faec0472d0b27c079b47c86b1cdc577720a5386483b36/fastuuid-0.14.0-cp312-cp312-win_amd64.whl", hash = "sha256:d9e4332dc4ba054434a9594cbfaf7823b57993d7d8e7267831c3e059857cf397", size = 156550, upload-time = "2025-10-19T22:27:49.658Z" }, + { url = "https://files.pythonhosted.org/packages/a5/83/ae12dd39b9a39b55d7f90abb8971f1a5f3c321fd72d5aa83f90dc67fe9ed/fastuuid-0.14.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:77a09cb7427e7af74c594e409f7731a0cf887221de2f698e1ca0ebf0f3139021", size = 510720, upload-time = "2025-10-19T22:42:34.633Z" }, + { url = "https://files.pythonhosted.org/packages/53/b0/a4b03ff5d00f563cc7546b933c28cb3f2a07344b2aec5834e874f7d44143/fastuuid-0.14.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:9bd57289daf7b153bfa3e8013446aa144ce5e8c825e9e366d455155ede5ea2dc", size = 262024, upload-time = "2025-10-19T22:30:25.482Z" }, + { url = "https://files.pythonhosted.org/packages/9c/6d/64aee0a0f6a58eeabadd582e55d0d7d70258ffdd01d093b30c53d668303b/fastuuid-0.14.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ac60fc860cdf3c3f327374db87ab8e064c86566ca8c49d2e30df15eda1b0c2d5", size = 251679, upload-time = "2025-10-19T22:36:14.096Z" }, + { url = "https://files.pythonhosted.org/packages/60/f5/a7e9cda8369e4f7919d36552db9b2ae21db7915083bc6336f1b0082c8b2e/fastuuid-0.14.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ab32f74bd56565b186f036e33129da77db8be09178cd2f5206a5d4035fb2a23f", size = 277862, upload-time = "2025-10-19T22:36:23.302Z" }, + { url = "https://files.pythonhosted.org/packages/f0/d3/8ce11827c783affffd5bd4d6378b28eb6cc6d2ddf41474006b8d62e7448e/fastuuid-0.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33e678459cf4addaedd9936bbb038e35b3f6b2061330fd8f2f6a1d80414c0f87", size = 278278, upload-time = "2025-10-19T22:29:43.809Z" }, + { url = "https://files.pythonhosted.org/packages/a2/51/680fb6352d0bbade04036da46264a8001f74b7484e2fd1f4da9e3db1c666/fastuuid-0.14.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1e3cc56742f76cd25ecb98e4b82a25f978ccffba02e4bdce8aba857b6d85d87b", size = 301788, upload-time = "2025-10-19T22:36:06.825Z" }, + { url = "https://files.pythonhosted.org/packages/fa/7c/2014b5785bd8ebdab04ec857635ebd84d5ee4950186a577db9eff0fb8ff6/fastuuid-0.14.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:cb9a030f609194b679e1660f7e32733b7a0f332d519c5d5a6a0a580991290022", size = 459819, upload-time = "2025-10-19T22:35:31.623Z" }, + { url = "https://files.pythonhosted.org/packages/01/d2/524d4ceeba9160e7a9bc2ea3e8f4ccf1ad78f3bde34090ca0c51f09a5e91/fastuuid-0.14.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:09098762aad4f8da3a888eb9ae01c84430c907a297b97166b8abc07b640f2995", size = 478546, upload-time = "2025-10-19T22:26:03.023Z" }, + { url = "https://files.pythonhosted.org/packages/bc/17/354d04951ce114bf4afc78e27a18cfbd6ee319ab1829c2d5fb5e94063ac6/fastuuid-0.14.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:1383fff584fa249b16329a059c68ad45d030d5a4b70fb7c73a08d98fd53bcdab", size = 450921, upload-time = "2025-10-19T22:31:02.151Z" }, + { url = "https://files.pythonhosted.org/packages/fb/be/d7be8670151d16d88f15bb121c5b66cdb5ea6a0c2a362d0dcf30276ade53/fastuuid-0.14.0-cp313-cp313-win32.whl", hash = "sha256:a0809f8cc5731c066c909047f9a314d5f536c871a7a22e815cc4967c110ac9ad", size = 154559, upload-time = "2025-10-19T22:36:36.011Z" }, + { url = "https://files.pythonhosted.org/packages/22/1d/5573ef3624ceb7abf4a46073d3554e37191c868abc3aecd5289a72f9810a/fastuuid-0.14.0-cp313-cp313-win_amd64.whl", hash = "sha256:0df14e92e7ad3276327631c9e7cec09e32572ce82089c55cb1bb8df71cf394ed", size = 156539, upload-time = "2025-10-19T22:33:35.898Z" }, { url = "https://files.pythonhosted.org/packages/16/c9/8c7660d1fe3862e3f8acabd9be7fc9ad71eb270f1c65cce9a2b7a31329ab/fastuuid-0.14.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:b852a870a61cfc26c884af205d502881a2e59cc07076b60ab4a951cc0c94d1ad", size = 510600, upload-time = "2025-10-19T22:43:44.17Z" }, { url = "https://files.pythonhosted.org/packages/4c/f4/a989c82f9a90d0ad995aa957b3e572ebef163c5299823b4027986f133dfb/fastuuid-0.14.0-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:c7502d6f54cd08024c3ea9b3514e2d6f190feb2f46e6dbcd3747882264bb5f7b", size = 262069, upload-time = "2025-10-19T22:43:38.38Z" }, { url = "https://files.pythonhosted.org/packages/da/6c/a1a24f73574ac995482b1326cf7ab41301af0fabaa3e37eeb6b3df00e6e2/fastuuid-0.14.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1ca61b592120cf314cfd66e662a5b54a578c5a15b26305e1b8b618a6f22df714", size = 251543, upload-time = "2025-10-19T22:32:22.537Z" }, @@ -535,6 +655,54 @@ version = "1.8.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/2d/f5/c831fac6cc817d26fd54c7eaccd04ef7e0288806943f7cc5bbf69f3ac1f0/frozenlist-1.8.0.tar.gz", hash = "sha256:3ede829ed8d842f6cd48fc7081d7a41001a56f1f38603f9d49bf3020d59a31ad", size = 45875, upload-time = "2025-10-06T05:38:17.865Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/69/29/948b9aa87e75820a38650af445d2ef2b6b8a6fab1a23b6bb9e4ef0be2d59/frozenlist-1.8.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:78f7b9e5d6f2fdb88cdde9440dc147259b62b9d3b019924def9f6478be254ac1", size = 87782, upload-time = "2025-10-06T05:36:06.649Z" }, + { url = "https://files.pythonhosted.org/packages/64/80/4f6e318ee2a7c0750ed724fa33a4bdf1eacdc5a39a7a24e818a773cd91af/frozenlist-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:229bf37d2e4acdaf808fd3f06e854a4a7a3661e871b10dc1f8f1896a3b05f18b", size = 50594, upload-time = "2025-10-06T05:36:07.69Z" }, + { url = "https://files.pythonhosted.org/packages/2b/94/5c8a2b50a496b11dd519f4a24cb5496cf125681dd99e94c604ccdea9419a/frozenlist-1.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f833670942247a14eafbb675458b4e61c82e002a148f49e68257b79296e865c4", size = 50448, upload-time = "2025-10-06T05:36:08.78Z" }, + { url = "https://files.pythonhosted.org/packages/6a/bd/d91c5e39f490a49df14320f4e8c80161cfcce09f1e2cde1edd16a551abb3/frozenlist-1.8.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:494a5952b1c597ba44e0e78113a7266e656b9794eec897b19ead706bd7074383", size = 242411, upload-time = "2025-10-06T05:36:09.801Z" }, + { url = "https://files.pythonhosted.org/packages/8f/83/f61505a05109ef3293dfb1ff594d13d64a2324ac3482be2cedc2be818256/frozenlist-1.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:96f423a119f4777a4a056b66ce11527366a8bb92f54e541ade21f2374433f6d4", size = 243014, upload-time = "2025-10-06T05:36:11.394Z" }, + { url = "https://files.pythonhosted.org/packages/d8/cb/cb6c7b0f7d4023ddda30cf56b8b17494eb3a79e3fda666bf735f63118b35/frozenlist-1.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3462dd9475af2025c31cc61be6652dfa25cbfb56cbbf52f4ccfe029f38decaf8", size = 234909, upload-time = "2025-10-06T05:36:12.598Z" }, + { url = "https://files.pythonhosted.org/packages/31/c5/cd7a1f3b8b34af009fb17d4123c5a778b44ae2804e3ad6b86204255f9ec5/frozenlist-1.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c4c800524c9cd9bac5166cd6f55285957fcfc907db323e193f2afcd4d9abd69b", size = 250049, upload-time = "2025-10-06T05:36:14.065Z" }, + { url = "https://files.pythonhosted.org/packages/c0/01/2f95d3b416c584a1e7f0e1d6d31998c4a795f7544069ee2e0962a4b60740/frozenlist-1.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d6a5df73acd3399d893dafc71663ad22534b5aa4f94e8a2fabfe856c3c1b6a52", size = 256485, upload-time = "2025-10-06T05:36:15.39Z" }, + { url = "https://files.pythonhosted.org/packages/ce/03/024bf7720b3abaebcff6d0793d73c154237b85bdf67b7ed55e5e9596dc9a/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:405e8fe955c2280ce66428b3ca55e12b3c4e9c336fb2103a4937e891c69a4a29", size = 237619, upload-time = "2025-10-06T05:36:16.558Z" }, + { url = "https://files.pythonhosted.org/packages/69/fa/f8abdfe7d76b731f5d8bd217827cf6764d4f1d9763407e42717b4bed50a0/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:908bd3f6439f2fef9e85031b59fd4f1297af54415fb60e4254a95f75b3cab3f3", size = 250320, upload-time = "2025-10-06T05:36:17.821Z" }, + { url = "https://files.pythonhosted.org/packages/f5/3c/b051329f718b463b22613e269ad72138cc256c540f78a6de89452803a47d/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:294e487f9ec720bd8ffcebc99d575f7eff3568a08a253d1ee1a0378754b74143", size = 246820, upload-time = "2025-10-06T05:36:19.046Z" }, + { url = "https://files.pythonhosted.org/packages/0f/ae/58282e8f98e444b3f4dd42448ff36fa38bef29e40d40f330b22e7108f565/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:74c51543498289c0c43656701be6b077f4b265868fa7f8a8859c197006efb608", size = 250518, upload-time = "2025-10-06T05:36:20.763Z" }, + { url = "https://files.pythonhosted.org/packages/8f/96/007e5944694d66123183845a106547a15944fbbb7154788cbf7272789536/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:776f352e8329135506a1d6bf16ac3f87bc25b28e765949282dcc627af36123aa", size = 239096, upload-time = "2025-10-06T05:36:22.129Z" }, + { url = "https://files.pythonhosted.org/packages/66/bb/852b9d6db2fa40be96f29c0d1205c306288f0684df8fd26ca1951d461a56/frozenlist-1.8.0-cp312-cp312-win32.whl", hash = "sha256:433403ae80709741ce34038da08511d4a77062aa924baf411ef73d1146e74faf", size = 39985, upload-time = "2025-10-06T05:36:23.661Z" }, + { url = "https://files.pythonhosted.org/packages/b8/af/38e51a553dd66eb064cdf193841f16f077585d4d28394c2fa6235cb41765/frozenlist-1.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:34187385b08f866104f0c0617404c8eb08165ab1272e884abc89c112e9c00746", size = 44591, upload-time = "2025-10-06T05:36:24.958Z" }, + { url = "https://files.pythonhosted.org/packages/a7/06/1dc65480ab147339fecc70797e9c2f69d9cea9cf38934ce08df070fdb9cb/frozenlist-1.8.0-cp312-cp312-win_arm64.whl", hash = "sha256:fe3c58d2f5db5fbd18c2987cba06d51b0529f52bc3a6cdc33d3f4eab725104bd", size = 40102, upload-time = "2025-10-06T05:36:26.333Z" }, + { url = "https://files.pythonhosted.org/packages/2d/40/0832c31a37d60f60ed79e9dfb5a92e1e2af4f40a16a29abcc7992af9edff/frozenlist-1.8.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8d92f1a84bb12d9e56f818b3a746f3efba93c1b63c8387a73dde655e1e42282a", size = 85717, upload-time = "2025-10-06T05:36:27.341Z" }, + { url = "https://files.pythonhosted.org/packages/30/ba/b0b3de23f40bc55a7057bd38434e25c34fa48e17f20ee273bbde5e0650f3/frozenlist-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:96153e77a591c8adc2ee805756c61f59fef4cf4073a9275ee86fe8cba41241f7", size = 49651, upload-time = "2025-10-06T05:36:28.855Z" }, + { url = "https://files.pythonhosted.org/packages/0c/ab/6e5080ee374f875296c4243c381bbdef97a9ac39c6e3ce1d5f7d42cb78d6/frozenlist-1.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f21f00a91358803399890ab167098c131ec2ddd5f8f5fd5fe9c9f2c6fcd91e40", size = 49417, upload-time = "2025-10-06T05:36:29.877Z" }, + { url = "https://files.pythonhosted.org/packages/d5/4e/e4691508f9477ce67da2015d8c00acd751e6287739123113a9fca6f1604e/frozenlist-1.8.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:fb30f9626572a76dfe4293c7194a09fb1fe93ba94c7d4f720dfae3b646b45027", size = 234391, upload-time = "2025-10-06T05:36:31.301Z" }, + { url = "https://files.pythonhosted.org/packages/40/76/c202df58e3acdf12969a7895fd6f3bc016c642e6726aa63bd3025e0fc71c/frozenlist-1.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eaa352d7047a31d87dafcacbabe89df0aa506abb5b1b85a2fb91bc3faa02d822", size = 233048, upload-time = "2025-10-06T05:36:32.531Z" }, + { url = "https://files.pythonhosted.org/packages/f9/c0/8746afb90f17b73ca5979c7a3958116e105ff796e718575175319b5bb4ce/frozenlist-1.8.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:03ae967b4e297f58f8c774c7eabcce57fe3c2434817d4385c50661845a058121", size = 226549, upload-time = "2025-10-06T05:36:33.706Z" }, + { url = "https://files.pythonhosted.org/packages/7e/eb/4c7eefc718ff72f9b6c4893291abaae5fbc0c82226a32dcd8ef4f7a5dbef/frozenlist-1.8.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f6292f1de555ffcc675941d65fffffb0a5bcd992905015f85d0592201793e0e5", size = 239833, upload-time = "2025-10-06T05:36:34.947Z" }, + { url = "https://files.pythonhosted.org/packages/c2/4e/e5c02187cf704224f8b21bee886f3d713ca379535f16893233b9d672ea71/frozenlist-1.8.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:29548f9b5b5e3460ce7378144c3010363d8035cea44bc0bf02d57f5a685e084e", size = 245363, upload-time = "2025-10-06T05:36:36.534Z" }, + { url = "https://files.pythonhosted.org/packages/1f/96/cb85ec608464472e82ad37a17f844889c36100eed57bea094518bf270692/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ec3cc8c5d4084591b4237c0a272cc4f50a5b03396a47d9caaf76f5d7b38a4f11", size = 229314, upload-time = "2025-10-06T05:36:38.582Z" }, + { url = "https://files.pythonhosted.org/packages/5d/6f/4ae69c550e4cee66b57887daeebe006fe985917c01d0fff9caab9883f6d0/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:517279f58009d0b1f2e7c1b130b377a349405da3f7621ed6bfae50b10adf20c1", size = 243365, upload-time = "2025-10-06T05:36:40.152Z" }, + { url = "https://files.pythonhosted.org/packages/7a/58/afd56de246cf11780a40a2c28dc7cbabbf06337cc8ddb1c780a2d97e88d8/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:db1e72ede2d0d7ccb213f218df6a078a9c09a7de257c2fe8fcef16d5925230b1", size = 237763, upload-time = "2025-10-06T05:36:41.355Z" }, + { url = "https://files.pythonhosted.org/packages/cb/36/cdfaf6ed42e2644740d4a10452d8e97fa1c062e2a8006e4b09f1b5fd7d63/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:b4dec9482a65c54a5044486847b8a66bf10c9cb4926d42927ec4e8fd5db7fed8", size = 240110, upload-time = "2025-10-06T05:36:42.716Z" }, + { url = "https://files.pythonhosted.org/packages/03/a8/9ea226fbefad669f11b52e864c55f0bd57d3c8d7eb07e9f2e9a0b39502e1/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:21900c48ae04d13d416f0e1e0c4d81f7931f73a9dfa0b7a8746fb2fe7dd970ed", size = 233717, upload-time = "2025-10-06T05:36:44.251Z" }, + { url = "https://files.pythonhosted.org/packages/1e/0b/1b5531611e83ba7d13ccc9988967ea1b51186af64c42b7a7af465dcc9568/frozenlist-1.8.0-cp313-cp313-win32.whl", hash = "sha256:8b7b94a067d1c504ee0b16def57ad5738701e4ba10cec90529f13fa03c833496", size = 39628, upload-time = "2025-10-06T05:36:45.423Z" }, + { url = "https://files.pythonhosted.org/packages/d8/cf/174c91dbc9cc49bc7b7aab74d8b734e974d1faa8f191c74af9b7e80848e6/frozenlist-1.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:878be833caa6a3821caf85eb39c5ba92d28e85df26d57afb06b35b2efd937231", size = 43882, upload-time = "2025-10-06T05:36:46.796Z" }, + { url = "https://files.pythonhosted.org/packages/c1/17/502cd212cbfa96eb1388614fe39a3fc9ab87dbbe042b66f97acb57474834/frozenlist-1.8.0-cp313-cp313-win_arm64.whl", hash = "sha256:44389d135b3ff43ba8cc89ff7f51f5a0bb6b63d829c8300f79a2fe4fe61bcc62", size = 39676, upload-time = "2025-10-06T05:36:47.8Z" }, + { url = "https://files.pythonhosted.org/packages/d2/5c/3bbfaa920dfab09e76946a5d2833a7cbdf7b9b4a91c714666ac4855b88b4/frozenlist-1.8.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:e25ac20a2ef37e91c1b39938b591457666a0fa835c7783c3a8f33ea42870db94", size = 89235, upload-time = "2025-10-06T05:36:48.78Z" }, + { url = "https://files.pythonhosted.org/packages/d2/d6/f03961ef72166cec1687e84e8925838442b615bd0b8854b54923ce5b7b8a/frozenlist-1.8.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:07cdca25a91a4386d2e76ad992916a85038a9b97561bf7a3fd12d5d9ce31870c", size = 50742, upload-time = "2025-10-06T05:36:49.837Z" }, + { url = "https://files.pythonhosted.org/packages/1e/bb/a6d12b7ba4c3337667d0e421f7181c82dda448ce4e7ad7ecd249a16fa806/frozenlist-1.8.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:4e0c11f2cc6717e0a741f84a527c52616140741cd812a50422f83dc31749fb52", size = 51725, upload-time = "2025-10-06T05:36:50.851Z" }, + { url = "https://files.pythonhosted.org/packages/bc/71/d1fed0ffe2c2ccd70b43714c6cab0f4188f09f8a67a7914a6b46ee30f274/frozenlist-1.8.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b3210649ee28062ea6099cfda39e147fa1bc039583c8ee4481cb7811e2448c51", size = 284533, upload-time = "2025-10-06T05:36:51.898Z" }, + { url = "https://files.pythonhosted.org/packages/c9/1f/fb1685a7b009d89f9bf78a42d94461bc06581f6e718c39344754a5d9bada/frozenlist-1.8.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:581ef5194c48035a7de2aefc72ac6539823bb71508189e5de01d60c9dcd5fa65", size = 292506, upload-time = "2025-10-06T05:36:53.101Z" }, + { url = "https://files.pythonhosted.org/packages/e6/3b/b991fe1612703f7e0d05c0cf734c1b77aaf7c7d321df4572e8d36e7048c8/frozenlist-1.8.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3ef2d026f16a2b1866e1d86fc4e1291e1ed8a387b2c333809419a2f8b3a77b82", size = 274161, upload-time = "2025-10-06T05:36:54.309Z" }, + { url = "https://files.pythonhosted.org/packages/ca/ec/c5c618767bcdf66e88945ec0157d7f6c4a1322f1473392319b7a2501ded7/frozenlist-1.8.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5500ef82073f599ac84d888e3a8c1f77ac831183244bfd7f11eaa0289fb30714", size = 294676, upload-time = "2025-10-06T05:36:55.566Z" }, + { url = "https://files.pythonhosted.org/packages/7c/ce/3934758637d8f8a88d11f0585d6495ef54b2044ed6ec84492a91fa3b27aa/frozenlist-1.8.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:50066c3997d0091c411a66e710f4e11752251e6d2d73d70d8d5d4c76442a199d", size = 300638, upload-time = "2025-10-06T05:36:56.758Z" }, + { url = "https://files.pythonhosted.org/packages/fc/4f/a7e4d0d467298f42de4b41cbc7ddaf19d3cfeabaf9ff97c20c6c7ee409f9/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:5c1c8e78426e59b3f8005e9b19f6ff46e5845895adbde20ece9218319eca6506", size = 283067, upload-time = "2025-10-06T05:36:57.965Z" }, + { url = "https://files.pythonhosted.org/packages/dc/48/c7b163063d55a83772b268e6d1affb960771b0e203b632cfe09522d67ea5/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:eefdba20de0d938cec6a89bd4d70f346a03108a19b9df4248d3cf0d88f1b0f51", size = 292101, upload-time = "2025-10-06T05:36:59.237Z" }, + { url = "https://files.pythonhosted.org/packages/9f/d0/2366d3c4ecdc2fd391e0afa6e11500bfba0ea772764d631bbf82f0136c9d/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:cf253e0e1c3ceb4aaff6df637ce033ff6535fb8c70a764a8f46aafd3d6ab798e", size = 289901, upload-time = "2025-10-06T05:37:00.811Z" }, + { url = "https://files.pythonhosted.org/packages/b8/94/daff920e82c1b70e3618a2ac39fbc01ae3e2ff6124e80739ce5d71c9b920/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:032efa2674356903cd0261c4317a561a6850f3ac864a63fc1583147fb05a79b0", size = 289395, upload-time = "2025-10-06T05:37:02.115Z" }, + { url = "https://files.pythonhosted.org/packages/e3/20/bba307ab4235a09fdcd3cc5508dbabd17c4634a1af4b96e0f69bfe551ebd/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6da155091429aeba16851ecb10a9104a108bcd32f6c1642867eadaee401c1c41", size = 283659, upload-time = "2025-10-06T05:37:03.711Z" }, + { url = "https://files.pythonhosted.org/packages/fd/00/04ca1c3a7a124b6de4f8a9a17cc2fcad138b4608e7a3fc5877804b8715d7/frozenlist-1.8.0-cp313-cp313t-win32.whl", hash = "sha256:0f96534f8bfebc1a394209427d0f8a63d343c9779cda6fc25e8e121b5fd8555b", size = 43492, upload-time = "2025-10-06T05:37:04.915Z" }, + { url = "https://files.pythonhosted.org/packages/59/5e/c69f733a86a94ab10f68e496dc6b7e8bc078ebb415281d5698313e3af3a1/frozenlist-1.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5d63a068f978fc69421fb0e6eb91a9603187527c86b7cd3f534a5b77a592b888", size = 48034, upload-time = "2025-10-06T05:37:06.343Z" }, + { url = "https://files.pythonhosted.org/packages/16/6c/be9d79775d8abe79b05fa6d23da99ad6e7763a1d080fbae7290b286093fd/frozenlist-1.8.0-cp313-cp313t-win_arm64.whl", hash = "sha256:bf0a7e10b077bf5fb9380ad3ae8ce20ef919a6ad93b4552896419ac7e1d8e042", size = 41749, upload-time = "2025-10-06T05:37:07.431Z" }, { url = "https://files.pythonhosted.org/packages/f1/c8/85da824b7e7b9b6e7f7705b2ecaf9591ba6f79c1177f324c2735e41d36a2/frozenlist-1.8.0-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:cee686f1f4cadeb2136007ddedd0aaf928ab95216e7691c63e50a8ec066336d0", size = 86127, upload-time = "2025-10-06T05:37:08.438Z" }, { url = "https://files.pythonhosted.org/packages/8e/e8/a1185e236ec66c20afd72399522f142c3724c785789255202d27ae992818/frozenlist-1.8.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:119fb2a1bd47307e899c2fac7f28e85b9a543864df47aa7ec9d3c1b4545f096f", size = 49698, upload-time = "2025-10-06T05:37:09.48Z" }, { url = "https://files.pythonhosted.org/packages/a1/93/72b1736d68f03fda5fdf0f2180fb6caaae3894f1b854d006ac61ecc727ee/frozenlist-1.8.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:4970ece02dbc8c3a92fcc5228e36a3e933a01a999f7094ff7c23fbd2beeaa67c", size = 49749, upload-time = "2025-10-06T05:37:10.569Z" }, @@ -594,6 +762,13 @@ version = "1.2.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/5e/6e/0f11bacf08a67f7fb5ee09740f2ca54163863b07b70d579356e9222ce5d8/hf_xet-1.2.0.tar.gz", hash = "sha256:a8c27070ca547293b6890c4bf389f713f80e8c478631432962bb7f4bc0bd7d7f", size = 506020, upload-time = "2025-10-24T19:04:32.129Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/a5/85ef910a0aa034a2abcfadc360ab5ac6f6bc4e9112349bd40ca97551cff0/hf_xet-1.2.0-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:ceeefcd1b7aed4956ae8499e2199607765fbd1c60510752003b6cc0b8413b649", size = 2861870, upload-time = "2025-10-24T19:04:11.422Z" }, + { url = "https://files.pythonhosted.org/packages/ea/40/e2e0a7eb9a51fe8828ba2d47fe22a7e74914ea8a0db68a18c3aa7449c767/hf_xet-1.2.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b70218dd548e9840224df5638fdc94bd033552963cfa97f9170829381179c813", size = 2717584, upload-time = "2025-10-24T19:04:09.586Z" }, + { url = "https://files.pythonhosted.org/packages/a5/7d/daf7f8bc4594fdd59a8a596f9e3886133fdc68e675292218a5e4c1b7e834/hf_xet-1.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d40b18769bb9a8bc82a9ede575ce1a44c75eb80e7375a01d76259089529b5dc", size = 3315004, upload-time = "2025-10-24T19:04:00.314Z" }, + { url = "https://files.pythonhosted.org/packages/b1/ba/45ea2f605fbf6d81c8b21e4d970b168b18a53515923010c312c06cd83164/hf_xet-1.2.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:cd3a6027d59cfb60177c12d6424e31f4b5ff13d8e3a1247b3a584bf8977e6df5", size = 3222636, upload-time = "2025-10-24T19:03:58.111Z" }, + { url = "https://files.pythonhosted.org/packages/4a/1d/04513e3cab8f29ab8c109d309ddd21a2705afab9d52f2ba1151e0c14f086/hf_xet-1.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6de1fc44f58f6dd937956c8d304d8c2dea264c80680bcfa61ca4a15e7b76780f", size = 3408448, upload-time = "2025-10-24T19:04:20.951Z" }, + { url = "https://files.pythonhosted.org/packages/f0/7c/60a2756d7feec7387db3a1176c632357632fbe7849fce576c5559d4520c7/hf_xet-1.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f182f264ed2acd566c514e45da9f2119110e48a87a327ca271027904c70c5832", size = 3503401, upload-time = "2025-10-24T19:04:22.549Z" }, + { url = "https://files.pythonhosted.org/packages/4e/64/48fffbd67fb418ab07451e4ce641a70de1c40c10a13e25325e24858ebe5a/hf_xet-1.2.0-cp313-cp313t-win_amd64.whl", hash = "sha256:293a7a3787e5c95d7be1857358a9130694a9c6021de3f27fa233f37267174382", size = 2900866, upload-time = "2025-10-24T19:04:33.461Z" }, { url = "https://files.pythonhosted.org/packages/e2/51/f7e2caae42f80af886db414d4e9885fac959330509089f97cccb339c6b87/hf_xet-1.2.0-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:10bfab528b968c70e062607f663e21e34e2bba349e8038db546646875495179e", size = 2861861, upload-time = "2025-10-24T19:04:19.01Z" }, { url = "https://files.pythonhosted.org/packages/6e/1d/a641a88b69994f9371bd347f1dd35e5d1e2e2460a2e350c8d5165fc62005/hf_xet-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:2a212e842647b02eb6a911187dc878e79c4aa0aa397e88dd3b26761676e8c1f8", size = 2717699, upload-time = "2025-10-24T19:04:17.306Z" }, { url = "https://files.pythonhosted.org/packages/df/e0/e5e9bba7d15f0318955f7ec3f4af13f92e773fbb368c0b8008a5acbcb12f/hf_xet-1.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:30e06daccb3a7d4c065f34fc26c14c74f4653069bb2b194e7f18f17cbe9939c0", size = 3314885, upload-time = "2025-10-24T19:04:07.642Z" }, @@ -758,6 +933,37 @@ version = "0.13.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/0d/5e/4ec91646aee381d01cdb9974e30882c9cd3b8c5d1079d6b5ff4af522439a/jiter-0.13.0.tar.gz", hash = "sha256:f2839f9c2c7e2dffc1bc5929a510e14ce0a946be9365fd1219e7ef342dae14f4", size = 164847, upload-time = "2026-02-02T12:37:56.441Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/2e/30/7687e4f87086829955013ca12a9233523349767f69653ebc27036313def9/jiter-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:0a2bd69fc1d902e89925fc34d1da51b2128019423d7b339a45d9e99c894e0663", size = 307958, upload-time = "2026-02-02T12:35:57.165Z" }, + { url = "https://files.pythonhosted.org/packages/c3/27/e57f9a783246ed95481e6749cc5002a8a767a73177a83c63ea71f0528b90/jiter-0.13.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f917a04240ef31898182f76a332f508f2cc4b57d2b4d7ad2dbfebbfe167eb505", size = 318597, upload-time = "2026-02-02T12:35:58.591Z" }, + { url = "https://files.pythonhosted.org/packages/cf/52/e5719a60ac5d4d7c5995461a94ad5ef962a37c8bf5b088390e6fad59b2ff/jiter-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1e2b199f446d3e82246b4fd9236d7cb502dc2222b18698ba0d986d2fecc6152", size = 348821, upload-time = "2026-02-02T12:36:00.093Z" }, + { url = "https://files.pythonhosted.org/packages/61/db/c1efc32b8ba4c740ab3fc2d037d8753f67685f475e26b9d6536a4322bcdd/jiter-0.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:04670992b576fa65bd056dbac0c39fe8bd67681c380cb2b48efa885711d9d726", size = 364163, upload-time = "2026-02-02T12:36:01.937Z" }, + { url = "https://files.pythonhosted.org/packages/55/8a/fb75556236047c8806995671a18e4a0ad646ed255276f51a20f32dceaeec/jiter-0.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5a1aff1fbdb803a376d4d22a8f63f8e7ccbce0b4890c26cc7af9e501ab339ef0", size = 483709, upload-time = "2026-02-02T12:36:03.41Z" }, + { url = "https://files.pythonhosted.org/packages/7e/16/43512e6ee863875693a8e6f6d532e19d650779d6ba9a81593ae40a9088ff/jiter-0.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b3fb8c2053acaef8580809ac1d1f7481a0a0bdc012fd7f5d8b18fb696a5a089", size = 370480, upload-time = "2026-02-02T12:36:04.791Z" }, + { url = "https://files.pythonhosted.org/packages/f8/4c/09b93e30e984a187bc8aaa3510e1ec8dcbdcd71ca05d2f56aac0492453aa/jiter-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bdaba7d87e66f26a2c45d8cbadcbfc4bf7884182317907baf39cfe9775bb4d93", size = 360735, upload-time = "2026-02-02T12:36:06.994Z" }, + { url = "https://files.pythonhosted.org/packages/1a/1b/46c5e349019874ec5dfa508c14c37e29864ea108d376ae26d90bee238cd7/jiter-0.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7b88d649135aca526da172e48083da915ec086b54e8e73a425ba50999468cc08", size = 391814, upload-time = "2026-02-02T12:36:08.368Z" }, + { url = "https://files.pythonhosted.org/packages/15/9e/26184760e85baee7162ad37b7912797d2077718476bf91517641c92b3639/jiter-0.13.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:e404ea551d35438013c64b4f357b0474c7abf9f781c06d44fcaf7a14c69ff9e2", size = 513990, upload-time = "2026-02-02T12:36:09.993Z" }, + { url = "https://files.pythonhosted.org/packages/e9/34/2c9355247d6debad57a0a15e76ab1566ab799388042743656e566b3b7de1/jiter-0.13.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1f4748aad1b4a93c8bdd70f604d0f748cdc0e8744c5547798acfa52f10e79228", size = 548021, upload-time = "2026-02-02T12:36:11.376Z" }, + { url = "https://files.pythonhosted.org/packages/ac/4a/9f2c23255d04a834398b9c2e0e665382116911dc4d06b795710503cdad25/jiter-0.13.0-cp312-cp312-win32.whl", hash = "sha256:0bf670e3b1445fc4d31612199f1744f67f889ee1bbae703c4b54dc097e5dd394", size = 203024, upload-time = "2026-02-02T12:36:12.682Z" }, + { url = "https://files.pythonhosted.org/packages/09/ee/f0ae675a957ae5a8f160be3e87acea6b11dc7b89f6b7ab057e77b2d2b13a/jiter-0.13.0-cp312-cp312-win_amd64.whl", hash = "sha256:15db60e121e11fe186c0b15236bd5d18381b9ddacdcf4e659feb96fc6c969c92", size = 205424, upload-time = "2026-02-02T12:36:13.93Z" }, + { url = "https://files.pythonhosted.org/packages/1b/02/ae611edf913d3cbf02c97cdb90374af2082c48d7190d74c1111dde08bcdd/jiter-0.13.0-cp312-cp312-win_arm64.whl", hash = "sha256:41f92313d17989102f3cb5dd533a02787cdb99454d494344b0361355da52fcb9", size = 186818, upload-time = "2026-02-02T12:36:15.308Z" }, + { url = "https://files.pythonhosted.org/packages/91/9c/7ee5a6ff4b9991e1a45263bfc46731634c4a2bde27dfda6c8251df2d958c/jiter-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:1f8a55b848cbabf97d861495cd65f1e5c590246fabca8b48e1747c4dfc8f85bf", size = 306897, upload-time = "2026-02-02T12:36:16.748Z" }, + { url = "https://files.pythonhosted.org/packages/7c/02/be5b870d1d2be5dd6a91bdfb90f248fbb7dcbd21338f092c6b89817c3dbf/jiter-0.13.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f556aa591c00f2c45eb1b89f68f52441a016034d18b65da60e2d2875bbbf344a", size = 317507, upload-time = "2026-02-02T12:36:18.351Z" }, + { url = "https://files.pythonhosted.org/packages/da/92/b25d2ec333615f5f284f3a4024f7ce68cfa0604c322c6808b2344c7f5d2b/jiter-0.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f7e1d61da332ec412350463891923f960c3073cf1aae93b538f0bb4c8cd46efb", size = 350560, upload-time = "2026-02-02T12:36:19.746Z" }, + { url = "https://files.pythonhosted.org/packages/be/ec/74dcb99fef0aca9fbe56b303bf79f6bd839010cb18ad41000bf6cc71eec0/jiter-0.13.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3097d665a27bc96fd9bbf7f86178037db139f319f785e4757ce7ccbf390db6c2", size = 363232, upload-time = "2026-02-02T12:36:21.243Z" }, + { url = "https://files.pythonhosted.org/packages/1b/37/f17375e0bb2f6a812d4dd92d7616e41917f740f3e71343627da9db2824ce/jiter-0.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d01ecc3a8cbdb6f25a37bd500510550b64ddf9f7d64a107d92f3ccb25035d0f", size = 483727, upload-time = "2026-02-02T12:36:22.688Z" }, + { url = "https://files.pythonhosted.org/packages/77/d2/a71160a5ae1a1e66c1395b37ef77da67513b0adba73b993a27fbe47eb048/jiter-0.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ed9bbc30f5d60a3bdf63ae76beb3f9db280d7f195dfcfa61af792d6ce912d159", size = 370799, upload-time = "2026-02-02T12:36:24.106Z" }, + { url = "https://files.pythonhosted.org/packages/01/99/ed5e478ff0eb4e8aa5fd998f9d69603c9fd3f32de3bd16c2b1194f68361c/jiter-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98fbafb6e88256f4454de33c1f40203d09fc33ed19162a68b3b257b29ca7f663", size = 359120, upload-time = "2026-02-02T12:36:25.519Z" }, + { url = "https://files.pythonhosted.org/packages/16/be/7ffd08203277a813f732ba897352797fa9493faf8dc7995b31f3d9cb9488/jiter-0.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5467696f6b827f1116556cb0db620440380434591e93ecee7fd14d1a491b6daa", size = 390664, upload-time = "2026-02-02T12:36:26.866Z" }, + { url = "https://files.pythonhosted.org/packages/d1/84/e0787856196d6d346264d6dcccb01f741e5f0bd014c1d9a2ebe149caf4f3/jiter-0.13.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:2d08c9475d48b92892583df9da592a0e2ac49bcd41fae1fec4f39ba6cf107820", size = 513543, upload-time = "2026-02-02T12:36:28.217Z" }, + { url = "https://files.pythonhosted.org/packages/65/50/ecbd258181c4313cf79bca6c88fb63207d04d5bf5e4f65174114d072aa55/jiter-0.13.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:aed40e099404721d7fcaf5b89bd3b4568a4666358bcac7b6b15c09fb6252ab68", size = 547262, upload-time = "2026-02-02T12:36:29.678Z" }, + { url = "https://files.pythonhosted.org/packages/27/da/68f38d12e7111d2016cd198161b36e1f042bd115c169255bcb7ec823a3bf/jiter-0.13.0-cp313-cp313-win32.whl", hash = "sha256:36ebfbcffafb146d0e6ffb3e74d51e03d9c35ce7c625c8066cdbfc7b953bdc72", size = 200630, upload-time = "2026-02-02T12:36:31.808Z" }, + { url = "https://files.pythonhosted.org/packages/25/65/3bd1a972c9a08ecd22eb3b08a95d1941ebe6938aea620c246cf426ae09c2/jiter-0.13.0-cp313-cp313-win_amd64.whl", hash = "sha256:8d76029f077379374cf0dbc78dbe45b38dec4a2eb78b08b5194ce836b2517afc", size = 202602, upload-time = "2026-02-02T12:36:33.679Z" }, + { url = "https://files.pythonhosted.org/packages/15/fe/13bd3678a311aa67686bb303654792c48206a112068f8b0b21426eb6851e/jiter-0.13.0-cp313-cp313-win_arm64.whl", hash = "sha256:bb7613e1a427cfcb6ea4544f9ac566b93d5bf67e0d48c787eca673ff9c9dff2b", size = 185939, upload-time = "2026-02-02T12:36:35.065Z" }, + { url = "https://files.pythonhosted.org/packages/49/19/a929ec002ad3228bc97ca01dbb14f7632fffdc84a95ec92ceaf4145688ae/jiter-0.13.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:fa476ab5dd49f3bf3a168e05f89358c75a17608dbabb080ef65f96b27c19ab10", size = 316616, upload-time = "2026-02-02T12:36:36.579Z" }, + { url = "https://files.pythonhosted.org/packages/52/56/d19a9a194afa37c1728831e5fb81b7722c3de18a3109e8f282bfc23e587a/jiter-0.13.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ade8cb6ff5632a62b7dbd4757d8c5573f7a2e9ae285d6b5b841707d8363205ef", size = 346850, upload-time = "2026-02-02T12:36:38.058Z" }, + { url = "https://files.pythonhosted.org/packages/36/4a/94e831c6bf287754a8a019cb966ed39ff8be6ab78cadecf08df3bb02d505/jiter-0.13.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9950290340acc1adaded363edd94baebcee7dabdfa8bee4790794cd5cfad2af6", size = 358551, upload-time = "2026-02-02T12:36:39.417Z" }, + { url = "https://files.pythonhosted.org/packages/a2/ec/a4c72c822695fa80e55d2b4142b73f0012035d9fcf90eccc56bc060db37c/jiter-0.13.0-cp313-cp313t-win_amd64.whl", hash = "sha256:2b4972c6df33731aac0742b64fd0d18e0a69bc7d6e03108ce7d40c85fd9e3e6d", size = 201950, upload-time = "2026-02-02T12:36:40.791Z" }, + { url = "https://files.pythonhosted.org/packages/b6/00/393553ec27b824fbc29047e9c7cd4a3951d7fbe4a76743f17e44034fa4e4/jiter-0.13.0-cp313-cp313t-win_arm64.whl", hash = "sha256:701a1e77d1e593c1b435315ff625fd071f0998c5f02792038a5ca98899261b7d", size = 185852, upload-time = "2026-02-02T12:36:42.077Z" }, { url = "https://files.pythonhosted.org/packages/6e/f5/f1997e987211f6f9bd71b8083047b316208b4aca0b529bb5f8c96c89ef3e/jiter-0.13.0-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:cc5223ab19fe25e2f0bf2643204ad7318896fe3729bf12fde41b77bfc4fafff0", size = 308804, upload-time = "2026-02-02T12:36:43.496Z" }, { url = "https://files.pythonhosted.org/packages/cd/8f/5482a7677731fd44881f0204981ce2d7175db271f82cba2085dd2212e095/jiter-0.13.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:9776ebe51713acf438fd9b4405fcd86893ae5d03487546dae7f34993217f8a91", size = 318787, upload-time = "2026-02-02T12:36:45.071Z" }, { url = "https://files.pythonhosted.org/packages/f3/b9/7257ac59778f1cd025b26a23c5520a36a424f7f1b068f2442a5b499b7464/jiter-0.13.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:879e768938e7b49b5e90b7e3fecc0dbec01b8cb89595861fb39a8967c5220d09", size = 353880, upload-time = "2026-02-02T12:36:47.365Z" }, @@ -783,6 +989,10 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/47/66/eea81dfff765ed66c68fd2ed8c96245109e13c896c2a5015c7839c92367e/jiter-0.13.0-cp314-cp314t-win32.whl", hash = "sha256:24dc96eca9f84da4131cdf87a95e6ce36765c3b156fc9ae33280873b1c32d5f6", size = 201196, upload-time = "2026-02-02T12:37:19.101Z" }, { url = "https://files.pythonhosted.org/packages/ff/32/4ac9c7a76402f8f00d00842a7f6b83b284d0cf7c1e9d4227bc95aa6d17fa/jiter-0.13.0-cp314-cp314t-win_amd64.whl", hash = "sha256:0a8d76c7524087272c8ae913f5d9d608bd839154b62c4322ef65723d2e5bb0b8", size = 204215, upload-time = "2026-02-02T12:37:20.495Z" }, { url = "https://files.pythonhosted.org/packages/f9/8e/7def204fea9f9be8b3c21a6f2dd6c020cf56c7d5ff753e0e23ed7f9ea57e/jiter-0.13.0-cp314-cp314t-win_arm64.whl", hash = "sha256:2c26cf47e2cad140fa23b6d58d435a7c0161f5c514284802f25e87fddfe11024", size = 187152, upload-time = "2026-02-02T12:37:22.124Z" }, + { url = "https://files.pythonhosted.org/packages/80/60/e50fa45dd7e2eae049f0ce964663849e897300433921198aef94b6ffa23a/jiter-0.13.0-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl", hash = "sha256:3d744a6061afba08dd7ae375dcde870cffb14429b7477e10f67e9e6d68772a0a", size = 305169, upload-time = "2026-02-02T12:37:50.376Z" }, + { url = "https://files.pythonhosted.org/packages/d2/73/a009f41c5eed71c49bec53036c4b33555afcdee70682a18c6f66e396c039/jiter-0.13.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:ff732bd0a0e778f43d5009840f20b935e79087b4dc65bd36f1cd0f9b04b8ff7f", size = 303808, upload-time = "2026-02-02T12:37:52.092Z" }, + { url = "https://files.pythonhosted.org/packages/c4/10/528b439290763bff3d939268085d03382471b442f212dca4ff5f12802d43/jiter-0.13.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ab44b178f7981fcaea7e0a5df20e773c663d06ffda0198f1a524e91b2fde7e59", size = 337384, upload-time = "2026-02-02T12:37:53.582Z" }, + { url = "https://files.pythonhosted.org/packages/67/8a/a342b2f0251f3dac4ca17618265d93bf244a2a4d089126e81e4c1056ac50/jiter-0.13.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bb00b6d26db67a05fe3e12c76edc75f32077fb51deed13822dc648fa373bc19", size = 343768, upload-time = "2026-02-02T12:37:55.055Z" }, ] [[package]] @@ -882,6 +1092,28 @@ version = "2.6" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/b8/1c/191c3e6ec6502e3dbe25a53e27f69a5daeac3e56de1f73c0138224171ead/lupa-2.6.tar.gz", hash = "sha256:9a770a6e89576be3447668d7ced312cd6fd41d3c13c2462c9dc2c2ab570e45d9", size = 7240282, upload-time = "2025-10-24T07:20:29.738Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/94/86/ce243390535c39d53ea17ccf0240815e6e457e413e40428a658ea4ee4b8d/lupa-2.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:47ce718817ef1cc0c40d87c3d5ae56a800d61af00fbc0fad1ca9be12df2f3b56", size = 951707, upload-time = "2025-10-24T07:18:03.884Z" }, + { url = "https://files.pythonhosted.org/packages/86/85/cedea5e6cbeb54396fdcc55f6b741696f3f036d23cfaf986d50d680446da/lupa-2.6-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:7aba985b15b101495aa4b07112cdc08baa0c545390d560ad5cfde2e9e34f4d58", size = 1916703, upload-time = "2025-10-24T07:18:05.6Z" }, + { url = "https://files.pythonhosted.org/packages/24/be/3d6b5f9a8588c01a4d88129284c726017b2089f3a3fd3ba8bd977292fea0/lupa-2.6-cp312-cp312-macosx_11_0_x86_64.whl", hash = "sha256:b766f62f95b2739f2248977d29b0722e589dcf4f0ccfa827ccbd29f0148bd2e5", size = 985152, upload-time = "2025-10-24T07:18:08.561Z" }, + { url = "https://files.pythonhosted.org/packages/eb/23/9f9a05beee5d5dce9deca4cb07c91c40a90541fc0a8e09db4ee670da550f/lupa-2.6-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl", hash = "sha256:00a934c23331f94cb51760097ebfab14b005d55a6b30a2b480e3c53dd2fa290d", size = 1159599, upload-time = "2025-10-24T07:18:10.346Z" }, + { url = "https://files.pythonhosted.org/packages/40/4e/e7c0583083db9d7f1fd023800a9767d8e4391e8330d56c2373d890ac971b/lupa-2.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:21de9f38bd475303e34a042b7081aabdf50bd9bafd36ce4faea2f90fd9f15c31", size = 1038686, upload-time = "2025-10-24T07:18:12.112Z" }, + { url = "https://files.pythonhosted.org/packages/1c/9f/5a4f7d959d4feba5e203ff0c31889e74d1ca3153122be4a46dca7d92bf7c/lupa-2.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cf3bda96d3fc41237e964a69c23647d50d4e28421111360274d4799832c560e9", size = 2071956, upload-time = "2025-10-24T07:18:14.572Z" }, + { url = "https://files.pythonhosted.org/packages/92/34/2f4f13ca65d01169b1720176aedc4af17bc19ee834598c7292db232cb6dc/lupa-2.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5a76ead245da54801a81053794aa3975f213221f6542d14ec4b859ee2e7e0323", size = 1057199, upload-time = "2025-10-24T07:18:16.379Z" }, + { url = "https://files.pythonhosted.org/packages/35/2a/5f7d2eebec6993b0dcd428e0184ad71afb06a45ba13e717f6501bfed1da3/lupa-2.6-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:8dd0861741caa20886ddbda0a121d8e52fb9b5bb153d82fa9bba796962bf30e8", size = 1173693, upload-time = "2025-10-24T07:18:18.153Z" }, + { url = "https://files.pythonhosted.org/packages/e4/29/089b4d2f8e34417349af3904bb40bec40b65c8731f45e3fd8d497ca573e5/lupa-2.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:239e63948b0b23023f81d9a19a395e768ed3da6a299f84e7963b8f813f6e3f9c", size = 2164394, upload-time = "2025-10-24T07:18:20.403Z" }, + { url = "https://files.pythonhosted.org/packages/f3/1b/79c17b23c921f81468a111cad843b076a17ef4b684c4a8dff32a7969c3f0/lupa-2.6-cp312-cp312-win32.whl", hash = "sha256:325894e1099499e7a6f9c351147661a2011887603c71086d36fe0f964d52d1ce", size = 1420647, upload-time = "2025-10-24T07:18:23.368Z" }, + { url = "https://files.pythonhosted.org/packages/b8/15/5121e68aad3584e26e1425a5c9a79cd898f8a152292059e128c206ee817c/lupa-2.6-cp312-cp312-win_amd64.whl", hash = "sha256:c735a1ce8ee60edb0fe71d665f1e6b7c55c6021f1d340eb8c865952c602cd36f", size = 1688529, upload-time = "2025-10-24T07:18:25.523Z" }, + { url = "https://files.pythonhosted.org/packages/28/1d/21176b682ca5469001199d8b95fa1737e29957a3d185186e7a8b55345f2e/lupa-2.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:663a6e58a0f60e7d212017d6678639ac8df0119bc13c2145029dcba084391310", size = 947232, upload-time = "2025-10-24T07:18:27.878Z" }, + { url = "https://files.pythonhosted.org/packages/ce/4c/d327befb684660ca13cf79cd1f1d604331808f9f1b6fb6bf57832f8edf80/lupa-2.6-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:d1f5afda5c20b1f3217a80e9bc1b77037f8a6eb11612fd3ada19065303c8f380", size = 1908625, upload-time = "2025-10-24T07:18:29.944Z" }, + { url = "https://files.pythonhosted.org/packages/66/8e/ad22b0a19454dfd08662237a84c792d6d420d36b061f239e084f29d1a4f3/lupa-2.6-cp313-cp313-macosx_11_0_x86_64.whl", hash = "sha256:26f2b3c085fe76e9119e48c1013c1cccdc1f51585d456858290475aa38e7089e", size = 981057, upload-time = "2025-10-24T07:18:31.553Z" }, + { url = "https://files.pythonhosted.org/packages/5c/48/74859073ab276bd0566c719f9ca0108b0cfc1956ca0d68678d117d47d155/lupa-2.6-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl", hash = "sha256:60d2f902c7b96fb8ab98493dcff315e7bb4d0b44dc9dd76eb37de575025d5685", size = 1156227, upload-time = "2025-10-24T07:18:33.981Z" }, + { url = "https://files.pythonhosted.org/packages/09/6c/0e9ded061916877253c2266074060eb71ed99fb21d73c8c114a76725bce2/lupa-2.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a02d25dee3a3250967c36590128d9220ae02f2eda166a24279da0b481519cbff", size = 1035752, upload-time = "2025-10-24T07:18:36.32Z" }, + { url = "https://files.pythonhosted.org/packages/dd/ef/f8c32e454ef9f3fe909f6c7d57a39f950996c37a3deb7b391fec7903dab7/lupa-2.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6eae1ee16b886b8914ff292dbefbf2f48abfbdee94b33a88d1d5475e02423203", size = 2069009, upload-time = "2025-10-24T07:18:38.072Z" }, + { url = "https://files.pythonhosted.org/packages/53/dc/15b80c226a5225815a890ee1c11f07968e0aba7a852df41e8ae6fe285063/lupa-2.6-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b0edd5073a4ee74ab36f74fe61450148e6044f3952b8d21248581f3c5d1a58be", size = 1056301, upload-time = "2025-10-24T07:18:40.165Z" }, + { url = "https://files.pythonhosted.org/packages/31/14/2086c1425c985acfb30997a67e90c39457122df41324d3c179d6ee2292c6/lupa-2.6-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:0c53ee9f22a8a17e7d4266ad48e86f43771951797042dd51d1494aaa4f5f3f0a", size = 1170673, upload-time = "2025-10-24T07:18:42.426Z" }, + { url = "https://files.pythonhosted.org/packages/10/e5/b216c054cf86576c0191bf9a9f05de6f7e8e07164897d95eea0078dca9b2/lupa-2.6-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:de7c0f157a9064a400d828789191a96da7f4ce889969a588b87ec80de9b14772", size = 2162227, upload-time = "2025-10-24T07:18:46.112Z" }, + { url = "https://files.pythonhosted.org/packages/59/2f/33ecb5bedf4f3bc297ceacb7f016ff951331d352f58e7e791589609ea306/lupa-2.6-cp313-cp313-win32.whl", hash = "sha256:ee9523941ae0a87b5b703417720c5d78f72d2f5bc23883a2ea80a949a3ed9e75", size = 1419558, upload-time = "2025-10-24T07:18:48.371Z" }, + { url = "https://files.pythonhosted.org/packages/f9/b4/55e885834c847ea610e111d87b9ed4768f0afdaeebc00cd46810f25029f6/lupa-2.6-cp313-cp313-win_amd64.whl", hash = "sha256:b1335a5835b0a25ebdbc75cf0bda195e54d133e4d994877ef025e218c2e59db9", size = 1683424, upload-time = "2025-10-24T07:18:50.976Z" }, { url = "https://files.pythonhosted.org/packages/66/9d/d9427394e54d22a35d1139ef12e845fd700d4872a67a34db32516170b746/lupa-2.6-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:dcb6d0a3264873e1653bc188499f48c1fb4b41a779e315eba45256cfe7bc33c1", size = 953818, upload-time = "2025-10-24T07:18:53.378Z" }, { url = "https://files.pythonhosted.org/packages/10/41/27bbe81953fb2f9ecfced5d9c99f85b37964cfaf6aa8453bb11283983721/lupa-2.6-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:a37e01f2128f8c36106726cb9d360bac087d58c54b4522b033cc5691c584db18", size = 1915850, upload-time = "2025-10-24T07:18:55.259Z" }, { url = "https://files.pythonhosted.org/packages/a3/98/f9ff60db84a75ba8725506bbf448fb085bc77868a021998ed2a66d920568/lupa-2.6-cp314-cp314-macosx_11_0_x86_64.whl", hash = "sha256:458bd7e9ff3c150b245b0fcfbb9bd2593d1152ea7f0a7b91c1d185846da033fe", size = 982344, upload-time = "2025-10-24T07:18:57.05Z" }, @@ -924,6 +1156,39 @@ version = "3.0.3" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/72/147da192e38635ada20e0a2e1a51cf8823d2119ce8883f7053879c2199b5/markupsafe-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d53197da72cc091b024dd97249dfc7794d6a56530370992a5e1a08983ad9230e", size = 11615, upload-time = "2025-09-27T18:36:30.854Z" }, + { url = "https://files.pythonhosted.org/packages/9a/81/7e4e08678a1f98521201c3079f77db69fb552acd56067661f8c2f534a718/markupsafe-3.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1872df69a4de6aead3491198eaf13810b565bdbeec3ae2dc8780f14458ec73ce", size = 12020, upload-time = "2025-09-27T18:36:31.971Z" }, + { url = "https://files.pythonhosted.org/packages/1e/2c/799f4742efc39633a1b54a92eec4082e4f815314869865d876824c257c1e/markupsafe-3.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3a7e8ae81ae39e62a41ec302f972ba6ae23a5c5396c8e60113e9066ef893da0d", size = 24332, upload-time = "2025-09-27T18:36:32.813Z" }, + { url = "https://files.pythonhosted.org/packages/3c/2e/8d0c2ab90a8c1d9a24f0399058ab8519a3279d1bd4289511d74e909f060e/markupsafe-3.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d6dd0be5b5b189d31db7cda48b91d7e0a9795f31430b7f271219ab30f1d3ac9d", size = 22947, upload-time = "2025-09-27T18:36:33.86Z" }, + { url = "https://files.pythonhosted.org/packages/2c/54/887f3092a85238093a0b2154bd629c89444f395618842e8b0c41783898ea/markupsafe-3.0.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:94c6f0bb423f739146aec64595853541634bde58b2135f27f61c1ffd1cd4d16a", size = 21962, upload-time = "2025-09-27T18:36:35.099Z" }, + { url = "https://files.pythonhosted.org/packages/c9/2f/336b8c7b6f4a4d95e91119dc8521402461b74a485558d8f238a68312f11c/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:be8813b57049a7dc738189df53d69395eba14fb99345e0a5994914a3864c8a4b", size = 23760, upload-time = "2025-09-27T18:36:36.001Z" }, + { url = "https://files.pythonhosted.org/packages/32/43/67935f2b7e4982ffb50a4d169b724d74b62a3964bc1a9a527f5ac4f1ee2b/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:83891d0e9fb81a825d9a6d61e3f07550ca70a076484292a70fde82c4b807286f", size = 21529, upload-time = "2025-09-27T18:36:36.906Z" }, + { url = "https://files.pythonhosted.org/packages/89/e0/4486f11e51bbba8b0c041098859e869e304d1c261e59244baa3d295d47b7/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:77f0643abe7495da77fb436f50f8dab76dbc6e5fd25d39589a0f1fe6548bfa2b", size = 23015, upload-time = "2025-09-27T18:36:37.868Z" }, + { url = "https://files.pythonhosted.org/packages/2f/e1/78ee7a023dac597a5825441ebd17170785a9dab23de95d2c7508ade94e0e/markupsafe-3.0.3-cp312-cp312-win32.whl", hash = "sha256:d88b440e37a16e651bda4c7c2b930eb586fd15ca7406cb39e211fcff3bf3017d", size = 14540, upload-time = "2025-09-27T18:36:38.761Z" }, + { url = "https://files.pythonhosted.org/packages/aa/5b/bec5aa9bbbb2c946ca2733ef9c4ca91c91b6a24580193e891b5f7dbe8e1e/markupsafe-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:26a5784ded40c9e318cfc2bdb30fe164bdb8665ded9cd64d500a34fb42067b1c", size = 15105, upload-time = "2025-09-27T18:36:39.701Z" }, + { url = "https://files.pythonhosted.org/packages/e5/f1/216fc1bbfd74011693a4fd837e7026152e89c4bcf3e77b6692fba9923123/markupsafe-3.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:35add3b638a5d900e807944a078b51922212fb3dedb01633a8defc4b01a3c85f", size = 13906, upload-time = "2025-09-27T18:36:40.689Z" }, + { url = "https://files.pythonhosted.org/packages/38/2f/907b9c7bbba283e68f20259574b13d005c121a0fa4c175f9bed27c4597ff/markupsafe-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795", size = 11622, upload-time = "2025-09-27T18:36:41.777Z" }, + { url = "https://files.pythonhosted.org/packages/9c/d9/5f7756922cdd676869eca1c4e3c0cd0df60ed30199ffd775e319089cb3ed/markupsafe-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219", size = 12029, upload-time = "2025-09-27T18:36:43.257Z" }, + { url = "https://files.pythonhosted.org/packages/00/07/575a68c754943058c78f30db02ee03a64b3c638586fba6a6dd56830b30a3/markupsafe-3.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6", size = 24374, upload-time = "2025-09-27T18:36:44.508Z" }, + { url = "https://files.pythonhosted.org/packages/a9/21/9b05698b46f218fc0e118e1f8168395c65c8a2c750ae2bab54fc4bd4e0e8/markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676", size = 22980, upload-time = "2025-09-27T18:36:45.385Z" }, + { url = "https://files.pythonhosted.org/packages/7f/71/544260864f893f18b6827315b988c146b559391e6e7e8f7252839b1b846a/markupsafe-3.0.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9", size = 21990, upload-time = "2025-09-27T18:36:46.916Z" }, + { url = "https://files.pythonhosted.org/packages/c2/28/b50fc2f74d1ad761af2f5dcce7492648b983d00a65b8c0e0cb457c82ebbe/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1", size = 23784, upload-time = "2025-09-27T18:36:47.884Z" }, + { url = "https://files.pythonhosted.org/packages/ed/76/104b2aa106a208da8b17a2fb72e033a5a9d7073c68f7e508b94916ed47a9/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc", size = 21588, upload-time = "2025-09-27T18:36:48.82Z" }, + { url = "https://files.pythonhosted.org/packages/b5/99/16a5eb2d140087ebd97180d95249b00a03aa87e29cc224056274f2e45fd6/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12", size = 23041, upload-time = "2025-09-27T18:36:49.797Z" }, + { url = "https://files.pythonhosted.org/packages/19/bc/e7140ed90c5d61d77cea142eed9f9c303f4c4806f60a1044c13e3f1471d0/markupsafe-3.0.3-cp313-cp313-win32.whl", hash = "sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed", size = 14543, upload-time = "2025-09-27T18:36:51.584Z" }, + { url = "https://files.pythonhosted.org/packages/05/73/c4abe620b841b6b791f2edc248f556900667a5a1cf023a6646967ae98335/markupsafe-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5", size = 15113, upload-time = "2025-09-27T18:36:52.537Z" }, + { url = "https://files.pythonhosted.org/packages/f0/3a/fa34a0f7cfef23cf9500d68cb7c32dd64ffd58a12b09225fb03dd37d5b80/markupsafe-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485", size = 13911, upload-time = "2025-09-27T18:36:53.513Z" }, + { url = "https://files.pythonhosted.org/packages/e4/d7/e05cd7efe43a88a17a37b3ae96e79a19e846f3f456fe79c57ca61356ef01/markupsafe-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73", size = 11658, upload-time = "2025-09-27T18:36:54.819Z" }, + { url = "https://files.pythonhosted.org/packages/99/9e/e412117548182ce2148bdeacdda3bb494260c0b0184360fe0d56389b523b/markupsafe-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37", size = 12066, upload-time = "2025-09-27T18:36:55.714Z" }, + { url = "https://files.pythonhosted.org/packages/bc/e6/fa0ffcda717ef64a5108eaa7b4f5ed28d56122c9a6d70ab8b72f9f715c80/markupsafe-3.0.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19", size = 25639, upload-time = "2025-09-27T18:36:56.908Z" }, + { url = "https://files.pythonhosted.org/packages/96/ec/2102e881fe9d25fc16cb4b25d5f5cde50970967ffa5dddafdb771237062d/markupsafe-3.0.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025", size = 23569, upload-time = "2025-09-27T18:36:57.913Z" }, + { url = "https://files.pythonhosted.org/packages/4b/30/6f2fce1f1f205fc9323255b216ca8a235b15860c34b6798f810f05828e32/markupsafe-3.0.3-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6", size = 23284, upload-time = "2025-09-27T18:36:58.833Z" }, + { url = "https://files.pythonhosted.org/packages/58/47/4a0ccea4ab9f5dcb6f79c0236d954acb382202721e704223a8aafa38b5c8/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f", size = 24801, upload-time = "2025-09-27T18:36:59.739Z" }, + { url = "https://files.pythonhosted.org/packages/6a/70/3780e9b72180b6fecb83a4814d84c3bf4b4ae4bf0b19c27196104149734c/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb", size = 22769, upload-time = "2025-09-27T18:37:00.719Z" }, + { url = "https://files.pythonhosted.org/packages/98/c5/c03c7f4125180fc215220c035beac6b9cb684bc7a067c84fc69414d315f5/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009", size = 23642, upload-time = "2025-09-27T18:37:01.673Z" }, + { url = "https://files.pythonhosted.org/packages/80/d6/2d1b89f6ca4bff1036499b1e29a1d02d282259f3681540e16563f27ebc23/markupsafe-3.0.3-cp313-cp313t-win32.whl", hash = "sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354", size = 14612, upload-time = "2025-09-27T18:37:02.639Z" }, + { url = "https://files.pythonhosted.org/packages/2b/98/e48a4bfba0a0ffcf9925fe2d69240bfaa19c6f7507b8cd09c70684a53c1e/markupsafe-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218", size = 15200, upload-time = "2025-09-27T18:37:03.582Z" }, + { url = "https://files.pythonhosted.org/packages/0e/72/e3cc540f351f316e9ed0f092757459afbc595824ca724cbc5a5d4263713f/markupsafe-3.0.3-cp313-cp313t-win_arm64.whl", hash = "sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287", size = 13973, upload-time = "2025-09-27T18:37:04.929Z" }, { url = "https://files.pythonhosted.org/packages/33/8a/8e42d4838cd89b7dde187011e97fe6c3af66d8c044997d2183fbd6d31352/markupsafe-3.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe", size = 11619, upload-time = "2025-09-27T18:37:06.342Z" }, { url = "https://files.pythonhosted.org/packages/b5/64/7660f8a4a8e53c924d0fa05dc3a55c9cee10bbd82b11c5afb27d44b096ce/markupsafe-3.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026", size = 12029, upload-time = "2025-09-27T18:37:07.213Z" }, { url = "https://files.pythonhosted.org/packages/da/ef/e648bfd021127bef5fa12e1720ffed0c6cbb8310c8d9bea7266337ff06de/markupsafe-3.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737", size = 24408, upload-time = "2025-09-27T18:37:09.572Z" }, @@ -1003,6 +1268,60 @@ version = "6.7.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/1a/c2/c2d94cbe6ac1753f3fc980da97b3d930efe1da3af3c9f5125354436c073d/multidict-6.7.1.tar.gz", hash = "sha256:ec6652a1bee61c53a3e5776b6049172c53b6aaba34f18c9ad04f82712bac623d", size = 102010, upload-time = "2026-01-26T02:46:45.979Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/9c/f20e0e2cf80e4b2e4b1c365bf5fe104ee633c751a724246262db8f1a0b13/multidict-6.7.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:a90f75c956e32891a4eda3639ce6dd86e87105271f43d43442a3aedf3cddf172", size = 76893, upload-time = "2026-01-26T02:43:52.754Z" }, + { url = "https://files.pythonhosted.org/packages/fe/cf/18ef143a81610136d3da8193da9d80bfe1cb548a1e2d1c775f26b23d024a/multidict-6.7.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fccb473e87eaa1382689053e4a4618e7ba7b9b9b8d6adf2027ee474597128cd", size = 45456, upload-time = "2026-01-26T02:43:53.893Z" }, + { url = "https://files.pythonhosted.org/packages/a9/65/1caac9d4cd32e8433908683446eebc953e82d22b03d10d41a5f0fefe991b/multidict-6.7.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b0fa96985700739c4c7853a43c0b3e169360d6855780021bfc6d0f1ce7c123e7", size = 43872, upload-time = "2026-01-26T02:43:55.041Z" }, + { url = "https://files.pythonhosted.org/packages/cf/3b/d6bd75dc4f3ff7c73766e04e705b00ed6dbbaccf670d9e05a12b006f5a21/multidict-6.7.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:cb2a55f408c3043e42b40cc8eecd575afa27b7e0b956dfb190de0f8499a57a53", size = 251018, upload-time = "2026-01-26T02:43:56.198Z" }, + { url = "https://files.pythonhosted.org/packages/fd/80/c959c5933adedb9ac15152e4067c702a808ea183a8b64cf8f31af8ad3155/multidict-6.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eb0ce7b2a32d09892b3dd6cc44877a0d02a33241fafca5f25c8b6b62374f8b75", size = 258883, upload-time = "2026-01-26T02:43:57.499Z" }, + { url = "https://files.pythonhosted.org/packages/86/85/7ed40adafea3d4f1c8b916e3b5cc3a8e07dfcdcb9cd72800f4ed3ca1b387/multidict-6.7.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c3a32d23520ee37bf327d1e1a656fec76a2edd5c038bf43eddfa0572ec49c60b", size = 242413, upload-time = "2026-01-26T02:43:58.755Z" }, + { url = "https://files.pythonhosted.org/packages/d2/57/b8565ff533e48595503c785f8361ff9a4fde4d67de25c207cd0ba3befd03/multidict-6.7.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9c90fed18bffc0189ba814749fdcc102b536e83a9f738a9003e569acd540a733", size = 268404, upload-time = "2026-01-26T02:44:00.216Z" }, + { url = "https://files.pythonhosted.org/packages/e0/50/9810c5c29350f7258180dfdcb2e52783a0632862eb334c4896ac717cebcb/multidict-6.7.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:da62917e6076f512daccfbbde27f46fed1c98fee202f0559adec8ee0de67f71a", size = 269456, upload-time = "2026-01-26T02:44:02.202Z" }, + { url = "https://files.pythonhosted.org/packages/f3/8d/5e5be3ced1d12966fefb5c4ea3b2a5b480afcea36406559442c6e31d4a48/multidict-6.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bfde23ef6ed9db7eaee6c37dcec08524cb43903c60b285b172b6c094711b3961", size = 256322, upload-time = "2026-01-26T02:44:03.56Z" }, + { url = "https://files.pythonhosted.org/packages/31/6e/d8a26d81ac166a5592782d208dd90dfdc0a7a218adaa52b45a672b46c122/multidict-6.7.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3758692429e4e32f1ba0df23219cd0b4fc0a52f476726fff9337d1a57676a582", size = 253955, upload-time = "2026-01-26T02:44:04.845Z" }, + { url = "https://files.pythonhosted.org/packages/59/4c/7c672c8aad41534ba619bcd4ade7a0dc87ed6b8b5c06149b85d3dd03f0cd/multidict-6.7.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:398c1478926eca669f2fd6a5856b6de9c0acf23a2cb59a14c0ba5844fa38077e", size = 251254, upload-time = "2026-01-26T02:44:06.133Z" }, + { url = "https://files.pythonhosted.org/packages/7b/bd/84c24de512cbafbdbc39439f74e967f19570ce7924e3007174a29c348916/multidict-6.7.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c102791b1c4f3ab36ce4101154549105a53dc828f016356b3e3bcae2e3a039d3", size = 252059, upload-time = "2026-01-26T02:44:07.518Z" }, + { url = "https://files.pythonhosted.org/packages/fa/ba/f5449385510825b73d01c2d4087bf6d2fccc20a2d42ac34df93191d3dd03/multidict-6.7.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:a088b62bd733e2ad12c50dad01b7d0166c30287c166e137433d3b410add807a6", size = 263588, upload-time = "2026-01-26T02:44:09.382Z" }, + { url = "https://files.pythonhosted.org/packages/d7/11/afc7c677f68f75c84a69fe37184f0f82fce13ce4b92f49f3db280b7e92b3/multidict-6.7.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3d51ff4785d58d3f6c91bdbffcb5e1f7ddfda557727043aa20d20ec4f65e324a", size = 259642, upload-time = "2026-01-26T02:44:10.73Z" }, + { url = "https://files.pythonhosted.org/packages/2b/17/ebb9644da78c4ab36403739e0e6e0e30ebb135b9caf3440825001a0bddcb/multidict-6.7.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fc5907494fccf3e7d3f94f95c91d6336b092b5fc83811720fae5e2765890dfba", size = 251377, upload-time = "2026-01-26T02:44:12.042Z" }, + { url = "https://files.pythonhosted.org/packages/ca/a4/840f5b97339e27846c46307f2530a2805d9d537d8b8bd416af031cad7fa0/multidict-6.7.1-cp312-cp312-win32.whl", hash = "sha256:28ca5ce2fd9716631133d0e9a9b9a745ad7f60bac2bccafb56aa380fc0b6c511", size = 41887, upload-time = "2026-01-26T02:44:14.245Z" }, + { url = "https://files.pythonhosted.org/packages/80/31/0b2517913687895f5904325c2069d6a3b78f66cc641a86a2baf75a05dcbb/multidict-6.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:fcee94dfbd638784645b066074b338bc9cc155d4b4bffa4adce1615c5a426c19", size = 46053, upload-time = "2026-01-26T02:44:15.371Z" }, + { url = "https://files.pythonhosted.org/packages/0c/5b/aba28e4ee4006ae4c7df8d327d31025d760ffa992ea23812a601d226e682/multidict-6.7.1-cp312-cp312-win_arm64.whl", hash = "sha256:ba0a9fb644d0c1a2194cf7ffb043bd852cea63a57f66fbd33959f7dae18517bf", size = 43307, upload-time = "2026-01-26T02:44:16.852Z" }, + { url = "https://files.pythonhosted.org/packages/f2/22/929c141d6c0dba87d3e1d38fbdf1ba8baba86b7776469f2bc2d3227a1e67/multidict-6.7.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2b41f5fed0ed563624f1c17630cb9941cf2309d4df00e494b551b5f3e3d67a23", size = 76174, upload-time = "2026-01-26T02:44:18.509Z" }, + { url = "https://files.pythonhosted.org/packages/c7/75/bc704ae15fee974f8fccd871305e254754167dce5f9e42d88a2def741a1d/multidict-6.7.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:84e61e3af5463c19b67ced91f6c634effb89ef8bfc5ca0267f954451ed4bb6a2", size = 45116, upload-time = "2026-01-26T02:44:19.745Z" }, + { url = "https://files.pythonhosted.org/packages/79/76/55cd7186f498ed080a18440c9013011eb548f77ae1b297206d030eb1180a/multidict-6.7.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:935434b9853c7c112eee7ac891bc4cb86455aa631269ae35442cb316790c1445", size = 43524, upload-time = "2026-01-26T02:44:21.571Z" }, + { url = "https://files.pythonhosted.org/packages/e9/3c/414842ef8d5a1628d68edee29ba0e5bcf235dbfb3ccd3ea303a7fe8c72ff/multidict-6.7.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:432feb25a1cb67fe82a9680b4d65fb542e4635cb3166cd9c01560651ad60f177", size = 249368, upload-time = "2026-01-26T02:44:22.803Z" }, + { url = "https://files.pythonhosted.org/packages/f6/32/befed7f74c458b4a525e60519fe8d87eef72bb1e99924fa2b0f9d97a221e/multidict-6.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e82d14e3c948952a1a85503817e038cba5905a3352de76b9a465075d072fba23", size = 256952, upload-time = "2026-01-26T02:44:24.306Z" }, + { url = "https://files.pythonhosted.org/packages/03/d6/c878a44ba877f366630c860fdf74bfb203c33778f12b6ac274936853c451/multidict-6.7.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:4cfb48c6ea66c83bcaaf7e4dfa7ec1b6bbcf751b7db85a328902796dfde4c060", size = 240317, upload-time = "2026-01-26T02:44:25.772Z" }, + { url = "https://files.pythonhosted.org/packages/68/49/57421b4d7ad2e9e60e25922b08ceb37e077b90444bde6ead629095327a6f/multidict-6.7.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1d540e51b7e8e170174555edecddbd5538105443754539193e3e1061864d444d", size = 267132, upload-time = "2026-01-26T02:44:27.648Z" }, + { url = "https://files.pythonhosted.org/packages/b7/fe/ec0edd52ddbcea2a2e89e174f0206444a61440b40f39704e64dc807a70bd/multidict-6.7.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:273d23f4b40f3dce4d6c8a821c741a86dec62cded82e1175ba3d99be128147ed", size = 268140, upload-time = "2026-01-26T02:44:29.588Z" }, + { url = "https://files.pythonhosted.org/packages/b0/73/6e1b01cbeb458807aa0831742232dbdd1fa92bfa33f52a3f176b4ff3dc11/multidict-6.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d624335fd4fa1c08a53f8b4be7676ebde19cd092b3895c421045ca87895b429", size = 254277, upload-time = "2026-01-26T02:44:30.902Z" }, + { url = "https://files.pythonhosted.org/packages/6a/b2/5fb8c124d7561a4974c342bc8c778b471ebbeb3cc17df696f034a7e9afe7/multidict-6.7.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:12fad252f8b267cc75b66e8fc51b3079604e8d43a75428ffe193cd9e2195dfd6", size = 252291, upload-time = "2026-01-26T02:44:32.31Z" }, + { url = "https://files.pythonhosted.org/packages/5a/96/51d4e4e06bcce92577fcd488e22600bd38e4fd59c20cb49434d054903bd2/multidict-6.7.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:03ede2a6ffbe8ef936b92cb4529f27f42be7f56afcdab5ab739cd5f27fb1cbf9", size = 250156, upload-time = "2026-01-26T02:44:33.734Z" }, + { url = "https://files.pythonhosted.org/packages/db/6b/420e173eec5fba721a50e2a9f89eda89d9c98fded1124f8d5c675f7a0c0f/multidict-6.7.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:90efbcf47dbe33dcf643a1e400d67d59abeac5db07dc3f27d6bdeae497a2198c", size = 249742, upload-time = "2026-01-26T02:44:35.222Z" }, + { url = "https://files.pythonhosted.org/packages/44/a3/ec5b5bd98f306bc2aa297b8c6f11a46714a56b1e6ef5ebda50a4f5d7c5fb/multidict-6.7.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:5c4b9bfc148f5a91be9244d6264c53035c8a0dcd2f51f1c3c6e30e30ebaa1c84", size = 262221, upload-time = "2026-01-26T02:44:36.604Z" }, + { url = "https://files.pythonhosted.org/packages/cd/f7/e8c0d0da0cd1e28d10e624604e1a36bcc3353aaebdfdc3a43c72bc683a12/multidict-6.7.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:401c5a650f3add2472d1d288c26deebc540f99e2fb83e9525007a74cd2116f1d", size = 258664, upload-time = "2026-01-26T02:44:38.008Z" }, + { url = "https://files.pythonhosted.org/packages/52/da/151a44e8016dd33feed44f730bd856a66257c1ee7aed4f44b649fb7edeb3/multidict-6.7.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:97891f3b1b3ffbded884e2916cacf3c6fc87b66bb0dde46f7357404750559f33", size = 249490, upload-time = "2026-01-26T02:44:39.386Z" }, + { url = "https://files.pythonhosted.org/packages/87/af/a3b86bf9630b732897f6fc3f4c4714b90aa4361983ccbdcd6c0339b21b0c/multidict-6.7.1-cp313-cp313-win32.whl", hash = "sha256:e1c5988359516095535c4301af38d8a8838534158f649c05dd1050222321bcb3", size = 41695, upload-time = "2026-01-26T02:44:41.318Z" }, + { url = "https://files.pythonhosted.org/packages/b2/35/e994121b0e90e46134673422dd564623f93304614f5d11886b1b3e06f503/multidict-6.7.1-cp313-cp313-win_amd64.whl", hash = "sha256:960c83bf01a95b12b08fd54324a4eb1d5b52c88932b5cba5d6e712bb3ed12eb5", size = 45884, upload-time = "2026-01-26T02:44:42.488Z" }, + { url = "https://files.pythonhosted.org/packages/ca/61/42d3e5dbf661242a69c97ea363f2d7b46c567da8eadef8890022be6e2ab0/multidict-6.7.1-cp313-cp313-win_arm64.whl", hash = "sha256:563fe25c678aaba333d5399408f5ec3c383ca5b663e7f774dd179a520b8144df", size = 43122, upload-time = "2026-01-26T02:44:43.664Z" }, + { url = "https://files.pythonhosted.org/packages/6d/b3/e6b21c6c4f314bb956016b0b3ef2162590a529b84cb831c257519e7fde44/multidict-6.7.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:c76c4bec1538375dad9d452d246ca5368ad6e1c9039dadcf007ae59c70619ea1", size = 83175, upload-time = "2026-01-26T02:44:44.894Z" }, + { url = "https://files.pythonhosted.org/packages/fb/76/23ecd2abfe0957b234f6c960f4ade497f55f2c16aeb684d4ecdbf1c95791/multidict-6.7.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:57b46b24b5d5ebcc978da4ec23a819a9402b4228b8a90d9c656422b4bdd8a963", size = 48460, upload-time = "2026-01-26T02:44:46.106Z" }, + { url = "https://files.pythonhosted.org/packages/c4/57/a0ed92b23f3a042c36bc4227b72b97eca803f5f1801c1ab77c8a212d455e/multidict-6.7.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e954b24433c768ce78ab7929e84ccf3422e46deb45a4dc9f93438f8217fa2d34", size = 46930, upload-time = "2026-01-26T02:44:47.278Z" }, + { url = "https://files.pythonhosted.org/packages/b5/66/02ec7ace29162e447f6382c495dc95826bf931d3818799bbef11e8f7df1a/multidict-6.7.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:3bd231490fa7217cc832528e1cd8752a96f0125ddd2b5749390f7c3ec8721b65", size = 242582, upload-time = "2026-01-26T02:44:48.604Z" }, + { url = "https://files.pythonhosted.org/packages/58/18/64f5a795e7677670e872673aca234162514696274597b3708b2c0d276cce/multidict-6.7.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:253282d70d67885a15c8a7716f3a73edf2d635793ceda8173b9ecc21f2fb8292", size = 250031, upload-time = "2026-01-26T02:44:50.544Z" }, + { url = "https://files.pythonhosted.org/packages/c8/ed/e192291dbbe51a8290c5686f482084d31bcd9d09af24f63358c3d42fd284/multidict-6.7.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:0b4c48648d7649c9335cf1927a8b87fa692de3dcb15faa676c6a6f1f1aabda43", size = 228596, upload-time = "2026-01-26T02:44:51.951Z" }, + { url = "https://files.pythonhosted.org/packages/1e/7e/3562a15a60cf747397e7f2180b0a11dc0c38d9175a650e75fa1b4d325e15/multidict-6.7.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:98bc624954ec4d2c7cb074b8eefc2b5d0ce7d482e410df446414355d158fe4ca", size = 257492, upload-time = "2026-01-26T02:44:53.902Z" }, + { url = "https://files.pythonhosted.org/packages/24/02/7d0f9eae92b5249bb50ac1595b295f10e263dd0078ebb55115c31e0eaccd/multidict-6.7.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:1b99af4d9eec0b49927b4402bcbb58dea89d3e0db8806a4086117019939ad3dd", size = 255899, upload-time = "2026-01-26T02:44:55.316Z" }, + { url = "https://files.pythonhosted.org/packages/00/e3/9b60ed9e23e64c73a5cde95269ef1330678e9c6e34dd4eb6b431b85b5a10/multidict-6.7.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6aac4f16b472d5b7dc6f66a0d49dd57b0e0902090be16594dc9ebfd3d17c47e7", size = 247970, upload-time = "2026-01-26T02:44:56.783Z" }, + { url = "https://files.pythonhosted.org/packages/3e/06/538e58a63ed5cfb0bd4517e346b91da32fde409d839720f664e9a4ae4f9d/multidict-6.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:21f830fe223215dffd51f538e78c172ed7c7f60c9b96a2bf05c4848ad49921c3", size = 245060, upload-time = "2026-01-26T02:44:58.195Z" }, + { url = "https://files.pythonhosted.org/packages/b2/2f/d743a3045a97c895d401e9bd29aaa09b94f5cbdf1bd561609e5a6c431c70/multidict-6.7.1-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:f5dd81c45b05518b9aa4da4aa74e1c93d715efa234fd3e8a179df611cc85e5f4", size = 235888, upload-time = "2026-01-26T02:44:59.57Z" }, + { url = "https://files.pythonhosted.org/packages/38/83/5a325cac191ab28b63c52f14f1131f3b0a55ba3b9aa65a6d0bf2a9b921a0/multidict-6.7.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:eb304767bca2bb92fb9c5bd33cedc95baee5bb5f6c88e63706533a1c06ad08c8", size = 243554, upload-time = "2026-01-26T02:45:01.054Z" }, + { url = "https://files.pythonhosted.org/packages/20/1f/9d2327086bd15da2725ef6aae624208e2ef828ed99892b17f60c344e57ed/multidict-6.7.1-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:c9035dde0f916702850ef66460bc4239d89d08df4d02023a5926e7446724212c", size = 252341, upload-time = "2026-01-26T02:45:02.484Z" }, + { url = "https://files.pythonhosted.org/packages/e8/2c/2a1aa0280cf579d0f6eed8ee5211c4f1730bd7e06c636ba2ee6aafda302e/multidict-6.7.1-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:af959b9beeb66c822380f222f0e0a1889331597e81f1ded7f374f3ecb0fd6c52", size = 246391, upload-time = "2026-01-26T02:45:03.862Z" }, + { url = "https://files.pythonhosted.org/packages/e5/03/7ca022ffc36c5a3f6e03b179a5ceb829be9da5783e6fe395f347c0794680/multidict-6.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:41f2952231456154ee479651491e94118229844dd7226541788be783be2b5108", size = 243422, upload-time = "2026-01-26T02:45:05.296Z" }, + { url = "https://files.pythonhosted.org/packages/dc/1d/b31650eab6c5778aceed46ba735bd97f7c7d2f54b319fa916c0f96e7805b/multidict-6.7.1-cp313-cp313t-win32.whl", hash = "sha256:df9f19c28adcb40b6aae30bbaa1478c389efd50c28d541d76760199fc1037c32", size = 47770, upload-time = "2026-01-26T02:45:06.754Z" }, + { url = "https://files.pythonhosted.org/packages/ac/5b/2d2d1d522e51285bd61b1e20df8f47ae1a9d80839db0b24ea783b3832832/multidict-6.7.1-cp313-cp313t-win_amd64.whl", hash = "sha256:d54ecf9f301853f2c5e802da559604b3e95bb7a3b01a9c295c6ee591b9882de8", size = 53109, upload-time = "2026-01-26T02:45:08.044Z" }, + { url = "https://files.pythonhosted.org/packages/3d/a3/cc409ba012c83ca024a308516703cf339bdc4b696195644a7215a5164a24/multidict-6.7.1-cp313-cp313t-win_arm64.whl", hash = "sha256:5a37ca18e360377cfda1d62f5f382ff41f2b8c4ccb329ed974cc2e1643440118", size = 45573, upload-time = "2026-01-26T02:45:09.349Z" }, { url = "https://files.pythonhosted.org/packages/91/cc/db74228a8be41884a567e88a62fd589a913708fcf180d029898c17a9a371/multidict-6.7.1-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:8f333ec9c5eb1b7105e3b84b53141e66ca05a19a605368c55450b6ba208cb9ee", size = 75190, upload-time = "2026-01-26T02:45:10.651Z" }, { url = "https://files.pythonhosted.org/packages/d5/22/492f2246bb5b534abd44804292e81eeaf835388901f0c574bac4eeec73c5/multidict-6.7.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:a407f13c188f804c759fc6a9f88286a565c242a76b27626594c133b82883b5c2", size = 44486, upload-time = "2026-01-26T02:45:11.938Z" }, { url = "https://files.pythonhosted.org/packages/f1/4f/733c48f270565d78b4544f2baddc2fb2a245e5a8640254b12c36ac7ac68e/multidict-6.7.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:0e161ddf326db5577c3a4cc2d8648f81456e8a20d40415541587a71620d7a7d1", size = 43219, upload-time = "2026-01-26T02:45:14.346Z" }, @@ -1048,6 +1367,38 @@ version = "2.4.2" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/57/fd/0005efbd0af48e55eb3c7208af93f2862d4b1a56cd78e84309a2d959208d/numpy-2.4.2.tar.gz", hash = "sha256:659a6107e31a83c4e33f763942275fd278b21d095094044eb35569e86a21ddae", size = 20723651, upload-time = "2026-01-31T23:13:10.135Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/51/6e/6f394c9c77668153e14d4da83bcc247beb5952f6ead7699a1a2992613bea/numpy-2.4.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:21982668592194c609de53ba4933a7471880ccbaadcc52352694a59ecc860b3a", size = 16667963, upload-time = "2026-01-31T23:10:52.147Z" }, + { url = "https://files.pythonhosted.org/packages/1f/f8/55483431f2b2fd015ae6ed4fe62288823ce908437ed49db5a03d15151678/numpy-2.4.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40397bda92382fcec844066efb11f13e1c9a3e2a8e8f318fb72ed8b6db9f60f1", size = 14693571, upload-time = "2026-01-31T23:10:54.789Z" }, + { url = "https://files.pythonhosted.org/packages/2f/20/18026832b1845cdc82248208dd929ca14c9d8f2bac391f67440707fff27c/numpy-2.4.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:b3a24467af63c67829bfaa61eecf18d5432d4f11992688537be59ecd6ad32f5e", size = 5203469, upload-time = "2026-01-31T23:10:57.343Z" }, + { url = "https://files.pythonhosted.org/packages/7d/33/2eb97c8a77daaba34eaa3fa7241a14ac5f51c46a6bd5911361b644c4a1e2/numpy-2.4.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:805cc8de9fd6e7a22da5aed858e0ab16be5a4db6c873dde1d7451c541553aa27", size = 6550820, upload-time = "2026-01-31T23:10:59.429Z" }, + { url = "https://files.pythonhosted.org/packages/b1/91/b97fdfd12dc75b02c44e26c6638241cc004d4079a0321a69c62f51470c4c/numpy-2.4.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6d82351358ffbcdcd7b686b90742a9b86632d6c1c051016484fa0b326a0a1548", size = 15663067, upload-time = "2026-01-31T23:11:01.291Z" }, + { url = "https://files.pythonhosted.org/packages/f5/c6/a18e59f3f0b8071cc85cbc8d80cd02d68aa9710170b2553a117203d46936/numpy-2.4.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9e35d3e0144137d9fdae62912e869136164534d64a169f86438bc9561b6ad49f", size = 16619782, upload-time = "2026-01-31T23:11:03.669Z" }, + { url = "https://files.pythonhosted.org/packages/b7/83/9751502164601a79e18847309f5ceec0b1446d7b6aa12305759b72cf98b2/numpy-2.4.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:adb6ed2ad29b9e15321d167d152ee909ec73395901b70936f029c3bc6d7f4460", size = 17013128, upload-time = "2026-01-31T23:11:05.913Z" }, + { url = "https://files.pythonhosted.org/packages/61/c4/c4066322256ec740acc1c8923a10047818691d2f8aec254798f3dd90f5f2/numpy-2.4.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8906e71fd8afcb76580404e2a950caef2685df3d2a57fe82a86ac8d33cc007ba", size = 18345324, upload-time = "2026-01-31T23:11:08.248Z" }, + { url = "https://files.pythonhosted.org/packages/ab/af/6157aa6da728fa4525a755bfad486ae7e3f76d4c1864138003eb84328497/numpy-2.4.2-cp312-cp312-win32.whl", hash = "sha256:ec055f6dae239a6299cace477b479cca2fc125c5675482daf1dd886933a1076f", size = 5960282, upload-time = "2026-01-31T23:11:10.497Z" }, + { url = "https://files.pythonhosted.org/packages/92/0f/7ceaaeaacb40567071e94dbf2c9480c0ae453d5bb4f52bea3892c39dc83c/numpy-2.4.2-cp312-cp312-win_amd64.whl", hash = "sha256:209fae046e62d0ce6435fcfe3b1a10537e858249b3d9b05829e2a05218296a85", size = 12314210, upload-time = "2026-01-31T23:11:12.176Z" }, + { url = "https://files.pythonhosted.org/packages/2f/a3/56c5c604fae6dd40fa2ed3040d005fca97e91bd320d232ac9931d77ba13c/numpy-2.4.2-cp312-cp312-win_arm64.whl", hash = "sha256:fbde1b0c6e81d56f5dccd95dd4a711d9b95df1ae4009a60887e56b27e8d903fa", size = 10220171, upload-time = "2026-01-31T23:11:14.684Z" }, + { url = "https://files.pythonhosted.org/packages/a1/22/815b9fe25d1d7ae7d492152adbc7226d3eff731dffc38fe970589fcaaa38/numpy-2.4.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:25f2059807faea4b077a2b6837391b5d830864b3543627f381821c646f31a63c", size = 16663696, upload-time = "2026-01-31T23:11:17.516Z" }, + { url = "https://files.pythonhosted.org/packages/09/f0/817d03a03f93ba9c6c8993de509277d84e69f9453601915e4a69554102a1/numpy-2.4.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:bd3a7a9f5847d2fb8c2c6d1c862fa109c31a9abeca1a3c2bd5a64572955b2979", size = 14688322, upload-time = "2026-01-31T23:11:19.883Z" }, + { url = "https://files.pythonhosted.org/packages/da/b4/f805ab79293c728b9a99438775ce51885fd4f31b76178767cfc718701a39/numpy-2.4.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:8e4549f8a3c6d13d55041925e912bfd834285ef1dd64d6bc7d542583355e2e98", size = 5198157, upload-time = "2026-01-31T23:11:22.375Z" }, + { url = "https://files.pythonhosted.org/packages/74/09/826e4289844eccdcd64aac27d13b0fd3f32039915dd5b9ba01baae1f436c/numpy-2.4.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:aea4f66ff44dfddf8c2cffd66ba6538c5ec67d389285292fe428cb2c738c8aef", size = 6546330, upload-time = "2026-01-31T23:11:23.958Z" }, + { url = "https://files.pythonhosted.org/packages/19/fb/cbfdbfa3057a10aea5422c558ac57538e6acc87ec1669e666d32ac198da7/numpy-2.4.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c3cd545784805de05aafe1dde61752ea49a359ccba9760c1e5d1c88a93bbf2b7", size = 15660968, upload-time = "2026-01-31T23:11:25.713Z" }, + { url = "https://files.pythonhosted.org/packages/04/dc/46066ce18d01645541f0186877377b9371b8fa8017fa8262002b4ef22612/numpy-2.4.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d0d9b7c93578baafcbc5f0b83eaf17b79d345c6f36917ba0c67f45226911d499", size = 16607311, upload-time = "2026-01-31T23:11:28.117Z" }, + { url = "https://files.pythonhosted.org/packages/14/d9/4b5adfc39a43fa6bf918c6d544bc60c05236cc2f6339847fc5b35e6cb5b0/numpy-2.4.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f74f0f7779cc7ae07d1810aab8ac6b1464c3eafb9e283a40da7309d5e6e48fbb", size = 17012850, upload-time = "2026-01-31T23:11:30.888Z" }, + { url = "https://files.pythonhosted.org/packages/b7/20/adb6e6adde6d0130046e6fdfb7675cc62bc2f6b7b02239a09eb58435753d/numpy-2.4.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:c7ac672d699bf36275c035e16b65539931347d68b70667d28984c9fb34e07fa7", size = 18334210, upload-time = "2026-01-31T23:11:33.214Z" }, + { url = "https://files.pythonhosted.org/packages/78/0e/0a73b3dff26803a8c02baa76398015ea2a5434d9b8265a7898a6028c1591/numpy-2.4.2-cp313-cp313-win32.whl", hash = "sha256:8e9afaeb0beff068b4d9cd20d322ba0ee1cecfb0b08db145e4ab4dd44a6b5110", size = 5958199, upload-time = "2026-01-31T23:11:35.385Z" }, + { url = "https://files.pythonhosted.org/packages/43/bc/6352f343522fcb2c04dbaf94cb30cca6fd32c1a750c06ad6231b4293708c/numpy-2.4.2-cp313-cp313-win_amd64.whl", hash = "sha256:7df2de1e4fba69a51c06c28f5a3de36731eb9639feb8e1cf7e4a7b0daf4cf622", size = 12310848, upload-time = "2026-01-31T23:11:38.001Z" }, + { url = "https://files.pythonhosted.org/packages/6e/8d/6da186483e308da5da1cc6918ce913dcfe14ffde98e710bfeff2a6158d4e/numpy-2.4.2-cp313-cp313-win_arm64.whl", hash = "sha256:0fece1d1f0a89c16b03442eae5c56dc0be0c7883b5d388e0c03f53019a4bfd71", size = 10221082, upload-time = "2026-01-31T23:11:40.392Z" }, + { url = "https://files.pythonhosted.org/packages/25/a1/9510aa43555b44781968935c7548a8926274f815de42ad3997e9e83680dd/numpy-2.4.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5633c0da313330fd20c484c78cdd3f9b175b55e1a766c4a174230c6b70ad8262", size = 14815866, upload-time = "2026-01-31T23:11:42.495Z" }, + { url = "https://files.pythonhosted.org/packages/36/30/6bbb5e76631a5ae46e7923dd16ca9d3f1c93cfa8d4ed79a129814a9d8db3/numpy-2.4.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:d9f64d786b3b1dd742c946c42d15b07497ed14af1a1f3ce840cce27daa0ce913", size = 5325631, upload-time = "2026-01-31T23:11:44.7Z" }, + { url = "https://files.pythonhosted.org/packages/46/00/3a490938800c1923b567b3a15cd17896e68052e2145d8662aaf3e1ffc58f/numpy-2.4.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:b21041e8cb6a1eb5312dd1d2f80a94d91efffb7a06b70597d44f1bd2dfc315ab", size = 6646254, upload-time = "2026-01-31T23:11:46.341Z" }, + { url = "https://files.pythonhosted.org/packages/d3/e9/fac0890149898a9b609caa5af7455a948b544746e4b8fe7c212c8edd71f8/numpy-2.4.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:00ab83c56211a1d7c07c25e3217ea6695e50a3e2f255053686b081dc0b091a82", size = 15720138, upload-time = "2026-01-31T23:11:48.082Z" }, + { url = "https://files.pythonhosted.org/packages/ea/5c/08887c54e68e1e28df53709f1893ce92932cc6f01f7c3d4dc952f61ffd4e/numpy-2.4.2-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2fb882da679409066b4603579619341c6d6898fc83a8995199d5249f986e8e8f", size = 16655398, upload-time = "2026-01-31T23:11:50.293Z" }, + { url = "https://files.pythonhosted.org/packages/4d/89/253db0fa0e66e9129c745e4ef25631dc37d5f1314dad2b53e907b8538e6d/numpy-2.4.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:66cb9422236317f9d44b67b4d18f44efe6e9c7f8794ac0462978513359461554", size = 17079064, upload-time = "2026-01-31T23:11:52.927Z" }, + { url = "https://files.pythonhosted.org/packages/2a/d5/cbade46ce97c59c6c3da525e8d95b7abe8a42974a1dc5c1d489c10433e88/numpy-2.4.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:0f01dcf33e73d80bd8dc0f20a71303abbafa26a19e23f6b68d1aa9990af90257", size = 18379680, upload-time = "2026-01-31T23:11:55.22Z" }, + { url = "https://files.pythonhosted.org/packages/40/62/48f99ae172a4b63d981babe683685030e8a3df4f246c893ea5c6ef99f018/numpy-2.4.2-cp313-cp313t-win32.whl", hash = "sha256:52b913ec40ff7ae845687b0b34d8d93b60cb66dcee06996dd5c99f2fc9328657", size = 6082433, upload-time = "2026-01-31T23:11:58.096Z" }, + { url = "https://files.pythonhosted.org/packages/07/38/e054a61cfe48ad9f1ed0d188e78b7e26859d0b60ef21cd9de4897cdb5326/numpy-2.4.2-cp313-cp313t-win_amd64.whl", hash = "sha256:5eea80d908b2c1f91486eb95b3fb6fab187e569ec9752ab7d9333d2e66bf2d6b", size = 12451181, upload-time = "2026-01-31T23:11:59.782Z" }, + { url = "https://files.pythonhosted.org/packages/6e/a4/a05c3a6418575e185dd84d0b9680b6bb2e2dc3e4202f036b7b4e22d6e9dc/numpy-2.4.2-cp313-cp313t-win_arm64.whl", hash = "sha256:fd49860271d52127d61197bb50b64f58454e9f578cb4b2c001a6de8b1f50b0b1", size = 10290756, upload-time = "2026-01-31T23:12:02.438Z" }, { url = "https://files.pythonhosted.org/packages/18/88/b7df6050bf18fdcfb7046286c6535cabbdd2064a3440fca3f069d319c16e/numpy-2.4.2-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:444be170853f1f9d528428eceb55f12918e4fda5d8805480f36a002f1415e09b", size = 16663092, upload-time = "2026-01-31T23:12:04.521Z" }, { url = "https://files.pythonhosted.org/packages/25/7a/1fee4329abc705a469a4afe6e69b1ef7e915117747886327104a8493a955/numpy-2.4.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:d1240d50adff70c2a88217698ca844723068533f3f5c5fa6ee2e3220e3bdb000", size = 14698770, upload-time = "2026-01-31T23:12:06.96Z" }, { url = "https://files.pythonhosted.org/packages/fb/0b/f9e49ba6c923678ad5bc38181c08ac5e53b7a5754dbca8e581aa1a56b1ff/numpy-2.4.2-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:7cdde6de52fb6664b00b056341265441192d1291c130e99183ec0d4b110ff8b1", size = 5208562, upload-time = "2026-01-31T23:12:09.632Z" }, @@ -1135,6 +1486,29 @@ dependencies = [ ] sdist = { url = "https://files.pythonhosted.org/packages/2e/0c/b28ed414f080ee0ad153f848586d61d1878f91689950f037f976ce15f6c8/pandas-3.0.1.tar.gz", hash = "sha256:4186a699674af418f655dbd420ed87f50d56b4cd6603784279d9eef6627823c8", size = 4641901, upload-time = "2026-02-17T22:20:16.434Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/37/51/b467209c08dae2c624873d7491ea47d2b47336e5403309d433ea79c38571/pandas-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:476f84f8c20c9f5bc47252b66b4bb25e1a9fc2fa98cead96744d8116cb85771d", size = 10344357, upload-time = "2026-02-17T22:18:38.262Z" }, + { url = "https://files.pythonhosted.org/packages/7c/f1/e2567ffc8951ab371db2e40b2fe068e36b81d8cf3260f06ae508700e5504/pandas-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0ab749dfba921edf641d4036c4c21c0b3ea70fea478165cb98a998fb2a261955", size = 9884543, upload-time = "2026-02-17T22:18:41.476Z" }, + { url = "https://files.pythonhosted.org/packages/d7/39/327802e0b6d693182403c144edacbc27eb82907b57062f23ef5a4c4a5ea7/pandas-3.0.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b8e36891080b87823aff3640c78649b91b8ff6eea3c0d70aeabd72ea43ab069b", size = 10396030, upload-time = "2026-02-17T22:18:43.822Z" }, + { url = "https://files.pythonhosted.org/packages/3d/fe/89d77e424365280b79d99b3e1e7d606f5165af2f2ecfaf0c6d24c799d607/pandas-3.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:532527a701281b9dd371e2f582ed9094f4c12dd9ffb82c0c54ee28d8ac9520c4", size = 10876435, upload-time = "2026-02-17T22:18:45.954Z" }, + { url = "https://files.pythonhosted.org/packages/b5/a6/2a75320849dd154a793f69c951db759aedb8d1dd3939eeacda9bdcfa1629/pandas-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:356e5c055ed9b0da1580d465657bc7d00635af4fd47f30afb23025352ba764d1", size = 11405133, upload-time = "2026-02-17T22:18:48.533Z" }, + { url = "https://files.pythonhosted.org/packages/58/53/1d68fafb2e02d7881df66aa53be4cd748d25cbe311f3b3c85c93ea5d30ca/pandas-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:9d810036895f9ad6345b8f2a338dd6998a74e8483847403582cab67745bff821", size = 11932065, upload-time = "2026-02-17T22:18:50.837Z" }, + { url = "https://files.pythonhosted.org/packages/75/08/67cc404b3a966b6df27b38370ddd96b3b023030b572283d035181854aac5/pandas-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:536232a5fe26dd989bd633e7a0c450705fdc86a207fec7254a55e9a22950fe43", size = 9741627, upload-time = "2026-02-17T22:18:53.905Z" }, + { url = "https://files.pythonhosted.org/packages/86/4f/caf9952948fb00d23795f09b893d11f1cacb384e666854d87249530f7cbe/pandas-3.0.1-cp312-cp312-win_arm64.whl", hash = "sha256:0f463ebfd8de7f326d38037c7363c6dacb857c5881ab8961fb387804d6daf2f7", size = 9052483, upload-time = "2026-02-17T22:18:57.31Z" }, + { url = "https://files.pythonhosted.org/packages/0b/48/aad6ec4f8d007534c091e9a7172b3ec1b1ee6d99a9cbb936b5eab6c6cf58/pandas-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5272627187b5d9c20e55d27caf5f2cd23e286aba25cadf73c8590e432e2b7262", size = 10317509, upload-time = "2026-02-17T22:18:59.498Z" }, + { url = "https://files.pythonhosted.org/packages/a8/14/5990826f779f79148ae9d3a2c39593dc04d61d5d90541e71b5749f35af95/pandas-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:661e0f665932af88c7877f31da0dc743fe9c8f2524bdffe23d24fdcb67ef9d56", size = 9860561, upload-time = "2026-02-17T22:19:02.265Z" }, + { url = "https://files.pythonhosted.org/packages/fa/80/f01ff54664b6d70fed71475543d108a9b7c888e923ad210795bef04ffb7d/pandas-3.0.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:75e6e292ff898679e47a2199172593d9f6107fd2dd3617c22c2946e97d5df46e", size = 10365506, upload-time = "2026-02-17T22:19:05.017Z" }, + { url = "https://files.pythonhosted.org/packages/f2/85/ab6d04733a7d6ff32bfc8382bf1b07078228f5d6ebec5266b91bfc5c4ff7/pandas-3.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1ff8cf1d2896e34343197685f432450ec99a85ba8d90cce2030c5eee2ef98791", size = 10873196, upload-time = "2026-02-17T22:19:07.204Z" }, + { url = "https://files.pythonhosted.org/packages/48/a9/9301c83d0b47c23ac5deab91c6b39fd98d5b5db4d93b25df8d381451828f/pandas-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:eca8b4510f6763f3d37359c2105df03a7a221a508f30e396a51d0713d462e68a", size = 11370859, upload-time = "2026-02-17T22:19:09.436Z" }, + { url = "https://files.pythonhosted.org/packages/59/fe/0c1fc5bd2d29c7db2ab372330063ad555fb83e08422829c785f5ec2176ca/pandas-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:06aff2ad6f0b94a17822cf8b83bbb563b090ed82ff4fe7712db2ce57cd50d9b8", size = 11924584, upload-time = "2026-02-17T22:19:11.562Z" }, + { url = "https://files.pythonhosted.org/packages/d6/7d/216a1588b65a7aa5f4535570418a599d943c85afb1d95b0876fc00aa1468/pandas-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:9fea306c783e28884c29057a1d9baa11a349bbf99538ec1da44c8476563d1b25", size = 9742769, upload-time = "2026-02-17T22:19:13.926Z" }, + { url = "https://files.pythonhosted.org/packages/c4/cb/810a22a6af9a4e97c8ab1c946b47f3489c5bca5adc483ce0ffc84c9cc768/pandas-3.0.1-cp313-cp313-win_arm64.whl", hash = "sha256:a8d37a43c52917427e897cb2e429f67a449327394396a81034a4449b99afda59", size = 9043855, upload-time = "2026-02-17T22:19:16.09Z" }, + { url = "https://files.pythonhosted.org/packages/92/fa/423c89086cca1f039cf1253c3ff5b90f157b5b3757314aa635f6bf3e30aa/pandas-3.0.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d54855f04f8246ed7b6fc96b05d4871591143c46c0b6f4af874764ed0d2d6f06", size = 10752673, upload-time = "2026-02-17T22:19:18.304Z" }, + { url = "https://files.pythonhosted.org/packages/22/23/b5a08ec1f40020397f0faba72f1e2c11f7596a6169c7b3e800abff0e433f/pandas-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:4e1b677accee34a09e0dc2ce5624e4a58a1870ffe56fc021e9caf7f23cd7668f", size = 10404967, upload-time = "2026-02-17T22:19:20.726Z" }, + { url = "https://files.pythonhosted.org/packages/5c/81/94841f1bb4afdc2b52a99daa895ac2c61600bb72e26525ecc9543d453ebc/pandas-3.0.1-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a9cabbdcd03f1b6cd254d6dda8ae09b0252524be1592594c00b7895916cb1324", size = 10320575, upload-time = "2026-02-17T22:19:24.919Z" }, + { url = "https://files.pythonhosted.org/packages/0a/8b/2ae37d66a5342a83adadfd0cb0b4bf9c3c7925424dd5f40d15d6cfaa35ee/pandas-3.0.1-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5ae2ab1f166668b41e770650101e7090824fd34d17915dd9cd479f5c5e0065e9", size = 10710921, upload-time = "2026-02-17T22:19:27.181Z" }, + { url = "https://files.pythonhosted.org/packages/a2/61/772b2e2757855e232b7ccf7cb8079a5711becb3a97f291c953def15a833f/pandas-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6bf0603c2e30e2cafac32807b06435f28741135cb8697eae8b28c7d492fc7d76", size = 11334191, upload-time = "2026-02-17T22:19:29.411Z" }, + { url = "https://files.pythonhosted.org/packages/1b/08/b16c6df3ef555d8495d1d265a7963b65be166785d28f06a350913a4fac78/pandas-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6c426422973973cae1f4a23e51d4ae85974f44871b24844e4f7de752dd877098", size = 11782256, upload-time = "2026-02-17T22:19:32.34Z" }, + { url = "https://files.pythonhosted.org/packages/55/80/178af0594890dee17e239fca96d3d8670ba0f5ff59b7d0439850924a9c09/pandas-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:b03f91ae8c10a85c1613102c7bef5229b5379f343030a3ccefeca8a33414cf35", size = 10485047, upload-time = "2026-02-17T22:19:34.605Z" }, { url = "https://files.pythonhosted.org/packages/bb/8b/4bb774a998b97e6c2fd62a9e6cfdaae133b636fd1c468f92afb4ae9a447a/pandas-3.0.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:99d0f92ed92d3083d140bf6b97774f9f13863924cf3f52a70711f4e7588f9d0a", size = 10322465, upload-time = "2026-02-17T22:19:36.803Z" }, { url = "https://files.pythonhosted.org/packages/72/3a/5b39b51c64159f470f1ca3b1c2a87da290657ca022f7cd11442606f607d1/pandas-3.0.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:3b66857e983208654294bb6477b8a63dee26b37bdd0eb34d010556e91261784f", size = 9910632, upload-time = "2026-02-17T22:19:39.001Z" }, { url = "https://files.pythonhosted.org/packages/4e/f7/b449ffb3f68c11da12fc06fbf6d2fa3a41c41e17d0284d23a79e1c13a7e4/pandas-3.0.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:56cf59638bf24dc9bdf2154c81e248b3289f9a09a6d04e63608c159022352749", size = 10440535, upload-time = "2026-02-17T22:19:41.157Z" }, @@ -1181,6 +1555,26 @@ dependencies = [ ] sdist = { url = "https://files.pythonhosted.org/packages/cb/72/9a51afa0a822b09e286c4cb827ed7b00bc818dac7bd11a5f161e493a217d/pendulum-3.2.0.tar.gz", hash = "sha256:e80feda2d10fa3ff8b1526715f7d33dcb7e08494b3088f2c8a3ac92d4a4331ce", size = 86912, upload-time = "2026-01-30T11:22:24.093Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/41/56/dd0ea9f97d25a0763cda09e2217563b45714786118d8c68b0b745395d6eb/pendulum-3.2.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:bf0b489def51202a39a2a665dcc4162d5e46934a740fe4c4fe3068979610156c", size = 337830, upload-time = "2026-01-30T11:21:08.298Z" }, + { url = "https://files.pythonhosted.org/packages/cf/98/83d62899bf7226fc12396de4bc1fb2b5da27e451c7c60790043aaf8b4731/pendulum-3.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:937a529aa302efa18dcf25e53834964a87ffb2df8f80e3669ab7757a6126beaf", size = 327574, upload-time = "2026-01-30T11:21:09.715Z" }, + { url = "https://files.pythonhosted.org/packages/76/fa/ff2aa992b23f0543c709b1a3f3f9ed760ec71fd02c8bb01f93bf008b52e4/pendulum-3.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:85c7689defc65c4dc29bf257f7cca55d210fabb455de9476e1748d2ab2ae80d7", size = 339891, upload-time = "2026-01-30T11:21:11.089Z" }, + { url = "https://files.pythonhosted.org/packages/c5/4e/25b4fa11d19503d50d7b52d7ef943c0f20fd54422aaeb9e38f588c815c50/pendulum-3.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d5e216e5a412563ea2ecf5de467dcf3d02717947fcdabe6811d5ee360726b02b", size = 373726, upload-time = "2026-01-30T11:21:12.493Z" }, + { url = "https://files.pythonhosted.org/packages/4f/30/0acad6396c4e74e5c689aa4f0b0c49e2ecdcfce368e7b5bf35ca1c0fc61a/pendulum-3.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3a2af22eeec438fbaac72bb7fba783e0950a514fba980d9a32db394b51afccec", size = 379827, upload-time = "2026-01-30T11:21:14.08Z" }, + { url = "https://files.pythonhosted.org/packages/3a/f7/e6a2fdf2a23d59b4b48b8fa89e8d4bf2dd371aea2c6ba8fcecec20a4acb9/pendulum-3.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3159cceb54f5aa8b85b141c7f0ce3fac8bdd1ffdc7c79e67dca9133eac7c4d11", size = 348921, upload-time = "2026-01-30T11:21:15.816Z" }, + { url = "https://files.pythonhosted.org/packages/7f/f2/c15fa7f9ad4e181aa469b6040b574988bd108ccdf4ae509ad224f9e4db44/pendulum-3.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c39ea5e9ffa20ea8bae986d00e0908bd537c8468b71d6b6503ab0b4c3d76e0ea", size = 517188, upload-time = "2026-01-30T11:21:17.835Z" }, + { url = "https://files.pythonhosted.org/packages/47/c7/5f80b12ee88ec26e930c3a5a602608a63c29cf60c81a0eb066d583772550/pendulum-3.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e5afc753e570cce1f44197676371f68953f7d4f022303d141bb09f804d5fe6d7", size = 561833, upload-time = "2026-01-30T11:21:19.232Z" }, + { url = "https://files.pythonhosted.org/packages/90/15/1ac481626cb63db751f6281e294661947c1f0321ebe5d1c532a3b51a8006/pendulum-3.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:fd55c12560816d9122ca2142d9e428f32c0c083bf77719320b1767539c7a3a3b", size = 258725, upload-time = "2026-01-30T11:21:20.558Z" }, + { url = "https://files.pythonhosted.org/packages/40/ae/50b0398d7d027eb70a3e1e336de7b6e599c6b74431cb7d3863287e1292bb/pendulum-3.2.0-cp312-cp312-win_arm64.whl", hash = "sha256:faef52a7ed99729f0838353b956f3fabf6c550c062db247e9e2fc2b48fcb9457", size = 253089, upload-time = "2026-01-30T11:21:22.497Z" }, + { url = "https://files.pythonhosted.org/packages/27/8c/400c8b8dbd7524424f3d9902ded64741e82e5e321d1aabbd68ade89e71cf/pendulum-3.2.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:addb0512f919fe5b70c8ee534ee71c775630d3efe567ea5763d92acff857cfc3", size = 337820, upload-time = "2026-01-30T11:21:24.305Z" }, + { url = "https://files.pythonhosted.org/packages/59/38/7c16f26cc55d9206d71da294ce6857d0da381e26bc9e0c2a069424c2b173/pendulum-3.2.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3aaa50342dc174acebdc21089315012e63789353957b39ac83cac9f9fc8d1075", size = 327551, upload-time = "2026-01-30T11:21:25.747Z" }, + { url = "https://files.pythonhosted.org/packages/0b/cd/f36ec5d56d55104232380fdbf84ff53cc05607574af3cbdc8a43991ac8a7/pendulum-3.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:927e9c9ab52ff68e71b76dd410e5f1cd78f5ea6e7f0a9f5eb549aea16a4d5354", size = 339894, upload-time = "2026-01-30T11:21:27.229Z" }, + { url = "https://files.pythonhosted.org/packages/aa/4e/b9a1e546519c3a92d5bc17787cea925e06a20def2ae344fa136d2fc40338/pendulum-3.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:249d18f5543c9f43aba3bd77b34864ec8cf6f64edbead405f442e23c94fce63d", size = 373766, upload-time = "2026-01-30T11:21:28.642Z" }, + { url = "https://files.pythonhosted.org/packages/ea/a6/6471ab87ae2260594501f071586a765fc894817043b7d2d4b04e2eff4f31/pendulum-3.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c644cc15eec5fb02291f0f193195156780fd5a0affd7a349592403826d1a35e", size = 379837, upload-time = "2026-01-30T11:21:30.637Z" }, + { url = "https://files.pythonhosted.org/packages/0d/79/0ba0c14e862388f7b822626e6e989163c23bebe7f96de5ec4b207cbe7c3d/pendulum-3.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:063ab61af953bb56ad5bc8e131fd0431c915ed766d90ccecd7549c8090b51004", size = 348904, upload-time = "2026-01-30T11:21:32.436Z" }, + { url = "https://files.pythonhosted.org/packages/17/34/df922c7c0b12719589d4954bfa5bdca9e02bcde220f5c5c1838a87118960/pendulum-3.2.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:26a3ae26c9dd70a4256f1c2f51addc43641813574c0db6ce5664f9861cd93621", size = 517173, upload-time = "2026-01-30T11:21:34.428Z" }, + { url = "https://files.pythonhosted.org/packages/87/ec/3b9e061eeee97b72a47c1434ee03f6d85f0284d9285d92b12b0fff2d19ac/pendulum-3.2.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:2b10d91dc00f424444a42f47c69e6b3bfd79376f330179dc06bc342184b35f9a", size = 561744, upload-time = "2026-01-30T11:21:35.861Z" }, + { url = "https://files.pythonhosted.org/packages/fd/7e/f12fdb6070b7975c1fcfa5685dbe4ab73c788878a71f4d1d7e3c87979e37/pendulum-3.2.0-cp313-cp313-win_amd64.whl", hash = "sha256:63070ff03e30a57b16c8e793ee27da8dac4123c1d6e0cf74c460ce9ee8a64aa4", size = 258746, upload-time = "2026-01-30T11:21:37.782Z" }, + { url = "https://files.pythonhosted.org/packages/c9/b8/5abd872056357f069ae34a9b24a75ac58e79092d16201d779a8dd31386bb/pendulum-3.2.0-cp313-cp313-win_arm64.whl", hash = "sha256:c8dde63e2796b62070a49ce813ce200aba9186130307f04ec78affcf6c2e8122", size = 253028, upload-time = "2026-01-30T11:21:39.381Z" }, { url = "https://files.pythonhosted.org/packages/82/99/5b9cc823862450910bcb2c7cdc6884c0939b268639146d30e4a4f55eb1f1/pendulum-3.2.0-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:c17ac069e88c5a1e930a5ae0ef17357a14b9cc5a28abadda74eaa8106d241c8e", size = 338281, upload-time = "2026-01-30T11:21:40.812Z" }, { url = "https://files.pythonhosted.org/packages/cd/3a/64a35260f6ac36c0ad50eeb5f1a465b98b0d7603f79a5c2077c41326d639/pendulum-3.2.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:e1fbb540edecb21f8244aebfb05a1f2333ddc6c7819378c099d4a61cc91ae93c", size = 328030, upload-time = "2026-01-30T11:21:42.778Z" }, { url = "https://files.pythonhosted.org/packages/da/6b/1140e09310035a2afb05bb90a2b8fbda9d3222e03b92de9533123afe6b65/pendulum-3.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a8c67fb9a1fe8fc1adae2cc01b0c292b268c12475b4609ff4aed71c9dd367b4d", size = 340206, upload-time = "2026-01-30T11:21:44.148Z" }, @@ -1227,6 +1621,51 @@ version = "0.4.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/9e/da/e9fc233cf63743258bff22b3dfa7ea5baef7b5bc324af47a0ad89b8ffc6f/propcache-0.4.1.tar.gz", hash = "sha256:f48107a8c637e80362555f37ecf49abe20370e557cc4ab374f04ec4423c97c3d", size = 46442, upload-time = "2025-10-08T19:49:02.291Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/0f/f17b1b2b221d5ca28b4b876e8bb046ac40466513960646bda8e1853cdfa2/propcache-0.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e153e9cd40cc8945138822807139367f256f89c6810c2634a4f6902b52d3b4e2", size = 80061, upload-time = "2025-10-08T19:46:46.075Z" }, + { url = "https://files.pythonhosted.org/packages/76/47/8ccf75935f51448ba9a16a71b783eb7ef6b9ee60f5d14c7f8a8a79fbeed7/propcache-0.4.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cd547953428f7abb73c5ad82cbb32109566204260d98e41e5dfdc682eb7f8403", size = 46037, upload-time = "2025-10-08T19:46:47.23Z" }, + { url = "https://files.pythonhosted.org/packages/0a/b6/5c9a0e42df4d00bfb4a3cbbe5cf9f54260300c88a0e9af1f47ca5ce17ac0/propcache-0.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f048da1b4f243fc44f205dfd320933a951b8d89e0afd4c7cacc762a8b9165207", size = 47324, upload-time = "2025-10-08T19:46:48.384Z" }, + { url = "https://files.pythonhosted.org/packages/9e/d3/6c7ee328b39a81ee877c962469f1e795f9db87f925251efeb0545e0020d0/propcache-0.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ec17c65562a827bba85e3872ead335f95405ea1674860d96483a02f5c698fa72", size = 225505, upload-time = "2025-10-08T19:46:50.055Z" }, + { url = "https://files.pythonhosted.org/packages/01/5d/1c53f4563490b1d06a684742cc6076ef944bc6457df6051b7d1a877c057b/propcache-0.4.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:405aac25c6394ef275dee4c709be43745d36674b223ba4eb7144bf4d691b7367", size = 230242, upload-time = "2025-10-08T19:46:51.815Z" }, + { url = "https://files.pythonhosted.org/packages/20/e1/ce4620633b0e2422207c3cb774a0ee61cac13abc6217763a7b9e2e3f4a12/propcache-0.4.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0013cb6f8dde4b2a2f66903b8ba740bdfe378c943c4377a200551ceb27f379e4", size = 238474, upload-time = "2025-10-08T19:46:53.208Z" }, + { url = "https://files.pythonhosted.org/packages/46/4b/3aae6835b8e5f44ea6a68348ad90f78134047b503765087be2f9912140ea/propcache-0.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:15932ab57837c3368b024473a525e25d316d8353016e7cc0e5ba9eb343fbb1cf", size = 221575, upload-time = "2025-10-08T19:46:54.511Z" }, + { url = "https://files.pythonhosted.org/packages/6e/a5/8a5e8678bcc9d3a1a15b9a29165640d64762d424a16af543f00629c87338/propcache-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:031dce78b9dc099f4c29785d9cf5577a3faf9ebf74ecbd3c856a7b92768c3df3", size = 216736, upload-time = "2025-10-08T19:46:56.212Z" }, + { url = "https://files.pythonhosted.org/packages/f1/63/b7b215eddeac83ca1c6b934f89d09a625aa9ee4ba158338854c87210cc36/propcache-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:ab08df6c9a035bee56e31af99be621526bd237bea9f32def431c656b29e41778", size = 213019, upload-time = "2025-10-08T19:46:57.595Z" }, + { url = "https://files.pythonhosted.org/packages/57/74/f580099a58c8af587cac7ba19ee7cb418506342fbbe2d4a4401661cca886/propcache-0.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4d7af63f9f93fe593afbf104c21b3b15868efb2c21d07d8732c0c4287e66b6a6", size = 220376, upload-time = "2025-10-08T19:46:59.067Z" }, + { url = "https://files.pythonhosted.org/packages/c4/ee/542f1313aff7eaf19c2bb758c5d0560d2683dac001a1c96d0774af799843/propcache-0.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:cfc27c945f422e8b5071b6e93169679e4eb5bf73bbcbf1ba3ae3a83d2f78ebd9", size = 226988, upload-time = "2025-10-08T19:47:00.544Z" }, + { url = "https://files.pythonhosted.org/packages/8f/18/9c6b015dd9c6930f6ce2229e1f02fb35298b847f2087ea2b436a5bfa7287/propcache-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:35c3277624a080cc6ec6f847cbbbb5b49affa3598c4535a0a4682a697aaa5c75", size = 215615, upload-time = "2025-10-08T19:47:01.968Z" }, + { url = "https://files.pythonhosted.org/packages/80/9e/e7b85720b98c45a45e1fca6a177024934dc9bc5f4d5dd04207f216fc33ed/propcache-0.4.1-cp312-cp312-win32.whl", hash = "sha256:671538c2262dadb5ba6395e26c1731e1d52534bfe9ae56d0b5573ce539266aa8", size = 38066, upload-time = "2025-10-08T19:47:03.503Z" }, + { url = "https://files.pythonhosted.org/packages/54/09/d19cff2a5aaac632ec8fc03737b223597b1e347416934c1b3a7df079784c/propcache-0.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:cb2d222e72399fcf5890d1d5cc1060857b9b236adff2792ff48ca2dfd46c81db", size = 41655, upload-time = "2025-10-08T19:47:04.973Z" }, + { url = "https://files.pythonhosted.org/packages/68/ab/6b5c191bb5de08036a8c697b265d4ca76148efb10fa162f14af14fb5f076/propcache-0.4.1-cp312-cp312-win_arm64.whl", hash = "sha256:204483131fb222bdaaeeea9f9e6c6ed0cac32731f75dfc1d4a567fc1926477c1", size = 37789, upload-time = "2025-10-08T19:47:06.077Z" }, + { url = "https://files.pythonhosted.org/packages/bf/df/6d9c1b6ac12b003837dde8a10231a7344512186e87b36e855bef32241942/propcache-0.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:43eedf29202c08550aac1d14e0ee619b0430aaef78f85864c1a892294fbc28cf", size = 77750, upload-time = "2025-10-08T19:47:07.648Z" }, + { url = "https://files.pythonhosted.org/packages/8b/e8/677a0025e8a2acf07d3418a2e7ba529c9c33caf09d3c1f25513023c1db56/propcache-0.4.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d62cdfcfd89ccb8de04e0eda998535c406bf5e060ffd56be6c586cbcc05b3311", size = 44780, upload-time = "2025-10-08T19:47:08.851Z" }, + { url = "https://files.pythonhosted.org/packages/89/a4/92380f7ca60f99ebae761936bc48a72a639e8a47b29050615eef757cb2a7/propcache-0.4.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cae65ad55793da34db5f54e4029b89d3b9b9490d8abe1b4c7ab5d4b8ec7ebf74", size = 46308, upload-time = "2025-10-08T19:47:09.982Z" }, + { url = "https://files.pythonhosted.org/packages/2d/48/c5ac64dee5262044348d1d78a5f85dd1a57464a60d30daee946699963eb3/propcache-0.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:333ddb9031d2704a301ee3e506dc46b1fe5f294ec198ed6435ad5b6a085facfe", size = 208182, upload-time = "2025-10-08T19:47:11.319Z" }, + { url = "https://files.pythonhosted.org/packages/c6/0c/cd762dd011a9287389a6a3eb43aa30207bde253610cca06824aeabfe9653/propcache-0.4.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:fd0858c20f078a32cf55f7e81473d96dcf3b93fd2ccdb3d40fdf54b8573df3af", size = 211215, upload-time = "2025-10-08T19:47:13.146Z" }, + { url = "https://files.pythonhosted.org/packages/30/3e/49861e90233ba36890ae0ca4c660e95df565b2cd15d4a68556ab5865974e/propcache-0.4.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:678ae89ebc632c5c204c794f8dab2837c5f159aeb59e6ed0539500400577298c", size = 218112, upload-time = "2025-10-08T19:47:14.913Z" }, + { url = "https://files.pythonhosted.org/packages/f1/8b/544bc867e24e1bd48f3118cecd3b05c694e160a168478fa28770f22fd094/propcache-0.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d472aeb4fbf9865e0c6d622d7f4d54a4e101a89715d8904282bb5f9a2f476c3f", size = 204442, upload-time = "2025-10-08T19:47:16.277Z" }, + { url = "https://files.pythonhosted.org/packages/50/a6/4282772fd016a76d3e5c0df58380a5ea64900afd836cec2c2f662d1b9bb3/propcache-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4d3df5fa7e36b3225954fba85589da77a0fe6a53e3976de39caf04a0db4c36f1", size = 199398, upload-time = "2025-10-08T19:47:17.962Z" }, + { url = "https://files.pythonhosted.org/packages/3e/ec/d8a7cd406ee1ddb705db2139f8a10a8a427100347bd698e7014351c7af09/propcache-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:ee17f18d2498f2673e432faaa71698032b0127ebf23ae5974eeaf806c279df24", size = 196920, upload-time = "2025-10-08T19:47:19.355Z" }, + { url = "https://files.pythonhosted.org/packages/f6/6c/f38ab64af3764f431e359f8baf9e0a21013e24329e8b85d2da32e8ed07ca/propcache-0.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:580e97762b950f993ae618e167e7be9256b8353c2dcd8b99ec100eb50f5286aa", size = 203748, upload-time = "2025-10-08T19:47:21.338Z" }, + { url = "https://files.pythonhosted.org/packages/d6/e3/fa846bd70f6534d647886621388f0a265254d30e3ce47e5c8e6e27dbf153/propcache-0.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:501d20b891688eb8e7aa903021f0b72d5a55db40ffaab27edefd1027caaafa61", size = 205877, upload-time = "2025-10-08T19:47:23.059Z" }, + { url = "https://files.pythonhosted.org/packages/e2/39/8163fc6f3133fea7b5f2827e8eba2029a0277ab2c5beee6c1db7b10fc23d/propcache-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9a0bd56e5b100aef69bd8562b74b46254e7c8812918d3baa700c8a8009b0af66", size = 199437, upload-time = "2025-10-08T19:47:24.445Z" }, + { url = "https://files.pythonhosted.org/packages/93/89/caa9089970ca49c7c01662bd0eeedfe85494e863e8043565aeb6472ce8fe/propcache-0.4.1-cp313-cp313-win32.whl", hash = "sha256:bcc9aaa5d80322bc2fb24bb7accb4a30f81e90ab8d6ba187aec0744bc302ad81", size = 37586, upload-time = "2025-10-08T19:47:25.736Z" }, + { url = "https://files.pythonhosted.org/packages/f5/ab/f76ec3c3627c883215b5c8080debb4394ef5a7a29be811f786415fc1e6fd/propcache-0.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:381914df18634f5494334d201e98245c0596067504b9372d8cf93f4bb23e025e", size = 40790, upload-time = "2025-10-08T19:47:26.847Z" }, + { url = "https://files.pythonhosted.org/packages/59/1b/e71ae98235f8e2ba5004d8cb19765a74877abf189bc53fc0c80d799e56c3/propcache-0.4.1-cp313-cp313-win_arm64.whl", hash = "sha256:8873eb4460fd55333ea49b7d189749ecf6e55bf85080f11b1c4530ed3034cba1", size = 37158, upload-time = "2025-10-08T19:47:27.961Z" }, + { url = "https://files.pythonhosted.org/packages/83/ce/a31bbdfc24ee0dcbba458c8175ed26089cf109a55bbe7b7640ed2470cfe9/propcache-0.4.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:92d1935ee1f8d7442da9c0c4fa7ac20d07e94064184811b685f5c4fada64553b", size = 81451, upload-time = "2025-10-08T19:47:29.445Z" }, + { url = "https://files.pythonhosted.org/packages/25/9c/442a45a470a68456e710d96cacd3573ef26a1d0a60067e6a7d5e655621ed/propcache-0.4.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:473c61b39e1460d386479b9b2f337da492042447c9b685f28be4f74d3529e566", size = 46374, upload-time = "2025-10-08T19:47:30.579Z" }, + { url = "https://files.pythonhosted.org/packages/f4/bf/b1d5e21dbc3b2e889ea4327044fb16312a736d97640fb8b6aa3f9c7b3b65/propcache-0.4.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:c0ef0aaafc66fbd87842a3fe3902fd889825646bc21149eafe47be6072725835", size = 48396, upload-time = "2025-10-08T19:47:31.79Z" }, + { url = "https://files.pythonhosted.org/packages/f4/04/5b4c54a103d480e978d3c8a76073502b18db0c4bc17ab91b3cb5092ad949/propcache-0.4.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f95393b4d66bfae908c3ca8d169d5f79cd65636ae15b5e7a4f6e67af675adb0e", size = 275950, upload-time = "2025-10-08T19:47:33.481Z" }, + { url = "https://files.pythonhosted.org/packages/b4/c1/86f846827fb969c4b78b0af79bba1d1ea2156492e1b83dea8b8a6ae27395/propcache-0.4.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c07fda85708bc48578467e85099645167a955ba093be0a2dcba962195676e859", size = 273856, upload-time = "2025-10-08T19:47:34.906Z" }, + { url = "https://files.pythonhosted.org/packages/36/1d/fc272a63c8d3bbad6878c336c7a7dea15e8f2d23a544bda43205dfa83ada/propcache-0.4.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:af223b406d6d000830c6f65f1e6431783fc3f713ba3e6cc8c024d5ee96170a4b", size = 280420, upload-time = "2025-10-08T19:47:36.338Z" }, + { url = "https://files.pythonhosted.org/packages/07/0c/01f2219d39f7e53d52e5173bcb09c976609ba30209912a0680adfb8c593a/propcache-0.4.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a78372c932c90ee474559c5ddfffd718238e8673c340dc21fe45c5b8b54559a0", size = 263254, upload-time = "2025-10-08T19:47:37.692Z" }, + { url = "https://files.pythonhosted.org/packages/2d/18/cd28081658ce597898f0c4d174d4d0f3c5b6d4dc27ffafeef835c95eb359/propcache-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:564d9f0d4d9509e1a870c920a89b2fec951b44bf5ba7d537a9e7c1ccec2c18af", size = 261205, upload-time = "2025-10-08T19:47:39.659Z" }, + { url = "https://files.pythonhosted.org/packages/7a/71/1f9e22eb8b8316701c2a19fa1f388c8a3185082607da8e406a803c9b954e/propcache-0.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:17612831fda0138059cc5546f4d12a2aacfb9e47068c06af35c400ba58ba7393", size = 247873, upload-time = "2025-10-08T19:47:41.084Z" }, + { url = "https://files.pythonhosted.org/packages/4a/65/3d4b61f36af2b4eddba9def857959f1016a51066b4f1ce348e0cf7881f58/propcache-0.4.1-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:41a89040cb10bd345b3c1a873b2bf36413d48da1def52f268a055f7398514874", size = 262739, upload-time = "2025-10-08T19:47:42.51Z" }, + { url = "https://files.pythonhosted.org/packages/2a/42/26746ab087faa77c1c68079b228810436ccd9a5ce9ac85e2b7307195fd06/propcache-0.4.1-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:e35b88984e7fa64aacecea39236cee32dd9bd8c55f57ba8a75cf2399553f9bd7", size = 263514, upload-time = "2025-10-08T19:47:43.927Z" }, + { url = "https://files.pythonhosted.org/packages/94/13/630690fe201f5502d2403dd3cfd451ed8858fe3c738ee88d095ad2ff407b/propcache-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6f8b465489f927b0df505cbe26ffbeed4d6d8a2bbc61ce90eb074ff129ef0ab1", size = 257781, upload-time = "2025-10-08T19:47:45.448Z" }, + { url = "https://files.pythonhosted.org/packages/92/f7/1d4ec5841505f423469efbfc381d64b7b467438cd5a4bbcbb063f3b73d27/propcache-0.4.1-cp313-cp313t-win32.whl", hash = "sha256:2ad890caa1d928c7c2965b48f3a3815c853180831d0e5503d35cf00c472f4717", size = 41396, upload-time = "2025-10-08T19:47:47.202Z" }, + { url = "https://files.pythonhosted.org/packages/48/f0/615c30622316496d2cbbc29f5985f7777d3ada70f23370608c1d3e081c1f/propcache-0.4.1-cp313-cp313t-win_amd64.whl", hash = "sha256:f7ee0e597f495cf415bcbd3da3caa3bd7e816b74d0d52b8145954c5e6fd3ff37", size = 44897, upload-time = "2025-10-08T19:47:48.336Z" }, + { url = "https://files.pythonhosted.org/packages/fd/ca/6002e46eccbe0e33dcd4069ef32f7f1c9e243736e07adca37ae8c4830ec3/propcache-0.4.1-cp313-cp313t-win_arm64.whl", hash = "sha256:929d7cbe1f01bb7baffb33dc14eb5691c95831450a26354cd210a8155170c93a", size = 39789, upload-time = "2025-10-08T19:47:49.876Z" }, { url = "https://files.pythonhosted.org/packages/8e/5c/bca52d654a896f831b8256683457ceddd490ec18d9ec50e97dfd8fc726a8/propcache-0.4.1-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:3f7124c9d820ba5548d431afb4632301acf965db49e666aa21c305cbe8c6de12", size = 78152, upload-time = "2025-10-08T19:47:51.051Z" }, { url = "https://files.pythonhosted.org/packages/65/9b/03b04e7d82a5f54fb16113d839f5ea1ede58a61e90edf515f6577c66fa8f/propcache-0.4.1-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:c0d4b719b7da33599dfe3b22d3db1ef789210a0597bc650b7cee9c77c2be8c5c", size = 44869, upload-time = "2025-10-08T19:47:52.594Z" }, { url = "https://files.pythonhosted.org/packages/b2/fa/89a8ef0468d5833a23fff277b143d0573897cf75bd56670a6d28126c7d68/propcache-0.4.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:9f302f4783709a78240ebc311b793f123328716a60911d667e0c036bc5dcbded", size = 46596, upload-time = "2025-10-08T19:47:54.073Z" }, @@ -1339,6 +1778,34 @@ dependencies = [ ] sdist = { url = "https://files.pythonhosted.org/packages/71/70/23b021c950c2addd24ec408e9ab05d59b035b39d97cdc1130e1bce647bb6/pydantic_core-2.41.5.tar.gz", hash = "sha256:08daa51ea16ad373ffd5e7606252cc32f07bc72b28284b6bc9c6df804816476e", size = 460952, upload-time = "2025-11-04T13:43:49.098Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/5f/5d/5f6c63eebb5afee93bcaae4ce9a898f3373ca23df3ccaef086d0233a35a7/pydantic_core-2.41.5-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f41a7489d32336dbf2199c8c0a215390a751c5b014c2c1c5366e817202e9cdf7", size = 2110990, upload-time = "2025-11-04T13:39:58.079Z" }, + { url = "https://files.pythonhosted.org/packages/aa/32/9c2e8ccb57c01111e0fd091f236c7b371c1bccea0fa85247ac55b1e2b6b6/pydantic_core-2.41.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:070259a8818988b9a84a449a2a7337c7f430a22acc0859c6b110aa7212a6d9c0", size = 1896003, upload-time = "2025-11-04T13:39:59.956Z" }, + { url = "https://files.pythonhosted.org/packages/68/b8/a01b53cb0e59139fbc9e4fda3e9724ede8de279097179be4ff31f1abb65a/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e96cea19e34778f8d59fe40775a7a574d95816eb150850a85a7a4c8f4b94ac69", size = 1919200, upload-time = "2025-11-04T13:40:02.241Z" }, + { url = "https://files.pythonhosted.org/packages/38/de/8c36b5198a29bdaade07b5985e80a233a5ac27137846f3bc2d3b40a47360/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed2e99c456e3fadd05c991f8f437ef902e00eedf34320ba2b0842bd1c3ca3a75", size = 2052578, upload-time = "2025-11-04T13:40:04.401Z" }, + { url = "https://files.pythonhosted.org/packages/00/b5/0e8e4b5b081eac6cb3dbb7e60a65907549a1ce035a724368c330112adfdd/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65840751b72fbfd82c3c640cff9284545342a4f1eb1586ad0636955b261b0b05", size = 2208504, upload-time = "2025-11-04T13:40:06.072Z" }, + { url = "https://files.pythonhosted.org/packages/77/56/87a61aad59c7c5b9dc8caad5a41a5545cba3810c3e828708b3d7404f6cef/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e536c98a7626a98feb2d3eaf75944ef6f3dbee447e1f841eae16f2f0a72d8ddc", size = 2335816, upload-time = "2025-11-04T13:40:07.835Z" }, + { url = "https://files.pythonhosted.org/packages/0d/76/941cc9f73529988688a665a5c0ecff1112b3d95ab48f81db5f7606f522d3/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eceb81a8d74f9267ef4081e246ffd6d129da5d87e37a77c9bde550cb04870c1c", size = 2075366, upload-time = "2025-11-04T13:40:09.804Z" }, + { url = "https://files.pythonhosted.org/packages/d3/43/ebef01f69baa07a482844faaa0a591bad1ef129253ffd0cdaa9d8a7f72d3/pydantic_core-2.41.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d38548150c39b74aeeb0ce8ee1d8e82696f4a4e16ddc6de7b1d8823f7de4b9b5", size = 2171698, upload-time = "2025-11-04T13:40:12.004Z" }, + { url = "https://files.pythonhosted.org/packages/b1/87/41f3202e4193e3bacfc2c065fab7706ebe81af46a83d3e27605029c1f5a6/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c23e27686783f60290e36827f9c626e63154b82b116d7fe9adba1fda36da706c", size = 2132603, upload-time = "2025-11-04T13:40:13.868Z" }, + { url = "https://files.pythonhosted.org/packages/49/7d/4c00df99cb12070b6bccdef4a195255e6020a550d572768d92cc54dba91a/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:482c982f814460eabe1d3bb0adfdc583387bd4691ef00b90575ca0d2b6fe2294", size = 2329591, upload-time = "2025-11-04T13:40:15.672Z" }, + { url = "https://files.pythonhosted.org/packages/cc/6a/ebf4b1d65d458f3cda6a7335d141305dfa19bdc61140a884d165a8a1bbc7/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:bfea2a5f0b4d8d43adf9d7b8bf019fb46fdd10a2e5cde477fbcb9d1fa08c68e1", size = 2319068, upload-time = "2025-11-04T13:40:17.532Z" }, + { url = "https://files.pythonhosted.org/packages/49/3b/774f2b5cd4192d5ab75870ce4381fd89cf218af999515baf07e7206753f0/pydantic_core-2.41.5-cp312-cp312-win32.whl", hash = "sha256:b74557b16e390ec12dca509bce9264c3bbd128f8a2c376eaa68003d7f327276d", size = 1985908, upload-time = "2025-11-04T13:40:19.309Z" }, + { url = "https://files.pythonhosted.org/packages/86/45/00173a033c801cacf67c190fef088789394feaf88a98a7035b0e40d53dc9/pydantic_core-2.41.5-cp312-cp312-win_amd64.whl", hash = "sha256:1962293292865bca8e54702b08a4f26da73adc83dd1fcf26fbc875b35d81c815", size = 2020145, upload-time = "2025-11-04T13:40:21.548Z" }, + { url = "https://files.pythonhosted.org/packages/f9/22/91fbc821fa6d261b376a3f73809f907cec5ca6025642c463d3488aad22fb/pydantic_core-2.41.5-cp312-cp312-win_arm64.whl", hash = "sha256:1746d4a3d9a794cacae06a5eaaccb4b8643a131d45fbc9af23e353dc0a5ba5c3", size = 1976179, upload-time = "2025-11-04T13:40:23.393Z" }, + { url = "https://files.pythonhosted.org/packages/87/06/8806241ff1f70d9939f9af039c6c35f2360cf16e93c2ca76f184e76b1564/pydantic_core-2.41.5-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:941103c9be18ac8daf7b7adca8228f8ed6bb7a1849020f643b3a14d15b1924d9", size = 2120403, upload-time = "2025-11-04T13:40:25.248Z" }, + { url = "https://files.pythonhosted.org/packages/94/02/abfa0e0bda67faa65fef1c84971c7e45928e108fe24333c81f3bfe35d5f5/pydantic_core-2.41.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:112e305c3314f40c93998e567879e887a3160bb8689ef3d2c04b6cc62c33ac34", size = 1896206, upload-time = "2025-11-04T13:40:27.099Z" }, + { url = "https://files.pythonhosted.org/packages/15/df/a4c740c0943e93e6500f9eb23f4ca7ec9bf71b19e608ae5b579678c8d02f/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cbaad15cb0c90aa221d43c00e77bb33c93e8d36e0bf74760cd00e732d10a6a0", size = 1919307, upload-time = "2025-11-04T13:40:29.806Z" }, + { url = "https://files.pythonhosted.org/packages/9a/e3/6324802931ae1d123528988e0e86587c2072ac2e5394b4bc2bc34b61ff6e/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:03ca43e12fab6023fc79d28ca6b39b05f794ad08ec2feccc59a339b02f2b3d33", size = 2063258, upload-time = "2025-11-04T13:40:33.544Z" }, + { url = "https://files.pythonhosted.org/packages/c9/d4/2230d7151d4957dd79c3044ea26346c148c98fbf0ee6ebd41056f2d62ab5/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc799088c08fa04e43144b164feb0c13f9a0bc40503f8df3e9fde58a3c0c101e", size = 2214917, upload-time = "2025-11-04T13:40:35.479Z" }, + { url = "https://files.pythonhosted.org/packages/e6/9f/eaac5df17a3672fef0081b6c1bb0b82b33ee89aa5cec0d7b05f52fd4a1fa/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:97aeba56665b4c3235a0e52b2c2f5ae9cd071b8a8310ad27bddb3f7fb30e9aa2", size = 2332186, upload-time = "2025-11-04T13:40:37.436Z" }, + { url = "https://files.pythonhosted.org/packages/cf/4e/35a80cae583a37cf15604b44240e45c05e04e86f9cfd766623149297e971/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:406bf18d345822d6c21366031003612b9c77b3e29ffdb0f612367352aab7d586", size = 2073164, upload-time = "2025-11-04T13:40:40.289Z" }, + { url = "https://files.pythonhosted.org/packages/bf/e3/f6e262673c6140dd3305d144d032f7bd5f7497d3871c1428521f19f9efa2/pydantic_core-2.41.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b93590ae81f7010dbe380cdeab6f515902ebcbefe0b9327cc4804d74e93ae69d", size = 2179146, upload-time = "2025-11-04T13:40:42.809Z" }, + { url = "https://files.pythonhosted.org/packages/75/c7/20bd7fc05f0c6ea2056a4565c6f36f8968c0924f19b7d97bbfea55780e73/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:01a3d0ab748ee531f4ea6c3e48ad9dac84ddba4b0d82291f87248f2f9de8d740", size = 2137788, upload-time = "2025-11-04T13:40:44.752Z" }, + { url = "https://files.pythonhosted.org/packages/3a/8d/34318ef985c45196e004bc46c6eab2eda437e744c124ef0dbe1ff2c9d06b/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:6561e94ba9dacc9c61bce40e2d6bdc3bfaa0259d3ff36ace3b1e6901936d2e3e", size = 2340133, upload-time = "2025-11-04T13:40:46.66Z" }, + { url = "https://files.pythonhosted.org/packages/9c/59/013626bf8c78a5a5d9350d12e7697d3d4de951a75565496abd40ccd46bee/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:915c3d10f81bec3a74fbd4faebe8391013ba61e5a1a8d48c4455b923bdda7858", size = 2324852, upload-time = "2025-11-04T13:40:48.575Z" }, + { url = "https://files.pythonhosted.org/packages/1a/d9/c248c103856f807ef70c18a4f986693a46a8ffe1602e5d361485da502d20/pydantic_core-2.41.5-cp313-cp313-win32.whl", hash = "sha256:650ae77860b45cfa6e2cdafc42618ceafab3a2d9a3811fcfbd3bbf8ac3c40d36", size = 1994679, upload-time = "2025-11-04T13:40:50.619Z" }, + { url = "https://files.pythonhosted.org/packages/9e/8b/341991b158ddab181cff136acd2552c9f35bd30380422a639c0671e99a91/pydantic_core-2.41.5-cp313-cp313-win_amd64.whl", hash = "sha256:79ec52ec461e99e13791ec6508c722742ad745571f234ea6255bed38c6480f11", size = 2019766, upload-time = "2025-11-04T13:40:52.631Z" }, + { url = "https://files.pythonhosted.org/packages/73/7d/f2f9db34af103bea3e09735bb40b021788a5e834c81eedb541991badf8f5/pydantic_core-2.41.5-cp313-cp313-win_arm64.whl", hash = "sha256:3f84d5c1b4ab906093bdc1ff10484838aca54ef08de4afa9de0f5f14d69639cd", size = 1981005, upload-time = "2025-11-04T13:40:54.734Z" }, { url = "https://files.pythonhosted.org/packages/ea/28/46b7c5c9635ae96ea0fbb779e271a38129df2550f763937659ee6c5dbc65/pydantic_core-2.41.5-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:3f37a19d7ebcdd20b96485056ba9e8b304e27d9904d233d7b1015db320e51f0a", size = 2119622, upload-time = "2025-11-04T13:40:56.68Z" }, { url = "https://files.pythonhosted.org/packages/74/1a/145646e5687e8d9a1e8d09acb278c8535ebe9e972e1f162ed338a622f193/pydantic_core-2.41.5-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1d1d9764366c73f996edd17abb6d9d7649a7eb690006ab6adbda117717099b14", size = 1891725, upload-time = "2025-11-04T13:40:58.807Z" }, { url = "https://files.pythonhosted.org/packages/23/04/e89c29e267b8060b40dca97bfc64a19b2a3cf99018167ea1677d96368273/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25e1c2af0fce638d5f1988b686f3b3ea8cd7de5f244ca147c777769e798a9cd1", size = 1915040, upload-time = "2025-11-04T13:41:00.853Z" }, @@ -1367,6 +1834,10 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/5c/96/5fb7d8c3c17bc8c62fdb031c47d77a1af698f1d7a406b0f79aaa1338f9ad/pydantic_core-2.41.5-cp314-cp314t-win32.whl", hash = "sha256:b4ececa40ac28afa90871c2cc2b9ffd2ff0bf749380fbdf57d165fd23da353aa", size = 1988906, upload-time = "2025-11-04T13:41:56.606Z" }, { url = "https://files.pythonhosted.org/packages/22/ed/182129d83032702912c2e2d8bbe33c036f342cc735737064668585dac28f/pydantic_core-2.41.5-cp314-cp314t-win_amd64.whl", hash = "sha256:80aa89cad80b32a912a65332f64a4450ed00966111b6615ca6816153d3585a8c", size = 1981607, upload-time = "2025-11-04T13:41:58.889Z" }, { url = "https://files.pythonhosted.org/packages/9f/ed/068e41660b832bb0b1aa5b58011dea2a3fe0ba7861ff38c4d4904c1c1a99/pydantic_core-2.41.5-cp314-cp314t-win_arm64.whl", hash = "sha256:35b44f37a3199f771c3eaa53051bc8a70cd7b54f333531c59e29fd4db5d15008", size = 1974769, upload-time = "2025-11-04T13:42:01.186Z" }, + { url = "https://files.pythonhosted.org/packages/09/32/59b0c7e63e277fa7911c2fc70ccfb45ce4b98991e7ef37110663437005af/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl", hash = "sha256:7da7087d756b19037bc2c06edc6c170eeef3c3bafcb8f532ff17d64dc427adfd", size = 2110495, upload-time = "2025-11-04T13:42:49.689Z" }, + { url = "https://files.pythonhosted.org/packages/aa/81/05e400037eaf55ad400bcd318c05bb345b57e708887f07ddb2d20e3f0e98/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:aabf5777b5c8ca26f7824cb4a120a740c9588ed58df9b2d196ce92fba42ff8dc", size = 1915388, upload-time = "2025-11-04T13:42:52.215Z" }, + { url = "https://files.pythonhosted.org/packages/6e/0d/e3549b2399f71d56476b77dbf3cf8937cec5cd70536bdc0e374a421d0599/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c007fe8a43d43b3969e8469004e9845944f1a80e6acd47c150856bb87f230c56", size = 1942879, upload-time = "2025-11-04T13:42:56.483Z" }, + { url = "https://files.pythonhosted.org/packages/f7/07/34573da085946b6a313d7c42f82f16e8920bfd730665de2d11c0c37a74b5/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76d0819de158cd855d1cbb8fcafdf6f5cf1eb8e470abe056d5d161106e38062b", size = 2139017, upload-time = "2025-11-04T13:42:59.471Z" }, ] [[package]] @@ -1519,6 +1990,12 @@ name = "pywin32" version = "311" source = { registry = "https://pypi.org/simple" } wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/ab/01ea1943d4eba0f850c3c61e78e8dd59757ff815ff3ccd0a84de5f541f42/pywin32-311-cp312-cp312-win32.whl", hash = "sha256:750ec6e621af2b948540032557b10a2d43b0cee2ae9758c54154d711cc852d31", size = 8706543, upload-time = "2025-07-14T20:13:20.765Z" }, + { url = "https://files.pythonhosted.org/packages/d1/a8/a0e8d07d4d051ec7502cd58b291ec98dcc0c3fff027caad0470b72cfcc2f/pywin32-311-cp312-cp312-win_amd64.whl", hash = "sha256:b8c095edad5c211ff31c05223658e71bf7116daa0ecf3ad85f3201ea3190d067", size = 9495040, upload-time = "2025-07-14T20:13:22.543Z" }, + { url = "https://files.pythonhosted.org/packages/ba/3a/2ae996277b4b50f17d61f0603efd8253cb2d79cc7ae159468007b586396d/pywin32-311-cp312-cp312-win_arm64.whl", hash = "sha256:e286f46a9a39c4a18b319c28f59b61de793654af2f395c102b4f819e584b5852", size = 8710102, upload-time = "2025-07-14T20:13:24.682Z" }, + { url = "https://files.pythonhosted.org/packages/a5/be/3fd5de0979fcb3994bfee0d65ed8ca9506a8a1260651b86174f6a86f52b3/pywin32-311-cp313-cp313-win32.whl", hash = "sha256:f95ba5a847cba10dd8c4d8fefa9f2a6cf283b8b88ed6178fa8a6c1ab16054d0d", size = 8705700, upload-time = "2025-07-14T20:13:26.471Z" }, + { url = "https://files.pythonhosted.org/packages/e3/28/e0a1909523c6890208295a29e05c2adb2126364e289826c0a8bc7297bd5c/pywin32-311-cp313-cp313-win_amd64.whl", hash = "sha256:718a38f7e5b058e76aee1c56ddd06908116d35147e133427e59a3983f703a20d", size = 9494700, upload-time = "2025-07-14T20:13:28.243Z" }, + { url = "https://files.pythonhosted.org/packages/04/bf/90339ac0f55726dce7d794e6d79a18a91265bdf3aa70b6b9ca52f35e022a/pywin32-311-cp313-cp313-win_arm64.whl", hash = "sha256:7b4075d959648406202d92a2310cb990fea19b535c7f4a78d3f5e10b926eeb8a", size = 8709318, upload-time = "2025-07-14T20:13:30.348Z" }, { url = "https://files.pythonhosted.org/packages/c9/31/097f2e132c4f16d99a22bfb777e0fd88bd8e1c634304e102f313af69ace5/pywin32-311-cp314-cp314-win32.whl", hash = "sha256:b7a2c10b93f8986666d0c803ee19b5990885872a7de910fc460f9b0c2fbf92ee", size = 8840714, upload-time = "2025-07-14T20:13:32.449Z" }, { url = "https://files.pythonhosted.org/packages/90/4b/07c77d8ba0e01349358082713400435347df8426208171ce297da32c313d/pywin32-311-cp314-cp314-win_amd64.whl", hash = "sha256:3aca44c046bd2ed8c90de9cb8427f581c479e594e99b5c0bb19b29c10fd6cb87", size = 9656800, upload-time = "2025-07-14T20:13:34.312Z" }, { url = "https://files.pythonhosted.org/packages/c0/d2/21af5c535501a7233e734b8af901574572da66fcc254cb35d0609c9080dd/pywin32-311-cp314-cp314-win_arm64.whl", hash = "sha256:a508e2d9025764a8270f93111a970e1d0fbfc33f4153b388bb649b7eec4f9b42", size = 8932540, upload-time = "2025-07-14T20:13:36.379Z" }, @@ -1539,6 +2016,26 @@ version = "6.0.3" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/33/422b98d2195232ca1826284a76852ad5a86fe23e31b009c9886b2d0fb8b2/pyyaml-6.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7f047e29dcae44602496db43be01ad42fc6f1cc0d8cd6c83d342306c32270196", size = 182063, upload-time = "2025-09-25T21:32:11.445Z" }, + { url = "https://files.pythonhosted.org/packages/89/a0/6cf41a19a1f2f3feab0e9c0b74134aa2ce6849093d5517a0c550fe37a648/pyyaml-6.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fc09d0aa354569bc501d4e787133afc08552722d3ab34836a80547331bb5d4a0", size = 173973, upload-time = "2025-09-25T21:32:12.492Z" }, + { url = "https://files.pythonhosted.org/packages/ed/23/7a778b6bd0b9a8039df8b1b1d80e2e2ad78aa04171592c8a5c43a56a6af4/pyyaml-6.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9149cad251584d5fb4981be1ecde53a1ca46c891a79788c0df828d2f166bda28", size = 775116, upload-time = "2025-09-25T21:32:13.652Z" }, + { url = "https://files.pythonhosted.org/packages/65/30/d7353c338e12baef4ecc1b09e877c1970bd3382789c159b4f89d6a70dc09/pyyaml-6.0.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5fdec68f91a0c6739b380c83b951e2c72ac0197ace422360e6d5a959d8d97b2c", size = 844011, upload-time = "2025-09-25T21:32:15.21Z" }, + { url = "https://files.pythonhosted.org/packages/8b/9d/b3589d3877982d4f2329302ef98a8026e7f4443c765c46cfecc8858c6b4b/pyyaml-6.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ba1cc08a7ccde2d2ec775841541641e4548226580ab850948cbfda66a1befcdc", size = 807870, upload-time = "2025-09-25T21:32:16.431Z" }, + { url = "https://files.pythonhosted.org/packages/05/c0/b3be26a015601b822b97d9149ff8cb5ead58c66f981e04fedf4e762f4bd4/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8dc52c23056b9ddd46818a57b78404882310fb473d63f17b07d5c40421e47f8e", size = 761089, upload-time = "2025-09-25T21:32:17.56Z" }, + { url = "https://files.pythonhosted.org/packages/be/8e/98435a21d1d4b46590d5459a22d88128103f8da4c2d4cb8f14f2a96504e1/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:41715c910c881bc081f1e8872880d3c650acf13dfa8214bad49ed4cede7c34ea", size = 790181, upload-time = "2025-09-25T21:32:18.834Z" }, + { url = "https://files.pythonhosted.org/packages/74/93/7baea19427dcfbe1e5a372d81473250b379f04b1bd3c4c5ff825e2327202/pyyaml-6.0.3-cp312-cp312-win32.whl", hash = "sha256:96b533f0e99f6579b3d4d4995707cf36df9100d67e0c8303a0c55b27b5f99bc5", size = 137658, upload-time = "2025-09-25T21:32:20.209Z" }, + { url = "https://files.pythonhosted.org/packages/86/bf/899e81e4cce32febab4fb42bb97dcdf66bc135272882d1987881a4b519e9/pyyaml-6.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:5fcd34e47f6e0b794d17de1b4ff496c00986e1c83f7ab2fb8fcfe9616ff7477b", size = 154003, upload-time = "2025-09-25T21:32:21.167Z" }, + { url = "https://files.pythonhosted.org/packages/1a/08/67bd04656199bbb51dbed1439b7f27601dfb576fb864099c7ef0c3e55531/pyyaml-6.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:64386e5e707d03a7e172c0701abfb7e10f0fb753ee1d773128192742712a98fd", size = 140344, upload-time = "2025-09-25T21:32:22.617Z" }, + { url = "https://files.pythonhosted.org/packages/d1/11/0fd08f8192109f7169db964b5707a2f1e8b745d4e239b784a5a1dd80d1db/pyyaml-6.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8da9669d359f02c0b91ccc01cac4a67f16afec0dac22c2ad09f46bee0697eba8", size = 181669, upload-time = "2025-09-25T21:32:23.673Z" }, + { url = "https://files.pythonhosted.org/packages/b1/16/95309993f1d3748cd644e02e38b75d50cbc0d9561d21f390a76242ce073f/pyyaml-6.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2283a07e2c21a2aa78d9c4442724ec1eb15f5e42a723b99cb3d822d48f5f7ad1", size = 173252, upload-time = "2025-09-25T21:32:25.149Z" }, + { url = "https://files.pythonhosted.org/packages/50/31/b20f376d3f810b9b2371e72ef5adb33879b25edb7a6d072cb7ca0c486398/pyyaml-6.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee2922902c45ae8ccada2c5b501ab86c36525b883eff4255313a253a3160861c", size = 767081, upload-time = "2025-09-25T21:32:26.575Z" }, + { url = "https://files.pythonhosted.org/packages/49/1e/a55ca81e949270d5d4432fbbd19dfea5321eda7c41a849d443dc92fd1ff7/pyyaml-6.0.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a33284e20b78bd4a18c8c2282d549d10bc8408a2a7ff57653c0cf0b9be0afce5", size = 841159, upload-time = "2025-09-25T21:32:27.727Z" }, + { url = "https://files.pythonhosted.org/packages/74/27/e5b8f34d02d9995b80abcef563ea1f8b56d20134d8f4e5e81733b1feceb2/pyyaml-6.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0f29edc409a6392443abf94b9cf89ce99889a1dd5376d94316ae5145dfedd5d6", size = 801626, upload-time = "2025-09-25T21:32:28.878Z" }, + { url = "https://files.pythonhosted.org/packages/f9/11/ba845c23988798f40e52ba45f34849aa8a1f2d4af4b798588010792ebad6/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f7057c9a337546edc7973c0d3ba84ddcdf0daa14533c2065749c9075001090e6", size = 753613, upload-time = "2025-09-25T21:32:30.178Z" }, + { url = "https://files.pythonhosted.org/packages/3d/e0/7966e1a7bfc0a45bf0a7fb6b98ea03fc9b8d84fa7f2229e9659680b69ee3/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:eda16858a3cab07b80edaf74336ece1f986ba330fdb8ee0d6c0d68fe82bc96be", size = 794115, upload-time = "2025-09-25T21:32:31.353Z" }, + { url = "https://files.pythonhosted.org/packages/de/94/980b50a6531b3019e45ddeada0626d45fa85cbe22300844a7983285bed3b/pyyaml-6.0.3-cp313-cp313-win32.whl", hash = "sha256:d0eae10f8159e8fdad514efdc92d74fd8d682c933a6dd088030f3834bc8e6b26", size = 137427, upload-time = "2025-09-25T21:32:32.58Z" }, + { url = "https://files.pythonhosted.org/packages/97/c9/39d5b874e8b28845e4ec2202b5da735d0199dbe5b8fb85f91398814a9a46/pyyaml-6.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:79005a0d97d5ddabfeeea4cf676af11e647e41d81c9a7722a193022accdb6b7c", size = 154090, upload-time = "2025-09-25T21:32:33.659Z" }, + { url = "https://files.pythonhosted.org/packages/73/e8/2bdf3ca2090f68bb3d75b44da7bbc71843b19c9f2b9cb9b0f4ab7a5a4329/pyyaml-6.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:5498cd1645aa724a7c71c8f378eb29ebe23da2fc0d7a08071d89469bf1d2defb", size = 140246, upload-time = "2025-09-25T21:32:34.663Z" }, { url = "https://files.pythonhosted.org/packages/9d/8c/f4bd7f6465179953d3ac9bc44ac1a8a3e6122cf8ada906b4f96c60172d43/pyyaml-6.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:8d1fab6bb153a416f9aeb4b8763bc0f22a5586065f86f7664fc23339fc1c1fac", size = 181814, upload-time = "2025-09-25T21:32:35.712Z" }, { url = "https://files.pythonhosted.org/packages/bd/9c/4d95bb87eb2063d20db7b60faa3840c1b18025517ae857371c4dd55a6b3a/pyyaml-6.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:34d5fcd24b8445fadc33f9cf348c1047101756fd760b4dacb5c3e99755703310", size = 173809, upload-time = "2025-09-25T21:32:36.789Z" }, { url = "https://files.pythonhosted.org/packages/92/b5/47e807c2623074914e29dabd16cbbdd4bf5e9b2db9f8090fa64411fc5382/pyyaml-6.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:501a031947e3a9025ed4405a168e6ef5ae3126c59f90ce0cd6f2bfc477be31b7", size = 766454, upload-time = "2025-09-25T21:32:37.966Z" }, @@ -1575,6 +2072,7 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "attrs" }, { name = "rpds-py" }, + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/2f/db/98b5c277be99dd18bfd91dd04e1b759cad18d1a338188c936e92f921c7e2/referencing-0.36.2.tar.gz", hash = "sha256:df2e89862cd09deabbdba16944cc3f10feb6b3e6f18e902f7cc25609a34775aa", size = 74744, upload-time = "2025-01-25T08:48:16.138Z" } wheels = [ @@ -1587,6 +2085,54 @@ version = "2026.2.19" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/ff/c0/d8079d4f6342e4cec5c3e7d7415b5cd3e633d5f4124f7a4626908dbe84c7/regex-2026.2.19.tar.gz", hash = "sha256:6fb8cb09b10e38f3ae17cc6dc04a1df77762bd0351b6ba9041438e7cc85ec310", size = 414973, upload-time = "2026-02-19T19:03:47.899Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/73/13b39c7c9356f333e564ab4790b6cb0df125b8e64e8d6474e73da49b1955/regex-2026.2.19-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:c1665138776e4ac1aa75146669236f7a8a696433ec4e525abf092ca9189247cc", size = 489541, upload-time = "2026-02-19T19:00:52.728Z" }, + { url = "https://files.pythonhosted.org/packages/15/77/fcc7bd9a67000d07fbcc11ed226077287a40d5c84544e62171d29d3ef59c/regex-2026.2.19-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d792b84709021945597e05656aac059526df4e0c9ef60a0eaebb306f8fafcaa8", size = 291414, upload-time = "2026-02-19T19:00:54.51Z" }, + { url = "https://files.pythonhosted.org/packages/f9/87/3997fc72dc59233426ef2e18dfdd105bb123812fff740ee9cc348f1a3243/regex-2026.2.19-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:db970bcce4d63b37b3f9eb8c893f0db980bbf1d404a1d8d2b17aa8189de92c53", size = 289140, upload-time = "2026-02-19T19:00:56.841Z" }, + { url = "https://files.pythonhosted.org/packages/f3/d0/b7dd3883ed1cff8ee0c0c9462d828aaf12be63bf5dc55453cbf423523b13/regex-2026.2.19-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:03d706fbe7dfec503c8c3cb76f9352b3e3b53b623672aa49f18a251a6c71b8e6", size = 798767, upload-time = "2026-02-19T19:00:59.014Z" }, + { url = "https://files.pythonhosted.org/packages/4a/7e/8e2d09103832891b2b735a2515abf377db21144c6dd5ede1fb03c619bf09/regex-2026.2.19-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8dbff048c042beef60aa1848961384572c5afb9e8b290b0f1203a5c42cf5af65", size = 864436, upload-time = "2026-02-19T19:01:00.772Z" }, + { url = "https://files.pythonhosted.org/packages/8a/2e/afea8d23a6db1f67f45e3a0da3057104ce32e154f57dd0c8997274d45fcd/regex-2026.2.19-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ccaaf9b907ea6b4223d5cbf5fa5dff5f33dc66f4907a25b967b8a81339a6e332", size = 912391, upload-time = "2026-02-19T19:01:02.865Z" }, + { url = "https://files.pythonhosted.org/packages/59/3c/ea5a4687adaba5e125b9bd6190153d0037325a0ba3757cc1537cc2c8dd90/regex-2026.2.19-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:75472631eee7898e16a8a20998d15106cb31cfde21cdf96ab40b432a7082af06", size = 803702, upload-time = "2026-02-19T19:01:05.298Z" }, + { url = "https://files.pythonhosted.org/packages/dc/c5/624a0705e8473a26488ec1a3a4e0b8763ecfc682a185c302dfec71daea35/regex-2026.2.19-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:d89f85a5ccc0cec125c24be75610d433d65295827ebaf0d884cbe56df82d4774", size = 775980, upload-time = "2026-02-19T19:01:07.047Z" }, + { url = "https://files.pythonhosted.org/packages/4d/4b/ed776642533232b5599b7c1f9d817fe11faf597e8a92b7a44b841daaae76/regex-2026.2.19-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0d9f81806abdca3234c3dd582b8a97492e93de3602c8772013cb4affa12d1668", size = 788122, upload-time = "2026-02-19T19:01:08.744Z" }, + { url = "https://files.pythonhosted.org/packages/8c/58/e93e093921d13b9784b4f69896b6e2a9e09580a265c59d9eb95e87d288f2/regex-2026.2.19-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:9dadc10d1c2bbb1326e572a226d2ec56474ab8aab26fdb8cf19419b372c349a9", size = 858910, upload-time = "2026-02-19T19:01:10.488Z" }, + { url = "https://files.pythonhosted.org/packages/85/77/ff1d25a0c56cd546e0455cbc93235beb33474899690e6a361fa6b52d265b/regex-2026.2.19-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:6bc25d7e15f80c9dc7853cbb490b91c1ec7310808b09d56bd278fe03d776f4f6", size = 764153, upload-time = "2026-02-19T19:01:12.156Z" }, + { url = "https://files.pythonhosted.org/packages/cd/ef/8ec58df26d52d04443b1dc56f9be4b409f43ed5ae6c0248a287f52311fc4/regex-2026.2.19-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:965d59792f5037d9138da6fed50ba943162160443b43d4895b182551805aff9c", size = 850348, upload-time = "2026-02-19T19:01:14.147Z" }, + { url = "https://files.pythonhosted.org/packages/f5/b3/c42fd5ed91639ce5a4225b9df909180fc95586db071f2bf7c68d2ccbfbe6/regex-2026.2.19-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:38d88c6ed4a09ed61403dbdf515d969ccba34669af3961ceb7311ecd0cef504a", size = 789977, upload-time = "2026-02-19T19:01:15.838Z" }, + { url = "https://files.pythonhosted.org/packages/b6/22/bc3b58ebddbfd6ca5633e71fd41829ee931963aad1ebeec55aad0c23044e/regex-2026.2.19-cp312-cp312-win32.whl", hash = "sha256:5df947cabab4b643d4791af5e28aecf6bf62e6160e525651a12eba3d03755e6b", size = 266381, upload-time = "2026-02-19T19:01:17.952Z" }, + { url = "https://files.pythonhosted.org/packages/fc/4a/6ff550b63e67603ee60e69dc6bd2d5694e85046a558f663b2434bdaeb285/regex-2026.2.19-cp312-cp312-win_amd64.whl", hash = "sha256:4146dc576ea99634ae9c15587d0c43273b4023a10702998edf0fa68ccb60237a", size = 277274, upload-time = "2026-02-19T19:01:19.826Z" }, + { url = "https://files.pythonhosted.org/packages/cc/29/9ec48b679b1e87e7bc8517dff45351eab38f74fbbda1fbcf0e9e6d4e8174/regex-2026.2.19-cp312-cp312-win_arm64.whl", hash = "sha256:cdc0a80f679353bd68450d2a42996090c30b2e15ca90ded6156c31f1a3b63f3b", size = 270509, upload-time = "2026-02-19T19:01:22.075Z" }, + { url = "https://files.pythonhosted.org/packages/d2/2d/a849835e76ac88fcf9e8784e642d3ea635d183c4112150ca91499d6703af/regex-2026.2.19-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8df08decd339e8b3f6a2eb5c05c687fe9d963ae91f352bc57beb05f5b2ac6879", size = 489329, upload-time = "2026-02-19T19:01:23.841Z" }, + { url = "https://files.pythonhosted.org/packages/da/aa/78ff4666d3855490bae87845a5983485e765e1f970da20adffa2937b241d/regex-2026.2.19-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3aa0944f1dc6e92f91f3b306ba7f851e1009398c84bfd370633182ee4fc26a64", size = 291308, upload-time = "2026-02-19T19:01:25.605Z" }, + { url = "https://files.pythonhosted.org/packages/cd/58/714384efcc07ae6beba528a541f6e99188c5cc1bc0295337f4e8a868296d/regex-2026.2.19-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c13228fbecb03eadbfd8f521732c5fda09ef761af02e920a3148e18ad0e09968", size = 289033, upload-time = "2026-02-19T19:01:27.243Z" }, + { url = "https://files.pythonhosted.org/packages/75/ec/6438a9344d2869cf5265236a06af1ca6d885e5848b6561e10629bc8e5a11/regex-2026.2.19-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0d0e72703c60d68b18b27cde7cdb65ed2570ae29fb37231aa3076bfb6b1d1c13", size = 798798, upload-time = "2026-02-19T19:01:28.877Z" }, + { url = "https://files.pythonhosted.org/packages/c2/be/b1ce2d395e3fd2ce5f2fde2522f76cade4297cfe84cd61990ff48308749c/regex-2026.2.19-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:46e69a4bf552e30e74a8aa73f473c87efcb7f6e8c8ece60d9fd7bf13d5c86f02", size = 864444, upload-time = "2026-02-19T19:01:30.933Z" }, + { url = "https://files.pythonhosted.org/packages/d5/97/a3406460c504f7136f140d9461960c25f058b0240e4424d6fb73c7a067ab/regex-2026.2.19-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8edda06079bd770f7f0cf7f3bba1a0b447b96b4a543c91fe0c142d034c166161", size = 912633, upload-time = "2026-02-19T19:01:32.744Z" }, + { url = "https://files.pythonhosted.org/packages/8b/d9/e5dbef95008d84e9af1dc0faabbc34a7fbc8daa05bc5807c5cf86c2bec49/regex-2026.2.19-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9cbc69eae834afbf634f7c902fc72ff3e993f1c699156dd1af1adab5d06b7fe7", size = 803718, upload-time = "2026-02-19T19:01:34.61Z" }, + { url = "https://files.pythonhosted.org/packages/2f/e5/61d80132690a1ef8dc48e0f44248036877aebf94235d43f63a20d1598888/regex-2026.2.19-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bcf57d30659996ee5c7937999874504c11b5a068edc9515e6a59221cc2744dd1", size = 775975, upload-time = "2026-02-19T19:01:36.525Z" }, + { url = "https://files.pythonhosted.org/packages/05/32/ae828b3b312c972cf228b634447de27237d593d61505e6ad84723f8eabba/regex-2026.2.19-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:8e6e77cd92216eb489e21e5652a11b186afe9bdefca8a2db739fd6b205a9e0a4", size = 788129, upload-time = "2026-02-19T19:01:38.498Z" }, + { url = "https://files.pythonhosted.org/packages/cb/25/d74f34676f22bec401eddf0e5e457296941e10cbb2a49a571ca7a2c16e5a/regex-2026.2.19-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:b9ab8dec42afefa6314ea9b31b188259ffdd93f433d77cad454cd0b8d235ce1c", size = 858818, upload-time = "2026-02-19T19:01:40.409Z" }, + { url = "https://files.pythonhosted.org/packages/1e/eb/0bc2b01a6b0b264e1406e5ef11cae3f634c3bd1a6e61206fd3227ce8e89c/regex-2026.2.19-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:294c0fb2e87c6bcc5f577c8f609210f5700b993151913352ed6c6af42f30f95f", size = 764186, upload-time = "2026-02-19T19:01:43.009Z" }, + { url = "https://files.pythonhosted.org/packages/eb/37/5fe5a630d0d99ecf0c3570f8905dafbc160443a2d80181607770086c9812/regex-2026.2.19-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c0924c64b082d4512b923ac016d6e1dcf647a3560b8a4c7e55cbbd13656cb4ed", size = 850363, upload-time = "2026-02-19T19:01:45.015Z" }, + { url = "https://files.pythonhosted.org/packages/c3/45/ef68d805294b01ec030cfd388724ba76a5a21a67f32af05b17924520cb0b/regex-2026.2.19-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:790dbf87b0361606cb0d79b393c3e8f4436a14ee56568a7463014565d97da02a", size = 790026, upload-time = "2026-02-19T19:01:47.51Z" }, + { url = "https://files.pythonhosted.org/packages/d6/3a/40d3b66923dfc5aeba182f194f0ca35d09afe8c031a193e6ae46971a0a0e/regex-2026.2.19-cp313-cp313-win32.whl", hash = "sha256:43cdde87006271be6963896ed816733b10967baaf0e271d529c82e93da66675b", size = 266372, upload-time = "2026-02-19T19:01:49.469Z" }, + { url = "https://files.pythonhosted.org/packages/3d/f2/39082e8739bfd553497689e74f9d5e5bb531d6f8936d0b94f43e18f219c0/regex-2026.2.19-cp313-cp313-win_amd64.whl", hash = "sha256:127ea69273485348a126ebbf3d6052604d3c7da284f797bba781f364c0947d47", size = 277253, upload-time = "2026-02-19T19:01:51.208Z" }, + { url = "https://files.pythonhosted.org/packages/c2/c2/852b9600d53fb47e47080c203e2cdc0ac7e84e37032a57e0eaa37446033a/regex-2026.2.19-cp313-cp313-win_arm64.whl", hash = "sha256:5e56c669535ac59cbf96ca1ece0ef26cb66809990cda4fa45e1e32c3b146599e", size = 270505, upload-time = "2026-02-19T19:01:52.865Z" }, + { url = "https://files.pythonhosted.org/packages/a9/a2/e0b4575b93bc84db3b1fab24183e008691cd2db5c0ef14ed52681fbd94dd/regex-2026.2.19-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:93d881cab5afdc41a005dba1524a40947d6f7a525057aa64aaf16065cf62faa9", size = 492202, upload-time = "2026-02-19T19:01:54.816Z" }, + { url = "https://files.pythonhosted.org/packages/24/b5/b84fec8cbb5f92a7eed2b6b5353a6a9eed9670fee31817c2da9eb85dc797/regex-2026.2.19-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:80caaa1ddcc942ec7be18427354f9d58a79cee82dea2a6b3d4fd83302e1240d7", size = 292884, upload-time = "2026-02-19T19:01:58.254Z" }, + { url = "https://files.pythonhosted.org/packages/70/0c/fe89966dfae43da46f475362401f03e4d7dc3a3c955b54f632abc52669e0/regex-2026.2.19-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:d793c5b4d2b4c668524cd1651404cfc798d40694c759aec997e196fe9729ec60", size = 291236, upload-time = "2026-02-19T19:01:59.966Z" }, + { url = "https://files.pythonhosted.org/packages/f2/f7/bda2695134f3e63eb5cccbbf608c2a12aab93d261ff4e2fe49b47fabc948/regex-2026.2.19-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b5100acb20648d9efd3f4e7e91f51187f95f22a741dcd719548a6cf4e1b34b3f", size = 807660, upload-time = "2026-02-19T19:02:01.632Z" }, + { url = "https://files.pythonhosted.org/packages/11/56/6e3a4bf5e60d17326b7003d91bbde8938e439256dec211d835597a44972d/regex-2026.2.19-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5e3a31e94d10e52a896adaa3adf3621bd526ad2b45b8c2d23d1bbe74c7423007", size = 873585, upload-time = "2026-02-19T19:02:03.522Z" }, + { url = "https://files.pythonhosted.org/packages/35/5e/c90c6aa4d1317cc11839359479cfdd2662608f339e84e81ba751c8a4e461/regex-2026.2.19-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8497421099b981f67c99eba4154cf0dfd8e47159431427a11cfb6487f7791d9e", size = 915243, upload-time = "2026-02-19T19:02:05.608Z" }, + { url = "https://files.pythonhosted.org/packages/90/7c/981ea0694116793001496aaf9524e5c99e122ec3952d9e7f1878af3a6bf1/regex-2026.2.19-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1e7a08622f7d51d7a068f7e4052a38739c412a3e74f55817073d2e2418149619", size = 812922, upload-time = "2026-02-19T19:02:08.115Z" }, + { url = "https://files.pythonhosted.org/packages/2d/be/9eda82afa425370ffdb3fa9f3ea42450b9ae4da3ff0a4ec20466f69e371b/regex-2026.2.19-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:8abe671cf0f15c26b1ad389bf4043b068ce7d3b1c5d9313e12895f57d6738555", size = 781318, upload-time = "2026-02-19T19:02:10.072Z" }, + { url = "https://files.pythonhosted.org/packages/c6/d5/50f0bbe56a8199f60a7b6c714e06e54b76b33d31806a69d0703b23ce2a9e/regex-2026.2.19-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:5a8f28dd32a4ce9c41758d43b5b9115c1c497b4b1f50c457602c1d571fa98ce1", size = 795649, upload-time = "2026-02-19T19:02:11.96Z" }, + { url = "https://files.pythonhosted.org/packages/c5/09/d039f081e44a8b0134d0bb2dd805b0ddf390b69d0b58297ae098847c572f/regex-2026.2.19-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:654dc41a5ba9b8cc8432b3f1aa8906d8b45f3e9502442a07c2f27f6c63f85db5", size = 868844, upload-time = "2026-02-19T19:02:14.043Z" }, + { url = "https://files.pythonhosted.org/packages/ef/53/e2903b79a19ec8557fe7cd21cd093956ff2dbc2e0e33969e3adbe5b184dd/regex-2026.2.19-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:4a02faea614e7fdd6ba8b3bec6c8e79529d356b100381cec76e638f45d12ca04", size = 770113, upload-time = "2026-02-19T19:02:16.161Z" }, + { url = "https://files.pythonhosted.org/packages/8f/e2/784667767b55714ebb4e59bf106362327476b882c0b2f93c25e84cc99b1a/regex-2026.2.19-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:d96162140bb819814428800934c7b71b7bffe81fb6da2d6abc1dcca31741eca3", size = 854922, upload-time = "2026-02-19T19:02:18.155Z" }, + { url = "https://files.pythonhosted.org/packages/59/78/9ef4356bd4aed752775bd18071034979b85f035fec51f3a4f9dea497a254/regex-2026.2.19-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:c227f2922153ee42bbeb355fd6d009f8c81d9d7bdd666e2276ce41f53ed9a743", size = 799636, upload-time = "2026-02-19T19:02:20.04Z" }, + { url = "https://files.pythonhosted.org/packages/cf/54/fcfc9287f20c5c9bd8db755aafe3e8cf4d99a6a3f1c7162ee182e0ca9374/regex-2026.2.19-cp313-cp313t-win32.whl", hash = "sha256:a178df8ec03011153fbcd2c70cb961bc98cbbd9694b28f706c318bee8927c3db", size = 268968, upload-time = "2026-02-19T19:02:22.816Z" }, + { url = "https://files.pythonhosted.org/packages/1e/a0/ff24c6cb1273e42472706d277147fc38e1f9074a280fb6034b0fc9b69415/regex-2026.2.19-cp313-cp313t-win_amd64.whl", hash = "sha256:2c1693ca6f444d554aa246b592355b5cec030ace5a2729eae1b04ab6e853e768", size = 280390, upload-time = "2026-02-19T19:02:25.231Z" }, + { url = "https://files.pythonhosted.org/packages/1a/b6/a3f6ad89d780ffdeebb4d5e2e3e30bd2ef1f70f6a94d1760e03dd1e12c60/regex-2026.2.19-cp313-cp313t-win_arm64.whl", hash = "sha256:c0761d7ae8d65773e01515ebb0b304df1bf37a0a79546caad9cbe79a42c12af7", size = 271643, upload-time = "2026-02-19T19:02:27.175Z" }, { url = "https://files.pythonhosted.org/packages/2d/e2/7ad4e76a6dddefc0d64dbe12a4d3ca3947a19ddc501f864a5df2a8222ddd/regex-2026.2.19-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:03d191a9bcf94d31af56d2575210cb0d0c6a054dbcad2ea9e00aa4c42903b919", size = 489306, upload-time = "2026-02-19T19:02:29.058Z" }, { url = "https://files.pythonhosted.org/packages/14/95/ee1736135733afbcf1846c58671046f99c4d5170102a150ebb3dd8d701d9/regex-2026.2.19-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:516ee067c6c721d0d0bfb80a2004edbd060fffd07e456d4e1669e38fe82f922e", size = 291218, upload-time = "2026-02-19T19:02:31.083Z" }, { url = "https://files.pythonhosted.org/packages/ef/08/180d1826c3d7065200a5168c6b993a44947395c7bb6e04b2c2a219c34225/regex-2026.2.19-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:997862c619994c4a356cb7c3592502cbd50c2ab98da5f61c5c871f10f22de7e5", size = 289097, upload-time = "2026-02-19T19:02:33.485Z" }, @@ -1668,6 +2214,50 @@ version = "0.30.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/20/af/3f2f423103f1113b36230496629986e0ef7e199d2aa8392452b484b38ced/rpds_py-0.30.0.tar.gz", hash = "sha256:dd8ff7cf90014af0c0f787eea34794ebf6415242ee1d6fa91eaba725cc441e84", size = 69469, upload-time = "2025-11-30T20:24:38.837Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/03/e7/98a2f4ac921d82f33e03f3835f5bf3a4a40aa1bfdc57975e74a97b2b4bdd/rpds_py-0.30.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a161f20d9a43006833cd7068375a94d035714d73a172b681d8881820600abfad", size = 375086, upload-time = "2025-11-30T20:22:17.93Z" }, + { url = "https://files.pythonhosted.org/packages/4d/a1/bca7fd3d452b272e13335db8d6b0b3ecde0f90ad6f16f3328c6fb150c889/rpds_py-0.30.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6abc8880d9d036ecaafe709079969f56e876fcf107f7a8e9920ba6d5a3878d05", size = 359053, upload-time = "2025-11-30T20:22:19.297Z" }, + { url = "https://files.pythonhosted.org/packages/65/1c/ae157e83a6357eceff62ba7e52113e3ec4834a84cfe07fa4b0757a7d105f/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca28829ae5f5d569bb62a79512c842a03a12576375d5ece7d2cadf8abe96ec28", size = 390763, upload-time = "2025-11-30T20:22:21.661Z" }, + { url = "https://files.pythonhosted.org/packages/d4/36/eb2eb8515e2ad24c0bd43c3ee9cd74c33f7ca6430755ccdb240fd3144c44/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a1010ed9524c73b94d15919ca4d41d8780980e1765babf85f9a2f90d247153dd", size = 408951, upload-time = "2025-11-30T20:22:23.408Z" }, + { url = "https://files.pythonhosted.org/packages/d6/65/ad8dc1784a331fabbd740ef6f71ce2198c7ed0890dab595adb9ea2d775a1/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f8d1736cfb49381ba528cd5baa46f82fdc65c06e843dab24dd70b63d09121b3f", size = 514622, upload-time = "2025-11-30T20:22:25.16Z" }, + { url = "https://files.pythonhosted.org/packages/63/8e/0cfa7ae158e15e143fe03993b5bcd743a59f541f5952e1546b1ac1b5fd45/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d948b135c4693daff7bc2dcfc4ec57237a29bd37e60c2fabf5aff2bbacf3e2f1", size = 414492, upload-time = "2025-11-30T20:22:26.505Z" }, + { url = "https://files.pythonhosted.org/packages/60/1b/6f8f29f3f995c7ffdde46a626ddccd7c63aefc0efae881dc13b6e5d5bb16/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47f236970bccb2233267d89173d3ad2703cd36a0e2a6e92d0560d333871a3d23", size = 394080, upload-time = "2025-11-30T20:22:27.934Z" }, + { url = "https://files.pythonhosted.org/packages/6d/d5/a266341051a7a3ca2f4b750a3aa4abc986378431fc2da508c5034d081b70/rpds_py-0.30.0-cp312-cp312-manylinux_2_31_riscv64.whl", hash = "sha256:2e6ecb5a5bcacf59c3f912155044479af1d0b6681280048b338b28e364aca1f6", size = 408680, upload-time = "2025-11-30T20:22:29.341Z" }, + { url = "https://files.pythonhosted.org/packages/10/3b/71b725851df9ab7a7a4e33cf36d241933da66040d195a84781f49c50490c/rpds_py-0.30.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a8fa71a2e078c527c3e9dc9fc5a98c9db40bcc8a92b4e8858e36d329f8684b51", size = 423589, upload-time = "2025-11-30T20:22:31.469Z" }, + { url = "https://files.pythonhosted.org/packages/00/2b/e59e58c544dc9bd8bd8384ecdb8ea91f6727f0e37a7131baeff8d6f51661/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:73c67f2db7bc334e518d097c6d1e6fed021bbc9b7d678d6cc433478365d1d5f5", size = 573289, upload-time = "2025-11-30T20:22:32.997Z" }, + { url = "https://files.pythonhosted.org/packages/da/3e/a18e6f5b460893172a7d6a680e86d3b6bc87a54c1f0b03446a3c8c7b588f/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:5ba103fb455be00f3b1c2076c9d4264bfcb037c976167a6047ed82f23153f02e", size = 599737, upload-time = "2025-11-30T20:22:34.419Z" }, + { url = "https://files.pythonhosted.org/packages/5c/e2/714694e4b87b85a18e2c243614974413c60aa107fd815b8cbc42b873d1d7/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7cee9c752c0364588353e627da8a7e808a66873672bcb5f52890c33fd965b394", size = 563120, upload-time = "2025-11-30T20:22:35.903Z" }, + { url = "https://files.pythonhosted.org/packages/6f/ab/d5d5e3bcedb0a77f4f613706b750e50a5a3ba1c15ccd3665ecc636c968fd/rpds_py-0.30.0-cp312-cp312-win32.whl", hash = "sha256:1ab5b83dbcf55acc8b08fc62b796ef672c457b17dbd7820a11d6c52c06839bdf", size = 223782, upload-time = "2025-11-30T20:22:37.271Z" }, + { url = "https://files.pythonhosted.org/packages/39/3b/f786af9957306fdc38a74cef405b7b93180f481fb48453a114bb6465744a/rpds_py-0.30.0-cp312-cp312-win_amd64.whl", hash = "sha256:a090322ca841abd453d43456ac34db46e8b05fd9b3b4ac0c78bcde8b089f959b", size = 240463, upload-time = "2025-11-30T20:22:39.021Z" }, + { url = "https://files.pythonhosted.org/packages/f3/d2/b91dc748126c1559042cfe41990deb92c4ee3e2b415f6b5234969ffaf0cc/rpds_py-0.30.0-cp312-cp312-win_arm64.whl", hash = "sha256:669b1805bd639dd2989b281be2cfd951c6121b65e729d9b843e9639ef1fd555e", size = 230868, upload-time = "2025-11-30T20:22:40.493Z" }, + { url = "https://files.pythonhosted.org/packages/ed/dc/d61221eb88ff410de3c49143407f6f3147acf2538c86f2ab7ce65ae7d5f9/rpds_py-0.30.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:f83424d738204d9770830d35290ff3273fbb02b41f919870479fab14b9d303b2", size = 374887, upload-time = "2025-11-30T20:22:41.812Z" }, + { url = "https://files.pythonhosted.org/packages/fd/32/55fb50ae104061dbc564ef15cc43c013dc4a9f4527a1f4d99baddf56fe5f/rpds_py-0.30.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e7536cd91353c5273434b4e003cbda89034d67e7710eab8761fd918ec6c69cf8", size = 358904, upload-time = "2025-11-30T20:22:43.479Z" }, + { url = "https://files.pythonhosted.org/packages/58/70/faed8186300e3b9bdd138d0273109784eea2396c68458ed580f885dfe7ad/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2771c6c15973347f50fece41fc447c054b7ac2ae0502388ce3b6738cd366e3d4", size = 389945, upload-time = "2025-11-30T20:22:44.819Z" }, + { url = "https://files.pythonhosted.org/packages/bd/a8/073cac3ed2c6387df38f71296d002ab43496a96b92c823e76f46b8af0543/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0a59119fc6e3f460315fe9d08149f8102aa322299deaa5cab5b40092345c2136", size = 407783, upload-time = "2025-11-30T20:22:46.103Z" }, + { url = "https://files.pythonhosted.org/packages/77/57/5999eb8c58671f1c11eba084115e77a8899d6e694d2a18f69f0ba471ec8b/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:76fec018282b4ead0364022e3c54b60bf368b9d926877957a8624b58419169b7", size = 515021, upload-time = "2025-11-30T20:22:47.458Z" }, + { url = "https://files.pythonhosted.org/packages/e0/af/5ab4833eadc36c0a8ed2bc5c0de0493c04f6c06de223170bd0798ff98ced/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:692bef75a5525db97318e8cd061542b5a79812d711ea03dbc1f6f8dbb0c5f0d2", size = 414589, upload-time = "2025-11-30T20:22:48.872Z" }, + { url = "https://files.pythonhosted.org/packages/b7/de/f7192e12b21b9e9a68a6d0f249b4af3fdcdff8418be0767a627564afa1f1/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9027da1ce107104c50c81383cae773ef5c24d296dd11c99e2629dbd7967a20c6", size = 394025, upload-time = "2025-11-30T20:22:50.196Z" }, + { url = "https://files.pythonhosted.org/packages/91/c4/fc70cd0249496493500e7cc2de87504f5aa6509de1e88623431fec76d4b6/rpds_py-0.30.0-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:9cf69cdda1f5968a30a359aba2f7f9aa648a9ce4b580d6826437f2b291cfc86e", size = 408895, upload-time = "2025-11-30T20:22:51.87Z" }, + { url = "https://files.pythonhosted.org/packages/58/95/d9275b05ab96556fefff73a385813eb66032e4c99f411d0795372d9abcea/rpds_py-0.30.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a4796a717bf12b9da9d3ad002519a86063dcac8988b030e405704ef7d74d2d9d", size = 422799, upload-time = "2025-11-30T20:22:53.341Z" }, + { url = "https://files.pythonhosted.org/packages/06/c1/3088fc04b6624eb12a57eb814f0d4997a44b0d208d6cace713033ff1a6ba/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5d4c2aa7c50ad4728a094ebd5eb46c452e9cb7edbfdb18f9e1221f597a73e1e7", size = 572731, upload-time = "2025-11-30T20:22:54.778Z" }, + { url = "https://files.pythonhosted.org/packages/d8/42/c612a833183b39774e8ac8fecae81263a68b9583ee343db33ab571a7ce55/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ba81a9203d07805435eb06f536d95a266c21e5b2dfbf6517748ca40c98d19e31", size = 599027, upload-time = "2025-11-30T20:22:56.212Z" }, + { url = "https://files.pythonhosted.org/packages/5f/60/525a50f45b01d70005403ae0e25f43c0384369ad24ffe46e8d9068b50086/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:945dccface01af02675628334f7cf49c2af4c1c904748efc5cf7bbdf0b579f95", size = 563020, upload-time = "2025-11-30T20:22:58.2Z" }, + { url = "https://files.pythonhosted.org/packages/0b/5d/47c4655e9bcd5ca907148535c10e7d489044243cc9941c16ed7cd53be91d/rpds_py-0.30.0-cp313-cp313-win32.whl", hash = "sha256:b40fb160a2db369a194cb27943582b38f79fc4887291417685f3ad693c5a1d5d", size = 223139, upload-time = "2025-11-30T20:23:00.209Z" }, + { url = "https://files.pythonhosted.org/packages/f2/e1/485132437d20aa4d3e1d8b3fb5a5e65aa8139f1e097080c2a8443201742c/rpds_py-0.30.0-cp313-cp313-win_amd64.whl", hash = "sha256:806f36b1b605e2d6a72716f321f20036b9489d29c51c91f4dd29a3e3afb73b15", size = 240224, upload-time = "2025-11-30T20:23:02.008Z" }, + { url = "https://files.pythonhosted.org/packages/24/95/ffd128ed1146a153d928617b0ef673960130be0009c77d8fbf0abe306713/rpds_py-0.30.0-cp313-cp313-win_arm64.whl", hash = "sha256:d96c2086587c7c30d44f31f42eae4eac89b60dabbac18c7669be3700f13c3ce1", size = 230645, upload-time = "2025-11-30T20:23:03.43Z" }, + { url = "https://files.pythonhosted.org/packages/ff/1b/b10de890a0def2a319a2626334a7f0ae388215eb60914dbac8a3bae54435/rpds_py-0.30.0-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:eb0b93f2e5c2189ee831ee43f156ed34e2a89a78a66b98cadad955972548be5a", size = 364443, upload-time = "2025-11-30T20:23:04.878Z" }, + { url = "https://files.pythonhosted.org/packages/0d/bf/27e39f5971dc4f305a4fb9c672ca06f290f7c4e261c568f3dea16a410d47/rpds_py-0.30.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:922e10f31f303c7c920da8981051ff6d8c1a56207dbdf330d9047f6d30b70e5e", size = 353375, upload-time = "2025-11-30T20:23:06.342Z" }, + { url = "https://files.pythonhosted.org/packages/40/58/442ada3bba6e8e6615fc00483135c14a7538d2ffac30e2d933ccf6852232/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdc62c8286ba9bf7f47befdcea13ea0e26bf294bda99758fd90535cbaf408000", size = 383850, upload-time = "2025-11-30T20:23:07.825Z" }, + { url = "https://files.pythonhosted.org/packages/14/14/f59b0127409a33c6ef6f5c1ebd5ad8e32d7861c9c7adfa9a624fc3889f6c/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:47f9a91efc418b54fb8190a6b4aa7813a23fb79c51f4bb84e418f5476c38b8db", size = 392812, upload-time = "2025-11-30T20:23:09.228Z" }, + { url = "https://files.pythonhosted.org/packages/b3/66/e0be3e162ac299b3a22527e8913767d869e6cc75c46bd844aa43fb81ab62/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1f3587eb9b17f3789ad50824084fa6f81921bbf9a795826570bda82cb3ed91f2", size = 517841, upload-time = "2025-11-30T20:23:11.186Z" }, + { url = "https://files.pythonhosted.org/packages/3d/55/fa3b9cf31d0c963ecf1ba777f7cf4b2a2c976795ac430d24a1f43d25a6ba/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:39c02563fc592411c2c61d26b6c5fe1e51eaa44a75aa2c8735ca88b0d9599daa", size = 408149, upload-time = "2025-11-30T20:23:12.864Z" }, + { url = "https://files.pythonhosted.org/packages/60/ca/780cf3b1a32b18c0f05c441958d3758f02544f1d613abf9488cd78876378/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51a1234d8febafdfd33a42d97da7a43f5dcb120c1060e352a3fbc0c6d36e2083", size = 383843, upload-time = "2025-11-30T20:23:14.638Z" }, + { url = "https://files.pythonhosted.org/packages/82/86/d5f2e04f2aa6247c613da0c1dd87fcd08fa17107e858193566048a1e2f0a/rpds_py-0.30.0-cp313-cp313t-manylinux_2_31_riscv64.whl", hash = "sha256:eb2c4071ab598733724c08221091e8d80e89064cd472819285a9ab0f24bcedb9", size = 396507, upload-time = "2025-11-30T20:23:16.105Z" }, + { url = "https://files.pythonhosted.org/packages/4b/9a/453255d2f769fe44e07ea9785c8347edaf867f7026872e76c1ad9f7bed92/rpds_py-0.30.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6bdfdb946967d816e6adf9a3d8201bfad269c67efe6cefd7093ef959683c8de0", size = 414949, upload-time = "2025-11-30T20:23:17.539Z" }, + { url = "https://files.pythonhosted.org/packages/a3/31/622a86cdc0c45d6df0e9ccb6becdba5074735e7033c20e401a6d9d0e2ca0/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:c77afbd5f5250bf27bf516c7c4a016813eb2d3e116139aed0096940c5982da94", size = 565790, upload-time = "2025-11-30T20:23:19.029Z" }, + { url = "https://files.pythonhosted.org/packages/1c/5d/15bbf0fb4a3f58a3b1c67855ec1efcc4ceaef4e86644665fff03e1b66d8d/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:61046904275472a76c8c90c9ccee9013d70a6d0f73eecefd38c1ae7c39045a08", size = 590217, upload-time = "2025-11-30T20:23:20.885Z" }, + { url = "https://files.pythonhosted.org/packages/6d/61/21b8c41f68e60c8cc3b2e25644f0e3681926020f11d06ab0b78e3c6bbff1/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4c5f36a861bc4b7da6516dbdf302c55313afa09b81931e8280361a4f6c9a2d27", size = 555806, upload-time = "2025-11-30T20:23:22.488Z" }, + { url = "https://files.pythonhosted.org/packages/f9/39/7e067bb06c31de48de3eb200f9fc7c58982a4d3db44b07e73963e10d3be9/rpds_py-0.30.0-cp313-cp313t-win32.whl", hash = "sha256:3d4a69de7a3e50ffc214ae16d79d8fbb0922972da0356dcf4d0fdca2878559c6", size = 211341, upload-time = "2025-11-30T20:23:24.449Z" }, + { url = "https://files.pythonhosted.org/packages/0a/4d/222ef0b46443cf4cf46764d9c630f3fe4abaa7245be9417e56e9f52b8f65/rpds_py-0.30.0-cp313-cp313t-win_amd64.whl", hash = "sha256:f14fc5df50a716f7ece6a80b6c78bb35ea2ca47c499e422aa4463455dd96d56d", size = 225768, upload-time = "2025-11-30T20:23:25.908Z" }, { url = "https://files.pythonhosted.org/packages/86/81/dad16382ebbd3d0e0328776d8fd7ca94220e4fa0798d1dc5e7da48cb3201/rpds_py-0.30.0-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:68f19c879420aa08f61203801423f6cd5ac5f0ac4ac82a2368a9fcd6a9a075e0", size = 362099, upload-time = "2025-11-30T20:23:27.316Z" }, { url = "https://files.pythonhosted.org/packages/2b/60/19f7884db5d5603edf3c6bce35408f45ad3e97e10007df0e17dd57af18f8/rpds_py-0.30.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:ec7c4490c672c1a0389d319b3a9cfcd098dcdc4783991553c332a15acf7249be", size = 353192, upload-time = "2025-11-30T20:23:29.151Z" }, { url = "https://files.pythonhosted.org/packages/bf/c4/76eb0e1e72d1a9c4703c69607cec123c29028bff28ce41588792417098ac/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f251c812357a3fed308d684a5079ddfb9d933860fc6de89f2b7ab00da481e65f", size = 384080, upload-time = "2025-11-30T20:23:30.785Z" }, @@ -1767,6 +2357,7 @@ version = "0.52.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "anyio" }, + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c4/68/79977123bb7be889ad680d79a40f339082c1978b5cfcf62c2d8d196873ac/starlette-0.52.1.tar.gz", hash = "sha256:834edd1b0a23167694292e94f597773bc3f89f362be6effee198165a35d62933", size = 2653702, upload-time = "2026-01-18T13:34:11.062Z" } wheels = [ @@ -1783,6 +2374,27 @@ dependencies = [ ] sdist = { url = "https://files.pythonhosted.org/packages/7d/ab/4d017d0f76ec3171d469d80fc03dfbb4e48a4bcaddaa831b31d526f05edc/tiktoken-0.12.0.tar.gz", hash = "sha256:b18ba7ee2b093863978fcb14f74b3707cdc8d4d4d3836853ce7ec60772139931", size = 37806, upload-time = "2025-10-06T20:22:45.419Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/85/be65d39d6b647c79800fd9d29241d081d4eeb06271f383bb87200d74cf76/tiktoken-0.12.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b97f74aca0d78a1ff21b8cd9e9925714c15a9236d6ceacf5c7327c117e6e21e8", size = 1050728, upload-time = "2025-10-06T20:21:52.756Z" }, + { url = "https://files.pythonhosted.org/packages/4a/42/6573e9129bc55c9bf7300b3a35bef2c6b9117018acca0dc760ac2d93dffe/tiktoken-0.12.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2b90f5ad190a4bb7c3eb30c5fa32e1e182ca1ca79f05e49b448438c3e225a49b", size = 994049, upload-time = "2025-10-06T20:21:53.782Z" }, + { url = "https://files.pythonhosted.org/packages/66/c5/ed88504d2f4a5fd6856990b230b56d85a777feab84e6129af0822f5d0f70/tiktoken-0.12.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:65b26c7a780e2139e73acc193e5c63ac754021f160df919add909c1492c0fb37", size = 1129008, upload-time = "2025-10-06T20:21:54.832Z" }, + { url = "https://files.pythonhosted.org/packages/f4/90/3dae6cc5436137ebd38944d396b5849e167896fc2073da643a49f372dc4f/tiktoken-0.12.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:edde1ec917dfd21c1f2f8046b86348b0f54a2c0547f68149d8600859598769ad", size = 1152665, upload-time = "2025-10-06T20:21:56.129Z" }, + { url = "https://files.pythonhosted.org/packages/a3/fe/26df24ce53ffde419a42f5f53d755b995c9318908288c17ec3f3448313a3/tiktoken-0.12.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:35a2f8ddd3824608b3d650a000c1ef71f730d0c56486845705a8248da00f9fe5", size = 1194230, upload-time = "2025-10-06T20:21:57.546Z" }, + { url = "https://files.pythonhosted.org/packages/20/cc/b064cae1a0e9fac84b0d2c46b89f4e57051a5f41324e385d10225a984c24/tiktoken-0.12.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:83d16643edb7fa2c99eff2ab7733508aae1eebb03d5dfc46f5565862810f24e3", size = 1254688, upload-time = "2025-10-06T20:21:58.619Z" }, + { url = "https://files.pythonhosted.org/packages/81/10/b8523105c590c5b8349f2587e2fdfe51a69544bd5a76295fc20f2374f470/tiktoken-0.12.0-cp312-cp312-win_amd64.whl", hash = "sha256:ffc5288f34a8bc02e1ea7047b8d041104791d2ddbf42d1e5fa07822cbffe16bd", size = 878694, upload-time = "2025-10-06T20:21:59.876Z" }, + { url = "https://files.pythonhosted.org/packages/00/61/441588ee21e6b5cdf59d6870f86beb9789e532ee9718c251b391b70c68d6/tiktoken-0.12.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:775c2c55de2310cc1bc9a3ad8826761cbdc87770e586fd7b6da7d4589e13dab3", size = 1050802, upload-time = "2025-10-06T20:22:00.96Z" }, + { url = "https://files.pythonhosted.org/packages/1f/05/dcf94486d5c5c8d34496abe271ac76c5b785507c8eae71b3708f1ad9b45a/tiktoken-0.12.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a01b12f69052fbe4b080a2cfb867c4de12c704b56178edf1d1d7b273561db160", size = 993995, upload-time = "2025-10-06T20:22:02.788Z" }, + { url = "https://files.pythonhosted.org/packages/a0/70/5163fe5359b943f8db9946b62f19be2305de8c3d78a16f629d4165e2f40e/tiktoken-0.12.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:01d99484dc93b129cd0964f9d34eee953f2737301f18b3c7257bf368d7615baa", size = 1128948, upload-time = "2025-10-06T20:22:03.814Z" }, + { url = "https://files.pythonhosted.org/packages/0c/da/c028aa0babf77315e1cef357d4d768800c5f8a6de04d0eac0f377cb619fa/tiktoken-0.12.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:4a1a4fcd021f022bfc81904a911d3df0f6543b9e7627b51411da75ff2fe7a1be", size = 1151986, upload-time = "2025-10-06T20:22:05.173Z" }, + { url = "https://files.pythonhosted.org/packages/a0/5a/886b108b766aa53e295f7216b509be95eb7d60b166049ce2c58416b25f2a/tiktoken-0.12.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:981a81e39812d57031efdc9ec59fa32b2a5a5524d20d4776574c4b4bd2e9014a", size = 1194222, upload-time = "2025-10-06T20:22:06.265Z" }, + { url = "https://files.pythonhosted.org/packages/f4/f8/4db272048397636ac7a078d22773dd2795b1becee7bc4922fe6207288d57/tiktoken-0.12.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9baf52f84a3f42eef3ff4e754a0db79a13a27921b457ca9832cf944c6be4f8f3", size = 1255097, upload-time = "2025-10-06T20:22:07.403Z" }, + { url = "https://files.pythonhosted.org/packages/8e/32/45d02e2e0ea2be3a9ed22afc47d93741247e75018aac967b713b2941f8ea/tiktoken-0.12.0-cp313-cp313-win_amd64.whl", hash = "sha256:b8a0cd0c789a61f31bf44851defbd609e8dd1e2c8589c614cc1060940ef1f697", size = 879117, upload-time = "2025-10-06T20:22:08.418Z" }, + { url = "https://files.pythonhosted.org/packages/ce/76/994fc868f88e016e6d05b0da5ac24582a14c47893f4474c3e9744283f1d5/tiktoken-0.12.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d5f89ea5680066b68bcb797ae85219c72916c922ef0fcdd3480c7d2315ffff16", size = 1050309, upload-time = "2025-10-06T20:22:10.939Z" }, + { url = "https://files.pythonhosted.org/packages/f6/b8/57ef1456504c43a849821920d582a738a461b76a047f352f18c0b26c6516/tiktoken-0.12.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b4e7ed1c6a7a8a60a3230965bdedba8cc58f68926b835e519341413370e0399a", size = 993712, upload-time = "2025-10-06T20:22:12.115Z" }, + { url = "https://files.pythonhosted.org/packages/72/90/13da56f664286ffbae9dbcfadcc625439142675845baa62715e49b87b68b/tiktoken-0.12.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:fc530a28591a2d74bce821d10b418b26a094bf33839e69042a6e86ddb7a7fb27", size = 1128725, upload-time = "2025-10-06T20:22:13.541Z" }, + { url = "https://files.pythonhosted.org/packages/05/df/4f80030d44682235bdaecd7346c90f67ae87ec8f3df4a3442cb53834f7e4/tiktoken-0.12.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:06a9f4f49884139013b138920a4c393aa6556b2f8f536345f11819389c703ebb", size = 1151875, upload-time = "2025-10-06T20:22:14.559Z" }, + { url = "https://files.pythonhosted.org/packages/22/1f/ae535223a8c4ef4c0c1192e3f9b82da660be9eb66b9279e95c99288e9dab/tiktoken-0.12.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:04f0e6a985d95913cabc96a741c5ffec525a2c72e9df086ff17ebe35985c800e", size = 1194451, upload-time = "2025-10-06T20:22:15.545Z" }, + { url = "https://files.pythonhosted.org/packages/78/a7/f8ead382fce0243cb625c4f266e66c27f65ae65ee9e77f59ea1653b6d730/tiktoken-0.12.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:0ee8f9ae00c41770b5f9b0bb1235474768884ae157de3beb5439ca0fd70f3e25", size = 1253794, upload-time = "2025-10-06T20:22:16.624Z" }, + { url = "https://files.pythonhosted.org/packages/93/e0/6cc82a562bc6365785a3ff0af27a2a092d57c47d7a81d9e2295d8c36f011/tiktoken-0.12.0-cp313-cp313t-win_amd64.whl", hash = "sha256:dc2dd125a62cb2b3d858484d6c614d136b5b848976794edfb63688d539b8b93f", size = 878777, upload-time = "2025-10-06T20:22:18.036Z" }, { url = "https://files.pythonhosted.org/packages/72/05/3abc1db5d2c9aadc4d2c76fa5640134e475e58d9fbb82b5c535dc0de9b01/tiktoken-0.12.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:a90388128df3b3abeb2bfd1895b0681412a8d7dc644142519e6f0a97c2111646", size = 1050188, upload-time = "2025-10-06T20:22:19.563Z" }, { url = "https://files.pythonhosted.org/packages/e3/7b/50c2f060412202d6c95f32b20755c7a6273543b125c0985d6fa9465105af/tiktoken-0.12.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:da900aa0ad52247d8794e307d6446bd3cdea8e192769b56276695d34d2c9aa88", size = 993978, upload-time = "2025-10-06T20:22:20.702Z" }, { url = "https://files.pythonhosted.org/packages/14/27/bf795595a2b897e271771cd31cb847d479073497344c637966bdf2853da1/tiktoken-0.12.0-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:285ba9d73ea0d6171e7f9407039a290ca77efcdb026be7769dccc01d2c8d7fff", size = 1129271, upload-time = "2025-10-06T20:22:22.06Z" }, @@ -1922,6 +2534,24 @@ version = "16.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/04/24/4b2031d72e840ce4c1ccb255f693b15c334757fc50023e4db9537080b8c4/websockets-16.0.tar.gz", hash = "sha256:5f6261a5e56e8d5c42a4497b364ea24d94d9563e8fbd44e78ac40879c60179b5", size = 179346, upload-time = "2026-01-10T09:23:47.181Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/84/7b/bac442e6b96c9d25092695578dda82403c77936104b5682307bd4deb1ad4/websockets-16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:71c989cbf3254fbd5e84d3bff31e4da39c43f884e64f2551d14bb3c186230f00", size = 177365, upload-time = "2026-01-10T09:22:46.787Z" }, + { url = "https://files.pythonhosted.org/packages/b0/fe/136ccece61bd690d9c1f715baaeefd953bb2360134de73519d5df19d29ca/websockets-16.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:8b6e209ffee39ff1b6d0fa7bfef6de950c60dfb91b8fcead17da4ee539121a79", size = 175038, upload-time = "2026-01-10T09:22:47.999Z" }, + { url = "https://files.pythonhosted.org/packages/40/1e/9771421ac2286eaab95b8575b0cb701ae3663abf8b5e1f64f1fd90d0a673/websockets-16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:86890e837d61574c92a97496d590968b23c2ef0aeb8a9bc9421d174cd378ae39", size = 175328, upload-time = "2026-01-10T09:22:49.809Z" }, + { url = "https://files.pythonhosted.org/packages/18/29/71729b4671f21e1eaa5d6573031ab810ad2936c8175f03f97f3ff164c802/websockets-16.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:9b5aca38b67492ef518a8ab76851862488a478602229112c4b0d58d63a7a4d5c", size = 184915, upload-time = "2026-01-10T09:22:51.071Z" }, + { url = "https://files.pythonhosted.org/packages/97/bb/21c36b7dbbafc85d2d480cd65df02a1dc93bf76d97147605a8e27ff9409d/websockets-16.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e0334872c0a37b606418ac52f6ab9cfd17317ac26365f7f65e203e2d0d0d359f", size = 186152, upload-time = "2026-01-10T09:22:52.224Z" }, + { url = "https://files.pythonhosted.org/packages/4a/34/9bf8df0c0cf88fa7bfe36678dc7b02970c9a7d5e065a3099292db87b1be2/websockets-16.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a0b31e0b424cc6b5a04b8838bbaec1688834b2383256688cf47eb97412531da1", size = 185583, upload-time = "2026-01-10T09:22:53.443Z" }, + { url = "https://files.pythonhosted.org/packages/47/88/4dd516068e1a3d6ab3c7c183288404cd424a9a02d585efbac226cb61ff2d/websockets-16.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:485c49116d0af10ac698623c513c1cc01c9446c058a4e61e3bf6c19dff7335a2", size = 184880, upload-time = "2026-01-10T09:22:55.033Z" }, + { url = "https://files.pythonhosted.org/packages/91/d6/7d4553ad4bf1c0421e1ebd4b18de5d9098383b5caa1d937b63df8d04b565/websockets-16.0-cp312-cp312-win32.whl", hash = "sha256:eaded469f5e5b7294e2bdca0ab06becb6756ea86894a47806456089298813c89", size = 178261, upload-time = "2026-01-10T09:22:56.251Z" }, + { url = "https://files.pythonhosted.org/packages/c3/f0/f3a17365441ed1c27f850a80b2bc680a0fa9505d733fe152fdf5e98c1c0b/websockets-16.0-cp312-cp312-win_amd64.whl", hash = "sha256:5569417dc80977fc8c2d43a86f78e0a5a22fee17565d78621b6bb264a115d4ea", size = 178693, upload-time = "2026-01-10T09:22:57.478Z" }, + { url = "https://files.pythonhosted.org/packages/cc/9c/baa8456050d1c1b08dd0ec7346026668cbc6f145ab4e314d707bb845bf0d/websockets-16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:878b336ac47938b474c8f982ac2f7266a540adc3fa4ad74ae96fea9823a02cc9", size = 177364, upload-time = "2026-01-10T09:22:59.333Z" }, + { url = "https://files.pythonhosted.org/packages/7e/0c/8811fc53e9bcff68fe7de2bcbe75116a8d959ac699a3200f4847a8925210/websockets-16.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:52a0fec0e6c8d9a784c2c78276a48a2bdf099e4ccc2a4cad53b27718dbfd0230", size = 175039, upload-time = "2026-01-10T09:23:01.171Z" }, + { url = "https://files.pythonhosted.org/packages/aa/82/39a5f910cb99ec0b59e482971238c845af9220d3ab9fa76dd9162cda9d62/websockets-16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e6578ed5b6981005df1860a56e3617f14a6c307e6a71b4fff8c48fdc50f3ed2c", size = 175323, upload-time = "2026-01-10T09:23:02.341Z" }, + { url = "https://files.pythonhosted.org/packages/bd/28/0a25ee5342eb5d5f297d992a77e56892ecb65e7854c7898fb7d35e9b33bd/websockets-16.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:95724e638f0f9c350bb1c2b0a7ad0e83d9cc0c9259f3ea94e40d7b02a2179ae5", size = 184975, upload-time = "2026-01-10T09:23:03.756Z" }, + { url = "https://files.pythonhosted.org/packages/f9/66/27ea52741752f5107c2e41fda05e8395a682a1e11c4e592a809a90c6a506/websockets-16.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c0204dc62a89dc9d50d682412c10b3542d748260d743500a85c13cd1ee4bde82", size = 186203, upload-time = "2026-01-10T09:23:05.01Z" }, + { url = "https://files.pythonhosted.org/packages/37/e5/8e32857371406a757816a2b471939d51c463509be73fa538216ea52b792a/websockets-16.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:52ac480f44d32970d66763115edea932f1c5b1312de36df06d6b219f6741eed8", size = 185653, upload-time = "2026-01-10T09:23:06.301Z" }, + { url = "https://files.pythonhosted.org/packages/9b/67/f926bac29882894669368dc73f4da900fcdf47955d0a0185d60103df5737/websockets-16.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6e5a82b677f8f6f59e8dfc34ec06ca6b5b48bc4fcda346acd093694cc2c24d8f", size = 184920, upload-time = "2026-01-10T09:23:07.492Z" }, + { url = "https://files.pythonhosted.org/packages/3c/a1/3d6ccdcd125b0a42a311bcd15a7f705d688f73b2a22d8cf1c0875d35d34a/websockets-16.0-cp313-cp313-win32.whl", hash = "sha256:abf050a199613f64c886ea10f38b47770a65154dc37181bfaff70c160f45315a", size = 178255, upload-time = "2026-01-10T09:23:09.245Z" }, + { url = "https://files.pythonhosted.org/packages/6b/ae/90366304d7c2ce80f9b826096a9e9048b4bb760e44d3b873bb272cba696b/websockets-16.0-cp313-cp313-win_amd64.whl", hash = "sha256:3425ac5cf448801335d6fdc7ae1eb22072055417a96cc6b31b3861f455fbc156", size = 178689, upload-time = "2026-01-10T09:23:10.483Z" }, { url = "https://files.pythonhosted.org/packages/f3/1d/e88022630271f5bd349ed82417136281931e558d628dd52c4d8621b4a0b2/websockets-16.0-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:8cc451a50f2aee53042ac52d2d053d08bf89bcb31ae799cb4487587661c038a0", size = 177406, upload-time = "2026-01-10T09:23:12.178Z" }, { url = "https://files.pythonhosted.org/packages/f2/78/e63be1bf0724eeb4616efb1ae1c9044f7c3953b7957799abb5915bffd38e/websockets-16.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:daa3b6ff70a9241cf6c7fc9e949d41232d9d7d26fd3522b1ad2b4d62487e9904", size = 175085, upload-time = "2026-01-10T09:23:13.511Z" }, { url = "https://files.pythonhosted.org/packages/bb/f4/d3c9220d818ee955ae390cf319a7c7a467beceb24f05ee7aaaa2414345ba/websockets-16.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:fd3cb4adb94a2a6e2b7c0d8d05cb94e6f1c81a0cf9dc2694fb65c7e8d94c42e4", size = 175328, upload-time = "2026-01-10T09:23:14.727Z" }, @@ -1954,6 +2584,54 @@ dependencies = [ ] sdist = { url = "https://files.pythonhosted.org/packages/57/63/0c6ebca57330cd313f6102b16dd57ffaf3ec4c83403dcb45dbd15c6f3ea1/yarl-1.22.0.tar.gz", hash = "sha256:bebf8557577d4401ba8bd9ff33906f1376c877aa78d1fe216ad01b4d6745af71", size = 187169, upload-time = "2025-10-06T14:12:55.963Z" } wheels = [ + { url = "https://files.pythonhosted.org/packages/75/ff/46736024fee3429b80a165a732e38e5d5a238721e634ab41b040d49f8738/yarl-1.22.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e340382d1afa5d32b892b3ff062436d592ec3d692aeea3bef3a5cfe11bbf8c6f", size = 142000, upload-time = "2025-10-06T14:09:44.631Z" }, + { url = "https://files.pythonhosted.org/packages/5a/9a/b312ed670df903145598914770eb12de1bac44599549b3360acc96878df8/yarl-1.22.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f1e09112a2c31ffe8d80be1b0988fa6a18c5d5cad92a9ffbb1c04c91bfe52ad2", size = 94338, upload-time = "2025-10-06T14:09:46.372Z" }, + { url = "https://files.pythonhosted.org/packages/ba/f5/0601483296f09c3c65e303d60c070a5c19fcdbc72daa061e96170785bc7d/yarl-1.22.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:939fe60db294c786f6b7c2d2e121576628468f65453d86b0fe36cb52f987bd74", size = 94909, upload-time = "2025-10-06T14:09:48.648Z" }, + { url = "https://files.pythonhosted.org/packages/60/41/9a1fe0b73dbcefce72e46cf149b0e0a67612d60bfc90fb59c2b2efdfbd86/yarl-1.22.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e1651bf8e0398574646744c1885a41198eba53dc8a9312b954073f845c90a8df", size = 372940, upload-time = "2025-10-06T14:09:50.089Z" }, + { url = "https://files.pythonhosted.org/packages/17/7a/795cb6dfee561961c30b800f0ed616b923a2ec6258b5def2a00bf8231334/yarl-1.22.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:b8a0588521a26bf92a57a1705b77b8b59044cdceccac7151bd8d229e66b8dedb", size = 345825, upload-time = "2025-10-06T14:09:52.142Z" }, + { url = "https://files.pythonhosted.org/packages/d7/93/a58f4d596d2be2ae7bab1a5846c4d270b894958845753b2c606d666744d3/yarl-1.22.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:42188e6a615c1a75bcaa6e150c3fe8f3e8680471a6b10150c5f7e83f47cc34d2", size = 386705, upload-time = "2025-10-06T14:09:54.128Z" }, + { url = "https://files.pythonhosted.org/packages/61/92/682279d0e099d0e14d7fd2e176bd04f48de1484f56546a3e1313cd6c8e7c/yarl-1.22.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f6d2cb59377d99718913ad9a151030d6f83ef420a2b8f521d94609ecc106ee82", size = 396518, upload-time = "2025-10-06T14:09:55.762Z" }, + { url = "https://files.pythonhosted.org/packages/db/0f/0d52c98b8a885aeda831224b78f3be7ec2e1aa4a62091f9f9188c3c65b56/yarl-1.22.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:50678a3b71c751d58d7908edc96d332af328839eea883bb554a43f539101277a", size = 377267, upload-time = "2025-10-06T14:09:57.958Z" }, + { url = "https://files.pythonhosted.org/packages/22/42/d2685e35908cbeaa6532c1fc73e89e7f2efb5d8a7df3959ea8e37177c5a3/yarl-1.22.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1e8fbaa7cec507aa24ea27a01456e8dd4b6fab829059b69844bd348f2d467124", size = 365797, upload-time = "2025-10-06T14:09:59.527Z" }, + { url = "https://files.pythonhosted.org/packages/a2/83/cf8c7bcc6355631762f7d8bdab920ad09b82efa6b722999dfb05afa6cfac/yarl-1.22.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:433885ab5431bc3d3d4f2f9bd15bfa1614c522b0f1405d62c4f926ccd69d04fa", size = 365535, upload-time = "2025-10-06T14:10:01.139Z" }, + { url = "https://files.pythonhosted.org/packages/25/e1/5302ff9b28f0c59cac913b91fe3f16c59a033887e57ce9ca5d41a3a94737/yarl-1.22.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:b790b39c7e9a4192dc2e201a282109ed2985a1ddbd5ac08dc56d0e121400a8f7", size = 382324, upload-time = "2025-10-06T14:10:02.756Z" }, + { url = "https://files.pythonhosted.org/packages/bf/cd/4617eb60f032f19ae3a688dc990d8f0d89ee0ea378b61cac81ede3e52fae/yarl-1.22.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:31f0b53913220599446872d757257be5898019c85e7971599065bc55065dc99d", size = 383803, upload-time = "2025-10-06T14:10:04.552Z" }, + { url = "https://files.pythonhosted.org/packages/59/65/afc6e62bb506a319ea67b694551dab4a7e6fb7bf604e9bd9f3e11d575fec/yarl-1.22.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a49370e8f711daec68d09b821a34e1167792ee2d24d405cbc2387be4f158b520", size = 374220, upload-time = "2025-10-06T14:10:06.489Z" }, + { url = "https://files.pythonhosted.org/packages/e7/3d/68bf18d50dc674b942daec86a9ba922d3113d8399b0e52b9897530442da2/yarl-1.22.0-cp312-cp312-win32.whl", hash = "sha256:70dfd4f241c04bd9239d53b17f11e6ab672b9f1420364af63e8531198e3f5fe8", size = 81589, upload-time = "2025-10-06T14:10:09.254Z" }, + { url = "https://files.pythonhosted.org/packages/c8/9a/6ad1a9b37c2f72874f93e691b2e7ecb6137fb2b899983125db4204e47575/yarl-1.22.0-cp312-cp312-win_amd64.whl", hash = "sha256:8884d8b332a5e9b88e23f60bb166890009429391864c685e17bd73a9eda9105c", size = 87213, upload-time = "2025-10-06T14:10:11.369Z" }, + { url = "https://files.pythonhosted.org/packages/44/c5/c21b562d1680a77634d748e30c653c3ca918beb35555cff24986fff54598/yarl-1.22.0-cp312-cp312-win_arm64.whl", hash = "sha256:ea70f61a47f3cc93bdf8b2f368ed359ef02a01ca6393916bc8ff877427181e74", size = 81330, upload-time = "2025-10-06T14:10:13.112Z" }, + { url = "https://files.pythonhosted.org/packages/ea/f3/d67de7260456ee105dc1d162d43a019ecad6b91e2f51809d6cddaa56690e/yarl-1.22.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8dee9c25c74997f6a750cd317b8ca63545169c098faee42c84aa5e506c819b53", size = 139980, upload-time = "2025-10-06T14:10:14.601Z" }, + { url = "https://files.pythonhosted.org/packages/01/88/04d98af0b47e0ef42597b9b28863b9060bb515524da0a65d5f4db160b2d5/yarl-1.22.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:01e73b85a5434f89fc4fe27dcda2aff08ddf35e4d47bbbea3bdcd25321af538a", size = 93424, upload-time = "2025-10-06T14:10:16.115Z" }, + { url = "https://files.pythonhosted.org/packages/18/91/3274b215fd8442a03975ce6bee5fe6aa57a8326b29b9d3d56234a1dca244/yarl-1.22.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:22965c2af250d20c873cdbee8ff958fb809940aeb2e74ba5f20aaf6b7ac8c70c", size = 93821, upload-time = "2025-10-06T14:10:17.993Z" }, + { url = "https://files.pythonhosted.org/packages/61/3a/caf4e25036db0f2da4ca22a353dfeb3c9d3c95d2761ebe9b14df8fc16eb0/yarl-1.22.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b4f15793aa49793ec8d1c708ab7f9eded1aa72edc5174cae703651555ed1b601", size = 373243, upload-time = "2025-10-06T14:10:19.44Z" }, + { url = "https://files.pythonhosted.org/packages/6e/9e/51a77ac7516e8e7803b06e01f74e78649c24ee1021eca3d6a739cb6ea49c/yarl-1.22.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:e5542339dcf2747135c5c85f68680353d5cb9ffd741c0f2e8d832d054d41f35a", size = 342361, upload-time = "2025-10-06T14:10:21.124Z" }, + { url = "https://files.pythonhosted.org/packages/d4/f8/33b92454789dde8407f156c00303e9a891f1f51a0330b0fad7c909f87692/yarl-1.22.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5c401e05ad47a75869c3ab3e35137f8468b846770587e70d71e11de797d113df", size = 387036, upload-time = "2025-10-06T14:10:22.902Z" }, + { url = "https://files.pythonhosted.org/packages/d9/9a/c5db84ea024f76838220280f732970aa4ee154015d7f5c1bfb60a267af6f/yarl-1.22.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:243dda95d901c733f5b59214d28b0120893d91777cb8aa043e6ef059d3cddfe2", size = 397671, upload-time = "2025-10-06T14:10:24.523Z" }, + { url = "https://files.pythonhosted.org/packages/11/c9/cd8538dc2e7727095e0c1d867bad1e40c98f37763e6d995c1939f5fdc7b1/yarl-1.22.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bec03d0d388060058f5d291a813f21c011041938a441c593374da6077fe21b1b", size = 377059, upload-time = "2025-10-06T14:10:26.406Z" }, + { url = "https://files.pythonhosted.org/packages/a1/b9/ab437b261702ced75122ed78a876a6dec0a1b0f5e17a4ac7a9a2482d8abe/yarl-1.22.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b0748275abb8c1e1e09301ee3cf90c8a99678a4e92e4373705f2a2570d581273", size = 365356, upload-time = "2025-10-06T14:10:28.461Z" }, + { url = "https://files.pythonhosted.org/packages/b2/9d/8e1ae6d1d008a9567877b08f0ce4077a29974c04c062dabdb923ed98e6fe/yarl-1.22.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:47fdb18187e2a4e18fda2c25c05d8251a9e4a521edaed757fef033e7d8498d9a", size = 361331, upload-time = "2025-10-06T14:10:30.541Z" }, + { url = "https://files.pythonhosted.org/packages/ca/5a/09b7be3905962f145b73beb468cdd53db8aa171cf18c80400a54c5b82846/yarl-1.22.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c7044802eec4524fde550afc28edda0dd5784c4c45f0be151a2d3ba017daca7d", size = 382590, upload-time = "2025-10-06T14:10:33.352Z" }, + { url = "https://files.pythonhosted.org/packages/aa/7f/59ec509abf90eda5048b0bc3e2d7b5099dffdb3e6b127019895ab9d5ef44/yarl-1.22.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:139718f35149ff544caba20fce6e8a2f71f1e39b92c700d8438a0b1d2a631a02", size = 385316, upload-time = "2025-10-06T14:10:35.034Z" }, + { url = "https://files.pythonhosted.org/packages/e5/84/891158426bc8036bfdfd862fabd0e0fa25df4176ec793e447f4b85cf1be4/yarl-1.22.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e1b51bebd221006d3d2f95fbe124b22b247136647ae5dcc8c7acafba66e5ee67", size = 374431, upload-time = "2025-10-06T14:10:37.76Z" }, + { url = "https://files.pythonhosted.org/packages/bb/49/03da1580665baa8bef5e8ed34c6df2c2aca0a2f28bf397ed238cc1bbc6f2/yarl-1.22.0-cp313-cp313-win32.whl", hash = "sha256:d3e32536234a95f513bd374e93d717cf6b2231a791758de6c509e3653f234c95", size = 81555, upload-time = "2025-10-06T14:10:39.649Z" }, + { url = "https://files.pythonhosted.org/packages/9a/ee/450914ae11b419eadd067c6183ae08381cfdfcb9798b90b2b713bbebddda/yarl-1.22.0-cp313-cp313-win_amd64.whl", hash = "sha256:47743b82b76d89a1d20b83e60d5c20314cbd5ba2befc9cda8f28300c4a08ed4d", size = 86965, upload-time = "2025-10-06T14:10:41.313Z" }, + { url = "https://files.pythonhosted.org/packages/98/4d/264a01eae03b6cf629ad69bae94e3b0e5344741e929073678e84bf7a3e3b/yarl-1.22.0-cp313-cp313-win_arm64.whl", hash = "sha256:5d0fcda9608875f7d052eff120c7a5da474a6796fe4d83e152e0e4d42f6d1a9b", size = 81205, upload-time = "2025-10-06T14:10:43.167Z" }, + { url = "https://files.pythonhosted.org/packages/88/fc/6908f062a2f77b5f9f6d69cecb1747260831ff206adcbc5b510aff88df91/yarl-1.22.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:719ae08b6972befcba4310e49edb1161a88cdd331e3a694b84466bd938a6ab10", size = 146209, upload-time = "2025-10-06T14:10:44.643Z" }, + { url = "https://files.pythonhosted.org/packages/65/47/76594ae8eab26210b4867be6f49129861ad33da1f1ebdf7051e98492bf62/yarl-1.22.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:47d8a5c446df1c4db9d21b49619ffdba90e77c89ec6e283f453856c74b50b9e3", size = 95966, upload-time = "2025-10-06T14:10:46.554Z" }, + { url = "https://files.pythonhosted.org/packages/ab/ce/05e9828a49271ba6b5b038b15b3934e996980dd78abdfeb52a04cfb9467e/yarl-1.22.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:cfebc0ac8333520d2d0423cbbe43ae43c8838862ddb898f5ca68565e395516e9", size = 97312, upload-time = "2025-10-06T14:10:48.007Z" }, + { url = "https://files.pythonhosted.org/packages/d1/c5/7dffad5e4f2265b29c9d7ec869c369e4223166e4f9206fc2243ee9eea727/yarl-1.22.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4398557cbf484207df000309235979c79c4356518fd5c99158c7d38203c4da4f", size = 361967, upload-time = "2025-10-06T14:10:49.997Z" }, + { url = "https://files.pythonhosted.org/packages/50/b2/375b933c93a54bff7fc041e1a6ad2c0f6f733ffb0c6e642ce56ee3b39970/yarl-1.22.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:2ca6fd72a8cd803be290d42f2dec5cdcd5299eeb93c2d929bf060ad9efaf5de0", size = 323949, upload-time = "2025-10-06T14:10:52.004Z" }, + { url = "https://files.pythonhosted.org/packages/66/50/bfc2a29a1d78644c5a7220ce2f304f38248dc94124a326794e677634b6cf/yarl-1.22.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ca1f59c4e1ab6e72f0a23c13fca5430f889634166be85dbf1013683e49e3278e", size = 361818, upload-time = "2025-10-06T14:10:54.078Z" }, + { url = "https://files.pythonhosted.org/packages/46/96/f3941a46af7d5d0f0498f86d71275696800ddcdd20426298e572b19b91ff/yarl-1.22.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6c5010a52015e7c70f86eb967db0f37f3c8bd503a695a49f8d45700144667708", size = 372626, upload-time = "2025-10-06T14:10:55.767Z" }, + { url = "https://files.pythonhosted.org/packages/c1/42/8b27c83bb875cd89448e42cd627e0fb971fa1675c9ec546393d18826cb50/yarl-1.22.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d7672ecf7557476642c88497c2f8d8542f8e36596e928e9bcba0e42e1e7d71f", size = 341129, upload-time = "2025-10-06T14:10:57.985Z" }, + { url = "https://files.pythonhosted.org/packages/49/36/99ca3122201b382a3cf7cc937b95235b0ac944f7e9f2d5331d50821ed352/yarl-1.22.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:3b7c88eeef021579d600e50363e0b6ee4f7f6f728cd3486b9d0f3ee7b946398d", size = 346776, upload-time = "2025-10-06T14:10:59.633Z" }, + { url = "https://files.pythonhosted.org/packages/85/b4/47328bf996acd01a4c16ef9dcd2f59c969f495073616586f78cd5f2efb99/yarl-1.22.0-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:f4afb5c34f2c6fecdcc182dfcfc6af6cccf1aa923eed4d6a12e9d96904e1a0d8", size = 334879, upload-time = "2025-10-06T14:11:01.454Z" }, + { url = "https://files.pythonhosted.org/packages/c2/ad/b77d7b3f14a4283bffb8e92c6026496f6de49751c2f97d4352242bba3990/yarl-1.22.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:59c189e3e99a59cf8d83cbb31d4db02d66cda5a1a4374e8a012b51255341abf5", size = 350996, upload-time = "2025-10-06T14:11:03.452Z" }, + { url = "https://files.pythonhosted.org/packages/81/c8/06e1d69295792ba54d556f06686cbd6a7ce39c22307100e3fb4a2c0b0a1d/yarl-1.22.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:5a3bf7f62a289fa90f1990422dc8dff5a458469ea71d1624585ec3a4c8d6960f", size = 356047, upload-time = "2025-10-06T14:11:05.115Z" }, + { url = "https://files.pythonhosted.org/packages/4b/b8/4c0e9e9f597074b208d18cef227d83aac36184bfbc6eab204ea55783dbc5/yarl-1.22.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:de6b9a04c606978fdfe72666fa216ffcf2d1a9f6a381058d4378f8d7b1e5de62", size = 342947, upload-time = "2025-10-06T14:11:08.137Z" }, + { url = "https://files.pythonhosted.org/packages/e0/e5/11f140a58bf4c6ad7aca69a892bff0ee638c31bea4206748fc0df4ebcb3a/yarl-1.22.0-cp313-cp313t-win32.whl", hash = "sha256:1834bb90991cc2999f10f97f5f01317f99b143284766d197e43cd5b45eb18d03", size = 86943, upload-time = "2025-10-06T14:11:10.284Z" }, + { url = "https://files.pythonhosted.org/packages/31/74/8b74bae38ed7fe6793d0c15a0c8207bbb819cf287788459e5ed230996cdd/yarl-1.22.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ff86011bd159a9d2dfc89c34cfd8aff12875980e3bd6a39ff097887520e60249", size = 93715, upload-time = "2025-10-06T14:11:11.739Z" }, + { url = "https://files.pythonhosted.org/packages/69/66/991858aa4b5892d57aef7ee1ba6b4d01ec3b7eb3060795d34090a3ca3278/yarl-1.22.0-cp313-cp313t-win_arm64.whl", hash = "sha256:7861058d0582b847bc4e3a4a4c46828a410bca738673f35a29ba3ca5db0b473b", size = 83857, upload-time = "2025-10-06T14:11:13.586Z" }, { url = "https://files.pythonhosted.org/packages/46/b3/e20ef504049f1a1c54a814b4b9bed96d1ac0e0610c3b4da178f87209db05/yarl-1.22.0-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:34b36c2c57124530884d89d50ed2c1478697ad7473efd59cfd479945c95650e4", size = 140520, upload-time = "2025-10-06T14:11:15.465Z" }, { url = "https://files.pythonhosted.org/packages/e4/04/3532d990fdbab02e5ede063676b5c4260e7f3abea2151099c2aa745acc4c/yarl-1.22.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:0dd9a702591ca2e543631c2a017e4a547e38a5c0f29eece37d9097e04a7ac683", size = 93504, upload-time = "2025-10-06T14:11:17.106Z" }, { url = "https://files.pythonhosted.org/packages/11/63/ff458113c5c2dac9a9719ac68ee7c947cb621432bcf28c9972b1c0e83938/yarl-1.22.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:594fcab1032e2d2cc3321bb2e51271e7cd2b516c7d9aee780ece81b07ff8244b", size = 94282, upload-time = "2025-10-06T14:11:19.064Z" }, From 01526d4616915fcc982c970de785334b8e078ecf Mon Sep 17 00:00:00 2001 From: Shuxin Lin Date: Wed, 4 Mar 2026 14:18:02 -0500 Subject: [PATCH 02/16] refactor(wo): replace stub with full MCP server from api_implementation_cbm MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Port all @validate_inputs functions from src/tmp/workorder_agent/event_forecasting/apis/api_implementation_cbm.py to FastMCP tools, replacing the earlier placeholder stub. Tools (8 total): - get_work_orders — all WOs for equipment in date range - get_preventive_work_orders — preventive WOs only - get_corrective_work_orders — corrective WOs only - get_events — all events (WO / alert / anomaly) - get_failure_codes — full failure code catalogue - get_work_order_distribution — counts per (primary, secondary) code pair - predict_next_work_order — Markov-chain transition probability - analyze_alert_to_failure — alert-rule → maintenance transition stats Key structural changes vs. original: - Equipment/DateRange/Date objects → flat string parameters (MCP-friendly) - importlib.resources.path() → configurable WO_DATA_DIR env var (defaults to src/tmp/assetopsbench/sample_data/) - All data loaded lazily, missing files degrade gracefully - Pickle-file return values → typed Pydantic BaseModel responses - analyze_alert_to_failure now returns the computed transition result instead of None - validate_inputs decorator removed (MCP enforces types) - Tests updated: 23 unit tests + 8 integration tests (requires_wo_data) Signed-off-by: Shuxin Lin --- src/servers/wo/main.py | 750 ++++++++++++++++++++++++----- src/servers/wo/tests/conftest.py | 112 ++++- src/servers/wo/tests/test_tools.py | 305 +++++++++--- 3 files changed, 939 insertions(+), 228 deletions(-) diff --git a/src/servers/wo/main.py b/src/servers/wo/main.py index c56c1cb8..d7d0406a 100644 --- a/src/servers/wo/main.py +++ b/src/servers/wo/main.py @@ -1,6 +1,16 @@ +"""Work Order MCP server. + +Exposes work-order and event data as FastMCP tools. All data is loaded from a +configurable directory (env var ``WO_DATA_DIR``). Every data file is read +lazily on first use so the server starts even when only a subset of files is +available. +""" + import logging import os -from typing import List, Optional, Union +from collections import Counter, defaultdict +from datetime import datetime +from typing import Any, Dict, List, Optional, Tuple, Union import pandas as pd from dotenv import load_dotenv @@ -9,43 +19,158 @@ load_dotenv() -# Setup logging — default WARNING so stderr stays quiet when used as MCP server; -# set LOG_LEVEL=INFO (or DEBUG) in the environment to see verbose output. _log_level = getattr(logging, os.environ.get("LOG_LEVEL", "WARNING").upper(), logging.WARNING) logging.basicConfig(level=_log_level) logger = logging.getLogger("wo-mcp-server") -WO_DATA_PATH = os.environ.get( - "WO_DATA_PATH", +# --------------------------------------------------------------------------- +# Data directory — default to the bundled sample data shipped with the repo +# --------------------------------------------------------------------------- + +_DEFAULT_DATA_DIR = os.path.normpath( os.path.join( os.path.dirname(__file__), - "../../../src/tmp/assetopsbench/sample_data/all_wo_with_code_component_events.csv", - ), + "../../tmp/assetopsbench/sample_data", + ) ) +WO_DATA_DIR = os.environ.get("WO_DATA_DIR", _DEFAULT_DATA_DIR) -mcp = FastMCP("WorkOrderAgent") + +def _csv(filename: str) -> str: + return os.path.join(WO_DATA_DIR, filename) # --------------------------------------------------------------------------- -# Data loading +# Lazy data loading — each DataFrame is None until first access # --------------------------------------------------------------------------- -_df: Optional[pd.DataFrame] = None +_data: Dict[str, Optional[pd.DataFrame]] = { + "wo_events": None, + "events": None, + "alert_events": None, + "alert_rule": None, + "alert_rule_fc_mapping": None, + "anomaly_fc_mapping": None, + "failure_codes": None, + "primary_failure_codes": None, + "component": None, +} + + +def _load(key: str) -> Optional[pd.DataFrame]: + if _data[key] is not None: + return _data[key] + + loaders = { + "wo_events": lambda: _read_wo_events(), + "events": lambda: _read_events(), + "alert_events": lambda: _read_alert_events(), + "alert_rule": lambda: pd.read_csv(_csv("alert_rule.csv"), dtype=str), + "alert_rule_fc_mapping": lambda: pd.read_csv(_csv("alert_rule_failure_code_mapping.csv"), dtype=str), + "anomaly_fc_mapping": lambda: pd.read_csv(_csv("anomaly_to_failure_code_mapping.csv"), dtype=str), + "failure_codes": lambda: pd.read_csv(_csv("failure_codes.csv"), dtype=str), + "primary_failure_codes": lambda: pd.read_csv(_csv("primary_failure_codes.csv"), dtype=str), + "component": lambda: pd.read_csv(_csv("component.csv"), dtype=str), + } + + try: + df = loaders[key]() + _data[key] = df + logger.info("Loaded dataset '%s'", key) + return df + except FileNotFoundError: + logger.warning("Data file for '%s' not found in %s", key, WO_DATA_DIR) + return None + except Exception as exc: + logger.error("Failed to load '%s': %s", key, exc) + return None + +def _read_wo_events() -> pd.DataFrame: + df = pd.read_csv(_csv("all_wo_with_code_component_events.csv"), dtype=str) + df["actual_finish"] = pd.to_datetime(df["actual_finish"], format="%m/%d/%y %H:%M", errors="coerce") + return df -def _load_data() -> Optional[pd.DataFrame]: - global _df - if _df is not None: - return _df + +def _read_events() -> pd.DataFrame: + df = pd.read_csv(_csv("event.csv"), dtype=str) + df["event_time"] = pd.to_datetime(df["event_time"], format="%Y-%m-%d %H:%M:%S", errors="coerce") + return df + + +def _read_alert_events() -> pd.DataFrame: + df = pd.read_csv(_csv("alert_events.csv"), dtype=str) + df["start_time"] = pd.to_datetime(df["start_time"], format="%m/%d/%y %H:%M", errors="coerce") + df["end_time"] = pd.to_datetime(df["end_time"], format="%m/%d/%y %H:%M", errors="coerce") + return df + + +def _alert_to_wo_df() -> Optional[pd.DataFrame]: + """Joined alert-rule → failure-code lookup table.""" + fc_mapping = _load("alert_rule_fc_mapping") + pfc = _load("primary_failure_codes") + if fc_mapping is None or pfc is None: + return None try: - df = pd.read_csv(WO_DATA_PATH) - df["actual_finish"] = pd.to_datetime(df["actual_finish"], errors="coerce") - _df = df - logger.info(f"Loaded {len(df)} work order records from {WO_DATA_PATH}") - return _df - except Exception as e: - logger.error(f"Failed to load work order data: {e}") + merged = pd.merge( + fc_mapping, + pfc[["category", "primary_code", "primary_code_description"]], + on="primary_code", + suffixes=("_rule", ""), + ).drop(columns=["primary_code_description_rule"], errors="ignore") + return merged + except Exception as exc: + logger.error("Failed to build alert_to_wo join: %s", exc) + return None + + +# --------------------------------------------------------------------------- +# Internal helpers +# --------------------------------------------------------------------------- + + +def _filter_df(df: pd.DataFrame, conditions: dict) -> pd.DataFrame: + filtered = df.copy() + for col, cond in conditions.items(): + if callable(cond): + filtered = filtered[filtered[col].apply(cond)] + else: + filtered = filtered.query(f"{col} {cond}") + if filtered is not None and not filtered.empty: + filtered = filtered.reset_index(drop=True) + return filtered + + +def _parse_date(value: Optional[str]) -> Optional[datetime]: + if not value: return None + try: + return datetime.strptime(value, "%Y-%m-%d") + except ValueError as exc: + raise ValueError(f"date must be YYYY-MM-DD, got '{value}'") from exc + + +def _date_conditions(equipment_id: str, date_col: str, start: Optional[str], end: Optional[str]) -> dict: + start_dt = _parse_date(start) + end_dt = _parse_date(end) + cond: dict = { + "equipment_id": lambda x, eid=equipment_id: isinstance(x, str) and x.strip().lower() == eid.strip().lower() + } + if start_dt or end_dt: + cond[date_col] = lambda x, s=start_dt, e=end_dt: ( + (s is None or x >= s) and (e is None or x <= e) + ) + return cond + + +def _get_transition_matrix(event_df: pd.DataFrame, event_type_col: str) -> pd.DataFrame: + event_types = event_df[event_type_col].tolist() + counts: dict = defaultdict(lambda: defaultdict(int)) + for cur, nxt in zip(event_types[:-1], event_types[1:]): + counts[cur][nxt] += 1 + matrix = pd.DataFrame(counts).fillna(0) + matrix = matrix.div(matrix.sum(axis=1), axis=0) + return matrix # --------------------------------------------------------------------------- @@ -57,12 +182,7 @@ class ErrorResult(BaseModel): error: str -class EquipmentListResult(BaseModel): - total_equipment: int - equipment_ids: List[str] - - -class WorkOrder(BaseModel): +class WorkOrderItem(BaseModel): wo_id: str wo_description: str collection: str @@ -83,163 +203,541 @@ class WorkOrdersResult(BaseModel): equipment_id: str start_date: Optional[str] end_date: Optional[str] - total_work_orders: int - work_orders: List[WorkOrder] + total: int + work_orders: List[WorkOrderItem] message: str -class WorkOrderSummaryResult(BaseModel): +class EventItem(BaseModel): + event_id: str + event_group: str + event_category: str + event_type: Optional[str] + description: Optional[str] + equipment_id: str + equipment_name: str + event_time: str + note: Optional[str] + + +class EventsResult(BaseModel): + equipment_id: str + start_date: Optional[str] + end_date: Optional[str] + total: int + events: List[EventItem] + message: str + + +class FailureCodeItem(BaseModel): + category: str + primary_code: str + primary_code_description: str + secondary_code: str + secondary_code_description: str + + +class FailureCodesResult(BaseModel): + total: int + failure_codes: List[FailureCodeItem] + + +class WorkOrderDistributionEntry(BaseModel): + category: str + primary_code: str + primary_code_description: str + secondary_code: str + secondary_code_description: str + count: int + + +class WorkOrderDistributionResult(BaseModel): equipment_id: str start_date: Optional[str] end_date: Optional[str] total_work_orders: int - preventive_count: int - corrective_count: int - by_primary_code: dict - by_collection: dict + distribution: List[WorkOrderDistributionEntry] message: str +class NextWorkOrderEntry(BaseModel): + category: str + primary_code: str + primary_code_description: str + probability: float + + +class NextWorkOrderPredictionResult(BaseModel): + equipment_id: str + start_date: Optional[str] + end_date: Optional[str] + last_work_order_type: str + predictions: List[NextWorkOrderEntry] + message: str + + +class AlertToFailureEntry(BaseModel): + transition: str + probability: float + average_hours_to_maintenance: Optional[float] + + +class AlertToFailureResult(BaseModel): + equipment_id: str + rule_id: str + start_date: Optional[str] + end_date: Optional[str] + total_alerts_analyzed: int + transitions: List[AlertToFailureEntry] + message: str + + +# --------------------------------------------------------------------------- +# Row → model helpers +# --------------------------------------------------------------------------- + + +def _row_to_wo(row: Any) -> WorkOrderItem: + return WorkOrderItem( + wo_id=str(row.get("wo_id", "")), + wo_description=str(row.get("wo_description", "")), + collection=str(row.get("collection", "")), + primary_code=str(row.get("primary_code", "")), + primary_code_description=str(row.get("primary_code_description", "")), + secondary_code=str(row.get("secondary_code", "")), + secondary_code_description=str(row.get("secondary_code_description", "")), + equipment_id=str(row.get("equipment_id", "")), + equipment_name=str(row.get("equipment_name", "")), + preventive=str(row.get("preventive", "")).upper() == "TRUE", + work_priority=int(row["work_priority"]) if pd.notna(row.get("work_priority")) else None, + actual_finish=row["actual_finish"].isoformat() if pd.notna(row.get("actual_finish")) else None, + duration=str(row.get("duration", "")) if pd.notna(row.get("duration")) else None, + actual_labor_hours=str(row.get("actual_labor_hours", "")) if pd.notna(row.get("actual_labor_hours")) else None, + ) + + +def _row_to_event(row: Any) -> EventItem: + return EventItem( + event_id=str(row.get("event_id", "")), + event_group=str(row.get("event_group", "")), + event_category=str(row.get("event_category", "")), + event_type=str(row["event_type"]) if pd.notna(row.get("event_type")) else None, + description=str(row["description"]) if pd.notna(row.get("description")) else None, + equipment_id=str(row.get("equipment_id", "")), + equipment_name=str(row.get("equipment_name", "")), + event_time=row["event_time"].isoformat() if pd.notna(row.get("event_time")) else "", + note=str(row["note"]) if pd.notna(row.get("note")) else None, + ) + + +def _fetch_work_orders( + df: pd.DataFrame, + equipment_id: str, + start_date: Optional[str], + end_date: Optional[str], +) -> List[WorkOrderItem]: + cond = _date_conditions(equipment_id, "actual_finish", start_date, end_date) + filtered = _filter_df(df, cond) + if filtered is None or filtered.empty: + return [] + return [_row_to_wo(row) for _, row in filtered.iterrows()] + + # --------------------------------------------------------------------------- -# Tools +# MCP server + tools # --------------------------------------------------------------------------- +mcp = FastMCP("WorkOrderAgent") + @mcp.tool() -def list_equipment() -> Union[EquipmentListResult, ErrorResult]: - """Returns a list of all equipment IDs available in the work order dataset.""" - df = _load_data() +def get_work_orders( + equipment_id: str, + start_date: Optional[str] = None, + end_date: Optional[str] = None, +) -> Union[WorkOrdersResult, ErrorResult]: + """Retrieve all work orders for a specific equipment within an optional date range. + + Args: + equipment_id: Equipment identifier, e.g. ``"CWC04013"``. + start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. + end_date: End of date range (inclusive), format ``YYYY-MM-DD``. + """ + df = _load("wo_events") if df is None: return ErrorResult(error="Work order data not available") - ids = sorted(df["equipment_id"].dropna().unique().tolist()) - return EquipmentListResult(total_equipment=len(ids), equipment_ids=ids) + try: + wos = _fetch_work_orders(df, equipment_id, start_date, end_date) + except ValueError as exc: + return ErrorResult(error=str(exc)) + if not wos: + return ErrorResult(error=f"No work orders found for equipment_id '{equipment_id}'") + return WorkOrdersResult( + equipment_id=equipment_id, + start_date=start_date, + end_date=end_date, + total=len(wos), + work_orders=wos, + message=f"Found {len(wos)} work orders for '{equipment_id}'.", + ) @mcp.tool() -def get_work_orders( +def get_preventive_work_orders( equipment_id: str, start_date: Optional[str] = None, end_date: Optional[str] = None, ) -> Union[WorkOrdersResult, ErrorResult]: - """Retrieves work orders for a specific equipment within an optional date range. + """Retrieve only preventive work orders for a specific equipment within an optional date range. Args: - equipment_id: The equipment identifier (e.g. "CWC04013"). - start_date: Optional ISO date string for the start of the range (inclusive). - end_date: Optional ISO date string for the end of the range (exclusive). + equipment_id: Equipment identifier, e.g. ``"CWC04013"``. + start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. + end_date: End of date range (inclusive), format ``YYYY-MM-DD``. """ - df = _load_data() + df = _load("wo_events") if df is None: return ErrorResult(error="Work order data not available") + try: + wos = _fetch_work_orders(df[df["preventive"] == "TRUE"], equipment_id, start_date, end_date) + except ValueError as exc: + return ErrorResult(error=str(exc)) + if not wos: + return ErrorResult(error=f"No preventive work orders found for equipment_id '{equipment_id}'") + return WorkOrdersResult( + equipment_id=equipment_id, + start_date=start_date, + end_date=end_date, + total=len(wos), + work_orders=wos, + message=f"Found {len(wos)} preventive work orders for '{equipment_id}'.", + ) - filtered = df[df["equipment_id"] == equipment_id] - if filtered.empty: - return ErrorResult(error=f"No work orders found for equipment_id '{equipment_id}'") - if start_date: - try: - filtered = filtered[filtered["actual_finish"] >= pd.to_datetime(start_date)] - except Exception as e: - return ErrorResult(error=f"Invalid start_date: {e}") - - if end_date: - try: - filtered = filtered[filtered["actual_finish"] < pd.to_datetime(end_date)] - except Exception as e: - return ErrorResult(error=f"Invalid end_date: {e}") - - records: List[WorkOrder] = [] - for _, row in filtered.iterrows(): - records.append( - WorkOrder( - wo_id=str(row.get("wo_id", "")), - wo_description=str(row.get("wo_description", "")), - collection=str(row.get("collection", "")), - primary_code=str(row.get("primary_code", "")), - primary_code_description=str(row.get("primary_code_description", "")), - secondary_code=str(row.get("secondary_code", "")), - secondary_code_description=str(row.get("secondary_code_description", "")), - equipment_id=str(row.get("equipment_id", "")), - equipment_name=str(row.get("equipment_name", "")), - preventive=bool(row.get("preventive", False)), - work_priority=int(row["work_priority"]) if pd.notna(row.get("work_priority")) else None, - actual_finish=row["actual_finish"].isoformat() if pd.notna(row.get("actual_finish")) else None, - duration=str(row.get("duration", "")) if pd.notna(row.get("duration")) else None, - actual_labor_hours=str(row.get("actual_labor_hours", "")) if pd.notna(row.get("actual_labor_hours")) else None, - ) - ) +@mcp.tool() +def get_corrective_work_orders( + equipment_id: str, + start_date: Optional[str] = None, + end_date: Optional[str] = None, +) -> Union[WorkOrdersResult, ErrorResult]: + """Retrieve only corrective work orders for a specific equipment within an optional date range. + Args: + equipment_id: Equipment identifier, e.g. ``"CWC04013"``. + start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. + end_date: End of date range (inclusive), format ``YYYY-MM-DD``. + """ + df = _load("wo_events") + if df is None: + return ErrorResult(error="Work order data not available") + try: + wos = _fetch_work_orders(df[df["preventive"] == "FALSE"], equipment_id, start_date, end_date) + except ValueError as exc: + return ErrorResult(error=str(exc)) + if not wos: + return ErrorResult(error=f"No corrective work orders found for equipment_id '{equipment_id}'") return WorkOrdersResult( equipment_id=equipment_id, start_date=start_date, end_date=end_date, - total_work_orders=len(records), - work_orders=records, - message=f"Found {len(records)} work orders for equipment '{equipment_id}'.", + total=len(wos), + work_orders=wos, + message=f"Found {len(wos)} corrective work orders for '{equipment_id}'.", ) @mcp.tool() -def summarize_work_orders( +def get_events( equipment_id: str, start_date: Optional[str] = None, end_date: Optional[str] = None, -) -> Union[WorkOrderSummaryResult, ErrorResult]: - """Summarizes work orders for a specific equipment within an optional date range. - - Returns counts broken down by type (primary_code) and collection, plus - preventive vs. corrective totals. +) -> Union[EventsResult, ErrorResult]: + """Retrieve all events (work orders, alerts, anomalies) for a specific equipment within an optional date range. Args: - equipment_id: The equipment identifier (e.g. "CWC04013"). - start_date: Optional ISO date string for the start of the range (inclusive). - end_date: Optional ISO date string for the end of the range (exclusive). + equipment_id: Equipment identifier, e.g. ``"CWC04013"``. + start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. + end_date: End of date range (inclusive), format ``YYYY-MM-DD``. """ - df = _load_data() + df = _load("events") + if df is None: + return ErrorResult(error="Event data not available") + try: + start_dt = _parse_date(start_date) + end_dt = _parse_date(end_date) + except ValueError as exc: + return ErrorResult(error=str(exc)) + + cond: dict = { + "equipment_id": lambda x, eid=equipment_id: isinstance(x, str) and x.strip().lower() == eid.strip().lower() + } + if start_dt or end_dt: + cond["event_time"] = lambda x, s=start_dt, e=end_dt: ( + (s is None or x >= s) and (e is None or x <= e) + ) + + filtered = _filter_df(df, cond) + if filtered is None or filtered.empty: + return ErrorResult(error=f"No events found for equipment_id '{equipment_id}'") + + events = [_row_to_event(row) for _, row in filtered.iterrows()] + return EventsResult( + equipment_id=equipment_id, + start_date=start_date, + end_date=end_date, + total=len(events), + events=events, + message=f"Found {len(events)} events for '{equipment_id}'.", + ) + + +@mcp.tool() +def get_failure_codes() -> Union[FailureCodesResult, ErrorResult]: + """Retrieve all available failure codes with their categories and descriptions.""" + df = _load("failure_codes") if df is None: + return ErrorResult(error="Failure codes data not available") + + items = [ + FailureCodeItem( + category=str(row.get("category", "")), + primary_code=str(row.get("primary_code", "")), + primary_code_description=str(row.get("primary_code_description", "")), + secondary_code=str(row.get("secondary_code", "")), + secondary_code_description=str(row.get("secondary_code_description", "")), + ) + for _, row in df.iterrows() + ] + return FailureCodesResult(total=len(items), failure_codes=items) + + +@mcp.tool() +def get_work_order_distribution( + equipment_id: str, + start_date: Optional[str] = None, + end_date: Optional[str] = None, +) -> Union[WorkOrderDistributionResult, ErrorResult]: + """Calculate the distribution of work order types (by failure code) for a specific equipment. + + Returns counts per (primary_code, secondary_code) pair, sorted by frequency descending. + + Args: + equipment_id: Equipment identifier, e.g. ``"CWC04013"``. + start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. + end_date: End of date range (inclusive), format ``YYYY-MM-DD``. + """ + wo_df = _load("wo_events") + fc_df = _load("failure_codes") + if wo_df is None: return ErrorResult(error="Work order data not available") + if fc_df is None: + return ErrorResult(error="Failure codes data not available") + + try: + start_dt = _parse_date(start_date) + end_dt = _parse_date(end_date) + except ValueError as exc: + return ErrorResult(error=str(exc)) + + filtered = wo_df[wo_df["equipment_id"] == equipment_id].copy() + if start_dt: + filtered = filtered[filtered["actual_finish"] >= start_dt] + if end_dt: + filtered = filtered[filtered["actual_finish"] <= end_dt] - filtered = df[df["equipment_id"] == equipment_id] if filtered.empty: return ErrorResult(error=f"No work orders found for equipment_id '{equipment_id}'") - if start_date: - try: - filtered = filtered[filtered["actual_finish"] >= pd.to_datetime(start_date)] - except Exception as e: - return ErrorResult(error=f"Invalid start_date: {e}") - - if end_date: - try: - filtered = filtered[filtered["actual_finish"] < pd.to_datetime(end_date)] - except Exception as e: - return ErrorResult(error=f"Invalid end_date: {e}") - - total = len(filtered) - preventive_count = int((filtered["preventive"] == True).sum()) # noqa: E712 - corrective_count = total - preventive_count - - by_primary_code: dict = ( - filtered.groupby("primary_code").size().to_dict() - if total > 0 - else {} + counts = ( + filtered.groupby(["primary_code", "secondary_code"]) + .size() + .reset_index(name="count") + .sort_values("count", ascending=False) ) - by_collection: dict = ( - filtered.groupby("collection").size().to_dict() - if total > 0 - else {} + + distribution: List[WorkOrderDistributionEntry] = [] + for _, row in counts.iterrows(): + match = fc_df[ + (fc_df["primary_code"] == row["primary_code"]) + & (fc_df["secondary_code"] == row["secondary_code"]) + ] + if match.empty: + continue + m = match.iloc[0] + distribution.append( + WorkOrderDistributionEntry( + category=str(m.get("category", "")), + primary_code=str(m.get("primary_code", "")), + primary_code_description=str(m.get("primary_code_description", "")), + secondary_code=str(m.get("secondary_code", "")), + secondary_code_description=str(m.get("secondary_code_description", "")), + count=int(row["count"]), + ) + ) + + return WorkOrderDistributionResult( + equipment_id=equipment_id, + start_date=start_date, + end_date=end_date, + total_work_orders=int(filtered.shape[0]), + distribution=distribution, + message=f"Distribution across {len(distribution)} failure code(s) for '{equipment_id}'.", ) - return WorkOrderSummaryResult( + +@mcp.tool() +def predict_next_work_order( + equipment_id: str, + start_date: Optional[str] = None, + end_date: Optional[str] = None, +) -> Union[NextWorkOrderPredictionResult, ErrorResult]: + """Predict the probabilities of the next expected work order types based on historical transition patterns. + + Uses a Markov-chain transition matrix built from the sequence of past work order + primary codes to estimate what type of work order is likely to follow the most + recent one. + + Args: + equipment_id: Equipment identifier, e.g. ``"CWC04013"``. + start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. + end_date: End of date range (inclusive), format ``YYYY-MM-DD``. + """ + wo_df = _load("wo_events") + pfc_df = _load("primary_failure_codes") + if wo_df is None: + return ErrorResult(error="Work order data not available") + + try: + start_dt = _parse_date(start_date) + end_dt = _parse_date(end_date) + except ValueError as exc: + return ErrorResult(error=str(exc)) + + cond = _date_conditions(equipment_id, "actual_finish", start_date, end_date) + filtered = _filter_df(wo_df, cond) + if filtered is None or filtered.empty: + return ErrorResult(error=f"No historical work orders found for equipment_id '{equipment_id}'") + + filtered = filtered.sort_values("actual_finish").reset_index(drop=True) + transition_matrix = _get_transition_matrix(filtered, "primary_code") + last_type = filtered.iloc[-1]["primary_code"] + + if last_type not in transition_matrix.index: + return ErrorResult(error=f"No transition data for last work order type '{last_type}'") + + raw_predictions = sorted( + transition_matrix.loc[last_type].items(), + key=lambda t: t[1], + reverse=True, + ) + + predictions: List[NextWorkOrderEntry] = [] + for primary_code, prob in raw_predictions: + if pfc_df is not None: + match = pfc_df[pfc_df["primary_code"] == primary_code] + if not match.empty: + m = match.iloc[0] + predictions.append( + NextWorkOrderEntry( + category=str(m.get("category", "")), + primary_code=primary_code, + primary_code_description=str(m.get("primary_code_description", "")), + probability=float(prob), + ) + ) + continue + predictions.append( + NextWorkOrderEntry(category="", primary_code=primary_code, primary_code_description="", probability=float(prob)) + ) + + return NextWorkOrderPredictionResult( + equipment_id=equipment_id, + start_date=start_date, + end_date=end_date, + last_work_order_type=last_type, + predictions=predictions, + message=f"Predicted next work order for '{equipment_id}' based on last type '{last_type}'.", + ) + + +@mcp.tool() +def analyze_alert_to_failure( + equipment_id: str, + rule_id: str, + start_date: Optional[str] = None, + end_date: Optional[str] = None, +) -> Union[AlertToFailureResult, ErrorResult]: + """Analyze the relationship between a specific alert rule and subsequent maintenance events for an equipment. + + Computes the probability that each alert occurrence leads to a work order (vs no + maintenance) and the average time-to-maintenance in hours. + + Args: + equipment_id: Equipment identifier, e.g. ``"CWC04013"``. + rule_id: Alert rule identifier, e.g. ``"CR00002"``. + start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. + end_date: End of date range (inclusive), format ``YYYY-MM-DD``. + """ + alert_df = _load("alert_events") + if alert_df is None: + return ErrorResult(error="Alert events data not available") + + try: + _parse_date(start_date) + _parse_date(end_date) + except ValueError as exc: + return ErrorResult(error=str(exc)) + + cond: dict = { + "equipment_id": lambda x, eid=equipment_id: isinstance(x, str) and x.strip().lower() == eid.strip().lower(), + "rule": lambda x, rid=rule_id: isinstance(x, str) and x.strip().lower() == rid.strip().lower(), + } + filtered = _filter_df(alert_df, cond) + if filtered is None or filtered.empty: + return ErrorResult(error=f"No alert events found for equipment '{equipment_id}' and rule '{rule_id}'") + + filtered = filtered.sort_values("start_time").reset_index(drop=True) + + # Compute transitions from alert occurrences to maintenance + transitions: List[str] = [] + time_diffs: List[float] = [] + for i in range(len(filtered) - 1): + if str(filtered.iloc[i].get("rule", "")).strip().lower() == rule_id.strip().lower(): + for j in range(i + 1, len(filtered)): + if str(filtered.iloc[j].get("event_group", "")).upper() == "WORK_ORDER": + transitions.append("WORK_ORDER") + diff = filtered.iloc[j]["start_time"] - filtered.iloc[i]["start_time"] + time_diffs.append(diff.total_seconds() / 3600) + break + else: + transitions.append("No Maintenance") + + if not transitions: + return ErrorResult(error="Insufficient alert history to compute transitions") + + counts = Counter(transitions) + total = len(transitions) + wo_times = time_diffs if time_diffs else [] + + entries: List[AlertToFailureEntry] = [] + for transition, count in sorted(counts.items(), key=lambda t: t[1], reverse=True): + avg_hours = sum(wo_times) / len(wo_times) if transition == "WORK_ORDER" and wo_times else None + entries.append( + AlertToFailureEntry( + transition=transition, + probability=count / total, + average_hours_to_maintenance=avg_hours, + ) + ) + + return AlertToFailureResult( equipment_id=equipment_id, + rule_id=rule_id, start_date=start_date, end_date=end_date, - total_work_orders=total, - preventive_count=preventive_count, - corrective_count=corrective_count, - by_primary_code=by_primary_code, - by_collection=by_collection, - message=f"Summarized {total} work orders for equipment '{equipment_id}'.", + total_alerts_analyzed=total, + transitions=entries, + message=f"Analyzed {total} alert occurrences for rule '{rule_id}' on '{equipment_id}'.", ) diff --git a/src/servers/wo/tests/conftest.py b/src/servers/wo/tests/conftest.py index 94a5236e..59356b10 100644 --- a/src/servers/wo/tests/conftest.py +++ b/src/servers/wo/tests/conftest.py @@ -2,6 +2,7 @@ import os import pytest +import pandas as pd from unittest.mock import patch from dotenv import load_dotenv @@ -13,14 +14,14 @@ requires_wo_data = pytest.mark.skipif( not os.path.exists( os.environ.get( - "WO_DATA_PATH", + "WO_DATA_DIR", os.path.join( os.path.dirname(__file__), - "../../../../tmp/assetopsbench/sample_data/all_wo_with_code_component_events.csv", + "../../../../tmp/assetopsbench/sample_data", ), ) ), - reason="Work order CSV data not available (set WO_DATA_PATH)", + reason="Work order sample data directory not found (set WO_DATA_DIR)", ) @@ -29,21 +30,15 @@ @pytest.fixture(autouse=True) def reset_data_cache(): - """Reset the module-level DataFrame cache between tests.""" + """Reset the module-level data cache between tests.""" import servers.wo.main as wo_main - original = wo_main._df - wo_main._df = None + original = dict(wo_main._data) + wo_main._data = {k: None for k in original} yield - wo_main._df = original + wo_main._data = original -@pytest.fixture -def mock_df(tmp_path): - """Patch the WO data path with a minimal CSV fixture.""" - import pandas as pd - import servers.wo.main as wo_main - - csv_path = tmp_path / "wo_test.csv" +def _make_wo_df() -> pd.DataFrame: data = { "wo_id": ["WO001", "WO002", "WO003", "WO004"], "wo_description": ["Oil Analysis", "Routine Maintenance", "Corrective Repair", "Emergency Fix"], @@ -54,18 +49,91 @@ def mock_df(tmp_path): "secondary_code_description": ["Routine Oil Analysis", "Basic Maint", "Repair", "Emergency"], "equipment_id": ["CWC04013", "CWC04013", "CWC04013", "CWC04007"], "equipment_name": ["Chiller 13", "Chiller 13", "Chiller 13", "Chiller 7"], - "preventive": [True, True, False, False], - "work_priority": [5, 5, 3, 1], - "actual_finish": ["2017-06-01", "2017-08-15", "2017-11-20", "2018-03-10"], + "preventive": ["TRUE", "TRUE", "FALSE", "FALSE"], + "work_priority": ["5", "5", "3", "1"], + "actual_finish": [ + pd.Timestamp("2017-06-01"), + pd.Timestamp("2017-08-15"), + pd.Timestamp("2017-11-20"), + pd.Timestamp("2018-03-10"), + ], "duration": ["3:00", "2:00", "4:00", "6:00"], "actual_labor_hours": ["1:00", "1:00", "2:00", "3:00"], } - pd.DataFrame(data).to_csv(csv_path, index=False) + return pd.DataFrame(data) + + +def _make_events_df() -> pd.DataFrame: + data = { + "event_id": ["E001", "E002", "E003"], + "event_group": ["WORK_ORDER", "ALERT", "ANOMALY"], + "event_category": ["PM", "ALERT", "ANOMALY"], + "event_type": ["MT001", "CR00002", None], + "description": ["Routine Maintenance", "Temperature Alert", "Anomaly Detected"], + "equipment_id": ["CWC04013", "CWC04013", "CWC04013"], + "equipment_name": ["Chiller 13", "Chiller 13", "Chiller 13"], + "event_time": [ + pd.Timestamp("2017-06-01"), + pd.Timestamp("2017-07-01"), + pd.Timestamp("2017-08-01"), + ], + "note": [None, "High temp", None], + } + return pd.DataFrame(data) + + +def _make_failure_codes_df() -> pd.DataFrame: + data = { + "category": ["Maintenance and Routine Checks", "Maintenance and Routine Checks", "Corrective"], + "primary_code": ["MT010", "MT001", "MT013"], + "primary_code_description": ["Oil Analysis", "Routine Maintenance", "Corrective"], + "secondary_code": ["MT010b", "MT001a", "MT013a"], + "secondary_code_description": ["Routine Oil Analysis", "Basic Maint", "Repair"], + } + return pd.DataFrame(data) + + +def _make_primary_failure_codes_df() -> pd.DataFrame: + data = { + "category": ["Maintenance and Routine Checks", "Maintenance and Routine Checks", "Corrective"], + "primary_code": ["MT010", "MT001", "MT013"], + "primary_code_description": ["Oil Analysis", "Routine Maintenance", "Corrective"], + } + return pd.DataFrame(data) + + +def _make_alert_events_df() -> pd.DataFrame: + data = { + "equipment_id": ["CWC04013", "CWC04013", "CWC04013"], + "equipment_name": ["Chiller 13", "Chiller 13", "Chiller 13"], + "rule": ["CR00002", "CR00002", "CR00002"], + "start_time": [ + pd.Timestamp("2017-01-01"), + pd.Timestamp("2017-03-01"), + pd.Timestamp("2017-06-01"), + ], + "end_time": [ + pd.Timestamp("2017-01-02"), + pd.Timestamp("2017-03-02"), + pd.Timestamp("2017-06-02"), + ], + "event_group": ["ALERT", "ALERT", "WORK_ORDER"], + } + return pd.DataFrame(data) + + +@pytest.fixture +def mock_data(): + """Patch all module-level data caches with minimal fixture DataFrames.""" + import servers.wo.main as wo_main - with patch.object(wo_main, "WO_DATA_PATH", str(csv_path)): - wo_main._df = None - yield - wo_main._df = None + wo_main._data["wo_events"] = _make_wo_df() + wo_main._data["events"] = _make_events_df() + wo_main._data["failure_codes"] = _make_failure_codes_df() + wo_main._data["primary_failure_codes"] = _make_primary_failure_codes_df() + wo_main._data["alert_events"] = _make_alert_events_df() + yield + wo_main._data = {k: None for k in wo_main._data} async def call_tool(mcp_instance, tool_name: str, args: dict) -> dict: diff --git a/src/servers/wo/tests/test_tools.py b/src/servers/wo/tests/test_tools.py index c70b9e78..fb3604d5 100644 --- a/src/servers/wo/tests/test_tools.py +++ b/src/servers/wo/tests/test_tools.py @@ -1,7 +1,8 @@ """Tests for Work Order MCP server tools. -Unit tests use a mocked CSV fixture; integration tests require the real dataset -(skipped unless WO_DATA_PATH points to a valid CSV). +Unit tests use in-memory fixture DataFrames injected via ``mock_data``. +Integration tests require the sample data directory to be present and are +gated by the ``requires_wo_data`` marker. """ import pytest @@ -9,29 +10,6 @@ from .conftest import requires_wo_data, call_tool -# --------------------------------------------------------------------------- -# list_equipment -# --------------------------------------------------------------------------- - - -class TestListEquipment: - @pytest.mark.anyio - async def test_returns_equipment_list(self, mock_df): - data = await call_tool(mcp, "list_equipment", {}) - assert "equipment_ids" in data - assert "CWC04013" in data["equipment_ids"] - assert "CWC04007" in data["equipment_ids"] - assert data["total_equipment"] == 2 - - @requires_wo_data - @pytest.mark.anyio - async def test_integration_returns_equipment(self): - data = await call_tool(mcp, "list_equipment", {}) - assert "equipment_ids" in data - assert data["total_equipment"] > 0 - assert any("CWC" in eq for eq in data["equipment_ids"]) - - # --------------------------------------------------------------------------- # get_work_orders # --------------------------------------------------------------------------- @@ -39,53 +17,40 @@ async def test_integration_returns_equipment(self): class TestGetWorkOrders: @pytest.mark.anyio - async def test_unknown_equipment(self, mock_df): + async def test_unknown_equipment(self, mock_data): data = await call_tool(mcp, "get_work_orders", {"equipment_id": "UNKNOWN"}) assert "error" in data @pytest.mark.anyio - async def test_returns_all_records(self, mock_df): + async def test_returns_all_records(self, mock_data): data = await call_tool(mcp, "get_work_orders", {"equipment_id": "CWC04013"}) - assert data["total_work_orders"] == 3 + assert data["total"] == 3 assert len(data["work_orders"]) == 3 @pytest.mark.anyio - async def test_date_range_filter(self, mock_df): + async def test_date_range_filter(self, mock_data): data = await call_tool( mcp, "get_work_orders", - {"equipment_id": "CWC04013", "start_date": "2017-01-01", "end_date": "2018-01-01"}, + {"equipment_id": "CWC04013", "start_date": "2017-01-01", "end_date": "2017-12-31"}, ) - assert data["total_work_orders"] == 3 + assert data["total"] == 3 for wo in data["work_orders"]: - assert wo["actual_finish"] is not None - assert "2017" in wo["actual_finish"] + assert "2017" in (wo["actual_finish"] or "") @pytest.mark.anyio - async def test_invalid_start_date(self, mock_df): + async def test_invalid_date(self, mock_data): data = await call_tool( mcp, "get_work_orders", {"equipment_id": "CWC04013", "start_date": "not-a-date"} ) assert "error" in data @pytest.mark.anyio - async def test_work_order_fields(self, mock_df): + async def test_work_order_fields_present(self, mock_data): data = await call_tool(mcp, "get_work_orders", {"equipment_id": "CWC04013"}) wo = data["work_orders"][0] - assert "wo_id" in wo - assert "wo_description" in wo - assert "primary_code" in wo - assert "preventive" in wo - assert "equipment_id" in wo - - @pytest.mark.anyio - async def test_preventive_filter_via_date(self, mock_df): - # CWC04013 has 2 preventive and 1 corrective; all in 2017 - data = await call_tool(mcp, "get_work_orders", {"equipment_id": "CWC04013"}) - preventive = [wo for wo in data["work_orders"] if wo["preventive"]] - corrective = [wo for wo in data["work_orders"] if not wo["preventive"]] - assert len(preventive) == 2 - assert len(corrective) == 1 + for field in ("wo_id", "wo_description", "primary_code", "preventive", "equipment_id"): + assert field in wo @requires_wo_data @pytest.mark.anyio @@ -93,62 +58,242 @@ async def test_integration_cwc04013_2017(self): data = await call_tool( mcp, "get_work_orders", - {"equipment_id": "CWC04013", "start_date": "2017-01-01", "end_date": "2018-01-01"}, + {"equipment_id": "CWC04013", "start_date": "2017-01-01", "end_date": "2017-12-31"}, ) assert "work_orders" in data - assert data["total_work_orders"] > 0 + assert data["total"] > 0 # --------------------------------------------------------------------------- -# summarize_work_orders +# get_preventive_work_orders # --------------------------------------------------------------------------- -class TestSummarizeWorkOrders: +class TestGetPreventiveWorkOrders: + @pytest.mark.anyio + async def test_returns_only_preventive(self, mock_data): + data = await call_tool(mcp, "get_preventive_work_orders", {"equipment_id": "CWC04013"}) + assert data["total"] == 2 + for wo in data["work_orders"]: + assert wo["preventive"] is True + @pytest.mark.anyio - async def test_unknown_equipment(self, mock_df): - data = await call_tool(mcp, "summarize_work_orders", {"equipment_id": "UNKNOWN"}) + async def test_unknown_equipment(self, mock_data): + data = await call_tool(mcp, "get_preventive_work_orders", {"equipment_id": "UNKNOWN"}) assert "error" in data + @requires_wo_data @pytest.mark.anyio - async def test_summary_counts(self, mock_df): - data = await call_tool(mcp, "summarize_work_orders", {"equipment_id": "CWC04013"}) - assert data["total_work_orders"] == 3 - assert data["preventive_count"] == 2 - assert data["corrective_count"] == 1 + async def test_integration(self): + data = await call_tool( + mcp, + "get_preventive_work_orders", + {"equipment_id": "CWC04013", "start_date": "2017-01-01", "end_date": "2017-12-31"}, + ) + assert "work_orders" in data + for wo in data["work_orders"]: + assert wo["preventive"] is True + + +# --------------------------------------------------------------------------- +# get_corrective_work_orders +# --------------------------------------------------------------------------- + +class TestGetCorrectiveWorkOrders: @pytest.mark.anyio - async def test_by_primary_code(self, mock_df): - data = await call_tool(mcp, "summarize_work_orders", {"equipment_id": "CWC04013"}) - assert "by_primary_code" in data - assert data["by_primary_code"]["MT010"] == 1 - assert data["by_primary_code"]["MT001"] == 1 - assert data["by_primary_code"]["MT013"] == 1 + async def test_returns_only_corrective(self, mock_data): + data = await call_tool(mcp, "get_corrective_work_orders", {"equipment_id": "CWC04013"}) + assert data["total"] == 1 + for wo in data["work_orders"]: + assert wo["preventive"] is False @pytest.mark.anyio - async def test_by_collection(self, mock_df): - data = await call_tool(mcp, "summarize_work_orders", {"equipment_id": "CWC04013"}) - assert "by_collection" in data - assert data["by_collection"]["compressor"] == 2 - assert data["by_collection"]["motor"] == 1 + async def test_unknown_equipment(self, mock_data): + data = await call_tool(mcp, "get_corrective_work_orders", {"equipment_id": "UNKNOWN"}) + assert "error" in data + @requires_wo_data @pytest.mark.anyio - async def test_date_range_narrows_summary(self, mock_df): + async def test_integration(self): data = await call_tool( mcp, - "summarize_work_orders", - {"equipment_id": "CWC04013", "end_date": "2017-09-01"}, + "get_corrective_work_orders", + {"equipment_id": "CWC04013", "start_date": "2017-01-01", "end_date": "2017-12-31"}, ) - assert data["total_work_orders"] == 2 + assert "work_orders" in data + for wo in data["work_orders"]: + assert wo["preventive"] is False + + +# --------------------------------------------------------------------------- +# get_events +# --------------------------------------------------------------------------- + + +class TestGetEvents: + @pytest.mark.anyio + async def test_returns_events(self, mock_data): + data = await call_tool(mcp, "get_events", {"equipment_id": "CWC04013"}) + assert data["total"] == 3 + groups = {e["event_group"] for e in data["events"]} + assert {"WORK_ORDER", "ALERT", "ANOMALY"} == groups + + @pytest.mark.anyio + async def test_unknown_equipment(self, mock_data): + data = await call_tool(mcp, "get_events", {"equipment_id": "UNKNOWN"}) + assert "error" in data + + @pytest.mark.anyio + async def test_date_range(self, mock_data): + data = await call_tool( + mcp, + "get_events", + {"equipment_id": "CWC04013", "start_date": "2017-07-01", "end_date": "2017-12-31"}, + ) + assert data["total"] == 2 @requires_wo_data @pytest.mark.anyio - async def test_integration_summary_cwc04013(self): + async def test_integration(self): + data = await call_tool(mcp, "get_events", {"equipment_id": "CWC04009"}) + assert "events" in data + assert data["total"] > 0 + + +# --------------------------------------------------------------------------- +# get_failure_codes +# --------------------------------------------------------------------------- + + +class TestGetFailureCodes: + @pytest.mark.anyio + async def test_returns_codes(self, mock_data): + data = await call_tool(mcp, "get_failure_codes", {}) + assert data["total"] == 3 + codes = [fc["primary_code"] for fc in data["failure_codes"]] + assert "MT010" in codes + + @pytest.mark.anyio + async def test_fields_present(self, mock_data): + data = await call_tool(mcp, "get_failure_codes", {}) + fc = data["failure_codes"][0] + for field in ("category", "primary_code", "primary_code_description", "secondary_code"): + assert field in fc + + @requires_wo_data + @pytest.mark.anyio + async def test_integration(self): + data = await call_tool(mcp, "get_failure_codes", {}) + assert data["total"] > 0 + + +# --------------------------------------------------------------------------- +# get_work_order_distribution +# --------------------------------------------------------------------------- + + +class TestGetWorkOrderDistribution: + @pytest.mark.anyio + async def test_unknown_equipment(self, mock_data): + data = await call_tool(mcp, "get_work_order_distribution", {"equipment_id": "UNKNOWN"}) + assert "error" in data + + @pytest.mark.anyio + async def test_distribution_counts(self, mock_data): + data = await call_tool(mcp, "get_work_order_distribution", {"equipment_id": "CWC04013"}) + assert data["total_work_orders"] == 3 + codes = {e["primary_code"]: e["count"] for e in data["distribution"]} + assert codes.get("MT010") == 1 + assert codes.get("MT001") == 1 + assert codes.get("MT013") == 1 + + @pytest.mark.anyio + async def test_sorted_descending(self, mock_data): + data = await call_tool(mcp, "get_work_order_distribution", {"equipment_id": "CWC04013"}) + counts = [e["count"] for e in data["distribution"]] + assert counts == sorted(counts, reverse=True) + + @requires_wo_data + @pytest.mark.anyio + async def test_integration(self): data = await call_tool( mcp, - "summarize_work_orders", - {"equipment_id": "CWC04013", "start_date": "2017-01-01", "end_date": "2018-01-01"}, + "get_work_order_distribution", + {"equipment_id": "CWC04013", "start_date": "2017-01-01", "end_date": "2017-12-31"}, ) - assert "total_work_orders" in data - assert "by_primary_code" in data + assert "distribution" in data assert data["total_work_orders"] > 0 + + +# --------------------------------------------------------------------------- +# predict_next_work_order +# --------------------------------------------------------------------------- + + +class TestPredictNextWorkOrder: + @pytest.mark.anyio + async def test_unknown_equipment(self, mock_data): + data = await call_tool(mcp, "predict_next_work_order", {"equipment_id": "UNKNOWN"}) + assert "error" in data + + @pytest.mark.anyio + async def test_returns_predictions(self, mock_data): + data = await call_tool(mcp, "predict_next_work_order", {"equipment_id": "CWC04013"}) + # Should either return predictions or an error about transition data + assert "predictions" in data or "error" in data + if "predictions" in data: + assert "last_work_order_type" in data + assert isinstance(data["predictions"], list) + + @pytest.mark.anyio + async def test_probabilities_sum_to_one(self, mock_data): + data = await call_tool(mcp, "predict_next_work_order", {"equipment_id": "CWC04013"}) + if "predictions" in data and data["predictions"]: + total = sum(p["probability"] for p in data["predictions"]) + assert abs(total - 1.0) < 1e-6 + + @requires_wo_data + @pytest.mark.anyio + async def test_integration(self): + data = await call_tool(mcp, "predict_next_work_order", {"equipment_id": "CWC04013"}) + assert "predictions" in data or "error" in data + + +# --------------------------------------------------------------------------- +# analyze_alert_to_failure +# --------------------------------------------------------------------------- + + +class TestAnalyzeAlertToFailure: + @pytest.mark.anyio + async def test_unknown_rule(self, mock_data): + data = await call_tool( + mcp, "analyze_alert_to_failure", {"equipment_id": "CWC04013", "rule_id": "UNKNOWN"} + ) + assert "error" in data + + @pytest.mark.anyio + async def test_returns_transitions(self, mock_data): + data = await call_tool( + mcp, "analyze_alert_to_failure", {"equipment_id": "CWC04013", "rule_id": "CR00002"} + ) + # fixture only has 3 rows so transitions may be empty or present + assert "transitions" in data or "error" in data + + @pytest.mark.anyio + async def test_probabilities_valid(self, mock_data): + data = await call_tool( + mcp, "analyze_alert_to_failure", {"equipment_id": "CWC04013", "rule_id": "CR00002"} + ) + if "transitions" in data and data["transitions"]: + total_prob = sum(t["probability"] for t in data["transitions"]) + assert abs(total_prob - 1.0) < 1e-6 + + @requires_wo_data + @pytest.mark.anyio + async def test_integration(self): + data = await call_tool( + mcp, "analyze_alert_to_failure", {"equipment_id": "CWC04013", "rule_id": "CR00002"} + ) + assert "transitions" in data or "error" in data From 607be342c9b90cf92f138a281baf10369261e2dc Mon Sep 17 00:00:00 2001 From: Shuxin Lin Date: Wed, 4 Mar 2026 14:49:23 -0500 Subject: [PATCH 03/16] refactor(wo): split main.py into models, data, tools, and entry point Signed-off-by: Shuxin Lin --- src/servers/wo/data.py | 206 +++++++++ src/servers/wo/main.py | 744 +------------------------------ src/servers/wo/models.py | 148 ++++++ src/servers/wo/tests/conftest.py | 22 +- src/servers/wo/tools.py | 407 +++++++++++++++++ 5 files changed, 791 insertions(+), 736 deletions(-) create mode 100644 src/servers/wo/data.py create mode 100644 src/servers/wo/models.py create mode 100644 src/servers/wo/tools.py diff --git a/src/servers/wo/data.py b/src/servers/wo/data.py new file mode 100644 index 00000000..e3602ee9 --- /dev/null +++ b/src/servers/wo/data.py @@ -0,0 +1,206 @@ +"""Data loading and query helpers for the Work Order MCP server. + +All CSVs are loaded lazily on first access. Missing files log a warning and +return ``None`` so the server starts even when only a subset of data is present. +""" + +import logging +import os +from collections import defaultdict +from datetime import datetime +from typing import Any, Dict, List, Optional + +import pandas as pd + +from .models import EventItem, WorkOrderItem + +logger = logging.getLogger("wo-mcp-server") + +# --------------------------------------------------------------------------- +# Data directory +# --------------------------------------------------------------------------- + +_DEFAULT_DATA_DIR = os.path.normpath( + os.path.join(os.path.dirname(__file__), "../../tmp/assetopsbench/sample_data") +) +WO_DATA_DIR: str = os.environ.get("WO_DATA_DIR", _DEFAULT_DATA_DIR) + + +def _csv(filename: str) -> str: + return os.path.join(WO_DATA_DIR, filename) + + +# --------------------------------------------------------------------------- +# Lazy cache +# --------------------------------------------------------------------------- + +_data: Dict[str, Optional[pd.DataFrame]] = { + "wo_events": None, + "events": None, + "alert_events": None, + "alert_rule": None, + "alert_rule_fc_mapping": None, + "anomaly_fc_mapping": None, + "failure_codes": None, + "primary_failure_codes": None, + "component": None, +} + + +def load(key: str) -> Optional[pd.DataFrame]: + """Return the cached DataFrame for *key*, loading it on first call.""" + if _data[key] is not None: + return _data[key] + + _loaders = { + "wo_events": _read_wo_events, + "events": _read_events, + "alert_events": _read_alert_events, + "alert_rule": lambda: pd.read_csv(_csv("alert_rule.csv"), dtype=str), + "alert_rule_fc_mapping": lambda: pd.read_csv(_csv("alert_rule_failure_code_mapping.csv"), dtype=str), + "anomaly_fc_mapping": lambda: pd.read_csv(_csv("anomaly_to_failure_code_mapping.csv"), dtype=str), + "failure_codes": lambda: pd.read_csv(_csv("failure_codes.csv"), dtype=str), + "primary_failure_codes": lambda: pd.read_csv(_csv("primary_failure_codes.csv"), dtype=str), + "component": lambda: pd.read_csv(_csv("component.csv"), dtype=str), + } + + try: + df = _loaders[key]() + _data[key] = df + logger.info("Loaded dataset '%s'", key) + return df + except FileNotFoundError: + logger.warning("Data file for '%s' not found in %s", key, WO_DATA_DIR) + return None + except Exception as exc: + logger.error("Failed to load '%s': %s", key, exc) + return None + + +# --------------------------------------------------------------------------- +# CSV readers +# --------------------------------------------------------------------------- + + +def _read_wo_events() -> pd.DataFrame: + df = pd.read_csv(_csv("all_wo_with_code_component_events.csv"), dtype=str) + df["actual_finish"] = pd.to_datetime(df["actual_finish"], format="%m/%d/%y %H:%M", errors="coerce") + return df + + +def _read_events() -> pd.DataFrame: + df = pd.read_csv(_csv("event.csv"), dtype=str) + df["event_time"] = pd.to_datetime(df["event_time"], format="%Y-%m-%d %H:%M:%S", errors="coerce") + return df + + +def _read_alert_events() -> pd.DataFrame: + df = pd.read_csv(_csv("alert_events.csv"), dtype=str) + df["start_time"] = pd.to_datetime(df["start_time"], format="%m/%d/%y %H:%M", errors="coerce") + df["end_time"] = pd.to_datetime(df["end_time"], format="%m/%d/%y %H:%M", errors="coerce") + return df + + +# --------------------------------------------------------------------------- +# Query helpers +# --------------------------------------------------------------------------- + + +def filter_df(df: pd.DataFrame, conditions: dict) -> pd.DataFrame: + """Filter *df* by a dict of ``{column: callable_or_query_string}`` conditions.""" + filtered = df.copy() + for col, cond in conditions.items(): + if callable(cond): + filtered = filtered[filtered[col].apply(cond)] + else: + filtered = filtered.query(f"{col} {cond}") + if not filtered.empty: + filtered = filtered.reset_index(drop=True) + return filtered + + +def parse_date(value: Optional[str]) -> Optional[datetime]: + """Parse an ISO date string (YYYY-MM-DD) or raise ValueError.""" + if not value: + return None + try: + return datetime.strptime(value, "%Y-%m-%d") + except ValueError as exc: + raise ValueError(f"date must be YYYY-MM-DD, got '{value}'") from exc + + +def date_conditions(equipment_id: str, date_col: str, start: Optional[str], end: Optional[str]) -> dict: + """Build a filter-conditions dict for equipment + optional date range.""" + start_dt = parse_date(start) + end_dt = parse_date(end) + cond: dict = { + "equipment_id": lambda x, eid=equipment_id: isinstance(x, str) and x.strip().lower() == eid.strip().lower() + } + if start_dt or end_dt: + cond[date_col] = lambda x, s=start_dt, e=end_dt: ( + (s is None or x >= s) and (e is None or x <= e) + ) + return cond + + +def get_transition_matrix(event_df: pd.DataFrame, event_type_col: str) -> pd.DataFrame: + """Build a row-normalised Markov transition matrix from a sequence of event types.""" + event_types = event_df[event_type_col].tolist() + counts: dict = defaultdict(lambda: defaultdict(int)) + for cur, nxt in zip(event_types[:-1], event_types[1:]): + counts[cur][nxt] += 1 + matrix = pd.DataFrame(counts).fillna(0) + matrix = matrix.div(matrix.sum(axis=1), axis=0) + return matrix + + +# --------------------------------------------------------------------------- +# Row → model converters +# --------------------------------------------------------------------------- + + +def row_to_wo(row: Any) -> WorkOrderItem: + return WorkOrderItem( + wo_id=str(row.get("wo_id", "")), + wo_description=str(row.get("wo_description", "")), + collection=str(row.get("collection", "")), + primary_code=str(row.get("primary_code", "")), + primary_code_description=str(row.get("primary_code_description", "")), + secondary_code=str(row.get("secondary_code", "")), + secondary_code_description=str(row.get("secondary_code_description", "")), + equipment_id=str(row.get("equipment_id", "")), + equipment_name=str(row.get("equipment_name", "")), + preventive=str(row.get("preventive", "")).upper() == "TRUE", + work_priority=int(row["work_priority"]) if pd.notna(row.get("work_priority")) else None, + actual_finish=row["actual_finish"].isoformat() if pd.notna(row.get("actual_finish")) else None, + duration=str(row.get("duration", "")) if pd.notna(row.get("duration")) else None, + actual_labor_hours=str(row.get("actual_labor_hours", "")) if pd.notna(row.get("actual_labor_hours")) else None, + ) + + +def row_to_event(row: Any) -> EventItem: + return EventItem( + event_id=str(row.get("event_id", "")), + event_group=str(row.get("event_group", "")), + event_category=str(row.get("event_category", "")), + event_type=str(row["event_type"]) if pd.notna(row.get("event_type")) else None, + description=str(row["description"]) if pd.notna(row.get("description")) else None, + equipment_id=str(row.get("equipment_id", "")), + equipment_name=str(row.get("equipment_name", "")), + event_time=row["event_time"].isoformat() if pd.notna(row.get("event_time")) else "", + note=str(row["note"]) if pd.notna(row.get("note")) else None, + ) + + +def fetch_work_orders( + df: pd.DataFrame, + equipment_id: str, + start_date: Optional[str], + end_date: Optional[str], +) -> List[WorkOrderItem]: + """Filter *df* by equipment + date range and return ``WorkOrderItem`` list.""" + cond = date_conditions(equipment_id, "actual_finish", start_date, end_date) + filtered = filter_df(df, cond) + if filtered is None or filtered.empty: + return [] + return [row_to_wo(row) for _, row in filtered.iterrows()] diff --git a/src/servers/wo/main.py b/src/servers/wo/main.py index d7d0406a..c1cf4334 100644 --- a/src/servers/wo/main.py +++ b/src/servers/wo/main.py @@ -1,744 +1,38 @@ -"""Work Order MCP server. +"""Work Order MCP server entry point. -Exposes work-order and event data as FastMCP tools. All data is loaded from a -configurable directory (env var ``WO_DATA_DIR``). Every data file is read -lazily on first use so the server starts even when only a subset of files is -available. +Starts a FastMCP server that exposes work-order data as tools. +Data directory is configurable via the ``WO_DATA_DIR`` environment variable +(defaults to ``src/tmp/assetopsbench/sample_data/``). """ import logging import os -from collections import Counter, defaultdict -from datetime import datetime -from typing import Any, Dict, List, Optional, Tuple, Union -import pandas as pd from dotenv import load_dotenv from mcp.server.fastmcp import FastMCP -from pydantic import BaseModel load_dotenv() _log_level = getattr(logging, os.environ.get("LOG_LEVEL", "WARNING").upper(), logging.WARNING) logging.basicConfig(level=_log_level) -logger = logging.getLogger("wo-mcp-server") - -# --------------------------------------------------------------------------- -# Data directory — default to the bundled sample data shipped with the repo -# --------------------------------------------------------------------------- - -_DEFAULT_DATA_DIR = os.path.normpath( - os.path.join( - os.path.dirname(__file__), - "../../tmp/assetopsbench/sample_data", - ) -) -WO_DATA_DIR = os.environ.get("WO_DATA_DIR", _DEFAULT_DATA_DIR) - - -def _csv(filename: str) -> str: - return os.path.join(WO_DATA_DIR, filename) - - -# --------------------------------------------------------------------------- -# Lazy data loading — each DataFrame is None until first access -# --------------------------------------------------------------------------- - -_data: Dict[str, Optional[pd.DataFrame]] = { - "wo_events": None, - "events": None, - "alert_events": None, - "alert_rule": None, - "alert_rule_fc_mapping": None, - "anomaly_fc_mapping": None, - "failure_codes": None, - "primary_failure_codes": None, - "component": None, -} - - -def _load(key: str) -> Optional[pd.DataFrame]: - if _data[key] is not None: - return _data[key] - - loaders = { - "wo_events": lambda: _read_wo_events(), - "events": lambda: _read_events(), - "alert_events": lambda: _read_alert_events(), - "alert_rule": lambda: pd.read_csv(_csv("alert_rule.csv"), dtype=str), - "alert_rule_fc_mapping": lambda: pd.read_csv(_csv("alert_rule_failure_code_mapping.csv"), dtype=str), - "anomaly_fc_mapping": lambda: pd.read_csv(_csv("anomaly_to_failure_code_mapping.csv"), dtype=str), - "failure_codes": lambda: pd.read_csv(_csv("failure_codes.csv"), dtype=str), - "primary_failure_codes": lambda: pd.read_csv(_csv("primary_failure_codes.csv"), dtype=str), - "component": lambda: pd.read_csv(_csv("component.csv"), dtype=str), - } - - try: - df = loaders[key]() - _data[key] = df - logger.info("Loaded dataset '%s'", key) - return df - except FileNotFoundError: - logger.warning("Data file for '%s' not found in %s", key, WO_DATA_DIR) - return None - except Exception as exc: - logger.error("Failed to load '%s': %s", key, exc) - return None - - -def _read_wo_events() -> pd.DataFrame: - df = pd.read_csv(_csv("all_wo_with_code_component_events.csv"), dtype=str) - df["actual_finish"] = pd.to_datetime(df["actual_finish"], format="%m/%d/%y %H:%M", errors="coerce") - return df - - -def _read_events() -> pd.DataFrame: - df = pd.read_csv(_csv("event.csv"), dtype=str) - df["event_time"] = pd.to_datetime(df["event_time"], format="%Y-%m-%d %H:%M:%S", errors="coerce") - return df - - -def _read_alert_events() -> pd.DataFrame: - df = pd.read_csv(_csv("alert_events.csv"), dtype=str) - df["start_time"] = pd.to_datetime(df["start_time"], format="%m/%d/%y %H:%M", errors="coerce") - df["end_time"] = pd.to_datetime(df["end_time"], format="%m/%d/%y %H:%M", errors="coerce") - return df - - -def _alert_to_wo_df() -> Optional[pd.DataFrame]: - """Joined alert-rule → failure-code lookup table.""" - fc_mapping = _load("alert_rule_fc_mapping") - pfc = _load("primary_failure_codes") - if fc_mapping is None or pfc is None: - return None - try: - merged = pd.merge( - fc_mapping, - pfc[["category", "primary_code", "primary_code_description"]], - on="primary_code", - suffixes=("_rule", ""), - ).drop(columns=["primary_code_description_rule"], errors="ignore") - return merged - except Exception as exc: - logger.error("Failed to build alert_to_wo join: %s", exc) - return None - - -# --------------------------------------------------------------------------- -# Internal helpers -# --------------------------------------------------------------------------- - - -def _filter_df(df: pd.DataFrame, conditions: dict) -> pd.DataFrame: - filtered = df.copy() - for col, cond in conditions.items(): - if callable(cond): - filtered = filtered[filtered[col].apply(cond)] - else: - filtered = filtered.query(f"{col} {cond}") - if filtered is not None and not filtered.empty: - filtered = filtered.reset_index(drop=True) - return filtered - - -def _parse_date(value: Optional[str]) -> Optional[datetime]: - if not value: - return None - try: - return datetime.strptime(value, "%Y-%m-%d") - except ValueError as exc: - raise ValueError(f"date must be YYYY-MM-DD, got '{value}'") from exc - - -def _date_conditions(equipment_id: str, date_col: str, start: Optional[str], end: Optional[str]) -> dict: - start_dt = _parse_date(start) - end_dt = _parse_date(end) - cond: dict = { - "equipment_id": lambda x, eid=equipment_id: isinstance(x, str) and x.strip().lower() == eid.strip().lower() - } - if start_dt or end_dt: - cond[date_col] = lambda x, s=start_dt, e=end_dt: ( - (s is None or x >= s) and (e is None or x <= e) - ) - return cond - - -def _get_transition_matrix(event_df: pd.DataFrame, event_type_col: str) -> pd.DataFrame: - event_types = event_df[event_type_col].tolist() - counts: dict = defaultdict(lambda: defaultdict(int)) - for cur, nxt in zip(event_types[:-1], event_types[1:]): - counts[cur][nxt] += 1 - matrix = pd.DataFrame(counts).fillna(0) - matrix = matrix.div(matrix.sum(axis=1), axis=0) - return matrix - - -# --------------------------------------------------------------------------- -# Result models -# --------------------------------------------------------------------------- - - -class ErrorResult(BaseModel): - error: str - - -class WorkOrderItem(BaseModel): - wo_id: str - wo_description: str - collection: str - primary_code: str - primary_code_description: str - secondary_code: str - secondary_code_description: str - equipment_id: str - equipment_name: str - preventive: bool - work_priority: Optional[int] - actual_finish: Optional[str] - duration: Optional[str] - actual_labor_hours: Optional[str] - - -class WorkOrdersResult(BaseModel): - equipment_id: str - start_date: Optional[str] - end_date: Optional[str] - total: int - work_orders: List[WorkOrderItem] - message: str - - -class EventItem(BaseModel): - event_id: str - event_group: str - event_category: str - event_type: Optional[str] - description: Optional[str] - equipment_id: str - equipment_name: str - event_time: str - note: Optional[str] - - -class EventsResult(BaseModel): - equipment_id: str - start_date: Optional[str] - end_date: Optional[str] - total: int - events: List[EventItem] - message: str - - -class FailureCodeItem(BaseModel): - category: str - primary_code: str - primary_code_description: str - secondary_code: str - secondary_code_description: str - - -class FailureCodesResult(BaseModel): - total: int - failure_codes: List[FailureCodeItem] - - -class WorkOrderDistributionEntry(BaseModel): - category: str - primary_code: str - primary_code_description: str - secondary_code: str - secondary_code_description: str - count: int - - -class WorkOrderDistributionResult(BaseModel): - equipment_id: str - start_date: Optional[str] - end_date: Optional[str] - total_work_orders: int - distribution: List[WorkOrderDistributionEntry] - message: str - - -class NextWorkOrderEntry(BaseModel): - category: str - primary_code: str - primary_code_description: str - probability: float - - -class NextWorkOrderPredictionResult(BaseModel): - equipment_id: str - start_date: Optional[str] - end_date: Optional[str] - last_work_order_type: str - predictions: List[NextWorkOrderEntry] - message: str - - -class AlertToFailureEntry(BaseModel): - transition: str - probability: float - average_hours_to_maintenance: Optional[float] - - -class AlertToFailureResult(BaseModel): - equipment_id: str - rule_id: str - start_date: Optional[str] - end_date: Optional[str] - total_alerts_analyzed: int - transitions: List[AlertToFailureEntry] - message: str - - -# --------------------------------------------------------------------------- -# Row → model helpers -# --------------------------------------------------------------------------- - - -def _row_to_wo(row: Any) -> WorkOrderItem: - return WorkOrderItem( - wo_id=str(row.get("wo_id", "")), - wo_description=str(row.get("wo_description", "")), - collection=str(row.get("collection", "")), - primary_code=str(row.get("primary_code", "")), - primary_code_description=str(row.get("primary_code_description", "")), - secondary_code=str(row.get("secondary_code", "")), - secondary_code_description=str(row.get("secondary_code_description", "")), - equipment_id=str(row.get("equipment_id", "")), - equipment_name=str(row.get("equipment_name", "")), - preventive=str(row.get("preventive", "")).upper() == "TRUE", - work_priority=int(row["work_priority"]) if pd.notna(row.get("work_priority")) else None, - actual_finish=row["actual_finish"].isoformat() if pd.notna(row.get("actual_finish")) else None, - duration=str(row.get("duration", "")) if pd.notna(row.get("duration")) else None, - actual_labor_hours=str(row.get("actual_labor_hours", "")) if pd.notna(row.get("actual_labor_hours")) else None, - ) - - -def _row_to_event(row: Any) -> EventItem: - return EventItem( - event_id=str(row.get("event_id", "")), - event_group=str(row.get("event_group", "")), - event_category=str(row.get("event_category", "")), - event_type=str(row["event_type"]) if pd.notna(row.get("event_type")) else None, - description=str(row["description"]) if pd.notna(row.get("description")) else None, - equipment_id=str(row.get("equipment_id", "")), - equipment_name=str(row.get("equipment_name", "")), - event_time=row["event_time"].isoformat() if pd.notna(row.get("event_time")) else "", - note=str(row["note"]) if pd.notna(row.get("note")) else None, - ) - - -def _fetch_work_orders( - df: pd.DataFrame, - equipment_id: str, - start_date: Optional[str], - end_date: Optional[str], -) -> List[WorkOrderItem]: - cond = _date_conditions(equipment_id, "actual_finish", start_date, end_date) - filtered = _filter_df(df, cond) - if filtered is None or filtered.empty: - return [] - return [_row_to_wo(row) for _, row in filtered.iterrows()] - - -# --------------------------------------------------------------------------- -# MCP server + tools -# --------------------------------------------------------------------------- mcp = FastMCP("WorkOrderAgent") - -@mcp.tool() -def get_work_orders( - equipment_id: str, - start_date: Optional[str] = None, - end_date: Optional[str] = None, -) -> Union[WorkOrdersResult, ErrorResult]: - """Retrieve all work orders for a specific equipment within an optional date range. - - Args: - equipment_id: Equipment identifier, e.g. ``"CWC04013"``. - start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. - end_date: End of date range (inclusive), format ``YYYY-MM-DD``. - """ - df = _load("wo_events") - if df is None: - return ErrorResult(error="Work order data not available") - try: - wos = _fetch_work_orders(df, equipment_id, start_date, end_date) - except ValueError as exc: - return ErrorResult(error=str(exc)) - if not wos: - return ErrorResult(error=f"No work orders found for equipment_id '{equipment_id}'") - return WorkOrdersResult( - equipment_id=equipment_id, - start_date=start_date, - end_date=end_date, - total=len(wos), - work_orders=wos, - message=f"Found {len(wos)} work orders for '{equipment_id}'.", - ) - - -@mcp.tool() -def get_preventive_work_orders( - equipment_id: str, - start_date: Optional[str] = None, - end_date: Optional[str] = None, -) -> Union[WorkOrdersResult, ErrorResult]: - """Retrieve only preventive work orders for a specific equipment within an optional date range. - - Args: - equipment_id: Equipment identifier, e.g. ``"CWC04013"``. - start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. - end_date: End of date range (inclusive), format ``YYYY-MM-DD``. - """ - df = _load("wo_events") - if df is None: - return ErrorResult(error="Work order data not available") - try: - wos = _fetch_work_orders(df[df["preventive"] == "TRUE"], equipment_id, start_date, end_date) - except ValueError as exc: - return ErrorResult(error=str(exc)) - if not wos: - return ErrorResult(error=f"No preventive work orders found for equipment_id '{equipment_id}'") - return WorkOrdersResult( - equipment_id=equipment_id, - start_date=start_date, - end_date=end_date, - total=len(wos), - work_orders=wos, - message=f"Found {len(wos)} preventive work orders for '{equipment_id}'.", - ) - - -@mcp.tool() -def get_corrective_work_orders( - equipment_id: str, - start_date: Optional[str] = None, - end_date: Optional[str] = None, -) -> Union[WorkOrdersResult, ErrorResult]: - """Retrieve only corrective work orders for a specific equipment within an optional date range. - - Args: - equipment_id: Equipment identifier, e.g. ``"CWC04013"``. - start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. - end_date: End of date range (inclusive), format ``YYYY-MM-DD``. - """ - df = _load("wo_events") - if df is None: - return ErrorResult(error="Work order data not available") - try: - wos = _fetch_work_orders(df[df["preventive"] == "FALSE"], equipment_id, start_date, end_date) - except ValueError as exc: - return ErrorResult(error=str(exc)) - if not wos: - return ErrorResult(error=f"No corrective work orders found for equipment_id '{equipment_id}'") - return WorkOrdersResult( - equipment_id=equipment_id, - start_date=start_date, - end_date=end_date, - total=len(wos), - work_orders=wos, - message=f"Found {len(wos)} corrective work orders for '{equipment_id}'.", - ) - - -@mcp.tool() -def get_events( - equipment_id: str, - start_date: Optional[str] = None, - end_date: Optional[str] = None, -) -> Union[EventsResult, ErrorResult]: - """Retrieve all events (work orders, alerts, anomalies) for a specific equipment within an optional date range. - - Args: - equipment_id: Equipment identifier, e.g. ``"CWC04013"``. - start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. - end_date: End of date range (inclusive), format ``YYYY-MM-DD``. - """ - df = _load("events") - if df is None: - return ErrorResult(error="Event data not available") - try: - start_dt = _parse_date(start_date) - end_dt = _parse_date(end_date) - except ValueError as exc: - return ErrorResult(error=str(exc)) - - cond: dict = { - "equipment_id": lambda x, eid=equipment_id: isinstance(x, str) and x.strip().lower() == eid.strip().lower() - } - if start_dt or end_dt: - cond["event_time"] = lambda x, s=start_dt, e=end_dt: ( - (s is None or x >= s) and (e is None or x <= e) - ) - - filtered = _filter_df(df, cond) - if filtered is None or filtered.empty: - return ErrorResult(error=f"No events found for equipment_id '{equipment_id}'") - - events = [_row_to_event(row) for _, row in filtered.iterrows()] - return EventsResult( - equipment_id=equipment_id, - start_date=start_date, - end_date=end_date, - total=len(events), - events=events, - message=f"Found {len(events)} events for '{equipment_id}'.", - ) - - -@mcp.tool() -def get_failure_codes() -> Union[FailureCodesResult, ErrorResult]: - """Retrieve all available failure codes with their categories and descriptions.""" - df = _load("failure_codes") - if df is None: - return ErrorResult(error="Failure codes data not available") - - items = [ - FailureCodeItem( - category=str(row.get("category", "")), - primary_code=str(row.get("primary_code", "")), - primary_code_description=str(row.get("primary_code_description", "")), - secondary_code=str(row.get("secondary_code", "")), - secondary_code_description=str(row.get("secondary_code_description", "")), - ) - for _, row in df.iterrows() - ] - return FailureCodesResult(total=len(items), failure_codes=items) - - -@mcp.tool() -def get_work_order_distribution( - equipment_id: str, - start_date: Optional[str] = None, - end_date: Optional[str] = None, -) -> Union[WorkOrderDistributionResult, ErrorResult]: - """Calculate the distribution of work order types (by failure code) for a specific equipment. - - Returns counts per (primary_code, secondary_code) pair, sorted by frequency descending. - - Args: - equipment_id: Equipment identifier, e.g. ``"CWC04013"``. - start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. - end_date: End of date range (inclusive), format ``YYYY-MM-DD``. - """ - wo_df = _load("wo_events") - fc_df = _load("failure_codes") - if wo_df is None: - return ErrorResult(error="Work order data not available") - if fc_df is None: - return ErrorResult(error="Failure codes data not available") - - try: - start_dt = _parse_date(start_date) - end_dt = _parse_date(end_date) - except ValueError as exc: - return ErrorResult(error=str(exc)) - - filtered = wo_df[wo_df["equipment_id"] == equipment_id].copy() - if start_dt: - filtered = filtered[filtered["actual_finish"] >= start_dt] - if end_dt: - filtered = filtered[filtered["actual_finish"] <= end_dt] - - if filtered.empty: - return ErrorResult(error=f"No work orders found for equipment_id '{equipment_id}'") - - counts = ( - filtered.groupby(["primary_code", "secondary_code"]) - .size() - .reset_index(name="count") - .sort_values("count", ascending=False) - ) - - distribution: List[WorkOrderDistributionEntry] = [] - for _, row in counts.iterrows(): - match = fc_df[ - (fc_df["primary_code"] == row["primary_code"]) - & (fc_df["secondary_code"] == row["secondary_code"]) - ] - if match.empty: - continue - m = match.iloc[0] - distribution.append( - WorkOrderDistributionEntry( - category=str(m.get("category", "")), - primary_code=str(m.get("primary_code", "")), - primary_code_description=str(m.get("primary_code_description", "")), - secondary_code=str(m.get("secondary_code", "")), - secondary_code_description=str(m.get("secondary_code_description", "")), - count=int(row["count"]), - ) - ) - - return WorkOrderDistributionResult( - equipment_id=equipment_id, - start_date=start_date, - end_date=end_date, - total_work_orders=int(filtered.shape[0]), - distribution=distribution, - message=f"Distribution across {len(distribution)} failure code(s) for '{equipment_id}'.", - ) - - -@mcp.tool() -def predict_next_work_order( - equipment_id: str, - start_date: Optional[str] = None, - end_date: Optional[str] = None, -) -> Union[NextWorkOrderPredictionResult, ErrorResult]: - """Predict the probabilities of the next expected work order types based on historical transition patterns. - - Uses a Markov-chain transition matrix built from the sequence of past work order - primary codes to estimate what type of work order is likely to follow the most - recent one. - - Args: - equipment_id: Equipment identifier, e.g. ``"CWC04013"``. - start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. - end_date: End of date range (inclusive), format ``YYYY-MM-DD``. - """ - wo_df = _load("wo_events") - pfc_df = _load("primary_failure_codes") - if wo_df is None: - return ErrorResult(error="Work order data not available") - - try: - start_dt = _parse_date(start_date) - end_dt = _parse_date(end_date) - except ValueError as exc: - return ErrorResult(error=str(exc)) - - cond = _date_conditions(equipment_id, "actual_finish", start_date, end_date) - filtered = _filter_df(wo_df, cond) - if filtered is None or filtered.empty: - return ErrorResult(error=f"No historical work orders found for equipment_id '{equipment_id}'") - - filtered = filtered.sort_values("actual_finish").reset_index(drop=True) - transition_matrix = _get_transition_matrix(filtered, "primary_code") - last_type = filtered.iloc[-1]["primary_code"] - - if last_type not in transition_matrix.index: - return ErrorResult(error=f"No transition data for last work order type '{last_type}'") - - raw_predictions = sorted( - transition_matrix.loc[last_type].items(), - key=lambda t: t[1], - reverse=True, - ) - - predictions: List[NextWorkOrderEntry] = [] - for primary_code, prob in raw_predictions: - if pfc_df is not None: - match = pfc_df[pfc_df["primary_code"] == primary_code] - if not match.empty: - m = match.iloc[0] - predictions.append( - NextWorkOrderEntry( - category=str(m.get("category", "")), - primary_code=primary_code, - primary_code_description=str(m.get("primary_code_description", "")), - probability=float(prob), - ) - ) - continue - predictions.append( - NextWorkOrderEntry(category="", primary_code=primary_code, primary_code_description="", probability=float(prob)) - ) - - return NextWorkOrderPredictionResult( - equipment_id=equipment_id, - start_date=start_date, - end_date=end_date, - last_work_order_type=last_type, - predictions=predictions, - message=f"Predicted next work order for '{equipment_id}' based on last type '{last_type}'.", - ) - - -@mcp.tool() -def analyze_alert_to_failure( - equipment_id: str, - rule_id: str, - start_date: Optional[str] = None, - end_date: Optional[str] = None, -) -> Union[AlertToFailureResult, ErrorResult]: - """Analyze the relationship between a specific alert rule and subsequent maintenance events for an equipment. - - Computes the probability that each alert occurrence leads to a work order (vs no - maintenance) and the average time-to-maintenance in hours. - - Args: - equipment_id: Equipment identifier, e.g. ``"CWC04013"``. - rule_id: Alert rule identifier, e.g. ``"CR00002"``. - start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. - end_date: End of date range (inclusive), format ``YYYY-MM-DD``. - """ - alert_df = _load("alert_events") - if alert_df is None: - return ErrorResult(error="Alert events data not available") - - try: - _parse_date(start_date) - _parse_date(end_date) - except ValueError as exc: - return ErrorResult(error=str(exc)) - - cond: dict = { - "equipment_id": lambda x, eid=equipment_id: isinstance(x, str) and x.strip().lower() == eid.strip().lower(), - "rule": lambda x, rid=rule_id: isinstance(x, str) and x.strip().lower() == rid.strip().lower(), - } - filtered = _filter_df(alert_df, cond) - if filtered is None or filtered.empty: - return ErrorResult(error=f"No alert events found for equipment '{equipment_id}' and rule '{rule_id}'") - - filtered = filtered.sort_values("start_time").reset_index(drop=True) - - # Compute transitions from alert occurrences to maintenance - transitions: List[str] = [] - time_diffs: List[float] = [] - for i in range(len(filtered) - 1): - if str(filtered.iloc[i].get("rule", "")).strip().lower() == rule_id.strip().lower(): - for j in range(i + 1, len(filtered)): - if str(filtered.iloc[j].get("event_group", "")).upper() == "WORK_ORDER": - transitions.append("WORK_ORDER") - diff = filtered.iloc[j]["start_time"] - filtered.iloc[i]["start_time"] - time_diffs.append(diff.total_seconds() / 3600) - break - else: - transitions.append("No Maintenance") - - if not transitions: - return ErrorResult(error="Insufficient alert history to compute transitions") - - counts = Counter(transitions) - total = len(transitions) - wo_times = time_diffs if time_diffs else [] - - entries: List[AlertToFailureEntry] = [] - for transition, count in sorted(counts.items(), key=lambda t: t[1], reverse=True): - avg_hours = sum(wo_times) / len(wo_times) if transition == "WORK_ORDER" and wo_times else None - entries.append( - AlertToFailureEntry( - transition=transition, - probability=count / total, - average_hours_to_maintenance=avg_hours, - ) - ) - - return AlertToFailureResult( - equipment_id=equipment_id, - rule_id=rule_id, - start_date=start_date, - end_date=end_date, - total_alerts_analyzed=total, - transitions=entries, - message=f"Analyzed {total} alert occurrences for rule '{rule_id}' on '{equipment_id}'.", - ) +# Register tools — imported after mcp is created to avoid circular imports. +from . import tools # noqa: E402 + +_TOOLS = [ + tools.get_work_orders, + tools.get_preventive_work_orders, + tools.get_corrective_work_orders, + tools.get_events, + tools.get_failure_codes, + tools.get_work_order_distribution, + tools.predict_next_work_order, + tools.analyze_alert_to_failure, +] +for _fn in _TOOLS: + mcp.tool()(_fn) def main(): diff --git a/src/servers/wo/models.py b/src/servers/wo/models.py new file mode 100644 index 00000000..e962282e --- /dev/null +++ b/src/servers/wo/models.py @@ -0,0 +1,148 @@ +"""Pydantic result models for the Work Order MCP server.""" + +from typing import List, Optional +from pydantic import BaseModel + + +class ErrorResult(BaseModel): + error: str + + +# --------------------------------------------------------------------------- +# Work orders +# --------------------------------------------------------------------------- + + +class WorkOrderItem(BaseModel): + wo_id: str + wo_description: str + collection: str + primary_code: str + primary_code_description: str + secondary_code: str + secondary_code_description: str + equipment_id: str + equipment_name: str + preventive: bool + work_priority: Optional[int] + actual_finish: Optional[str] + duration: Optional[str] + actual_labor_hours: Optional[str] + + +class WorkOrdersResult(BaseModel): + equipment_id: str + start_date: Optional[str] + end_date: Optional[str] + total: int + work_orders: List[WorkOrderItem] + message: str + + +# --------------------------------------------------------------------------- +# Events +# --------------------------------------------------------------------------- + + +class EventItem(BaseModel): + event_id: str + event_group: str + event_category: str + event_type: Optional[str] + description: Optional[str] + equipment_id: str + equipment_name: str + event_time: str + note: Optional[str] + + +class EventsResult(BaseModel): + equipment_id: str + start_date: Optional[str] + end_date: Optional[str] + total: int + events: List[EventItem] + message: str + + +# --------------------------------------------------------------------------- +# Failure codes +# --------------------------------------------------------------------------- + + +class FailureCodeItem(BaseModel): + category: str + primary_code: str + primary_code_description: str + secondary_code: str + secondary_code_description: str + + +class FailureCodesResult(BaseModel): + total: int + failure_codes: List[FailureCodeItem] + + +# --------------------------------------------------------------------------- +# Work order distribution +# --------------------------------------------------------------------------- + + +class WorkOrderDistributionEntry(BaseModel): + category: str + primary_code: str + primary_code_description: str + secondary_code: str + secondary_code_description: str + count: int + + +class WorkOrderDistributionResult(BaseModel): + equipment_id: str + start_date: Optional[str] + end_date: Optional[str] + total_work_orders: int + distribution: List[WorkOrderDistributionEntry] + message: str + + +# --------------------------------------------------------------------------- +# Next work order prediction +# --------------------------------------------------------------------------- + + +class NextWorkOrderEntry(BaseModel): + category: str + primary_code: str + primary_code_description: str + probability: float + + +class NextWorkOrderPredictionResult(BaseModel): + equipment_id: str + start_date: Optional[str] + end_date: Optional[str] + last_work_order_type: str + predictions: List[NextWorkOrderEntry] + message: str + + +# --------------------------------------------------------------------------- +# Alert-to-failure analysis +# --------------------------------------------------------------------------- + + +class AlertToFailureEntry(BaseModel): + transition: str + probability: float + average_hours_to_maintenance: Optional[float] + + +class AlertToFailureResult(BaseModel): + equipment_id: str + rule_id: str + start_date: Optional[str] + end_date: Optional[str] + total_alerts_analyzed: int + transitions: List[AlertToFailureEntry] + message: str diff --git a/src/servers/wo/tests/conftest.py b/src/servers/wo/tests/conftest.py index 59356b10..09d6d060 100644 --- a/src/servers/wo/tests/conftest.py +++ b/src/servers/wo/tests/conftest.py @@ -31,11 +31,11 @@ @pytest.fixture(autouse=True) def reset_data_cache(): """Reset the module-level data cache between tests.""" - import servers.wo.main as wo_main - original = dict(wo_main._data) - wo_main._data = {k: None for k in original} + import servers.wo.data as wo_data + original = dict(wo_data._data) + wo_data._data = {k: None for k in original} yield - wo_main._data = original + wo_data._data = original def _make_wo_df() -> pd.DataFrame: @@ -125,15 +125,15 @@ def _make_alert_events_df() -> pd.DataFrame: @pytest.fixture def mock_data(): """Patch all module-level data caches with minimal fixture DataFrames.""" - import servers.wo.main as wo_main + import servers.wo.data as wo_data - wo_main._data["wo_events"] = _make_wo_df() - wo_main._data["events"] = _make_events_df() - wo_main._data["failure_codes"] = _make_failure_codes_df() - wo_main._data["primary_failure_codes"] = _make_primary_failure_codes_df() - wo_main._data["alert_events"] = _make_alert_events_df() + wo_data._data["wo_events"] = _make_wo_df() + wo_data._data["events"] = _make_events_df() + wo_data._data["failure_codes"] = _make_failure_codes_df() + wo_data._data["primary_failure_codes"] = _make_primary_failure_codes_df() + wo_data._data["alert_events"] = _make_alert_events_df() yield - wo_main._data = {k: None for k in wo_main._data} + wo_data._data = {k: None for k in wo_data._data} async def call_tool(mcp_instance, tool_name: str, args: dict) -> dict: diff --git a/src/servers/wo/tools.py b/src/servers/wo/tools.py new file mode 100644 index 00000000..0c253b91 --- /dev/null +++ b/src/servers/wo/tools.py @@ -0,0 +1,407 @@ +"""Tool handler functions for the Work Order MCP server. + +Each function is a plain Python callable. ``main.py`` registers them on the +``FastMCP`` instance with ``mcp.tool()(fn)`` so that tests can import either +the raw functions or the decorated ``mcp`` without circular-import issues. +""" + +from collections import Counter +from typing import List, Optional, Union + +import pandas as pd + +from .data import ( + date_conditions, + fetch_work_orders, + filter_df, + get_transition_matrix, + load, + parse_date, + row_to_event, +) +from .models import ( + AlertToFailureEntry, + AlertToFailureResult, + ErrorResult, + EventsResult, + FailureCodeItem, + FailureCodesResult, + NextWorkOrderEntry, + NextWorkOrderPredictionResult, + WorkOrderDistributionEntry, + WorkOrderDistributionResult, + WorkOrdersResult, +) + + +def get_work_orders( + equipment_id: str, + start_date: Optional[str] = None, + end_date: Optional[str] = None, +) -> Union[WorkOrdersResult, ErrorResult]: + """Retrieve all work orders for a specific equipment within an optional date range. + + Args: + equipment_id: Equipment identifier, e.g. ``"CWC04013"``. + start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. + end_date: End of date range (inclusive), format ``YYYY-MM-DD``. + """ + df = load("wo_events") + if df is None: + return ErrorResult(error="Work order data not available") + try: + wos = fetch_work_orders(df, equipment_id, start_date, end_date) + except ValueError as exc: + return ErrorResult(error=str(exc)) + if not wos: + return ErrorResult(error=f"No work orders found for equipment_id '{equipment_id}'") + return WorkOrdersResult( + equipment_id=equipment_id, + start_date=start_date, + end_date=end_date, + total=len(wos), + work_orders=wos, + message=f"Found {len(wos)} work orders for '{equipment_id}'.", + ) + + +def get_preventive_work_orders( + equipment_id: str, + start_date: Optional[str] = None, + end_date: Optional[str] = None, +) -> Union[WorkOrdersResult, ErrorResult]: + """Retrieve only preventive work orders for a specific equipment within an optional date range. + + Args: + equipment_id: Equipment identifier, e.g. ``"CWC04013"``. + start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. + end_date: End of date range (inclusive), format ``YYYY-MM-DD``. + """ + df = load("wo_events") + if df is None: + return ErrorResult(error="Work order data not available") + try: + wos = fetch_work_orders(df[df["preventive"] == "TRUE"], equipment_id, start_date, end_date) + except ValueError as exc: + return ErrorResult(error=str(exc)) + if not wos: + return ErrorResult(error=f"No preventive work orders found for equipment_id '{equipment_id}'") + return WorkOrdersResult( + equipment_id=equipment_id, + start_date=start_date, + end_date=end_date, + total=len(wos), + work_orders=wos, + message=f"Found {len(wos)} preventive work orders for '{equipment_id}'.", + ) + + +def get_corrective_work_orders( + equipment_id: str, + start_date: Optional[str] = None, + end_date: Optional[str] = None, +) -> Union[WorkOrdersResult, ErrorResult]: + """Retrieve only corrective work orders for a specific equipment within an optional date range. + + Args: + equipment_id: Equipment identifier, e.g. ``"CWC04013"``. + start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. + end_date: End of date range (inclusive), format ``YYYY-MM-DD``. + """ + df = load("wo_events") + if df is None: + return ErrorResult(error="Work order data not available") + try: + wos = fetch_work_orders(df[df["preventive"] == "FALSE"], equipment_id, start_date, end_date) + except ValueError as exc: + return ErrorResult(error=str(exc)) + if not wos: + return ErrorResult(error=f"No corrective work orders found for equipment_id '{equipment_id}'") + return WorkOrdersResult( + equipment_id=equipment_id, + start_date=start_date, + end_date=end_date, + total=len(wos), + work_orders=wos, + message=f"Found {len(wos)} corrective work orders for '{equipment_id}'.", + ) + + +def get_events( + equipment_id: str, + start_date: Optional[str] = None, + end_date: Optional[str] = None, +) -> Union[EventsResult, ErrorResult]: + """Retrieve all events (work orders, alerts, anomalies) for a specific equipment within an optional date range. + + Args: + equipment_id: Equipment identifier, e.g. ``"CWC04013"``. + start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. + end_date: End of date range (inclusive), format ``YYYY-MM-DD``. + """ + df = load("events") + if df is None: + return ErrorResult(error="Event data not available") + try: + start_dt = parse_date(start_date) + end_dt = parse_date(end_date) + except ValueError as exc: + return ErrorResult(error=str(exc)) + + cond: dict = { + "equipment_id": lambda x, eid=equipment_id: isinstance(x, str) and x.strip().lower() == eid.strip().lower() + } + if start_dt or end_dt: + cond["event_time"] = lambda x, s=start_dt, e=end_dt: ( + (s is None or x >= s) and (e is None or x <= e) + ) + + filtered = filter_df(df, cond) + if filtered is None or filtered.empty: + return ErrorResult(error=f"No events found for equipment_id '{equipment_id}'") + + events = [row_to_event(row) for _, row in filtered.iterrows()] + return EventsResult( + equipment_id=equipment_id, + start_date=start_date, + end_date=end_date, + total=len(events), + events=events, + message=f"Found {len(events)} events for '{equipment_id}'.", + ) + + +def get_failure_codes() -> Union[FailureCodesResult, ErrorResult]: + """Retrieve all available failure codes with their categories and descriptions.""" + df = load("failure_codes") + if df is None: + return ErrorResult(error="Failure codes data not available") + + items = [ + FailureCodeItem( + category=str(row.get("category", "")), + primary_code=str(row.get("primary_code", "")), + primary_code_description=str(row.get("primary_code_description", "")), + secondary_code=str(row.get("secondary_code", "")), + secondary_code_description=str(row.get("secondary_code_description", "")), + ) + for _, row in df.iterrows() + ] + return FailureCodesResult(total=len(items), failure_codes=items) + + +def get_work_order_distribution( + equipment_id: str, + start_date: Optional[str] = None, + end_date: Optional[str] = None, +) -> Union[WorkOrderDistributionResult, ErrorResult]: + """Calculate the distribution of work order types (by failure code) for a specific equipment. + + Returns counts per (primary_code, secondary_code) pair, sorted by frequency descending. + + Args: + equipment_id: Equipment identifier, e.g. ``"CWC04013"``. + start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. + end_date: End of date range (inclusive), format ``YYYY-MM-DD``. + """ + wo_df = load("wo_events") + fc_df = load("failure_codes") + if wo_df is None: + return ErrorResult(error="Work order data not available") + if fc_df is None: + return ErrorResult(error="Failure codes data not available") + + try: + start_dt = parse_date(start_date) + end_dt = parse_date(end_date) + except ValueError as exc: + return ErrorResult(error=str(exc)) + + filtered = wo_df[wo_df["equipment_id"] == equipment_id].copy() + if start_dt: + filtered = filtered[filtered["actual_finish"] >= start_dt] + if end_dt: + filtered = filtered[filtered["actual_finish"] <= end_dt] + + if filtered.empty: + return ErrorResult(error=f"No work orders found for equipment_id '{equipment_id}'") + + counts = ( + filtered.groupby(["primary_code", "secondary_code"]) + .size() + .reset_index(name="count") + .sort_values("count", ascending=False) + ) + + distribution: List[WorkOrderDistributionEntry] = [] + for _, row in counts.iterrows(): + match = fc_df[ + (fc_df["primary_code"] == row["primary_code"]) + & (fc_df["secondary_code"] == row["secondary_code"]) + ] + if match.empty: + continue + m = match.iloc[0] + distribution.append( + WorkOrderDistributionEntry( + category=str(m.get("category", "")), + primary_code=str(m.get("primary_code", "")), + primary_code_description=str(m.get("primary_code_description", "")), + secondary_code=str(m.get("secondary_code", "")), + secondary_code_description=str(m.get("secondary_code_description", "")), + count=int(row["count"]), + ) + ) + + return WorkOrderDistributionResult( + equipment_id=equipment_id, + start_date=start_date, + end_date=end_date, + total_work_orders=int(filtered.shape[0]), + distribution=distribution, + message=f"Distribution across {len(distribution)} failure code(s) for '{equipment_id}'.", + ) + + +def predict_next_work_order( + equipment_id: str, + start_date: Optional[str] = None, + end_date: Optional[str] = None, +) -> Union[NextWorkOrderPredictionResult, ErrorResult]: + """Predict the probabilities of the next expected work order types based on historical transition patterns. + + Uses a Markov-chain transition matrix built from the sequence of past work order + primary codes to estimate what type of work order is likely to follow the most + recent one. + + Args: + equipment_id: Equipment identifier, e.g. ``"CWC04013"``. + start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. + end_date: End of date range (inclusive), format ``YYYY-MM-DD``. + """ + wo_df = load("wo_events") + pfc_df = load("primary_failure_codes") + if wo_df is None: + return ErrorResult(error="Work order data not available") + + try: + parse_date(start_date) + parse_date(end_date) + except ValueError as exc: + return ErrorResult(error=str(exc)) + + cond = date_conditions(equipment_id, "actual_finish", start_date, end_date) + filtered = filter_df(wo_df, cond) + if filtered is None or filtered.empty: + return ErrorResult(error=f"No historical work orders found for equipment_id '{equipment_id}'") + + filtered = filtered.sort_values("actual_finish").reset_index(drop=True) + transition_matrix = get_transition_matrix(filtered, "primary_code") + last_type = filtered.iloc[-1]["primary_code"] + + if last_type not in transition_matrix.index: + return ErrorResult(error=f"No transition data for last work order type '{last_type}'") + + raw = sorted(transition_matrix.loc[last_type].items(), key=lambda t: t[1], reverse=True) + + predictions: List[NextWorkOrderEntry] = [] + for primary_code, prob in raw: + entry = NextWorkOrderEntry(category="", primary_code=primary_code, primary_code_description="", probability=float(prob)) + if pfc_df is not None: + match = pfc_df[pfc_df["primary_code"] == primary_code] + if not match.empty: + m = match.iloc[0] + entry = NextWorkOrderEntry( + category=str(m.get("category", "")), + primary_code=primary_code, + primary_code_description=str(m.get("primary_code_description", "")), + probability=float(prob), + ) + predictions.append(entry) + + return NextWorkOrderPredictionResult( + equipment_id=equipment_id, + start_date=start_date, + end_date=end_date, + last_work_order_type=last_type, + predictions=predictions, + message=f"Predicted next work order for '{equipment_id}' based on last type '{last_type}'.", + ) + + +def analyze_alert_to_failure( + equipment_id: str, + rule_id: str, + start_date: Optional[str] = None, + end_date: Optional[str] = None, +) -> Union[AlertToFailureResult, ErrorResult]: + """Analyze the relationship between a specific alert rule and subsequent maintenance events. + + Computes the probability that each alert occurrence leads to a work order (vs no + maintenance) and the average time-to-maintenance in hours. + + Args: + equipment_id: Equipment identifier, e.g. ``"CWC04013"``. + rule_id: Alert rule identifier, e.g. ``"CR00002"``. + start_date: Start of date range (inclusive), format ``YYYY-MM-DD``. + end_date: End of date range (inclusive), format ``YYYY-MM-DD``. + """ + alert_df = load("alert_events") + if alert_df is None: + return ErrorResult(error="Alert events data not available") + + try: + parse_date(start_date) + parse_date(end_date) + except ValueError as exc: + return ErrorResult(error=str(exc)) + + cond: dict = { + "equipment_id": lambda x, eid=equipment_id: isinstance(x, str) and x.strip().lower() == eid.strip().lower(), + "rule": lambda x, rid=rule_id: isinstance(x, str) and x.strip().lower() == rid.strip().lower(), + } + filtered = filter_df(alert_df, cond) + if filtered is None or filtered.empty: + return ErrorResult(error=f"No alert events found for equipment '{equipment_id}' and rule '{rule_id}'") + + filtered = filtered.sort_values("start_time").reset_index(drop=True) + + transitions: List[str] = [] + time_diffs: List[float] = [] + for i in range(len(filtered) - 1): + if str(filtered.iloc[i].get("rule", "")).strip().lower() == rule_id.strip().lower(): + for j in range(i + 1, len(filtered)): + if str(filtered.iloc[j].get("event_group", "")).upper() == "WORK_ORDER": + transitions.append("WORK_ORDER") + diff = filtered.iloc[j]["start_time"] - filtered.iloc[i]["start_time"] + time_diffs.append(diff.total_seconds() / 3600) + break + else: + transitions.append("No Maintenance") + + if not transitions: + return ErrorResult(error="Insufficient alert history to compute transitions") + + counts = Counter(transitions) + total = len(transitions) + + entries: List[AlertToFailureEntry] = [] + for transition, count in sorted(counts.items(), key=lambda t: t[1], reverse=True): + avg_hours = sum(time_diffs) / len(time_diffs) if transition == "WORK_ORDER" and time_diffs else None + entries.append( + AlertToFailureEntry( + transition=transition, + probability=count / total, + average_hours_to_maintenance=avg_hours, + ) + ) + + return AlertToFailureResult( + equipment_id=equipment_id, + rule_id=rule_id, + start_date=start_date, + end_date=end_date, + total_alerts_analyzed=total, + transitions=entries, + message=f"Analyzed {total} alert occurrences for rule '{rule_id}' on '{equipment_id}'.", + ) From 8b5de8e45106c4bbf19c482497a3cc99ea801053 Mon Sep 17 00:00:00 2001 From: Shuxin Lin Date: Wed, 4 Mar 2026 15:03:11 -0500 Subject: [PATCH 04/16] feat: replace CSV data access with CouchDB in WO server - Add src/couchdb/init_wo.py: loads all WO CSVs into a CouchDB `workorder` database with _dataset discriminator field and Mango indexes - Rewrite src/servers/wo/data.py: lazy couchdb3 connection, load() queries via Mango find instead of reading CSVs - Fix src/servers/wo/tools.py: use rule_id column (was rule) for alert_events - Update tests: mock_data patches servers.wo.tools.load directly; replace requires_wo_data marker with requires_couchdb; all 23 unit tests pass Signed-off-by: Shuxin Lin --- src/couchdb/init_wo.py | 190 +++++++++++++++++++++++++++++ src/servers/wo/data.py | 133 ++++++++++---------- src/servers/wo/tests/conftest.py | 59 ++++----- src/servers/wo/tests/test_tools.py | 18 +-- src/servers/wo/tools.py | 4 +- 5 files changed, 293 insertions(+), 111 deletions(-) create mode 100644 src/couchdb/init_wo.py diff --git a/src/couchdb/init_wo.py b/src/couchdb/init_wo.py new file mode 100644 index 00000000..a02b31f9 --- /dev/null +++ b/src/couchdb/init_wo.py @@ -0,0 +1,190 @@ +"""Initialize the CouchDB work-order database from CSV files. + +Usage: + python -m couchdb.init_wo [--data-dir ] [--db ] [--drop] + +Environment variables (or .env): + COUCHDB_URL e.g. http://localhost:5984 + COUCHDB_USERNAME admin user + COUCHDB_PASSWORD admin password + WO_COUCHDB_DBNAME target database (default: workorder) + WO_DATA_DIR override CSV directory +""" + +import argparse +import logging +import math +import os +import sys + +import pandas as pd +import requests +from dotenv import load_dotenv + +load_dotenv() + +logging.basicConfig(level=logging.INFO, format="%(levelname)s %(message)s") +logger = logging.getLogger(__name__) + +# --------------------------------------------------------------------------- +# Defaults +# --------------------------------------------------------------------------- + +_SCRIPT_DIR = os.path.dirname(__file__) +_DEFAULT_DATA_DIR = os.path.join(_SCRIPT_DIR, "sample_data", "work_order") + +COUCHDB_URL = os.environ.get("COUCHDB_URL", "http://localhost:5984") +COUCHDB_USERNAME = os.environ.get("COUCHDB_USERNAME", "admin") +COUCHDB_PASSWORD = os.environ.get("COUCHDB_PASSWORD", "password") +WO_COUCHDB_DBNAME = os.environ.get("WO_COUCHDB_DBNAME", "workorder") +WO_DATA_DIR = os.environ.get("WO_DATA_DIR", _DEFAULT_DATA_DIR) + +# --------------------------------------------------------------------------- +# CSV → dataset mapping +# --------------------------------------------------------------------------- + +# (csv_filename, _dataset key, date columns and their parse formats) +_DATASETS = [ + ( + "all_wo_with_code_component_events.csv", + "wo_events", + {"actual_finish": "%m/%d/%y %H:%M"}, + ), + ( + "event.csv", + "events", + {"event_time": "%Y-%m-%d %H:%M:%S"}, + ), + ( + "alert_events.csv", + "alert_events", + {"start_time": "%m/%d/%y %H:%M", "end_time": "%m/%d/%y %H:%M"}, + ), + ("alert_rule.csv", "alert_rule", {}), + ("alert_rule_failure_code_mapping.csv", "alert_rule_fc_mapping", {}), + ("anomaly_to_failure_code_mapping.csv", "anomaly_fc_mapping", {}), + ("failure_codes.csv", "failure_codes", {}), + ("primary_failure_codes.csv", "primary_failure_codes", {}), + ("component.csv", "component", {}), +] + +# Mango indexes to create: list of field-lists +_INDEXES = [ + ["_dataset", "equipment_id"], + ["_dataset", "actual_finish"], + ["_dataset", "event_time"], + ["_dataset", "rule_id"], + ["_dataset", "primary_code"], +] + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + +_AUTH = (COUCHDB_USERNAME, COUCHDB_PASSWORD) + + +def _db_url(db: str, *parts: str) -> str: + return "/".join([COUCHDB_URL.rstrip("/"), db] + list(parts)) + + +def _ensure_db(db_name: str, drop: bool) -> None: + url = _db_url(db_name) + resp = requests.head(url, auth=_AUTH, timeout=10) + if resp.status_code == 200: + if drop: + logger.info("Dropping existing database '%s'…", db_name) + requests.delete(url, auth=_AUTH, timeout=10).raise_for_status() + else: + logger.info("Database '%s' already exists — skipping creation.", db_name) + return + logger.info("Creating database '%s'…", db_name) + requests.put(url, auth=_AUTH, timeout=10).raise_for_status() + + +def _create_indexes(db_name: str) -> None: + url = _db_url(db_name, "_index") + for fields in _INDEXES: + payload = {"index": {"fields": fields}, "type": "json"} + resp = requests.post(url, json=payload, auth=_AUTH, timeout=10) + resp.raise_for_status() + logger.info("Index on %s: %s", fields, resp.json().get("result", "?")) + + +def _bulk_insert(db_name: str, docs: list, batch_size: int = 500) -> None: + url = _db_url(db_name, "_bulk_docs") + total = len(docs) + for i in range(0, total, batch_size): + batch = docs[i : i + batch_size] + resp = requests.post(url, json={"docs": batch}, auth=_AUTH, timeout=60) + resp.raise_for_status() + errors = [r for r in resp.json() if r.get("error")] + if errors: + logger.warning("%d bulk-insert errors in batch %d", len(errors), i // batch_size) + logger.info("Inserted batch %d/%d (%d docs)", i // batch_size + 1, math.ceil(total / batch_size), len(batch)) + + +def _row_to_doc(row: dict, dataset: str, date_cols: dict) -> dict: + """Convert a CSV row dict to a CouchDB document dict.""" + doc: dict = {"_dataset": dataset} + for k, v in row.items(): + if pd.isna(v): + doc[k] = None + elif k in date_cols and isinstance(v, pd.Timestamp): + doc[k] = v.isoformat() + else: + doc[k] = v + return doc + + +def load_dataset(data_dir: str, csv_file: str, dataset: str, date_cols: dict) -> list: + path = os.path.join(data_dir, csv_file) + if not os.path.exists(path): + logger.warning("CSV not found, skipping: %s", path) + return [] + + df = pd.read_csv(path, dtype=str) + for col, fmt in date_cols.items(): + if col in df.columns: + df[col] = pd.to_datetime(df[col], format=fmt, errors="coerce") + + docs = [_row_to_doc(row, dataset, date_cols) for row in df.to_dict(orient="records")] + logger.info("Loaded %d rows from '%s' → dataset '%s'", len(docs), csv_file, dataset) + return docs + + +# --------------------------------------------------------------------------- +# Main +# --------------------------------------------------------------------------- + + +def main() -> None: + parser = argparse.ArgumentParser(description="Initialize CouchDB work-order database from CSVs.") + parser.add_argument("--data-dir", default=WO_DATA_DIR, help="Directory containing CSVs") + parser.add_argument("--db", default=WO_COUCHDB_DBNAME, help="CouchDB database name") + parser.add_argument("--drop", action="store_true", help="Drop and recreate database if it exists") + args = parser.parse_args() + + logger.info("CouchDB URL: %s", COUCHDB_URL) + logger.info("Database: %s", args.db) + logger.info("Data dir: %s", args.data_dir) + + _ensure_db(args.db, drop=args.drop) + + all_docs: list = [] + for csv_file, dataset, date_cols in _DATASETS: + all_docs.extend(load_dataset(args.data_dir, csv_file, dataset, date_cols)) + + if not all_docs: + logger.error("No documents to insert — check --data-dir path.") + sys.exit(1) + + logger.info("Inserting %d total documents…", len(all_docs)) + _bulk_insert(args.db, all_docs) + + _create_indexes(args.db) + logger.info("Done. Database '%s' is ready.", args.db) + + +if __name__ == "__main__": + main() diff --git a/src/servers/wo/data.py b/src/servers/wo/data.py index e3602ee9..21d2aec0 100644 --- a/src/servers/wo/data.py +++ b/src/servers/wo/data.py @@ -1,7 +1,10 @@ -"""Data loading and query helpers for the Work Order MCP server. +"""Data access helpers for the Work Order MCP server. -All CSVs are loaded lazily on first access. Missing files log a warning and -return ``None`` so the server starts even when only a subset of data is present. +Reads from a CouchDB ``workorder`` database populated by ``src/couchdb/init_wo.py``. +Each document carries a ``_dataset`` field that acts as a collection discriminator. + +Connection is established lazily on first use. If CouchDB is unavailable the +helpers return ``None`` / empty results so the server can still start. """ import logging @@ -17,88 +20,86 @@ logger = logging.getLogger("wo-mcp-server") # --------------------------------------------------------------------------- -# Data directory +# Configuration # --------------------------------------------------------------------------- -_DEFAULT_DATA_DIR = os.path.normpath( - os.path.join(os.path.dirname(__file__), "../../tmp/assetopsbench/sample_data") -) -WO_DATA_DIR: str = os.environ.get("WO_DATA_DIR", _DEFAULT_DATA_DIR) - - -def _csv(filename: str) -> str: - return os.path.join(WO_DATA_DIR, filename) - +COUCHDB_URL: str = os.environ.get("COUCHDB_URL", "http://localhost:5984") +COUCHDB_USERNAME: str = os.environ.get("COUCHDB_USERNAME", "admin") +COUCHDB_PASSWORD: str = os.environ.get("COUCHDB_PASSWORD", "password") +WO_COUCHDB_DBNAME: str = os.environ.get("WO_COUCHDB_DBNAME", "workorder") # --------------------------------------------------------------------------- -# Lazy cache +# Lazy connection # --------------------------------------------------------------------------- -_data: Dict[str, Optional[pd.DataFrame]] = { - "wo_events": None, - "events": None, - "alert_events": None, - "alert_rule": None, - "alert_rule_fc_mapping": None, - "anomaly_fc_mapping": None, - "failure_codes": None, - "primary_failure_codes": None, - "component": None, -} - +_db = None # couchdb3.Database instance, initialised on first call to _get_db() -def load(key: str) -> Optional[pd.DataFrame]: - """Return the cached DataFrame for *key*, loading it on first call.""" - if _data[key] is not None: - return _data[key] - - _loaders = { - "wo_events": _read_wo_events, - "events": _read_events, - "alert_events": _read_alert_events, - "alert_rule": lambda: pd.read_csv(_csv("alert_rule.csv"), dtype=str), - "alert_rule_fc_mapping": lambda: pd.read_csv(_csv("alert_rule_failure_code_mapping.csv"), dtype=str), - "anomaly_fc_mapping": lambda: pd.read_csv(_csv("anomaly_to_failure_code_mapping.csv"), dtype=str), - "failure_codes": lambda: pd.read_csv(_csv("failure_codes.csv"), dtype=str), - "primary_failure_codes": lambda: pd.read_csv(_csv("primary_failure_codes.csv"), dtype=str), - "component": lambda: pd.read_csv(_csv("component.csv"), dtype=str), - } +def _get_db(): + """Return a live couchdb3.Database, connecting on first call.""" + global _db + if _db is not None: + return _db try: - df = _loaders[key]() - _data[key] = df - logger.info("Loaded dataset '%s'", key) - return df - except FileNotFoundError: - logger.warning("Data file for '%s' not found in %s", key, WO_DATA_DIR) - return None + import couchdb3 # lazy import so the server starts without couchdb3 installed + + _db = couchdb3.Database( + WO_COUCHDB_DBNAME, + url=COUCHDB_URL, + user=COUCHDB_USERNAME, + password=COUCHDB_PASSWORD, + ) + logger.info("Connected to CouchDB database '%s'", WO_COUCHDB_DBNAME) except Exception as exc: - logger.error("Failed to load '%s': %s", key, exc) - return None + logger.error("Failed to connect to CouchDB: %s", exc) + _db = None + return _db # --------------------------------------------------------------------------- -# CSV readers +# Dataset loader # --------------------------------------------------------------------------- +# Date columns that must be converted from ISO strings after fetch +_DATE_COLS: Dict[str, List[str]] = { + "wo_events": ["actual_finish"], + "events": ["event_time"], + "alert_events": ["start_time", "end_time"], +} -def _read_wo_events() -> pd.DataFrame: - df = pd.read_csv(_csv("all_wo_with_code_component_events.csv"), dtype=str) - df["actual_finish"] = pd.to_datetime(df["actual_finish"], format="%m/%d/%y %H:%M", errors="coerce") - return df +def load(dataset: str) -> Optional[pd.DataFrame]: + """Fetch all documents with ``_dataset == dataset`` and return a DataFrame. + + Returns ``None`` when CouchDB is unavailable or the dataset is empty. + """ + db = _get_db() + if db is None: + return None + try: + result = db.find( + selector={"_dataset": {"$eq": dataset}}, + limit=100_000, + ) + docs = result.get("docs", []) + if not docs: + logger.warning("No documents found for dataset '%s'", dataset) + return None -def _read_events() -> pd.DataFrame: - df = pd.read_csv(_csv("event.csv"), dtype=str) - df["event_time"] = pd.to_datetime(df["event_time"], format="%Y-%m-%d %H:%M:%S", errors="coerce") - return df + df = pd.DataFrame(docs) + # Drop internal CouchDB fields + df.drop(columns=[c for c in ("_id", "_rev", "_dataset") if c in df.columns], inplace=True) + # Parse date columns + for col in _DATE_COLS.get(dataset, []): + if col in df.columns: + df[col] = pd.to_datetime(df[col], errors="coerce") -def _read_alert_events() -> pd.DataFrame: - df = pd.read_csv(_csv("alert_events.csv"), dtype=str) - df["start_time"] = pd.to_datetime(df["start_time"], format="%m/%d/%y %H:%M", errors="coerce") - df["end_time"] = pd.to_datetime(df["end_time"], format="%m/%d/%y %H:%M", errors="coerce") - return df + logger.info("Loaded %d rows for dataset '%s'", len(df), dataset) + return df + except Exception as exc: + logger.error("Failed to load dataset '%s': %s", dataset, exc) + return None # --------------------------------------------------------------------------- @@ -107,7 +108,7 @@ def _read_alert_events() -> pd.DataFrame: def filter_df(df: pd.DataFrame, conditions: dict) -> pd.DataFrame: - """Filter *df* by a dict of ``{column: callable_or_query_string}`` conditions.""" + """Filter *df* by a dict of ``{column: callable}`` conditions.""" filtered = df.copy() for col, cond in conditions.items(): if callable(cond): diff --git a/src/servers/wo/tests/conftest.py b/src/servers/wo/tests/conftest.py index 09d6d060..f8dcc6e8 100644 --- a/src/servers/wo/tests/conftest.py +++ b/src/servers/wo/tests/conftest.py @@ -1,9 +1,9 @@ import json import os +from unittest.mock import patch import pytest import pandas as pd -from unittest.mock import patch from dotenv import load_dotenv @@ -11,31 +11,13 @@ # --- Custom markers --- -requires_wo_data = pytest.mark.skipif( - not os.path.exists( - os.environ.get( - "WO_DATA_DIR", - os.path.join( - os.path.dirname(__file__), - "../../../../tmp/assetopsbench/sample_data", - ), - ) - ), - reason="Work order sample data directory not found (set WO_DATA_DIR)", +requires_couchdb = pytest.mark.skipif( + not os.environ.get("COUCHDB_URL"), + reason="CouchDB not configured (set COUCHDB_URL)", ) -# --- Fixtures --- - - -@pytest.fixture(autouse=True) -def reset_data_cache(): - """Reset the module-level data cache between tests.""" - import servers.wo.data as wo_data - original = dict(wo_data._data) - wo_data._data = {k: None for k in original} - yield - wo_data._data = original +# --- Fixture DataFrames --- def _make_wo_df() -> pd.DataFrame: @@ -106,7 +88,7 @@ def _make_alert_events_df() -> pd.DataFrame: data = { "equipment_id": ["CWC04013", "CWC04013", "CWC04013"], "equipment_name": ["Chiller 13", "Chiller 13", "Chiller 13"], - "rule": ["CR00002", "CR00002", "CR00002"], + "rule_id": ["CR00002", "CR00002", "CR00002"], "start_time": [ pd.Timestamp("2017-01-01"), pd.Timestamp("2017-03-01"), @@ -122,18 +104,27 @@ def _make_alert_events_df() -> pd.DataFrame: return pd.DataFrame(data) +_FIXTURE_DATA = { + "wo_events": _make_wo_df, + "events": _make_events_df, + "failure_codes": _make_failure_codes_df, + "primary_failure_codes": _make_primary_failure_codes_df, + "alert_events": _make_alert_events_df, +} + + +# --- Fixtures --- + + @pytest.fixture def mock_data(): - """Patch all module-level data caches with minimal fixture DataFrames.""" - import servers.wo.data as wo_data - - wo_data._data["wo_events"] = _make_wo_df() - wo_data._data["events"] = _make_events_df() - wo_data._data["failure_codes"] = _make_failure_codes_df() - wo_data._data["primary_failure_codes"] = _make_primary_failure_codes_df() - wo_data._data["alert_events"] = _make_alert_events_df() - yield - wo_data._data = {k: None for k in wo_data._data} + """Patch load() in tools namespace to return fixture DataFrames without CouchDB.""" + def _fake_load(key: str): + factory = _FIXTURE_DATA.get(key) + return factory() if factory else None + + with patch("servers.wo.tools.load", side_effect=_fake_load): + yield async def call_tool(mcp_instance, tool_name: str, args: dict) -> dict: diff --git a/src/servers/wo/tests/test_tools.py b/src/servers/wo/tests/test_tools.py index fb3604d5..6528c9bf 100644 --- a/src/servers/wo/tests/test_tools.py +++ b/src/servers/wo/tests/test_tools.py @@ -7,7 +7,7 @@ import pytest from servers.wo.main import mcp -from .conftest import requires_wo_data, call_tool +from .conftest import requires_couchdb, call_tool # --------------------------------------------------------------------------- @@ -52,7 +52,7 @@ async def test_work_order_fields_present(self, mock_data): for field in ("wo_id", "wo_description", "primary_code", "preventive", "equipment_id"): assert field in wo - @requires_wo_data + @requires_couchdb @pytest.mark.anyio async def test_integration_cwc04013_2017(self): data = await call_tool( @@ -82,7 +82,7 @@ async def test_unknown_equipment(self, mock_data): data = await call_tool(mcp, "get_preventive_work_orders", {"equipment_id": "UNKNOWN"}) assert "error" in data - @requires_wo_data + @requires_couchdb @pytest.mark.anyio async def test_integration(self): data = await call_tool( @@ -113,7 +113,7 @@ async def test_unknown_equipment(self, mock_data): data = await call_tool(mcp, "get_corrective_work_orders", {"equipment_id": "UNKNOWN"}) assert "error" in data - @requires_wo_data + @requires_couchdb @pytest.mark.anyio async def test_integration(self): data = await call_tool( @@ -153,7 +153,7 @@ async def test_date_range(self, mock_data): ) assert data["total"] == 2 - @requires_wo_data + @requires_couchdb @pytest.mark.anyio async def test_integration(self): data = await call_tool(mcp, "get_events", {"equipment_id": "CWC04009"}) @@ -181,7 +181,7 @@ async def test_fields_present(self, mock_data): for field in ("category", "primary_code", "primary_code_description", "secondary_code"): assert field in fc - @requires_wo_data + @requires_couchdb @pytest.mark.anyio async def test_integration(self): data = await call_tool(mcp, "get_failure_codes", {}) @@ -214,7 +214,7 @@ async def test_sorted_descending(self, mock_data): counts = [e["count"] for e in data["distribution"]] assert counts == sorted(counts, reverse=True) - @requires_wo_data + @requires_couchdb @pytest.mark.anyio async def test_integration(self): data = await call_tool( @@ -253,7 +253,7 @@ async def test_probabilities_sum_to_one(self, mock_data): total = sum(p["probability"] for p in data["predictions"]) assert abs(total - 1.0) < 1e-6 - @requires_wo_data + @requires_couchdb @pytest.mark.anyio async def test_integration(self): data = await call_tool(mcp, "predict_next_work_order", {"equipment_id": "CWC04013"}) @@ -290,7 +290,7 @@ async def test_probabilities_valid(self, mock_data): total_prob = sum(t["probability"] for t in data["transitions"]) assert abs(total_prob - 1.0) < 1e-6 - @requires_wo_data + @requires_couchdb @pytest.mark.anyio async def test_integration(self): data = await call_tool( diff --git a/src/servers/wo/tools.py b/src/servers/wo/tools.py index 0c253b91..0473edc7 100644 --- a/src/servers/wo/tools.py +++ b/src/servers/wo/tools.py @@ -358,7 +358,7 @@ def analyze_alert_to_failure( cond: dict = { "equipment_id": lambda x, eid=equipment_id: isinstance(x, str) and x.strip().lower() == eid.strip().lower(), - "rule": lambda x, rid=rule_id: isinstance(x, str) and x.strip().lower() == rid.strip().lower(), + "rule_id": lambda x, rid=rule_id: isinstance(x, str) and x.strip().lower() == rid.strip().lower(), } filtered = filter_df(alert_df, cond) if filtered is None or filtered.empty: @@ -369,7 +369,7 @@ def analyze_alert_to_failure( transitions: List[str] = [] time_diffs: List[float] = [] for i in range(len(filtered) - 1): - if str(filtered.iloc[i].get("rule", "")).strip().lower() == rule_id.strip().lower(): + if str(filtered.iloc[i].get("rule_id", "")).strip().lower() == rule_id.strip().lower(): for j in range(i + 1, len(filtered)): if str(filtered.iloc[j].get("event_group", "")).upper() == "WORK_ORDER": transitions.append("WORK_ORDER") From d833454aad642244f33a7f9aef559f31e5710269 Mon Sep 17 00:00:00 2001 From: Shuxin Lin Date: Wed, 4 Mar 2026 15:18:33 -0500 Subject: [PATCH 05/16] feat: add init_asset_data.py and wire both init scripts into docker-compose - Add src/couchdb/init_asset_data.py: loads IoT sensor JSON into CouchDB (decouples data loading from couchdb_setup.sh) - Simplify couchdb_setup.sh: only writes local.ini and starts CouchDB - Add db-init service to docker-compose.yaml: python:3.12-slim container that runs after couchdb is healthy, calling both init_asset_data.py and init_wo.py Signed-off-by: Shuxin Lin --- src/couchdb/couchdb_setup.sh | 48 +---------- src/couchdb/docker-compose.yaml | 30 ++++++- src/couchdb/init_asset_data.py | 138 ++++++++++++++++++++++++++++++++ 3 files changed, 166 insertions(+), 50 deletions(-) create mode 100644 src/couchdb/init_asset_data.py diff --git a/src/couchdb/couchdb_setup.sh b/src/couchdb/couchdb_setup.sh index 14992c29..66fb1bab 100644 --- a/src/couchdb/couchdb_setup.sh +++ b/src/couchdb/couchdb_setup.sh @@ -1,24 +1,5 @@ #!/bin/sh -xe - -COUCHDB_USERNAME=${COUCHDB_USERNAME} -COUCHDB_PASSWORD=${COUCHDB_PASSWORD} -COUCHDB_DBNAME=${COUCHDB_DBNAME} -COUCHDB_URL="http://${COUCHDB_USERNAME}:${COUCHDB_PASSWORD}@127.0.0.1:5984" -INPUT_FILE="/sample_data/chiller6_june2020_sensordata_couchdb.json" -OUTPUT_FILE="/sample_data/bulk_docs.json" - -# Convert the JSON file into a coudb bulk insertable JSON file -if [ ! -f "$INPUT_FILE" ]; then - echo "❌ Error: $INPUT_FILE not found." -fi - -# Read the array from file (single line) and wrap it -ARRAY_CONTENT=$(cat "$INPUT_FILE") -echo "{\"docs\": $ARRAY_CONTENT}" > "$OUTPUT_FILE" - -echo "✅ Wrapped $INPUT_FILE into $OUTPUT_FILE" - cat >/opt/couchdb/etc/local.ini <] [--db ] [--drop] + +Environment variables (or .env): + COUCHDB_URL e.g. http://localhost:5984 + COUCHDB_USERNAME admin user + COUCHDB_PASSWORD admin password + COUCHDB_DBNAME target database (default: chiller) + ASSET_DATA_FILE override JSON file path +""" + +import argparse +import json +import logging +import math +import os +import sys + +import requests +from dotenv import load_dotenv + +load_dotenv() + +logging.basicConfig(level=logging.INFO, format="%(levelname)s %(message)s") +logger = logging.getLogger(__name__) + +# --------------------------------------------------------------------------- +# Defaults +# --------------------------------------------------------------------------- + +_SCRIPT_DIR = os.path.dirname(__file__) +_DEFAULT_DATA_FILE = os.path.join( + _SCRIPT_DIR, "sample_data", "chiller6_june2020_sensordata_couchdb.json" +) + +COUCHDB_URL = os.environ.get("COUCHDB_URL", "http://localhost:5984") +COUCHDB_USERNAME = os.environ.get("COUCHDB_USERNAME", "admin") +COUCHDB_PASSWORD = os.environ.get("COUCHDB_PASSWORD", "password") +COUCHDB_DBNAME = os.environ.get("COUCHDB_DBNAME", "chiller") +ASSET_DATA_FILE = os.environ.get("ASSET_DATA_FILE", _DEFAULT_DATA_FILE) + +_AUTH = (COUCHDB_USERNAME, COUCHDB_PASSWORD) + +# Mango index for typical IoT queries +_INDEXES = [ + ["asset_id", "timestamp"], +] + + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + + +def _db_url(db: str, *parts: str) -> str: + return "/".join([COUCHDB_URL.rstrip("/"), db] + list(parts)) + + +def _ensure_db(db_name: str, drop: bool) -> None: + url = _db_url(db_name) + resp = requests.head(url, auth=_AUTH, timeout=10) + if resp.status_code == 200: + if drop: + logger.info("Dropping existing database '%s'…", db_name) + requests.delete(url, auth=_AUTH, timeout=10).raise_for_status() + else: + logger.info("Database '%s' already exists — skipping creation.", db_name) + return + logger.info("Creating database '%s'…", db_name) + requests.put(url, auth=_AUTH, timeout=10).raise_for_status() + + +def _create_indexes(db_name: str) -> None: + url = _db_url(db_name, "_index") + for fields in _INDEXES: + payload = {"index": {"fields": fields}, "type": "json"} + resp = requests.post(url, json=payload, auth=_AUTH, timeout=10) + resp.raise_for_status() + logger.info("Index on %s: %s", fields, resp.json().get("result", "?")) + + +def _bulk_insert(db_name: str, docs: list, batch_size: int = 500) -> None: + url = _db_url(db_name, "_bulk_docs") + total = len(docs) + for i in range(0, total, batch_size): + batch = docs[i : i + batch_size] + resp = requests.post(url, json={"docs": batch}, auth=_AUTH, timeout=60) + resp.raise_for_status() + errors = [r for r in resp.json() if r.get("error")] + if errors: + logger.warning("%d bulk-insert errors in batch %d", len(errors), i // batch_size) + logger.info( + "Inserted batch %d/%d (%d docs)", + i // batch_size + 1, + math.ceil(total / batch_size), + len(batch), + ) + + +# --------------------------------------------------------------------------- +# Main +# --------------------------------------------------------------------------- + + +def main() -> None: + parser = argparse.ArgumentParser(description="Initialize CouchDB IoT asset database from JSON.") + parser.add_argument("--data-file", default=ASSET_DATA_FILE, help="Path to sensor data JSON file") + parser.add_argument("--db", default=COUCHDB_DBNAME, help="CouchDB database name") + parser.add_argument("--drop", action="store_true", help="Drop and recreate database if it exists") + args = parser.parse_args() + + logger.info("CouchDB URL: %s", COUCHDB_URL) + logger.info("Database: %s", args.db) + logger.info("Data file: %s", args.data_file) + + if not os.path.exists(args.data_file): + logger.error("Data file not found: %s", args.data_file) + sys.exit(1) + + with open(args.data_file) as f: + docs = json.load(f) + + if not isinstance(docs, list) or not docs: + logger.error("Expected a non-empty JSON array in %s", args.data_file) + sys.exit(1) + + logger.info("Loaded %d documents from '%s'", len(docs), args.data_file) + + _ensure_db(args.db, drop=args.drop) + _bulk_insert(args.db, docs) + _create_indexes(args.db) + logger.info("Done. Database '%s' is ready.", args.db) + + +if __name__ == "__main__": + main() From fbc363bad02e4547e29927236c2c5fc2945569a2 Mon Sep 17 00:00:00 2001 From: Shuxin Lin Date: Wed, 4 Mar 2026 15:24:49 -0500 Subject: [PATCH 06/16] refactor: consolidate db init into couchdb_setup.sh, remove db-init container Signed-off-by: Shuxin Lin --- src/couchdb/couchdb_setup.sh | 28 +++++++++++++++++++++++++++- src/couchdb/docker-compose.yaml | 28 +++------------------------- 2 files changed, 30 insertions(+), 26 deletions(-) diff --git a/src/couchdb/couchdb_setup.sh b/src/couchdb/couchdb_setup.sh index 66fb1bab..a4af7ac5 100644 --- a/src/couchdb/couchdb_setup.sh +++ b/src/couchdb/couchdb_setup.sh @@ -9,4 +9,30 @@ ${COUCHDB_USERNAME} = ${COUCHDB_PASSWORD} EOF echo "Starting CouchDB..." -exec /opt/couchdb/bin/couchdb +/opt/couchdb/bin/couchdb & + +echo "Waiting for CouchDB to be ready..." +until curl -sf -u "${COUCHDB_USERNAME}:${COUCHDB_PASSWORD}" http://localhost:5984/ >/dev/null; do + sleep 2 +done +echo "CouchDB is ready." + +echo "Installing Python dependencies..." +apt-get update -qq +apt-get install -y -qq python3 python3-pip +pip3 install -q requests pandas python-dotenv + +echo "Loading IoT asset data..." +COUCHDB_URL="http://localhost:5984" \ + python3 /couchdb/init_asset_data.py \ + --data-file /sample_data/chiller6_june2020_sensordata_couchdb.json \ + --db "${COUCHDB_DBNAME:-chiller}" + +echo "Loading work order data..." +COUCHDB_URL="http://localhost:5984" \ + python3 /couchdb/init_wo.py \ + --data-dir /sample_data/work_order \ + --db "${WO_COUCHDB_DBNAME:-workorder}" + +echo "✅ All databases initialised." +tail -f /dev/null diff --git a/src/couchdb/docker-compose.yaml b/src/couchdb/docker-compose.yaml index cba6cde2..a3a87a5e 100644 --- a/src/couchdb/docker-compose.yaml +++ b/src/couchdb/docker-compose.yaml @@ -5,11 +5,14 @@ services: COUCHDB_USERNAME: admin COUCHDB_PASSWORD: password COUCHDB_DBNAME: chiller + WO_COUCHDB_DBNAME: workorder ports: - "5984:5984" volumes: - couchdb-data:/opt/couchdb/data - ./couchdb_setup.sh:/opt/couchdb/etc/couchdb_setup.sh + - ./sample_data:/sample_data + - ./:/couchdb command: ["sh", "/opt/couchdb/etc/couchdb_setup.sh"] healthcheck: test: ["CMD", "curl", "-f", "http://localhost:5984/"] @@ -17,30 +20,5 @@ services: timeout: 5s retries: 10 - db-init: - image: python:3.12-slim - depends_on: - couchdb: - condition: service_healthy - environment: - COUCHDB_URL: http://couchdb:5984 - COUCHDB_USERNAME: admin - COUCHDB_PASSWORD: password - COUCHDB_DBNAME: chiller - WO_COUCHDB_DBNAME: workorder - volumes: - - ./sample_data:/sample_data - - ../..:/app - working_dir: /app - command: - - sh - - -c - - | - pip install -q requests pandas python-dotenv && - python -m src.couchdb.init_asset_data - --data-file /sample_data/chiller6_june2020_sensordata_couchdb.json && - python -m src.couchdb.init_wo - --data-dir /sample_data/work_order - volumes: couchdb-data: From c90bb4d8d3f7854f8c23c1e5c19ccb13a80d14a5 Mon Sep 17 00:00:00 2001 From: Shuxin Lin Date: Wed, 4 Mar 2026 15:37:44 -0500 Subject: [PATCH 07/16] =?UTF-8?q?refactor:=20rename=20COUCHDB=5FDBNAME?= =?UTF-8?q?=E2=86=92IOT=5FDBNAME,=20WO=5FCOUCHDB=5FDBNAME=E2=86=92WO=5FDBN?= =?UTF-8?q?AME?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Shuxin Lin --- INSTRUCTIONS.md | 4 ++-- src/couchdb/couchdb_setup.sh | 4 ++-- src/couchdb/docker-compose.yaml | 4 ++-- src/couchdb/init_asset_data.py | 6 +++--- src/couchdb/init_wo.py | 6 +++--- src/servers/iot/main.py | 2 +- src/servers/iot/tests/test_couchdb.py | 2 +- src/servers/wo/data.py | 6 +++--- 8 files changed, 17 insertions(+), 17 deletions(-) diff --git a/INSTRUCTIONS.md b/INSTRUCTIONS.md index 91823e39..6a883f45 100644 --- a/INSTRUCTIONS.md +++ b/INSTRUCTIONS.md @@ -93,7 +93,7 @@ uv run tsfm-mcp-server | Variable | Required | Description | |---|---|---| | `COUCHDB_URL` | IoT server | CouchDB connection URL, e.g. `http://localhost:5984` | -| `COUCHDB_DBNAME` | IoT server | Database name (default fixture: `chiller`) | +| `IOT_DBNAME` | IoT server | Database name (default fixture: `chiller`) | | `COUCHDB_USERNAME` | IoT server | CouchDB admin username | | `COUCHDB_PASSWORD` | IoT server | CouchDB admin password | | `WATSONX_APIKEY` | `--platform watsonx` | IBM WatsonX API key | @@ -112,7 +112,7 @@ uv run tsfm-mcp-server ### IoTAgent **Path:** `src/servers/iot/main.py` -**Requires:** CouchDB (`COUCHDB_URL`, `COUCHDB_DBNAME`, `COUCHDB_USERNAME`, `COUCHDB_PASSWORD`) +**Requires:** CouchDB (`COUCHDB_URL`, `IOT_DBNAME`, `COUCHDB_USERNAME`, `COUCHDB_PASSWORD`) | Tool | Arguments | Description | |---|---|---| diff --git a/src/couchdb/couchdb_setup.sh b/src/couchdb/couchdb_setup.sh index a4af7ac5..1493cf5d 100644 --- a/src/couchdb/couchdb_setup.sh +++ b/src/couchdb/couchdb_setup.sh @@ -26,13 +26,13 @@ echo "Loading IoT asset data..." COUCHDB_URL="http://localhost:5984" \ python3 /couchdb/init_asset_data.py \ --data-file /sample_data/chiller6_june2020_sensordata_couchdb.json \ - --db "${COUCHDB_DBNAME:-chiller}" + --db "${IOT_DBNAME:-chiller}" echo "Loading work order data..." COUCHDB_URL="http://localhost:5984" \ python3 /couchdb/init_wo.py \ --data-dir /sample_data/work_order \ - --db "${WO_COUCHDB_DBNAME:-workorder}" + --db "${WO_DBNAME:-workorder}" echo "✅ All databases initialised." tail -f /dev/null diff --git a/src/couchdb/docker-compose.yaml b/src/couchdb/docker-compose.yaml index a3a87a5e..b286bdf8 100644 --- a/src/couchdb/docker-compose.yaml +++ b/src/couchdb/docker-compose.yaml @@ -4,8 +4,8 @@ services: environment: COUCHDB_USERNAME: admin COUCHDB_PASSWORD: password - COUCHDB_DBNAME: chiller - WO_COUCHDB_DBNAME: workorder + IOT_DBNAME: chiller + WO_DBNAME: workorder ports: - "5984:5984" volumes: diff --git a/src/couchdb/init_asset_data.py b/src/couchdb/init_asset_data.py index 45533270..bcbcc065 100644 --- a/src/couchdb/init_asset_data.py +++ b/src/couchdb/init_asset_data.py @@ -7,7 +7,7 @@ COUCHDB_URL e.g. http://localhost:5984 COUCHDB_USERNAME admin user COUCHDB_PASSWORD admin password - COUCHDB_DBNAME target database (default: chiller) + IOT_DBNAME target database (default: chiller) ASSET_DATA_FILE override JSON file path """ @@ -38,7 +38,7 @@ COUCHDB_URL = os.environ.get("COUCHDB_URL", "http://localhost:5984") COUCHDB_USERNAME = os.environ.get("COUCHDB_USERNAME", "admin") COUCHDB_PASSWORD = os.environ.get("COUCHDB_PASSWORD", "password") -COUCHDB_DBNAME = os.environ.get("COUCHDB_DBNAME", "chiller") +IOT_DBNAME = os.environ.get("IOT_DBNAME", "chiller") ASSET_DATA_FILE = os.environ.get("ASSET_DATA_FILE", _DEFAULT_DATA_FILE) _AUTH = (COUCHDB_USERNAME, COUCHDB_PASSWORD) @@ -107,7 +107,7 @@ def _bulk_insert(db_name: str, docs: list, batch_size: int = 500) -> None: def main() -> None: parser = argparse.ArgumentParser(description="Initialize CouchDB IoT asset database from JSON.") parser.add_argument("--data-file", default=ASSET_DATA_FILE, help="Path to sensor data JSON file") - parser.add_argument("--db", default=COUCHDB_DBNAME, help="CouchDB database name") + parser.add_argument("--db", default=IOT_DBNAME, help="CouchDB database name") parser.add_argument("--drop", action="store_true", help="Drop and recreate database if it exists") args = parser.parse_args() diff --git a/src/couchdb/init_wo.py b/src/couchdb/init_wo.py index a02b31f9..d1590218 100644 --- a/src/couchdb/init_wo.py +++ b/src/couchdb/init_wo.py @@ -7,7 +7,7 @@ COUCHDB_URL e.g. http://localhost:5984 COUCHDB_USERNAME admin user COUCHDB_PASSWORD admin password - WO_COUCHDB_DBNAME target database (default: workorder) + WO_DBNAME target database (default: workorder) WO_DATA_DIR override CSV directory """ @@ -36,7 +36,7 @@ COUCHDB_URL = os.environ.get("COUCHDB_URL", "http://localhost:5984") COUCHDB_USERNAME = os.environ.get("COUCHDB_USERNAME", "admin") COUCHDB_PASSWORD = os.environ.get("COUCHDB_PASSWORD", "password") -WO_COUCHDB_DBNAME = os.environ.get("WO_COUCHDB_DBNAME", "workorder") +WO_DBNAME = os.environ.get("WO_DBNAME", "workorder") WO_DATA_DIR = os.environ.get("WO_DATA_DIR", _DEFAULT_DATA_DIR) # --------------------------------------------------------------------------- @@ -161,7 +161,7 @@ def load_dataset(data_dir: str, csv_file: str, dataset: str, date_cols: dict) -> def main() -> None: parser = argparse.ArgumentParser(description="Initialize CouchDB work-order database from CSVs.") parser.add_argument("--data-dir", default=WO_DATA_DIR, help="Directory containing CSVs") - parser.add_argument("--db", default=WO_COUCHDB_DBNAME, help="CouchDB database name") + parser.add_argument("--db", default=WO_DBNAME, help="CouchDB database name") parser.add_argument("--drop", action="store_true", help="Drop and recreate database if it exists") args = parser.parse_args() diff --git a/src/servers/iot/main.py b/src/servers/iot/main.py index c1c2eefd..bdf9e9ac 100644 --- a/src/servers/iot/main.py +++ b/src/servers/iot/main.py @@ -17,7 +17,7 @@ # Configuration from environment COUCHDB_URL = os.environ.get("COUCHDB_URL") -COUCHDB_DBNAME = os.environ.get("COUCHDB_DBNAME") +COUCHDB_DBNAME = os.environ.get("IOT_DBNAME") COUCHDB_USER = os.environ.get("COUCHDB_USERNAME") COUCHDB_PASSWORD = os.environ.get("COUCHDB_PASSWORD") diff --git a/src/servers/iot/tests/test_couchdb.py b/src/servers/iot/tests/test_couchdb.py index 2207bd24..a71e8a8e 100644 --- a/src/servers/iot/tests/test_couchdb.py +++ b/src/servers/iot/tests/test_couchdb.py @@ -15,7 +15,7 @@ COUCHDB_HOST = COUCHDB_URL.replace("http://", "").replace("https://", "") COUCHDB_USER = os.environ.get("COUCHDB_USERNAME", "") COUCHDB_PASS = os.environ.get("COUCHDB_PASSWORD", "") -COUCHDB_DBNAME = os.environ.get("COUCHDB_DBNAME", "") +COUCHDB_DBNAME = os.environ.get("IOT_DBNAME", "") FULL_URL = f"http://{COUCHDB_USER}:{COUCHDB_PASS}@{COUCHDB_HOST}" diff --git a/src/servers/wo/data.py b/src/servers/wo/data.py index 21d2aec0..6cf7951d 100644 --- a/src/servers/wo/data.py +++ b/src/servers/wo/data.py @@ -26,7 +26,7 @@ COUCHDB_URL: str = os.environ.get("COUCHDB_URL", "http://localhost:5984") COUCHDB_USERNAME: str = os.environ.get("COUCHDB_USERNAME", "admin") COUCHDB_PASSWORD: str = os.environ.get("COUCHDB_PASSWORD", "password") -WO_COUCHDB_DBNAME: str = os.environ.get("WO_COUCHDB_DBNAME", "workorder") +WO_DBNAME: str = os.environ.get("WO_DBNAME", "workorder") # --------------------------------------------------------------------------- # Lazy connection @@ -44,12 +44,12 @@ def _get_db(): import couchdb3 # lazy import so the server starts without couchdb3 installed _db = couchdb3.Database( - WO_COUCHDB_DBNAME, + WO_DBNAME, url=COUCHDB_URL, user=COUCHDB_USERNAME, password=COUCHDB_PASSWORD, ) - logger.info("Connected to CouchDB database '%s'", WO_COUCHDB_DBNAME) + logger.info("Connected to CouchDB database '%s'", WO_DBNAME) except Exception as exc: logger.error("Failed to connect to CouchDB: %s", exc) _db = None From b478548278c2af349f3afccc754b20d63d98e192 Mon Sep 17 00:00:00 2001 From: Shuxin Lin Date: Wed, 4 Mar 2026 15:44:10 -0500 Subject: [PATCH 08/16] feat: add WO integration tests and update INSTRUCTIONS.md with WorkOrderAgent Signed-off-by: Shuxin Lin --- INSTRUCTIONS.md | 51 +++- src/servers/wo/tests/test_integration.py | 341 +++++++++++++++++++++++ 2 files changed, 383 insertions(+), 9 deletions(-) create mode 100644 src/servers/wo/tests/test_integration.py diff --git a/INSTRUCTIONS.md b/INSTRUCTIONS.md index 6a883f45..baf79a50 100644 --- a/INSTRUCTIONS.md +++ b/INSTRUCTIONS.md @@ -12,6 +12,7 @@ This directory contains the MCP servers and infrastructure for the AssetOpsBench - [Utilities](#utilities) - [FMSRAgent](#fmsragent) - [TSFMAgent](#tsfmagent) + - [WorkOrderAgent](#workorderagent) - [Plan-Execute Runner](#plan-execute-runner) - [How it works](#how-it-works) - [CLI](#cli) @@ -84,6 +85,7 @@ uv run utilities-mcp-server uv run iot-mcp-server uv run fmsr-mcp-server uv run tsfm-mcp-server +uv run wo-mcp-server ``` --- @@ -92,10 +94,11 @@ uv run tsfm-mcp-server | Variable | Required | Description | |---|---|---| -| `COUCHDB_URL` | IoT server | CouchDB connection URL, e.g. `http://localhost:5984` | -| `IOT_DBNAME` | IoT server | Database name (default fixture: `chiller`) | -| `COUCHDB_USERNAME` | IoT server | CouchDB admin username | -| `COUCHDB_PASSWORD` | IoT server | CouchDB admin password | +| `COUCHDB_URL` | IoT + WO servers | CouchDB connection URL, e.g. `http://localhost:5984` | +| `COUCHDB_USERNAME` | IoT + WO servers | CouchDB admin username | +| `COUCHDB_PASSWORD` | IoT + WO servers | CouchDB admin password | +| `IOT_DBNAME` | IoT server | IoT sensor database name (default: `chiller`) | +| `WO_DBNAME` | WO server | Work order database name (default: `workorder`) | | `WATSONX_APIKEY` | `--platform watsonx` | IBM WatsonX API key | | `WATSONX_PROJECT_ID` | `--platform watsonx` | IBM WatsonX project ID | | `WATSONX_URL` | `--platform watsonx` | WatsonX endpoint (optional; defaults to `https://us-south.ml.cloud.ibm.com`) | @@ -112,7 +115,7 @@ uv run tsfm-mcp-server ### IoTAgent **Path:** `src/servers/iot/main.py` -**Requires:** CouchDB (`COUCHDB_URL`, `IOT_DBNAME`, `COUCHDB_USERNAME`, `COUCHDB_PASSWORD`) +**Requires:** CouchDB (`COUCHDB_URL`, `COUCHDB_USERNAME`, `COUCHDB_PASSWORD`, `IOT_DBNAME`) | Tool | Arguments | Description | |---|---|---| @@ -143,6 +146,23 @@ uv run tsfm-mcp-server | `get_failure_modes` | `asset_name` | Return known failure modes for an asset. Uses a curated YAML list for chillers and AHUs; falls back to the LLM for other types. | | `get_failure_mode_sensor_mapping` | `asset_name`, `failure_modes`, `sensors` | For each (failure mode, sensor) pair, determine relevancy via LLM. Returns bidirectional `fm→sensors` and `sensor→fms` maps plus full per-pair details. | +### WorkOrderAgent + +**Path:** `src/servers/wo/main.py` +**Requires:** CouchDB (`COUCHDB_URL`, `COUCHDB_USERNAME`, `COUCHDB_PASSWORD`, `WO_DBNAME`) +**Data init:** `python -m src.couchdb.init_wo` (or `docker compose -f src/couchdb/docker-compose.yaml up`) + +| Tool | Arguments | Description | +|---|---|---| +| `get_work_orders` | `equipment_id`, `start_date?`, `end_date?` | Retrieve all work orders for an equipment within an optional date range | +| `get_preventive_work_orders` | `equipment_id`, `start_date?`, `end_date?` | Retrieve only preventive (PM) work orders | +| `get_corrective_work_orders` | `equipment_id`, `start_date?`, `end_date?` | Retrieve only corrective (CM) work orders | +| `get_events` | `equipment_id`, `start_date?`, `end_date?` | Retrieve all events (work orders, alerts, anomalies) | +| `get_failure_codes` | — | List all failure codes with categories and descriptions | +| `get_work_order_distribution` | `equipment_id`, `start_date?`, `end_date?` | Count work orders per (primary, secondary) failure code pair, sorted by frequency | +| `predict_next_work_order` | `equipment_id`, `start_date?`, `end_date?` | Predict next work order type via Markov transition matrix built from historical sequence | +| `analyze_alert_to_failure` | `equipment_id`, `rule_id`, `start_date?`, `end_date?` | Probability that an alert rule leads to a work order; average hours to maintenance | + ### TSFMAgent **Path:** `src/servers/tsfm/main.py` @@ -225,7 +245,7 @@ uv run plan-execute --show-history --json "How many observations exist for CH-1? ### End-to-end example -All four servers (IoTAgent, Utilities, FMSRAgent, TSFMAgent) are registered by default. +All five servers (IoTAgent, Utilities, FMSRAgent, TSFMAgent, WorkOrderAgent) are registered by default. Run a question that exercises three of them with independent parallel steps: ```bash @@ -334,6 +354,10 @@ Add the following to your Claude Desktop `claude_desktop_config.json`: "TSFMAgent": { "command": "/path/to/uv", "args": ["run", "--project", "/path/to/AssetOpsBench", "tsfm-mcp-server"] + }, + "WorkOrderAgent": { + "command": "/path/to/uv", + "args": ["run", "--project", "/path/to/AssetOpsBench", "wo-mcp-server"] } } } @@ -351,6 +375,7 @@ uv run pytest src/ -v Integration tests are auto-skipped when the required service is not available: - IoT integration tests require `COUCHDB_URL` (set in `.env`) +- Work order integration tests require `COUCHDB_URL` (set in `.env`) - FMSR integration tests require `WATSONX_APIKEY` (set in `.env`) - TSFM integration tests require `PATH_TO_MODELS_DIR` and `PATH_TO_DATASETS_DIR` (set in `.env`) @@ -367,9 +392,17 @@ uv run pytest src/servers/iot/tests/test_tools.py -k "not integration" uv run pytest src/servers/utilities/tests/ uv run pytest src/servers/fmsr/tests/ -k "not integration" uv run pytest src/servers/tsfm/tests/ -k "not integration" +uv run pytest src/servers/wo/tests/test_tools.py -k "not integration" uv run pytest src/workflow/tests/ ``` +### Work order integration tests (requires CouchDB + populated `workorder` db) + +```bash +docker compose -f src/couchdb/docker-compose.yaml up -d +uv run pytest src/servers/wo/tests/test_integration.py -v +``` + ### Integration tests (requires CouchDB + WatsonX) ```bash @@ -397,7 +430,7 @@ uv run pytest src/ -v └───────────────────┼────────────┼─────────────────────┘ │ MCP protocol (stdio) ┌──────────┼──────────┬──────────┐ - ▼ ▼ ▼ ▼ - IoTAgent Utilities FMSRAgent TSFMAgent - (tools) (tools) (tools) (tools) + ▼ ▼ ▼ ▼ ▼ + IoTAgent Utilities FMSRAgent TSFMAgent WorkOrderAgent + (tools) (tools) (tools) (tools) (tools) ``` diff --git a/src/servers/wo/tests/test_integration.py b/src/servers/wo/tests/test_integration.py new file mode 100644 index 00000000..642b957b --- /dev/null +++ b/src/servers/wo/tests/test_integration.py @@ -0,0 +1,341 @@ +"""Live integration tests for the Work Order MCP server. + +Requires CouchDB to be running and populated (``COUCHDB_URL`` must be set). +All tests are skipped automatically when CouchDB is unavailable. + +Run with: + uv run pytest src/servers/wo/tests/test_integration.py -v +""" + +import pytest +from servers.wo.main import mcp +from .conftest import requires_couchdb, call_tool + +# Real equipment IDs and rule IDs present in the sample dataset +EQUIPMENT_ID = "CWC04013" # 431 work orders in dataset +EQUIPMENT_RICH = "CWC04014" # 524 work orders — most records +EQUIPMENT_ALERT = "CWC04009" # has alert events with RUL0018 +RULE_ID = "RUL0018" # 183 alert events for CWC04009 + + +# --------------------------------------------------------------------------- +# get_work_orders — live +# --------------------------------------------------------------------------- + + +@requires_couchdb +class TestGetWorkOrdersLive: + @pytest.mark.anyio + async def test_returns_results(self): + data = await call_tool(mcp, "get_work_orders", {"equipment_id": EQUIPMENT_ID}) + assert "work_orders" in data + assert data["total"] > 0 + assert len(data["work_orders"]) == data["total"] + + @pytest.mark.anyio + async def test_date_range_narrows_results(self): + all_data = await call_tool(mcp, "get_work_orders", {"equipment_id": EQUIPMENT_ID}) + filtered = await call_tool( + mcp, + "get_work_orders", + {"equipment_id": EQUIPMENT_ID, "start_date": "2015-01-01", "end_date": "2017-12-31"}, + ) + assert filtered["total"] < all_data["total"] + assert filtered["total"] > 0 + + @pytest.mark.anyio + async def test_each_wo_has_required_fields(self): + data = await call_tool(mcp, "get_work_orders", {"equipment_id": EQUIPMENT_ID}) + required = {"wo_id", "wo_description", "equipment_id", "primary_code", "preventive", "actual_finish"} + for wo in data["work_orders"]: + assert required <= wo.keys() + assert wo["equipment_id"].upper() == EQUIPMENT_ID.upper() + + @pytest.mark.anyio + async def test_preventive_field_is_bool(self): + data = await call_tool(mcp, "get_work_orders", {"equipment_id": EQUIPMENT_ID}) + for wo in data["work_orders"]: + assert isinstance(wo["preventive"], bool) + + @pytest.mark.anyio + async def test_unknown_equipment_returns_error(self): + data = await call_tool(mcp, "get_work_orders", {"equipment_id": "DOES_NOT_EXIST"}) + assert "error" in data + + +# --------------------------------------------------------------------------- +# get_preventive_work_orders — live +# --------------------------------------------------------------------------- + + +@requires_couchdb +class TestGetPreventiveWorkOrdersLive: + @pytest.mark.anyio + async def test_all_results_are_preventive(self): + data = await call_tool(mcp, "get_preventive_work_orders", {"equipment_id": EQUIPMENT_ID}) + assert "work_orders" in data + assert data["total"] > 0 + for wo in data["work_orders"]: + assert wo["preventive"] is True + + @pytest.mark.anyio + async def test_count_less_than_all_work_orders(self): + all_data = await call_tool(mcp, "get_work_orders", {"equipment_id": EQUIPMENT_ID}) + prev_data = await call_tool(mcp, "get_preventive_work_orders", {"equipment_id": EQUIPMENT_ID}) + assert prev_data["total"] <= all_data["total"] + + +# --------------------------------------------------------------------------- +# get_corrective_work_orders — live +# --------------------------------------------------------------------------- + + +@requires_couchdb +class TestGetCorrectiveWorkOrdersLive: + @pytest.mark.anyio + async def test_all_results_are_corrective(self): + data = await call_tool(mcp, "get_corrective_work_orders", {"equipment_id": EQUIPMENT_ID}) + assert "work_orders" in data + assert data["total"] > 0 + for wo in data["work_orders"]: + assert wo["preventive"] is False + + @pytest.mark.anyio + async def test_preventive_and_corrective_partition_all(self): + all_data = await call_tool(mcp, "get_work_orders", {"equipment_id": EQUIPMENT_ID}) + prev_data = await call_tool(mcp, "get_preventive_work_orders", {"equipment_id": EQUIPMENT_ID}) + corr_data = await call_tool(mcp, "get_corrective_work_orders", {"equipment_id": EQUIPMENT_ID}) + assert prev_data["total"] + corr_data["total"] == all_data["total"] + + +# --------------------------------------------------------------------------- +# get_events — live +# --------------------------------------------------------------------------- + + +@requires_couchdb +class TestGetEventsLive: + @pytest.mark.anyio + async def test_returns_events(self): + data = await call_tool(mcp, "get_events", {"equipment_id": EQUIPMENT_ID}) + assert "events" in data + assert data["total"] > 0 + + @pytest.mark.anyio + async def test_event_groups_valid(self): + data = await call_tool(mcp, "get_events", {"equipment_id": EQUIPMENT_ID}) + valid_groups = {"WORK_ORDER", "ALERT", "ANOMALY"} + for event in data["events"]: + assert event["event_group"] in valid_groups + + @pytest.mark.anyio + async def test_each_event_has_required_fields(self): + data = await call_tool(mcp, "get_events", {"equipment_id": EQUIPMENT_ID}) + required = {"event_id", "event_group", "event_category", "equipment_id", "event_time"} + for event in data["events"]: + assert required <= event.keys() + assert event["equipment_id"].upper() == EQUIPMENT_ID.upper() + + @pytest.mark.anyio + async def test_date_range_filters_events(self): + data = await call_tool( + mcp, + "get_events", + {"equipment_id": EQUIPMENT_ID, "start_date": "2015-01-01", "end_date": "2015-12-31"}, + ) + assert "events" in data + assert data["total"] > 0 + for event in data["events"]: + assert event["event_time"].startswith("2015") + + +# --------------------------------------------------------------------------- +# get_failure_codes — live +# --------------------------------------------------------------------------- + + +@requires_couchdb +class TestGetFailureCodesLive: + @pytest.mark.anyio + async def test_returns_codes(self): + data = await call_tool(mcp, "get_failure_codes", {}) + assert "failure_codes" in data + assert data["total"] > 0 + + @pytest.mark.anyio + async def test_required_fields_present(self): + data = await call_tool(mcp, "get_failure_codes", {}) + required = {"category", "primary_code", "primary_code_description", + "secondary_code", "secondary_code_description"} + for fc in data["failure_codes"]: + assert required <= fc.keys() + + @pytest.mark.anyio + async def test_known_code_present(self): + data = await call_tool(mcp, "get_failure_codes", {}) + primary_codes = {fc["primary_code"] for fc in data["failure_codes"]} + # MT010 (Oil Analysis) and MT001 (Routine Maintenance) exist in the dataset + assert "MT010" in primary_codes + assert "MT001" in primary_codes + + +# --------------------------------------------------------------------------- +# get_work_order_distribution — live +# --------------------------------------------------------------------------- + + +@requires_couchdb +class TestGetWorkOrderDistributionLive: + @pytest.mark.anyio + async def test_returns_distribution(self): + data = await call_tool(mcp, "get_work_order_distribution", {"equipment_id": EQUIPMENT_ID}) + assert "distribution" in data + assert data["total_work_orders"] > 0 + assert len(data["distribution"]) > 0 + + @pytest.mark.anyio + async def test_counts_sum_to_total(self): + data = await call_tool(mcp, "get_work_order_distribution", {"equipment_id": EQUIPMENT_ID}) + total_from_dist = sum(e["count"] for e in data["distribution"]) + # distribution only counts entries matched in failure_codes; total_work_orders is the raw filter count + assert total_from_dist <= data["total_work_orders"] + + @pytest.mark.anyio + async def test_sorted_descending(self): + data = await call_tool(mcp, "get_work_order_distribution", {"equipment_id": EQUIPMENT_ID}) + counts = [e["count"] for e in data["distribution"]] + assert counts == sorted(counts, reverse=True) + + @pytest.mark.anyio + async def test_distribution_fields_present(self): + data = await call_tool(mcp, "get_work_order_distribution", {"equipment_id": EQUIPMENT_ID}) + required = {"category", "primary_code", "primary_code_description", + "secondary_code", "secondary_code_description", "count"} + for entry in data["distribution"]: + assert required <= entry.keys() + + @pytest.mark.anyio + async def test_date_range_reduces_total(self): + all_data = await call_tool(mcp, "get_work_order_distribution", {"equipment_id": EQUIPMENT_RICH}) + filtered = await call_tool( + mcp, + "get_work_order_distribution", + {"equipment_id": EQUIPMENT_RICH, "start_date": "2016-01-01", "end_date": "2016-12-31"}, + ) + assert filtered["total_work_orders"] < all_data["total_work_orders"] + + +# --------------------------------------------------------------------------- +# predict_next_work_order — live +# --------------------------------------------------------------------------- + + +@requires_couchdb +class TestPredictNextWorkOrderLive: + @pytest.mark.anyio + async def test_returns_predictions(self): + data = await call_tool(mcp, "predict_next_work_order", {"equipment_id": EQUIPMENT_RICH}) + assert "predictions" in data + assert "last_work_order_type" in data + assert len(data["predictions"]) > 0 + + @pytest.mark.anyio + async def test_probabilities_sum_to_one(self): + data = await call_tool(mcp, "predict_next_work_order", {"equipment_id": EQUIPMENT_RICH}) + if "predictions" in data: + total = sum(p["probability"] for p in data["predictions"]) + assert abs(total - 1.0) < 1e-6 + + @pytest.mark.anyio + async def test_prediction_fields_present(self): + data = await call_tool(mcp, "predict_next_work_order", {"equipment_id": EQUIPMENT_RICH}) + if "predictions" in data: + required = {"category", "primary_code", "primary_code_description", "probability"} + for pred in data["predictions"]: + assert required <= pred.keys() + + @pytest.mark.anyio + async def test_probabilities_between_zero_and_one(self): + data = await call_tool(mcp, "predict_next_work_order", {"equipment_id": EQUIPMENT_RICH}) + if "predictions" in data: + for pred in data["predictions"]: + assert 0.0 <= pred["probability"] <= 1.0 + + @pytest.mark.anyio + async def test_unknown_equipment_returns_error(self): + data = await call_tool(mcp, "predict_next_work_order", {"equipment_id": "DOES_NOT_EXIST"}) + assert "error" in data + + +# --------------------------------------------------------------------------- +# analyze_alert_to_failure — live +# --------------------------------------------------------------------------- + + +@requires_couchdb +class TestAnalyzeAlertToFailureLive: + @pytest.mark.anyio + async def test_returns_transitions(self): + data = await call_tool( + mcp, + "analyze_alert_to_failure", + {"equipment_id": EQUIPMENT_ALERT, "rule_id": RULE_ID}, + ) + assert "transitions" in data + assert data["total_alerts_analyzed"] > 0 + + @pytest.mark.anyio + async def test_probabilities_sum_to_one(self): + data = await call_tool( + mcp, + "analyze_alert_to_failure", + {"equipment_id": EQUIPMENT_ALERT, "rule_id": RULE_ID}, + ) + if "transitions" in data: + total = sum(t["probability"] for t in data["transitions"]) + assert abs(total - 1.0) < 1e-6 + + @pytest.mark.anyio + async def test_transition_fields_present(self): + data = await call_tool( + mcp, + "analyze_alert_to_failure", + {"equipment_id": EQUIPMENT_ALERT, "rule_id": RULE_ID}, + ) + if "transitions" in data: + for t in data["transitions"]: + assert "transition" in t + assert "probability" in t + assert "average_hours_to_maintenance" in t + + @pytest.mark.anyio + async def test_work_order_transition_has_avg_hours(self): + data = await call_tool( + mcp, + "analyze_alert_to_failure", + {"equipment_id": EQUIPMENT_ALERT, "rule_id": RULE_ID}, + ) + if "transitions" in data: + wo_transitions = [t for t in data["transitions"] if t["transition"] == "WORK_ORDER"] + for t in wo_transitions: + assert t["average_hours_to_maintenance"] is not None + assert t["average_hours_to_maintenance"] > 0 + + @pytest.mark.anyio + async def test_unknown_rule_returns_error(self): + data = await call_tool( + mcp, + "analyze_alert_to_failure", + {"equipment_id": EQUIPMENT_ALERT, "rule_id": "NONEXISTENT_RULE"}, + ) + assert "error" in data + + @pytest.mark.anyio + async def test_result_metadata_fields(self): + data = await call_tool( + mcp, + "analyze_alert_to_failure", + {"equipment_id": EQUIPMENT_ALERT, "rule_id": RULE_ID}, + ) + assert data.get("equipment_id", "").upper() == EQUIPMENT_ALERT.upper() + assert data.get("rule_id", "").upper() == RULE_ID.upper() From 3f50e2b73e1178221a489a454ca16da768830c09 Mon Sep 17 00:00:00 2001 From: Shuxin Lin Date: Wed, 4 Mar 2026 15:47:26 -0500 Subject: [PATCH 09/16] fix: downgrade doc reference to Python 3.12, fix requires_couchdb to check connectivity, fix history date validation order Signed-off-by: Shuxin Lin --- src/servers/iot/main.py | 21 ++++++++++++--------- src/servers/iot/tests/conftest.py | 17 +++++++++++++++-- src/servers/wo/tests/conftest.py | 17 +++++++++++++++-- 3 files changed, 42 insertions(+), 13 deletions(-) diff --git a/src/servers/iot/main.py b/src/servers/iot/main.py index bdf9e9ac..59667f50 100644 --- a/src/servers/iot/main.py +++ b/src/servers/iot/main.py @@ -156,22 +156,25 @@ def history( site_name: str, asset_id: str, start: str, final: Optional[str] = None ) -> Union[HistoryResult, ErrorResult]: """Returns a list of historical sensor values for the specified asset(s) at a site within a given time range (start to final).""" - if not db: - return ErrorResult(error="CouchDB not connected") - try: - selector = { - "asset_id": asset_id, - "timestamp": {"$gte": datetime.fromisoformat(start).isoformat()}, - } - + start_iso = datetime.fromisoformat(start).isoformat() if final: - selector["timestamp"]["$lt"] = datetime.fromisoformat(final).isoformat() + datetime.fromisoformat(final) if start >= final: return ErrorResult(error="start >= final") except ValueError as e: return ErrorResult(error=f"Invalid date format: {e}") + if not db: + return ErrorResult(error="CouchDB not connected") + + selector = { + "asset_id": asset_id, + "timestamp": {"$gte": start_iso}, + } + if final: + selector["timestamp"]["$lt"] = datetime.fromisoformat(final).isoformat() + logger.info(f"Querying CouchDB with selector: {selector}") try: res = db.find( diff --git a/src/servers/iot/tests/conftest.py b/src/servers/iot/tests/conftest.py index 2a11d214..83a9ef3d 100644 --- a/src/servers/iot/tests/conftest.py +++ b/src/servers/iot/tests/conftest.py @@ -9,9 +9,22 @@ # --- Custom markers --- + +def _couchdb_reachable() -> bool: + url = os.environ.get("COUCHDB_URL") + if not url: + return False + try: + import requests + requests.get(url, timeout=2) + return True + except Exception: + return False + + requires_couchdb = pytest.mark.skipif( - os.environ.get("COUCHDB_URL") is None, - reason="CouchDB not available (set COUCHDB_URL)", + not _couchdb_reachable(), + reason="CouchDB not reachable (set COUCHDB_URL and ensure CouchDB is running)", ) diff --git a/src/servers/wo/tests/conftest.py b/src/servers/wo/tests/conftest.py index f8dcc6e8..8ca2f3c3 100644 --- a/src/servers/wo/tests/conftest.py +++ b/src/servers/wo/tests/conftest.py @@ -11,9 +11,22 @@ # --- Custom markers --- + +def _couchdb_reachable() -> bool: + url = os.environ.get("COUCHDB_URL") + if not url: + return False + try: + import requests + requests.get(url, timeout=2) + return True + except Exception: + return False + + requires_couchdb = pytest.mark.skipif( - not os.environ.get("COUCHDB_URL"), - reason="CouchDB not configured (set COUCHDB_URL)", + not _couchdb_reachable(), + reason="CouchDB not reachable (set COUCHDB_URL and ensure CouchDB is running)", ) From 5cea53034c39062759dcdb4e8d425b0598692f5e Mon Sep 17 00:00:00 2001 From: Shuxin Lin Date: Wed, 4 Mar 2026 15:49:20 -0500 Subject: [PATCH 10/16] fix: standardize COUCHDB_USERNAME/PASSWORD local var names in iot server and tests Signed-off-by: Shuxin Lin --- .python-version | 2 +- src/servers/iot/main.py | 4 ++-- src/servers/iot/tests/test_couchdb.py | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.python-version b/.python-version index 6324d401..e4fba218 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.14 +3.12 diff --git a/src/servers/iot/main.py b/src/servers/iot/main.py index 59667f50..71cea241 100644 --- a/src/servers/iot/main.py +++ b/src/servers/iot/main.py @@ -18,13 +18,13 @@ # Configuration from environment COUCHDB_URL = os.environ.get("COUCHDB_URL") COUCHDB_DBNAME = os.environ.get("IOT_DBNAME") -COUCHDB_USER = os.environ.get("COUCHDB_USERNAME") +COUCHDB_USERNAME = os.environ.get("COUCHDB_USERNAME") COUCHDB_PASSWORD = os.environ.get("COUCHDB_PASSWORD") # Initialize CouchDB try: db = couchdb3.Database( - COUCHDB_DBNAME, url=COUCHDB_URL, user=COUCHDB_USER, password=COUCHDB_PASSWORD + COUCHDB_DBNAME, url=COUCHDB_URL, user=COUCHDB_USERNAME, password=COUCHDB_PASSWORD ) logger.info(f"Connected to CouchDB: {COUCHDB_DBNAME}") except Exception as e: diff --git a/src/servers/iot/tests/test_couchdb.py b/src/servers/iot/tests/test_couchdb.py index a71e8a8e..36fea30c 100644 --- a/src/servers/iot/tests/test_couchdb.py +++ b/src/servers/iot/tests/test_couchdb.py @@ -13,11 +13,11 @@ COUCHDB_URL = os.environ.get("COUCHDB_URL", "") COUCHDB_HOST = COUCHDB_URL.replace("http://", "").replace("https://", "") -COUCHDB_USER = os.environ.get("COUCHDB_USERNAME", "") -COUCHDB_PASS = os.environ.get("COUCHDB_PASSWORD", "") +COUCHDB_USERNAME = os.environ.get("COUCHDB_USERNAME", "") +COUCHDB_PASSWORD = os.environ.get("COUCHDB_PASSWORD", "") COUCHDB_DBNAME = os.environ.get("IOT_DBNAME", "") -FULL_URL = f"http://{COUCHDB_USER}:{COUCHDB_PASS}@{COUCHDB_HOST}" +FULL_URL = f"http://{COUCHDB_USERNAME}:{COUCHDB_PASSWORD}@{COUCHDB_HOST}" @pytest.fixture @@ -28,7 +28,7 @@ def couchdb_client(): @requires_couchdb class TestCouchDBInfrastructure: def test_connection(self): - resp = requests.get(f"http://{COUCHDB_HOST}", auth=(COUCHDB_USER, COUCHDB_PASS)) + resp = requests.get(f"http://{COUCHDB_HOST}", auth=(COUCHDB_USERNAME, COUCHDB_PASSWORD)) assert resp.status_code == 200 client = couchdb3.Server(FULL_URL) From 62fd7acdc22b416af1ebde8450e379ba1880d0ca Mon Sep 17 00:00:00 2001 From: Shuxin Lin Date: Wed, 4 Mar 2026 15:56:09 -0500 Subject: [PATCH 11/16] feat: add scripts/start_servers.sh to smoke-test all MCP servers Signed-off-by: Shuxin Lin --- scripts/start_servers.sh | 65 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100755 scripts/start_servers.sh diff --git a/scripts/start_servers.sh b/scripts/start_servers.sh new file mode 100755 index 00000000..7d56f408 --- /dev/null +++ b/scripts/start_servers.sh @@ -0,0 +1,65 @@ +#!/bin/bash +# Verify all AssetOpsBench MCP servers can be imported and list their tools. +# +# MCP servers use stdio transport and are spawned on-demand by clients +# (Claude Desktop, plan-execute runner, etc.). This script confirms each +# server module is correctly installed and reports the tools it exposes. +# +# Usage: +# ./scripts/start_servers.sh + +set -euo pipefail + +ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" +cd "$ROOT_DIR" + +PASS=0 +FAIL=0 + +check_server() { + local label="$1" + local module="$2" + + local output + if output=$(uv run python -c " +from ${module} import mcp +tools = mcp._tool_manager.list_tools() +print(','.join(t.name for t in tools)) +" 2>&1); then + echo " [OK] $label" + echo " tools: $output" + ((PASS++)) || true + else + echo " [FAIL] $label" + echo "$output" | sed 's/^/ /' + ((FAIL++)) || true + fi +} + +echo "================================================" +echo " AssetOpsBench MCP server check" +echo "================================================" +echo "" + +check_server "utilities-mcp-server" "servers.utilities.main" +check_server "iot-mcp-server" "servers.iot.main" +check_server "fmsr-mcp-server" "servers.fmsr.main" +check_server "tsfm-mcp-server" "servers.tsfm.main" +check_server "wo-mcp-server" "servers.wo.main" + +echo "" +echo "================================================" +echo " $PASS passed | $FAIL failed" +echo "================================================" +echo "" +echo "To run a server (started on-demand by the client):" +echo " uv run utilities-mcp-server" +echo " uv run iot-mcp-server" +echo " uv run fmsr-mcp-server" +echo " uv run tsfm-mcp-server" +echo " uv run wo-mcp-server" +echo "" +echo "To run the plan-execute client across all servers:" +echo " uv run plan-execute \"\"" + +[[ $FAIL -eq 0 ]] From 0bec54d3480c8902df2cf2eb3bb801055ae1358e Mon Sep 17 00:00:00 2001 From: Shuxin Lin Date: Wed, 4 Mar 2026 16:16:41 -0500 Subject: [PATCH 12/16] fix: rename _dataset to dataset in WO CouchDB init and data layer CouchDB rejects document fields starting with '_' (reserved for _id, _rev, etc.). Rename the collection discriminator field from _dataset to dataset in both init_wo.py and data.py. Signed-off-by: Shuxin Lin --- src/couchdb/init_wo.py | 12 +- .../sample_data/work_order/alert_events.csv | 1467 ++++ .../sample_data/work_order/alert_rule.csv | 20 + .../alert_rule_failure_code_mapping.csv | 35 + .../all_wo_with_code_component_events.csv | 4250 +++++++++++ .../anomaly_to_failure_code_mapping.csv | 17 + .../sample_data/work_order/component.csv | 15 + src/couchdb/sample_data/work_order/event.csv | 6257 +++++++++++++++++ .../sample_data/work_order/failure_codes.csv | 144 + .../work_order/primary_failure_codes.csv | 68 + src/servers/wo/data.py | 6 +- 11 files changed, 12282 insertions(+), 9 deletions(-) create mode 100644 src/couchdb/sample_data/work_order/alert_events.csv create mode 100644 src/couchdb/sample_data/work_order/alert_rule.csv create mode 100644 src/couchdb/sample_data/work_order/alert_rule_failure_code_mapping.csv create mode 100644 src/couchdb/sample_data/work_order/all_wo_with_code_component_events.csv create mode 100644 src/couchdb/sample_data/work_order/anomaly_to_failure_code_mapping.csv create mode 100644 src/couchdb/sample_data/work_order/component.csv create mode 100644 src/couchdb/sample_data/work_order/event.csv create mode 100644 src/couchdb/sample_data/work_order/failure_codes.csv create mode 100644 src/couchdb/sample_data/work_order/primary_failure_codes.csv diff --git a/src/couchdb/init_wo.py b/src/couchdb/init_wo.py index d1590218..882aaf6c 100644 --- a/src/couchdb/init_wo.py +++ b/src/couchdb/init_wo.py @@ -70,11 +70,11 @@ # Mango indexes to create: list of field-lists _INDEXES = [ - ["_dataset", "equipment_id"], - ["_dataset", "actual_finish"], - ["_dataset", "event_time"], - ["_dataset", "rule_id"], - ["_dataset", "primary_code"], + ["dataset", "equipment_id"], + ["dataset", "actual_finish"], + ["dataset", "event_time"], + ["dataset", "rule_id"], + ["dataset", "primary_code"], ] # --------------------------------------------------------------------------- @@ -126,7 +126,7 @@ def _bulk_insert(db_name: str, docs: list, batch_size: int = 500) -> None: def _row_to_doc(row: dict, dataset: str, date_cols: dict) -> dict: """Convert a CSV row dict to a CouchDB document dict.""" - doc: dict = {"_dataset": dataset} + doc: dict = {"dataset": dataset} for k, v in row.items(): if pd.isna(v): doc[k] = None diff --git a/src/couchdb/sample_data/work_order/alert_events.csv b/src/couchdb/sample_data/work_order/alert_events.csv new file mode 100644 index 00000000..304cef20 --- /dev/null +++ b/src/couchdb/sample_data/work_order/alert_events.csv @@ -0,0 +1,1467 @@ +equipment_id,equipment_name,rule_id,start_time,end_time +CWC04701,Chiller 1,RUL0021,11/24/20 19:00,11/24/20 23:59 +CWC04701,Chiller 1,RUL0021,11/25/20 0:00,11/25/20 11:47 +CWC04701,Chiller 1,RUL0021,11/29/20 2:57,11/30/20 0:00 +CWC04701,Chiller 1,RUL0021,11/30/20 0:00,11/30/20 10:43 +CWC04701,Chiller 1,RUL0021,12/2/20 3:19,12/3/20 0:00 +CWC04701,Chiller 1,RUL0021,12/3/20 0:00,12/4/20 0:00 +CWC04701,Chiller 1,RUL0021,12/4/20 0:00,12/4/20 12:32 +CWC04701,Chiller 1,RUL0021,12/6/20 5:57,12/6/20 23:59 +CWC04701,Chiller 1,RUL0021,12/7/20 0:00,12/8/20 0:00 +CWC04701,Chiller 1,RUL0021,12/8/20 0:00,12/9/20 0:00 +CWC04701,Chiller 1,RUL0021,12/9/20 0:00,12/10/20 0:00 +CWC04701,Chiller 1,RUL0021,12/10/20 0:00,12/11/20 0:00 +CWC04701,Chiller 1,RUL0021,12/11/20 0:00,12/11/20 12:04 +CWC04701,Chiller 1,RUL0018,12/12/20 1:30,12/12/20 6:15 +CWC04701,Chiller 1,RUL0017,12/14/20 15:15,12/15/20 0:00 +CWC04701,Chiller 1,RUL0012,12/14/20 15:15,12/14/20 18:30 +CWC04701,Chiller 1,RUL0017,12/15/20 0:00,12/16/20 0:00 +CWC04701,Chiller 1,RUL0017,12/16/20 0:00,12/17/20 0:00 +CWC04701,Chiller 1,RUL0017,12/17/20 0:00,12/18/20 0:00 +CWC04701,Chiller 1,RUL0017,12/18/20 0:00,12/19/20 0:00 +CWC04701,Chiller 1,RUL0017,12/19/20 0:00,12/20/20 0:00 +CWC04701,Chiller 1,RUL0017,12/20/20 0:00,12/21/20 0:00 +CWC04701,Chiller 1,RUL0017,12/21/20 0:00,12/22/20 0:00 +CWC04701,Chiller 1,RUL0017,12/22/20 0:00,12/23/20 0:00 +CWC04701,Chiller 1,RUL0017,12/23/20 0:00,12/24/20 0:00 +CWC04701,Chiller 1,RUL0017,12/24/20 0:00,12/25/20 0:00 +CWC04701,Chiller 1,RUL0017,12/25/20 0:00,12/26/20 0:00 +CWC04701,Chiller 1,RUL0017,12/26/20 0:00,12/27/20 0:00 +CWC04701,Chiller 1,RUL0017,12/27/20 0:00,12/28/20 0:00 +CWC04701,Chiller 1,RUL0017,12/28/20 0:00,12/29/20 0:00 +CWC04701,Chiller 1,RUL0017,12/29/20 0:00,12/30/20 0:00 +CWC04701,Chiller 1,RUL0017,12/30/20 0:00,12/31/20 0:00 +CWC04701,Chiller 1,RUL0017,12/31/20 0:00,1/1/21 0:00 +CWC04701,Chiller 1,RUL0017,1/1/21 0:00,1/2/21 0:00 +CWC04701,Chiller 1,RUL0017,1/2/21 0:00,1/3/21 0:00 +CWC04701,Chiller 1,RUL0017,1/3/21 0:00,1/4/21 0:00 +CWC04701,Chiller 1,RUL0017,1/4/21 0:00,1/5/21 0:00 +CWC04701,Chiller 1,RUL0017,1/5/21 0:00,1/6/21 0:00 +CWC04701,Chiller 1,RUL0017,1/6/21 0:00,1/7/21 0:00 +CWC04701,Chiller 1,RUL0017,1/7/21 0:00,1/8/21 0:00 +CWC04701,Chiller 1,RUL0017,1/8/21 0:00,1/9/21 0:00 +CWC04701,Chiller 1,RUL0017,1/9/21 0:00,1/10/21 0:00 +CWC04701,Chiller 1,RUL0017,1/10/21 0:00,1/11/21 0:00 +CWC04701,Chiller 1,RUL0017,1/11/21 0:00,1/12/21 0:00 +CWC04701,Chiller 1,RUL0017,1/12/21 0:00,1/13/21 0:00 +CWC04701,Chiller 1,RUL0017,1/13/21 0:00,1/14/21 0:00 +CWC04701,Chiller 1,RUL0017,1/14/21 0:00,1/15/21 0:00 +CWC04701,Chiller 1,RUL0017,1/15/21 0:00,1/16/21 0:00 +CWC04701,Chiller 1,RUL0017,1/16/21 0:00,1/17/21 0:00 +CWC04701,Chiller 1,RUL0012,1/16/21 0:00,1/16/21 7:15 +CWC04701,Chiller 1,RUL0012,1/16/21 9:00,1/16/21 12:30 +CWC04701,Chiller 1,RUL0017,1/17/21 0:00,1/18/21 0:00 +CWC04701,Chiller 1,RUL0012,1/17/21 0:00,1/18/21 0:00 +CWC04701,Chiller 1,RUL0017,1/18/21 0:00,1/19/21 0:00 +CWC04701,Chiller 1,RUL0012,1/18/21 0:00,1/19/21 0:00 +CWC04701,Chiller 1,RUL0017,1/19/21 0:00,1/20/21 0:00 +CWC04701,Chiller 1,RUL0012,1/19/21 0:00,1/19/21 13:15 +CWC04701,Chiller 1,RUL0017,1/20/21 0:00,1/21/21 0:00 +CWC04701,Chiller 1,RUL0017,1/21/21 0:00,1/22/21 0:00 +CWC04701,Chiller 1,RUL0017,1/22/21 0:00,1/23/21 0:00 +CWC04701,Chiller 1,RUL0017,1/23/21 0:00,1/24/21 0:00 +CWC04701,Chiller 1,RUL0017,1/24/21 0:00,1/25/21 0:00 +CWC04701,Chiller 1,RUL0017,1/25/21 0:00,1/26/21 0:00 +CWC04701,Chiller 1,RUL0017,1/26/21 0:00,1/27/21 0:00 +CWC04701,Chiller 1,RUL0017,1/27/21 0:00,1/28/21 0:00 +CWC04701,Chiller 1,RUL0017,1/28/21 0:00,1/29/21 0:00 +CWC04701,Chiller 1,RUL0017,1/29/21 0:00,1/30/21 0:00 +CWC04701,Chiller 1,RUL0017,1/30/21 0:00,1/31/21 0:00 +CWC04701,Chiller 1,RUL0017,1/31/21 0:00,2/1/21 0:00 +CWC04701,Chiller 1,RUL0017,2/1/21 0:00,2/2/21 0:00 +CWC04701,Chiller 1,RUL0017,2/2/21 0:00,2/3/21 0:00 +CWC04701,Chiller 1,RUL0017,2/3/21 0:00,2/4/21 0:00 +CWC04701,Chiller 1,RUL0017,2/4/21 0:00,2/5/21 0:00 +CWC04701,Chiller 1,RUL0017,2/5/21 0:00,2/6/21 0:00 +CWC04701,Chiller 1,RUL0017,2/6/21 0:00,2/7/21 0:00 +CWC04701,Chiller 1,RUL0017,2/7/21 0:00,2/8/21 0:00 +CWC04701,Chiller 1,RUL0017,2/8/21 0:00,2/9/21 0:00 +CWC04701,Chiller 1,RUL0017,2/9/21 0:00,2/10/21 0:00 +CWC04701,Chiller 1,RUL0017,2/10/21 0:00,2/11/21 0:00 +CWC04701,Chiller 1,RUL0017,2/11/21 0:00,2/12/21 0:00 +CWC04701,Chiller 1,RUL0017,2/12/21 0:00,2/13/21 0:00 +CWC04701,Chiller 1,RUL0017,2/13/21 0:00,2/14/21 0:00 +CWC04701,Chiller 1,RUL0017,2/14/21 0:00,2/15/21 0:00 +CWC04701,Chiller 1,RUL0017,2/15/21 0:00,2/16/21 0:00 +CWC04701,Chiller 1,RUL0017,2/16/21 0:00,2/17/21 0:00 +CWC04701,Chiller 1,RUL0012,2/16/21 20:45,2/17/21 0:00 +CWC04701,Chiller 1,RUL0017,2/17/21 0:00,2/18/21 0:00 +CWC04701,Chiller 1,RUL0012,2/17/21 0:00,2/17/21 5:45 +CWC04701,Chiller 1,RUL0017,2/18/21 0:00,2/19/21 0:00 +CWC04701,Chiller 1,RUL0017,2/19/21 0:00,2/20/21 0:00 +CWC04701,Chiller 1,RUL0017,2/20/21 0:00,2/21/21 0:00 +CWC04701,Chiller 1,RUL0017,2/21/21 0:00,2/22/21 0:00 +CWC04701,Chiller 1,RUL0017,2/22/21 0:00,2/23/21 0:00 +CWC04701,Chiller 1,RUL0017,2/23/21 0:00,2/24/21 0:00 +CWC04701,Chiller 1,RUL0017,2/24/21 0:00,2/25/21 0:00 +CWC04701,Chiller 1,RUL0012,2/24/21 12:30,2/24/21 14:45 +CWC04701,Chiller 1,RUL0017,2/25/21 0:00,2/26/21 0:00 +CWC04701,Chiller 1,RUL0012,2/25/21 12:45,2/26/21 0:00 +CWC04701,Chiller 1,RUL0017,2/26/21 0:00,2/27/21 0:00 +CWC04701,Chiller 1,RUL0018,2/26/21 0:00,2/26/21 4:15 +CWC04701,Chiller 1,RUL0012,2/26/21 0:00,2/26/21 8:15 +CWC04701,Chiller 1,RUL0017,2/27/21 0:00,2/28/21 0:00 +CWC04701,Chiller 1,RUL0017,2/28/21 0:00,3/1/21 0:00 +CWC04701,Chiller 1,RUL0017,3/1/21 0:00,3/2/21 0:00 +CWC04701,Chiller 1,RUL0017,3/2/21 0:00,3/3/21 0:00 +CWC04701,Chiller 1,RUL0017,3/3/21 0:00,3/4/21 0:00 +CWC04701,Chiller 1,RUL0017,3/4/21 0:00,3/5/21 0:00 +CWC04701,Chiller 1,RUL0017,3/5/21 0:00,3/6/21 0:00 +CWC04701,Chiller 1,RUL0017,3/6/21 0:00,3/7/21 0:00 +CWC04701,Chiller 1,RUL0017,3/7/21 0:00,3/8/21 0:00 +CWC04701,Chiller 1,RUL0017,3/8/21 0:00,3/9/21 0:00 +CWC04701,Chiller 1,RUL0017,3/9/21 0:00,3/10/21 0:00 +CWC04701,Chiller 1,RUL0017,3/10/21 0:00,3/11/21 0:00 +CWC04701,Chiller 1,RUL0017,3/11/21 0:00,3/12/21 0:00 +CWC04701,Chiller 1,RUL0017,3/12/21 0:00,3/13/21 0:00 +CWC04701,Chiller 1,RUL0017,3/13/21 0:00,3/14/21 0:00 +CWC04701,Chiller 1,RUL0017,3/14/21 0:00,3/14/21 23:00 +CWC04701,Chiller 1,RUL0017,3/15/21 0:00,3/16/21 0:00 +CWC04701,Chiller 1,RUL0017,3/16/21 0:00,3/17/21 0:00 +CWC04701,Chiller 1,RUL0017,3/17/21 0:00,3/18/21 0:00 +CWC04701,Chiller 1,RUL0017,3/18/21 0:00,3/19/21 0:00 +CWC04701,Chiller 1,RUL0012,3/18/21 12:30,3/19/21 0:00 +CWC04701,Chiller 1,RUL0017,3/19/21 0:00,3/20/21 0:00 +CWC04701,Chiller 1,RUL0012,3/19/21 0:00,3/19/21 22:00 +CWC04701,Chiller 1,RUL0017,3/20/21 0:00,3/21/21 0:00 +CWC04701,Chiller 1,RUL0012,3/20/21 17:30,3/21/21 0:00 +CWC04701,Chiller 1,RUL0017,3/21/21 0:00,3/21/21 8:30 +CWC04701,Chiller 1,RUL0012,3/21/21 0:00,3/21/21 6:45 +CWC04701,Chiller 1,RUL0022,9/16/21 2:45,9/16/21 10:45 +CWC04701,Chiller 1,RUL0022,2/14/23 7:15,2/14/23 16:00 +CWC04701,Chiller 1,RUL0022,2/15/23 0:00,2/15/23 7:00 +CWC04010,Chiller 10,RUL0018,6/22/20 7:35,6/22/20 23:59 +CWC04010,Chiller 10,RUL0018,6/23/20 0:00,6/24/20 0:00 +CWC04010,Chiller 10,RUL0018,6/24/20 0:00,6/24/20 7:52 +CWC04010,Chiller 10,RUL0018,6/26/20 11:12,6/26/20 21:20 +CWC04010,Chiller 10,RUL0018,7/16/20 8:00,7/16/20 19:45 +CWC04010,Chiller 10,RUL0018,7/25/20 10:58,7/25/20 17:21 +CWC04010,Chiller 10,RUL0018,7/25/20 19:03,7/26/20 0:00 +CWC04010,Chiller 10,RUL0018,7/27/20 8:59,7/27/20 16:15 +CWC04010,Chiller 10,RUL0018,7/27/20 18:30,7/27/20 22:30 +CWC04010,Chiller 10,RUL0018,8/3/20 0:00,8/3/20 5:15 +CWC04010,Chiller 10,RUL0018,8/20/20 12:15,8/20/20 22:00 +CWC04010,Chiller 10,RUL0018,6/9/21 16:15,6/9/21 19:50 +CWC04010,Chiller 10,RUL0022,11/11/21 11:00,11/11/21 16:00 +CWC04010,Chiller 10,RUL0022,11/12/21 9:45,11/12/21 16:00 +CWC04010,Chiller 10,RUL0022,11/13/21 0:00,11/13/21 6:00 +CWC04010,Chiller 10,RUL0022,11/15/21 12:15,11/15/21 16:00 +CWC04010,Chiller 10,RUL0022,11/16/21 0:00,11/16/21 10:30 +CWC04010,Chiller 10,RUL0022,11/16/21 11:15,11/16/21 16:00 +CWC04010,Chiller 10,RUL0022,11/17/21 0:00,11/17/21 11:30 +CWC04010,Chiller 10,RUL0022,11/17/21 11:45,11/17/21 16:00 +CWC04010,Chiller 10,RUL0022,11/18/21 0:00,11/18/21 6:45 +CWC04010,Chiller 10,RUL0022,6/1/22 6:45,6/1/22 10:00 +CWC04010,Chiller 10,RUL0022,10/31/22 9:00,10/31/22 16:00 +CWC04010,Chiller 10,RUL0022,11/1/22 2:30,11/1/22 16:00 +CWC04010,Chiller 10,RUL0022,11/2/22 0:00,11/2/22 16:00 +CWC04010,Chiller 10,RUL0022,11/3/22 0:00,11/3/22 7:15 +CWC04012,Chiller 12,RUL0018,3/20/20 15:15,3/21/20 0:00 +CWC04012,Chiller 12,RUL0018,3/21/20 0:00,3/22/20 0:00 +CWC04012,Chiller 12,RUL0018,3/22/20 0:00,3/23/20 0:00 +CWC04012,Chiller 12,RUL0018,3/23/20 0:00,3/23/20 11:30 +CWC04012,Chiller 12,RUL0018,3/23/20 11:45,3/23/20 17:53 +CWC04012,Chiller 12,RUL0018,3/23/20 17:53,3/23/20 23:59 +CWC04012,Chiller 12,RUL0018,3/24/20 0:00,3/24/20 9:35 +CWC04012,Chiller 12,RUL0018,3/25/20 10:30,3/26/20 0:00 +CWC04012,Chiller 12,RUL0018,3/26/20 0:00,3/26/20 10:45 +CWC04012,Chiller 12,RUL0018,3/26/20 11:30,3/27/20 0:00 +CWC04012,Chiller 12,RUL0018,3/27/20 0:00,3/28/20 0:00 +CWC04012,Chiller 12,RUL0018,3/28/20 0:00,3/29/20 0:00 +CWC04012,Chiller 12,RUL0018,3/29/20 0:00,3/30/20 0:00 +CWC04012,Chiller 12,RUL0018,3/30/20 0:00,3/30/20 8:33 +CWC04012,Chiller 12,RUL0018,3/30/20 10:09,3/31/20 0:00 +CWC04012,Chiller 12,RUL0018,3/31/20 0:00,3/31/20 5:12 +CWC04012,Chiller 12,RUL0018,3/31/20 5:21,3/31/20 23:59 +CWC04012,Chiller 12,RUL0018,4/1/20 0:00,4/1/20 8:19 +CWC04012,Chiller 12,RUL0018,4/1/20 9:00,4/2/20 0:00 +CWC04012,Chiller 12,RUL0018,4/2/20 0:00,4/2/20 15:50 +CWC04012,Chiller 12,RUL0018,4/2/20 15:50,4/2/20 23:59 +CWC04012,Chiller 12,RUL0018,4/3/20 0:00,4/4/20 0:00 +CWC04012,Chiller 12,RUL0018,4/4/20 0:00,4/5/20 0:00 +CWC04012,Chiller 12,RUL0018,4/5/20 0:00,4/6/20 0:00 +CWC04012,Chiller 12,RUL0018,4/6/20 0:00,4/6/20 8:28 +CWC04012,Chiller 12,RUL0018,4/6/20 20:15,4/7/20 0:00 +CWC04012,Chiller 12,RUL0018,4/7/20 0:00,4/7/20 11:30 +CWC04012,Chiller 12,RUL0018,4/7/20 12:15,4/8/20 0:00 +CWC04012,Chiller 12,RUL0018,4/8/20 0:00,4/9/20 0:00 +CWC04012,Chiller 12,RUL0018,4/9/20 0:00,4/10/20 0:00 +CWC04012,Chiller 12,RUL0018,4/10/20 0:00,4/11/20 0:00 +CWC04012,Chiller 12,RUL0018,4/11/20 0:00,4/12/20 0:00 +CWC04012,Chiller 12,RUL0018,4/12/20 0:00,4/13/20 0:00 +CWC04012,Chiller 12,RUL0018,4/13/20 0:00,4/14/20 0:00 +CWC04012,Chiller 12,RUL0018,4/14/20 0:00,4/15/20 0:00 +CWC04012,Chiller 12,RUL0018,4/15/20 0:00,4/16/20 0:00 +CWC04012,Chiller 12,RUL0018,4/16/20 0:00,4/17/20 0:00 +CWC04012,Chiller 12,RUL0018,4/17/20 0:00,4/18/20 0:00 +CWC04012,Chiller 12,RUL0018,4/18/20 0:00,4/19/20 0:00 +CWC04012,Chiller 12,RUL0018,4/19/20 0:00,4/20/20 0:00 +CWC04012,Chiller 12,RUL0018,4/20/20 0:00,4/21/20 0:00 +CWC04012,Chiller 12,RUL0018,4/21/20 0:00,4/22/20 0:00 +CWC04012,Chiller 12,RUL0018,4/22/20 0:00,4/23/20 0:00 +CWC04012,Chiller 12,RUL0018,4/23/20 0:00,4/24/20 0:00 +CWC04012,Chiller 12,RUL0018,4/24/20 0:00,4/25/20 0:00 +CWC04012,Chiller 12,RUL0018,4/25/20 1:30,4/26/20 0:00 +CWC04012,Chiller 12,RUL0018,4/26/20 0:00,4/27/20 0:00 +CWC04012,Chiller 12,RUL0018,4/27/20 0:00,4/28/20 0:00 +CWC04012,Chiller 12,RUL0018,4/28/20 0:00,4/29/20 0:00 +CWC04012,Chiller 12,RUL0018,4/29/20 0:00,4/30/20 0:00 +CWC04012,Chiller 12,RUL0018,4/30/20 0:00,5/1/20 0:00 +CWC04012,Chiller 12,RUL0018,5/1/20 0:00,5/2/20 0:00 +CWC04012,Chiller 12,RUL0018,5/2/20 0:00,5/3/20 0:00 +CWC04012,Chiller 12,RUL0018,5/3/20 0:00,5/4/20 0:00 +CWC04012,Chiller 12,RUL0018,5/4/20 0:00,5/5/20 0:00 +CWC04012,Chiller 12,RUL0018,5/5/20 0:00,5/6/20 0:00 +CWC04012,Chiller 12,RUL0018,5/6/20 0:00,5/7/20 0:00 +CWC04012,Chiller 12,RUL0018,5/7/20 0:00,5/8/20 0:00 +CWC04012,Chiller 12,RUL0018,5/8/20 0:00,5/9/20 0:00 +CWC04012,Chiller 12,RUL0018,5/9/20 0:00,5/9/20 10:37 +CWC04012,Chiller 12,RUL0018,5/9/20 10:37,5/9/20 23:15 +CWC04012,Chiller 12,RUL0018,5/10/20 0:00,5/11/20 0:00 +CWC04012,Chiller 12,RUL0018,5/15/20 17:45,5/16/20 0:00 +CWC04012,Chiller 12,RUL0018,5/16/20 0:00,5/17/20 0:00 +CWC04012,Chiller 12,RUL0018,5/17/20 0:00,5/18/20 0:00 +CWC04012,Chiller 12,RUL0018,5/18/20 0:00,5/18/20 8:45 +CWC04012,Chiller 12,RUL0018,5/18/20 9:00,5/19/20 0:00 +CWC04012,Chiller 12,RUL0018,5/19/20 0:00,5/19/20 17:00 +CWC04012,Chiller 12,RUL0018,5/19/20 18:15,5/20/20 0:00 +CWC04012,Chiller 12,RUL0018,5/20/20 2:15,5/20/20 14:15 +CWC04012,Chiller 12,RUL0018,5/20/20 14:30,5/21/20 0:00 +CWC04012,Chiller 12,RUL0018,5/21/20 1:30,5/21/20 5:25 +CWC04012,Chiller 12,RUL0018,5/21/20 12:45,5/22/20 0:00 +CWC04012,Chiller 12,RUL0018,5/22/20 0:00,5/22/20 16:45 +CWC04012,Chiller 12,RUL0018,5/22/20 17:00,5/23/20 0:00 +CWC04012,Chiller 12,RUL0018,5/23/20 0:00,5/24/20 0:00 +CWC04012,Chiller 12,RUL0018,5/24/20 0:45,5/25/20 0:00 +CWC04012,Chiller 12,RUL0018,5/25/20 0:00,5/26/20 0:00 +CWC04012,Chiller 12,RUL0018,5/26/20 0:00,5/26/20 13:00 +CWC04012,Chiller 12,RUL0018,5/26/20 19:15,5/27/20 0:00 +CWC04012,Chiller 12,RUL0018,5/27/20 0:00,5/27/20 11:50 +CWC04012,Chiller 12,RUL0018,5/28/20 0:00,5/28/20 8:30 +CWC04012,Chiller 12,RUL0018,5/28/20 10:30,5/28/20 18:30 +CWC04012,Chiller 12,RUL0018,9/25/20 9:30,9/25/20 19:30 +CWC04012,Chiller 12,RUL0018,9/26/20 9:15,9/27/20 0:00 +CWC04012,Chiller 12,RUL0018,9/27/20 9:15,9/28/20 0:00 +CWC04012,Chiller 12,RUL0018,9/28/20 0:00,9/28/20 5:19 +CWC04012,Chiller 12,RUL0018,9/28/20 9:30,9/29/20 0:00 +CWC04012,Chiller 12,RUL0018,9/29/20 0:00,9/29/20 9:18 +CWC04012,Chiller 12,RUL0018,9/29/20 13:15,9/29/20 23:00 +CWC04012,Chiller 12,RUL0018,9/30/20 12:45,9/30/20 15:45 +CWC04012,Chiller 12,RUL0018,10/3/20 10:15,10/3/20 13:45 +CWC04012,Chiller 12,RUL0018,10/3/20 14:00,10/3/20 18:30 +CWC04012,Chiller 12,RUL0018,10/4/20 10:45,10/4/20 13:45 +CWC04012,Chiller 12,RUL0018,10/4/20 14:00,10/4/20 18:30 +CWC04012,Chiller 12,RUL0018,10/5/20 9:15,10/5/20 21:30 +CWC04012,Chiller 12,RUL0018,10/6/20 7:45,10/6/20 19:30 +CWC04012,Chiller 12,RUL0018,10/7/20 9:30,10/7/20 19:00 +CWC04012,Chiller 12,RUL0018,10/8/20 6:15,10/8/20 18:00 +CWC04012,Chiller 12,RUL0018,10/9/20 3:15,10/9/20 20:45 +CWC04012,Chiller 12,RUL0018,10/10/20 3:45,10/10/20 8:45 +CWC04012,Chiller 12,RUL0018,10/10/20 9:30,10/10/20 20:15 +CWC04012,Chiller 12,RUL0018,10/11/20 0:00,10/11/20 3:45 +CWC04012,Chiller 12,RUL0018,10/11/20 10:30,10/11/20 20:15 +CWC04012,Chiller 12,RUL0018,10/12/20 4:30,10/12/20 19:00 +CWC04012,Chiller 12,RUL0018,10/13/20 4:00,10/13/20 12:15 +CWC04012,Chiller 12,RUL0018,10/14/20 14:11,10/14/20 19:44 +CWC04012,Chiller 12,RUL0018,11/17/20 16:00,11/18/20 0:00 +CWC04012,Chiller 12,RUL0018,11/18/20 0:00,11/19/20 0:00 +CWC04012,Chiller 12,RUL0018,11/19/20 0:00,11/19/20 14:00 +CWC04012,Chiller 12,RUL0018,11/19/20 14:30,11/19/20 22:30 +CWC04012,Chiller 12,RUL0018,11/20/20 0:00,11/20/20 11:03 +CWC04012,Chiller 12,RUL0018,11/20/20 11:03,11/21/20 0:00 +CWC04012,Chiller 12,RUL0018,11/21/20 0:00,11/22/20 0:00 +CWC04012,Chiller 12,RUL0018,11/22/20 0:00,11/22/20 19:45 +CWC04012,Chiller 12,RUL0018,11/22/20 20:00,11/23/20 0:00 +CWC04012,Chiller 12,RUL0018,11/23/20 2:15,11/24/20 0:00 +CWC04012,Chiller 12,RUL0018,11/24/20 0:00,11/25/20 0:00 +CWC04012,Chiller 12,RUL0018,11/25/20 0:00,11/26/20 0:00 +CWC04012,Chiller 12,RUL0018,11/26/20 0:00,11/27/20 0:00 +CWC04012,Chiller 12,RUL0018,11/27/20 0:00,11/28/20 0:00 +CWC04012,Chiller 12,RUL0018,11/28/20 0:00,11/29/20 0:00 +CWC04012,Chiller 12,RUL0018,11/29/20 0:00,11/30/20 0:00 +CWC04012,Chiller 12,RUL0018,11/30/20 0:00,11/30/20 10:16 +CWC04012,Chiller 12,RUL0012,4/15/21 16:25,4/15/21 19:37 +CWC04012,Chiller 12,RUL0022,9/16/21 2:45,9/16/21 10:45 +CWC04012,Chiller 12,RUL0022,9/23/21 6:00,9/23/21 11:30 +CWC04012,Chiller 12,RUL0022,9/30/21 12:15,9/30/21 16:00 +CWC04012,Chiller 12,RUL0022,10/1/21 0:00,10/1/21 12:00 +CWC04012,Chiller 12,RUL0022,10/4/21 7:30,10/4/21 9:30 +CWC04012,Chiller 12,RUL0018,10/7/21 10:11,10/7/21 18:00 +CWC04012,Chiller 12,RUL0022,10/19/21 6:45,10/19/21 11:15 +CWC04012,Chiller 12,RUL0022,10/26/21 3:45,10/26/21 16:00 +CWC04012,Chiller 12,RUL0022,10/27/21 0:00,10/27/21 16:00 +CWC04012,Chiller 12,RUL0022,10/28/21 0:00,10/28/21 16:00 +CWC04012,Chiller 12,RUL0022,10/29/21 0:00,10/29/21 16:00 +CWC04012,Chiller 12,RUL0022,10/30/21 0:00,10/30/21 16:00 +CWC04012,Chiller 12,RUL0022,10/31/21 0:00,10/31/21 16:00 +CWC04012,Chiller 12,RUL0022,11/1/21 0:00,11/1/21 1:30 +CWC04012,Chiller 12,RUL0018,11/1/21 3:47,11/1/21 7:44 +CWC04012,Chiller 12,RUL0018,11/1/21 9:30,11/1/21 14:30 +CWC04012,Chiller 12,RUL0018,11/1/21 14:45,11/2/21 0:00 +CWC04012,Chiller 12,RUL0018,11/2/21 0:00,11/2/21 11:30 +CWC04012,Chiller 12,RUL0022,11/3/21 7:15,11/3/21 13:15 +CWC04012,Chiller 12,RUL0022,11/9/21 9:30,11/9/21 16:00 +CWC04012,Chiller 12,RUL0022,11/10/21 0:00,11/10/21 5:00 +CWC04012,Chiller 12,RUL0022,11/16/21 2:30,11/16/21 16:00 +CWC04012,Chiller 12,RUL0022,11/17/21 0:00,11/17/21 7:30 +CWC04012,Chiller 12,RUL0022,11/17/21 7:45,11/17/21 16:00 +CWC04012,Chiller 12,RUL0018,11/17/21 8:01,11/17/21 11:15 +CWC04012,Chiller 12,RUL0022,11/18/21 0:00,11/18/21 6:30 +CWC04012,Chiller 12,RUL0018,11/18/21 7:45,11/18/21 23:59 +CWC04012,Chiller 12,RUL0018,11/19/21 0:00,11/20/21 0:00 +CWC04012,Chiller 12,RUL0018,11/20/21 0:00,11/21/21 0:00 +CWC04012,Chiller 12,RUL0018,11/21/21 0:00,11/22/21 0:00 +CWC04012,Chiller 12,RUL0018,11/22/21 0:00,11/22/21 17:59 +CWC04012,Chiller 12,RUL0018,11/22/21 18:04,11/23/21 0:00 +CWC04012,Chiller 12,RUL0018,11/23/21 0:00,11/24/21 0:00 +CWC04012,Chiller 12,RUL0018,11/24/21 0:00,11/24/21 22:16 +CWC04012,Chiller 12,RUL0018,11/25/21 0:00,11/26/21 0:00 +CWC04012,Chiller 12,RUL0018,11/26/21 0:00,11/26/21 5:28 +CWC04012,Chiller 12,RUL0018,11/26/21 5:32,11/26/21 23:59 +CWC04012,Chiller 12,RUL0018,11/27/21 0:00,11/27/21 12:20 +CWC04012,Chiller 12,RUL0022,8/30/22 7:00,8/30/22 11:30 +CWC04012,Chiller 12,RUL0022,8/31/22 5:45,8/31/22 16:00 +CWC04012,Chiller 12,RUL0022,9/1/22 0:00,9/1/22 16:00 +CWC04012,Chiller 12,RUL0022,9/2/22 0:00,9/2/22 6:30 +CWC04012,Chiller 12,RUL0022,10/12/22 8:15,10/12/22 16:00 +CWC04012,Chiller 12,RUL0022,10/13/22 0:00,10/13/22 16:00 +CWC04012,Chiller 12,RUL0022,10/14/22 0:00,10/14/22 16:00 +CWC04012,Chiller 12,RUL0022,10/15/22 0:00,10/15/22 16:00 +CWC04012,Chiller 12,RUL0022,10/16/22 0:00,10/16/22 16:00 +CWC04012,Chiller 12,RUL0022,10/17/22 0:00,10/17/22 16:00 +CWC04012,Chiller 12,RUL0018,10/18/22 0:51,10/18/22 9:45 +CWC04012,Chiller 12,RUL0022,10/18/22 7:15,10/18/22 16:00 +CWC04012,Chiller 12,RUL0018,10/18/22 10:30,10/18/22 13:35 +CWC04012,Chiller 12,RUL0022,10/19/22 0:00,10/19/22 12:00 +CWC04012,Chiller 12,RUL0022,10/25/22 3:00,10/25/22 13:15 +CWC04012,Chiller 12,RUL0022,10/26/22 3:45,10/26/22 10:00 +CWC04012,Chiller 12,RUL0018,10/27/22 14:18,10/27/22 23:59 +CWC04012,Chiller 12,RUL0018,10/28/22 0:00,10/28/22 16:27 +CWC04012,Chiller 12,RUL0022,11/3/22 4:45,11/3/22 16:00 +CWC04012,Chiller 12,RUL0022,11/4/22 0:00,11/4/22 6:00 +CWC04012,Chiller 12,RUL0022,11/5/22 4:45,11/5/22 16:00 +CWC04012,Chiller 12,RUL0022,11/6/22 0:00,11/6/22 17:00 +CWC04012,Chiller 12,RUL0022,11/7/22 0:00,11/7/22 16:00 +CWC04012,Chiller 12,RUL0022,11/8/22 0:00,11/8/22 16:00 +CWC04012,Chiller 12,RUL0022,11/9/22 0:00,11/9/22 16:00 +CWC04012,Chiller 12,RUL0022,11/10/22 0:00,11/10/22 16:00 +CWC04012,Chiller 12,RUL0022,11/11/22 0:00,11/11/22 7:15 +CWC04012,Chiller 12,RUL0022,11/14/22 5:45,11/14/22 16:00 +CWC04012,Chiller 12,RUL0022,11/15/22 0:00,11/15/22 16:00 +CWC04012,Chiller 12,RUL0022,11/16/22 0:00,11/16/22 16:00 +CWC04012,Chiller 12,RUL0022,11/17/22 0:00,11/17/22 16:00 +CWC04012,Chiller 12,RUL0022,11/18/22 0:00,11/18/22 16:00 +CWC04012,Chiller 12,RUL0018,11/19/22 0:00,11/20/22 0:00 +CWC04012,Chiller 12,RUL0018,11/20/22 0:00,11/20/22 8:28 +CWC04012,Chiller 12,RUL0022,11/20/22 3:45,11/20/22 16:00 +CWC04012,Chiller 12,RUL0022,11/21/22 0:00,11/21/22 16:00 +CWC04012,Chiller 12,RUL0022,11/22/22 0:00,11/22/22 16:00 +CWC04012,Chiller 12,RUL0022,11/23/22 0:00,11/23/22 16:00 +CWC04012,Chiller 12,RUL0018,11/24/22 0:00,11/24/22 9:45 +CWC04012,Chiller 12,RUL0022,11/24/22 4:15,11/24/22 16:00 +CWC04012,Chiller 12,RUL0022,11/25/22 0:00,11/25/22 16:00 +CWC04012,Chiller 12,RUL0018,11/26/22 1:12,11/26/22 23:59 +CWC04012,Chiller 12,RUL0018,11/27/22 0:00,11/27/22 21:45 +CWC04012,Chiller 12,RUL0018,11/28/22 0:00,11/29/22 0:00 +CWC04012,Chiller 12,RUL0022,11/29/22 0:00,11/29/22 16:00 +CWC04012,Chiller 12,RUL0022,11/30/22 0:00,11/30/22 16:00 +CWC04012,Chiller 12,RUL0022,12/1/22 0:00,12/1/22 11:00 +CWC04013,Chiller 13,RUL0022,6/1/22 5:45,6/1/22 10:45 +CWC04014,Chiller 14,RUL0018,6/9/20 11:30,6/9/20 14:30 +CWC04014,Chiller 14,RUL0018,6/11/20 8:30,6/12/20 0:00 +CWC04014,Chiller 14,RUL0018,6/12/20 0:00,6/13/20 0:00 +CWC04014,Chiller 14,RUL0018,6/13/20 0:00,6/14/20 0:00 +CWC04014,Chiller 14,RUL0018,6/14/20 0:00,6/15/20 0:00 +CWC04014,Chiller 14,RUL0018,6/15/20 0:00,6/16/20 0:00 +CWC04014,Chiller 14,RUL0018,6/16/20 0:00,6/16/20 3:55 +CWC04014,Chiller 14,RUL0018,6/16/20 3:56,6/16/20 23:59 +CWC04014,Chiller 14,RUL0018,6/17/20 0:00,6/18/20 0:00 +CWC04014,Chiller 14,RUL0018,6/18/20 0:00,6/19/20 0:00 +CWC04014,Chiller 14,RUL0018,6/19/20 0:00,6/20/20 0:00 +CWC04014,Chiller 14,RUL0018,6/20/20 0:00,6/21/20 0:00 +CWC04014,Chiller 14,RUL0018,6/21/20 0:00,6/22/20 0:00 +CWC04014,Chiller 14,RUL0018,6/22/20 0:00,6/22/20 3:09 +CWC04014,Chiller 14,RUL0018,6/22/20 3:09,6/23/20 0:00 +CWC04014,Chiller 14,RUL0018,6/23/20 0:00,6/24/20 0:00 +CWC04014,Chiller 14,RUL0018,6/24/20 0:00,6/24/20 7:52 +CWC04014,Chiller 14,RUL0018,6/24/20 10:25,6/25/20 0:00 +CWC04014,Chiller 14,RUL0018,6/25/20 0:00,6/26/20 0:00 +CWC04014,Chiller 14,RUL0018,6/26/20 0:00,6/27/20 0:00 +CWC04014,Chiller 14,RUL0018,6/27/20 0:00,6/28/20 0:00 +CWC04014,Chiller 14,RUL0018,6/28/20 0:00,6/29/20 0:00 +CWC04014,Chiller 14,RUL0018,6/29/20 0:00,6/30/20 0:00 +CWC04014,Chiller 14,RUL0018,6/30/20 0:00,7/1/20 0:00 +CWC04014,Chiller 14,RUL0018,7/1/20 0:00,7/2/20 0:00 +CWC04014,Chiller 14,RUL0018,7/2/20 0:00,7/3/20 0:00 +CWC04014,Chiller 14,RUL0018,7/3/20 0:00,7/4/20 0:00 +CWC04014,Chiller 14,RUL0018,7/4/20 0:00,7/5/20 0:00 +CWC04014,Chiller 14,RUL0018,7/5/20 0:00,7/6/20 0:00 +CWC04014,Chiller 14,RUL0018,7/6/20 0:00,7/7/20 0:00 +CWC04014,Chiller 14,RUL0018,7/7/20 0:00,7/8/20 0:00 +CWC04014,Chiller 14,RUL0018,7/8/20 0:00,7/9/20 0:00 +CWC04014,Chiller 14,RUL0018,7/9/20 0:00,7/10/20 0:00 +CWC04014,Chiller 14,RUL0018,7/10/20 0:00,7/11/20 0:00 +CWC04014,Chiller 14,RUL0018,7/11/20 0:00,7/12/20 0:00 +CWC04014,Chiller 14,RUL0018,7/12/20 0:00,7/13/20 0:00 +CWC04014,Chiller 14,RUL0018,7/13/20 0:00,7/14/20 0:00 +CWC04014,Chiller 14,RUL0018,7/14/20 0:00,7/15/20 0:00 +CWC04014,Chiller 14,RUL0018,7/15/20 0:00,7/15/20 4:59 +CWC04014,Chiller 14,RUL0018,7/15/20 5:00,7/15/20 23:59 +CWC04014,Chiller 14,RUL0018,7/16/20 1:40,7/17/20 0:00 +CWC04014,Chiller 14,RUL0018,7/17/20 0:00,7/18/20 0:00 +CWC04014,Chiller 14,RUL0018,7/18/20 0:00,7/19/20 0:00 +CWC04014,Chiller 14,RUL0018,7/19/20 0:00,7/20/20 0:00 +CWC04014,Chiller 14,RUL0018,7/20/20 0:00,7/21/20 0:00 +CWC04014,Chiller 14,RUL0018,7/21/20 0:00,7/22/20 0:00 +CWC04014,Chiller 14,RUL0018,7/22/20 0:00,7/23/20 0:00 +CWC04014,Chiller 14,RUL0018,7/23/20 0:00,7/24/20 0:00 +CWC04014,Chiller 14,RUL0018,7/24/20 0:00,7/25/20 0:00 +CWC04014,Chiller 14,RUL0018,7/25/20 0:00,7/25/20 17:21 +CWC04014,Chiller 14,RUL0018,7/25/20 19:03,7/26/20 0:00 +CWC04014,Chiller 14,RUL0018,7/26/20 0:00,7/26/20 15:07 +CWC04014,Chiller 14,RUL0018,7/26/20 15:07,7/27/20 0:00 +CWC04014,Chiller 14,RUL0018,7/27/20 0:00,7/28/20 0:00 +CWC04014,Chiller 14,RUL0018,7/28/20 0:00,7/28/20 9:00 +CWC04014,Chiller 14,RUL0018,7/28/20 9:15,7/29/20 0:00 +CWC04014,Chiller 14,RUL0018,7/29/20 0:00,7/30/20 0:00 +CWC04014,Chiller 14,RUL0018,7/30/20 0:00,7/31/20 0:00 +CWC04014,Chiller 14,RUL0018,7/31/20 0:36,8/1/20 0:00 +CWC04014,Chiller 14,RUL0018,8/1/20 0:00,8/2/20 0:00 +CWC04014,Chiller 14,RUL0018,8/2/20 0:00,8/3/20 0:00 +CWC04014,Chiller 14,RUL0018,8/3/20 0:00,8/4/20 0:00 +CWC04014,Chiller 14,RUL0018,8/4/20 0:00,8/4/20 14:36 +CWC04014,Chiller 14,RUL0018,8/10/20 13:30,8/11/20 0:00 +CWC04014,Chiller 14,RUL0018,8/11/20 0:00,8/11/20 18:15 +CWC04014,Chiller 14,RUL0018,8/11/20 19:30,8/12/20 0:00 +CWC04014,Chiller 14,RUL0018,8/12/20 0:00,8/13/20 0:00 +CWC04014,Chiller 14,RUL0018,8/13/20 0:00,8/14/20 0:00 +CWC04014,Chiller 14,RUL0018,8/14/20 0:00,8/15/20 0:00 +CWC04014,Chiller 14,RUL0018,8/15/20 0:00,8/16/20 0:00 +CWC04014,Chiller 14,RUL0018,8/16/20 0:00,8/17/20 0:00 +CWC04014,Chiller 14,RUL0018,8/17/20 0:00,8/17/20 3:04 +CWC04014,Chiller 14,RUL0018,8/17/20 3:03,8/17/20 23:59 +CWC04014,Chiller 14,RUL0018,8/18/20 0:00,8/18/20 23:36 +CWC04014,Chiller 14,RUL0018,8/19/20 13:00,8/19/20 17:41 +CWC04014,Chiller 14,RUL0018,8/20/20 8:17,8/21/20 0:00 +CWC04014,Chiller 14,RUL0018,8/21/20 0:00,8/21/20 10:14 +CWC04014,Chiller 14,RUL0018,8/21/20 11:01,8/21/20 23:59 +CWC04014,Chiller 14,RUL0018,8/22/20 0:00,8/23/20 0:00 +CWC04014,Chiller 14,RUL0018,8/23/20 0:00,8/24/20 0:00 +CWC04014,Chiller 14,RUL0018,8/24/20 0:00,8/25/20 0:00 +CWC04014,Chiller 14,RUL0018,8/25/20 0:00,8/26/20 0:00 +CWC04014,Chiller 14,RUL0018,8/26/20 0:00,8/27/20 0:00 +CWC04014,Chiller 14,RUL0018,8/27/20 0:00,8/28/20 0:00 +CWC04014,Chiller 14,RUL0018,8/28/20 0:00,8/29/20 0:00 +CWC04014,Chiller 14,RUL0018,8/29/20 0:00,8/30/20 0:00 +CWC04014,Chiller 14,RUL0018,8/30/20 0:00,8/31/20 0:00 +CWC04014,Chiller 14,RUL0018,8/31/20 0:00,8/31/20 22:56 +CWC04014,Chiller 14,RUL0018,9/15/21 10:45,9/16/21 0:00 +CWC04014,Chiller 14,RUL0018,9/16/21 0:00,9/16/21 8:34 +CWC04014,Chiller 14,RUL0022,9/16/21 3:15,9/16/21 10:45 +CWC04014,Chiller 14,RUL0022,9/22/21 9:45,9/22/21 15:15 +CWC04014,Chiller 14,RUL0022,8/30/22 7:00,8/30/22 11:30 +CWC04014,Chiller 14,RUL0022,8/31/22 5:45,8/31/22 16:00 +CWC04014,Chiller 14,RUL0022,9/1/22 0:00,9/1/22 16:00 +CWC04014,Chiller 14,RUL0022,9/2/22 0:00,9/2/22 16:00 +CWC04014,Chiller 14,RUL0022,9/3/22 0:00,9/3/22 16:00 +CWC04014,Chiller 14,RUL0022,9/4/22 0:00,9/4/22 13:00 +CWC04702,Chiller 2,RUL0018,3/9/20 16:00,3/9/20 20:00 +CWC04702,Chiller 2,RUL0018,3/9/20 20:15,3/9/20 23:15 +CWC04702,Chiller 2,RUL0018,3/10/20 6:15,3/10/20 16:30 +CWC04702,Chiller 2,RUL0018,3/11/20 1:45,3/11/20 6:00 +CWC04702,Chiller 2,RUL0018,3/18/20 0:00,3/18/20 4:28 +CWC04702,Chiller 2,RUL0018,3/18/20 4:28,3/18/20 19:30 +CWC04702,Chiller 2,RUL0018,3/18/20 19:45,3/19/20 0:00 +CWC04702,Chiller 2,RUL0018,3/19/20 0:30,3/19/20 10:45 +CWC04702,Chiller 2,RUL0018,3/19/20 11:30,3/19/20 14:45 +CWC04702,Chiller 2,RUL0018,3/20/20 10:30,3/20/20 13:30 +CWC04702,Chiller 2,RUL0018,3/21/20 2:15,3/22/20 0:00 +CWC04702,Chiller 2,RUL0018,3/26/20 14:45,3/26/20 18:15 +CWC04702,Chiller 2,RUL0018,3/27/20 11:30,3/28/20 0:00 +CWC04702,Chiller 2,RUL0018,3/28/20 2:30,3/28/20 14:15 +CWC04702,Chiller 2,RUL0018,3/28/20 14:30,3/28/20 20:15 +CWC04702,Chiller 2,RUL0018,3/28/20 20:30,3/29/20 0:00 +CWC04702,Chiller 2,RUL0018,3/30/20 2:30,3/30/20 8:33 +CWC04702,Chiller 2,RUL0018,3/30/20 10:09,3/30/20 17:45 +CWC04702,Chiller 2,RUL0018,3/31/20 0:30,3/31/20 7:00 +CWC04702,Chiller 2,RUL0018,3/31/20 7:15,3/31/20 23:00 +CWC04702,Chiller 2,RUL0018,4/1/20 0:00,4/1/20 8:19 +CWC04702,Chiller 2,RUL0018,4/1/20 9:00,4/2/20 0:00 +CWC04702,Chiller 2,RUL0018,4/2/20 0:00,4/2/20 15:45 +CWC04702,Chiller 2,RUL0018,4/2/20 19:45,4/3/20 0:00 +CWC04702,Chiller 2,RUL0018,4/3/20 0:00,4/3/20 14:30 +CWC04702,Chiller 2,RUL0018,4/4/20 7:45,4/4/20 10:45 +CWC04702,Chiller 2,RUL0018,4/6/20 6:45,4/6/20 13:30 +CWC04702,Chiller 2,RUL0018,4/6/20 13:45,4/6/20 21:30 +CWC04702,Chiller 2,RUL0018,4/7/20 0:00,4/7/20 10:15 +CWC04702,Chiller 2,RUL0018,9/22/20 3:15,9/22/20 9:45 +CWC04702,Chiller 2,RUL0018,11/5/20 4:30,11/5/20 9:45 +CWC04702,Chiller 2,RUL0018,11/9/20 1:30,11/9/20 10:15 +CWC04702,Chiller 2,RUL0022,10/14/22 6:45,10/14/22 16:00 +CWC04702,Chiller 2,RUL0022,10/15/22 0:00,10/15/22 16:00 +CWC04702,Chiller 2,RUL0022,10/16/22 0:00,10/16/22 16:00 +CWC04702,Chiller 2,RUL0022,10/17/22 0:00,10/17/22 16:00 +CWC04702,Chiller 2,RUL0022,10/18/22 7:15,10/18/22 16:00 +CWC04702,Chiller 2,RUL0022,10/19/22 0:00,10/19/22 12:00 +CWC04702,Chiller 2,RUL0022,11/16/22 4:30,11/16/22 16:00 +CWC04702,Chiller 2,RUL0022,11/17/22 0:00,11/17/22 16:00 +CWC04702,Chiller 2,RUL0022,11/18/22 0:00,11/18/22 16:00 +CWC04702,Chiller 2,RUL0022,11/20/22 3:45,11/20/22 16:00 +CWC04702,Chiller 2,RUL0022,11/21/22 0:00,11/21/22 16:00 +CWC04702,Chiller 2,RUL0022,11/22/22 0:00,11/22/22 4:00 +CWC04702,Chiller 2,RUL0022,11/22/22 4:30,11/22/22 16:00 +CWC04702,Chiller 2,RUL0022,11/23/22 0:00,11/23/22 6:45 +CWC04702,Chiller 2,RUL0022,2/15/23 3:30,2/15/23 16:00 +CWC04702,Chiller 2,RUL0022,2/16/23 0:00,2/16/23 11:15 +CWC04703,Chiller 3,RUL0017,6/4/20 3:15,6/4/20 10:30 +CWC04703,Chiller 3,RUL0012,6/4/20 3:15,6/4/20 10:45 +CWC04703,Chiller 3,RUL0021,6/6/20 11:42,6/6/20 23:59 +CWC04703,Chiller 3,RUL0021,6/7/20 0:00,6/8/20 0:00 +CWC04703,Chiller 3,RUL0021,6/8/20 0:00,6/8/20 8:00 +CWC04703,Chiller 3,RUL0021,9/29/20 9:17,9/29/20 12:41 +CWC04703,Chiller 3,RUL0022,9/22/21 9:45,9/22/21 15:15 +CWC04703,Chiller 3,RUL0022,9/24/21 5:45,9/24/21 10:15 +CWC04704,Chiller 4,RUL0018,2/5/20 4:00,2/5/20 7:01 +CWC04704,Chiller 4,RUL0018,2/24/20 20:15,2/25/20 0:00 +CWC04704,Chiller 4,RUL0018,2/26/20 7:00,2/26/20 13:45 +CWC04704,Chiller 4,RUL0018,3/12/20 1:45,3/12/20 8:15 +CWC04704,Chiller 4,RUL0018,3/12/20 8:30,3/12/20 12:30 +CWC04704,Chiller 4,RUL0018,3/14/20 10:00,3/15/20 0:00 +CWC04704,Chiller 4,RUL0018,3/15/20 0:00,3/16/20 0:00 +CWC04704,Chiller 4,RUL0018,3/16/20 0:00,3/16/20 15:30 +CWC04704,Chiller 4,RUL0018,3/16/20 15:45,3/16/20 20:00 +CWC04704,Chiller 4,RUL0018,4/10/20 0:30,4/10/20 4:45 +CWC04704,Chiller 4,RUL0018,4/10/20 7:45,4/10/20 12:00 +CWC04704,Chiller 4,RUL0018,4/11/20 2:00,4/11/20 7:00 +CWC04704,Chiller 4,RUL0018,4/11/20 9:45,4/11/20 12:45 +CWC04704,Chiller 4,RUL0018,4/12/20 1:45,4/12/20 8:15 +CWC04704,Chiller 4,RUL0018,4/14/20 1:30,4/14/20 8:00 +CWC04704,Chiller 4,RUL0018,4/14/20 9:00,4/14/20 15:15 +CWC04704,Chiller 4,RUL0018,4/14/20 17:30,4/14/20 20:30 +CWC04704,Chiller 4,RUL0018,4/15/20 5:45,4/15/20 16:30 +CWC04704,Chiller 4,RUL0018,4/15/20 16:45,4/16/20 0:00 +CWC04704,Chiller 4,RUL0018,4/16/20 5:00,4/16/20 9:00 +CWC04704,Chiller 4,RUL0018,4/16/20 9:15,4/16/20 15:45 +CWC04704,Chiller 4,RUL0018,4/16/20 16:00,4/16/20 20:00 +CWC04704,Chiller 4,RUL0018,4/17/20 0:15,4/17/20 14:15 +CWC04704,Chiller 4,RUL0018,4/17/20 14:30,4/17/20 19:15 +CWC04704,Chiller 4,RUL0018,4/17/20 21:00,4/18/20 0:00 +CWC04704,Chiller 4,RUL0018,4/18/20 0:00,4/18/20 13:15 +CWC04704,Chiller 4,RUL0018,4/19/20 2:45,4/19/20 10:15 +CWC04704,Chiller 4,RUL0018,4/20/20 18:15,4/21/20 0:00 +CWC04704,Chiller 4,RUL0018,4/21/20 0:00,4/21/20 9:07 +CWC04704,Chiller 4,RUL0018,4/22/20 14:15,4/22/20 23:30 +CWC04704,Chiller 4,RUL0018,4/28/20 0:15,4/28/20 3:15 +CWC04704,Chiller 4,RUL0018,5/5/20 8:15,5/5/20 14:45 +CWC04704,Chiller 4,RUL0018,5/6/20 0:00,5/6/20 3:30 +CWC04704,Chiller 4,RUL0018,5/12/20 8:45,5/12/20 12:00 +CWC04704,Chiller 4,RUL0018,5/12/20 16:00,5/12/20 19:45 +CWC04704,Chiller 4,RUL0018,5/12/20 20:15,5/13/20 0:00 +CWC04704,Chiller 4,RUL0018,5/13/20 4:15,5/13/20 10:45 +CWC04704,Chiller 4,RUL0018,5/14/20 4:15,5/14/20 9:00 +CWC04704,Chiller 4,RUL0018,5/20/20 20:15,5/21/20 0:00 +CWC04704,Chiller 4,RUL0018,5/21/20 0:00,5/21/20 4:15 +CWC04704,Chiller 4,RUL0018,5/23/20 20:45,5/24/20 0:00 +CWC04704,Chiller 4,RUL0018,5/24/20 0:00,5/24/20 4:45 +CWC04704,Chiller 4,RUL0021,6/6/20 11:42,6/6/20 23:59 +CWC04704,Chiller 4,RUL0021,6/7/20 0:00,6/8/20 0:00 +CWC04704,Chiller 4,RUL0021,6/8/20 0:00,6/8/20 8:00 +CWC04704,Chiller 4,RUL0021,8/19/20 0:00,8/19/20 10:45 +CWC04704,Chiller 4,RUL0021,8/19/20 17:41,8/20/20 0:00 +CWC04704,Chiller 4,RUL0021,8/20/20 0:00,8/20/20 8:17 +CWC04704,Chiller 4,RUL0018,9/23/20 2:30,9/23/20 8:00 +CWC04704,Chiller 4,RUL0021,9/29/20 9:17,9/29/20 12:41 +CWC04704,Chiller 4,RUL0018,10/3/20 3:15,10/3/20 7:45 +CWC04704,Chiller 4,RUL0018,10/4/20 5:00,10/4/20 9:15 +CWC04704,Chiller 4,RUL0018,10/8/20 18:30,10/8/20 23:00 +CWC04704,Chiller 4,RUL0018,10/9/20 3:00,10/9/20 11:45 +CWC04704,Chiller 4,RUL0018,10/12/20 11:45,10/12/20 15:00 +CWC04704,Chiller 4,RUL0021,10/13/20 13:25,10/14/20 0:00 +CWC04704,Chiller 4,RUL0021,10/14/20 0:00,10/14/20 14:12 +CWC04704,Chiller 4,RUL0018,10/14/20 20:15,10/14/20 23:45 +CWC04704,Chiller 4,RUL0018,10/17/20 0:45,10/17/20 3:45 +CWC04704,Chiller 4,RUL0018,10/17/20 6:30,10/17/20 11:45 +CWC04704,Chiller 4,RUL0018,10/17/20 14:15,10/17/20 20:00 +CWC04704,Chiller 4,RUL0018,10/17/20 20:15,10/18/20 0:00 +CWC04704,Chiller 4,RUL0018,10/18/20 0:00,10/18/20 3:00 +CWC04704,Chiller 4,RUL0018,10/18/20 4:30,10/18/20 12:45 +CWC04704,Chiller 4,RUL0021,10/21/20 16:11,10/21/20 23:59 +CWC04704,Chiller 4,RUL0021,10/22/20 0:00,10/22/20 10:06 +CWC04704,Chiller 4,RUL0018,10/24/20 17:45,10/24/20 22:15 +CWC04704,Chiller 4,RUL0018,10/25/20 0:00,10/25/20 20:15 +CWC04704,Chiller 4,RUL0021,10/26/20 0:00,10/26/20 11:15 +CWC04704,Chiller 4,RUL0018,10/27/20 15:45,10/28/20 0:00 +CWC04704,Chiller 4,RUL0018,10/28/20 0:00,10/28/20 3:15 +CWC04704,Chiller 4,RUL0018,10/28/20 6:00,10/28/20 11:30 +CWC04704,Chiller 4,RUL0018,10/29/20 14:45,10/29/20 17:45 +CWC04704,Chiller 4,RUL0018,10/29/20 19:45,10/30/20 0:00 +CWC04704,Chiller 4,RUL0018,10/30/20 0:15,10/30/20 10:15 +CWC04704,Chiller 4,RUL0018,10/30/20 12:45,10/30/20 21:45 +CWC04704,Chiller 4,RUL0018,11/1/20 12:48,11/1/20 16:00 +CWC04704,Chiller 4,RUL0018,11/1/20 20:00,11/2/20 1:00 +CWC04704,Chiller 4,RUL0018,11/2/20 0:00,11/2/20 18:30 +CWC04704,Chiller 4,RUL0018,1/16/21 12:30,1/17/21 0:00 +CWC04704,Chiller 4,RUL0018,1/17/21 0:00,1/18/21 0:00 +CWC04704,Chiller 4,RUL0018,1/18/21 0:00,1/18/21 22:13 +CWC04704,Chiller 4,RUL0018,2/16/21 13:15,2/16/21 22:54 +CWC04704,Chiller 4,RUL0018,2/24/21 14:30,2/25/21 0:00 +CWC04704,Chiller 4,RUL0017,2/25/21 1:30,2/25/21 12:45 +CWC04704,Chiller 4,RUL0018,2/25/21 12:45,2/25/21 22:59 +CWC04704,Chiller 4,RUL0017,3/9/21 10:26,3/10/21 0:00 +CWC04704,Chiller 4,RUL0012,3/9/21 10:26,3/10/21 0:00 +CWC04704,Chiller 4,RUL0017,3/10/21 13:43,3/10/21 23:59 +CWC04704,Chiller 4,RUL0012,3/10/21 13:43,3/10/21 23:59 +CWC04704,Chiller 4,RUL0017,3/11/21 0:00,3/12/21 0:00 +CWC04704,Chiller 4,RUL0012,3/11/21 0:00,3/12/21 0:00 +CWC04704,Chiller 4,RUL0017,3/12/21 0:00,3/13/21 0:00 +CWC04704,Chiller 4,RUL0012,3/12/21 0:00,3/13/21 0:00 +CWC04704,Chiller 4,RUL0018,3/18/21 11:04,3/19/21 0:00 +CWC04704,Chiller 4,RUL0018,3/19/21 0:00,3/19/21 5:12 +CWC04704,Chiller 4,RUL0018,3/20/21 6:37,3/20/21 23:59 +CWC04704,Chiller 4,RUL0018,3/22/21 9:03,3/23/21 0:00 +CWC04704,Chiller 4,RUL0018,3/23/21 0:00,3/23/21 15:45 +CWC04704,Chiller 4,RUL0018,3/23/21 16:00,3/24/21 0:00 +CWC04704,Chiller 4,RUL0018,3/24/21 0:00,3/24/21 15:30 +CWC04704,Chiller 4,RUL0018,3/24/21 18:15,3/25/21 0:00 +CWC04704,Chiller 4,RUL0018,3/25/21 0:00,3/25/21 11:30 +CWC04704,Chiller 4,RUL0018,3/26/21 0:00,3/26/21 10:45 +CWC04704,Chiller 4,RUL0018,3/26/21 14:30,3/27/21 0:00 +CWC04704,Chiller 4,RUL0018,3/27/21 0:00,3/28/21 0:00 +CWC04704,Chiller 4,RUL0018,3/28/21 0:00,3/29/21 0:00 +CWC04704,Chiller 4,RUL0018,3/29/21 0:00,3/30/21 0:00 +CWC04704,Chiller 4,RUL0018,3/30/21 12:30,3/31/21 0:00 +CWC04704,Chiller 4,RUL0018,3/31/21 0:00,3/31/21 16:15 +CWC04704,Chiller 4,RUL0018,4/1/21 0:00,4/2/21 0:00 +CWC04704,Chiller 4,RUL0017,4/15/21 16:25,4/15/21 19:37 +CWC04704,Chiller 4,RUL0018,4/15/21 16:25,4/15/21 19:37 +CWC04704,Chiller 4,RUL0012,4/15/21 16:25,4/15/21 19:37 +CWC04704,Chiller 4,RUL0018,9/15/21 10:45,9/16/21 0:00 +CWC04704,Chiller 4,RUL0018,9/16/21 0:00,9/16/21 8:28 +CWC04704,Chiller 4,RUL0022,9/22/21 9:00,9/22/21 16:00 +CWC04704,Chiller 4,RUL0022,9/23/21 5:45,9/23/21 10:15 +CWC04704,Chiller 4,RUL0022,9/24/21 4:00,9/24/21 10:15 +CWC04704,Chiller 4,RUL0022,9/25/21 5:30,9/25/21 16:00 +CWC04704,Chiller 4,RUL0022,9/26/21 0:00,9/26/21 13:15 +CWC04704,Chiller 4,RUL0018,9/26/21 15:57,9/27/21 0:00 +CWC04704,Chiller 4,RUL0018,9/27/21 0:00,9/27/21 8:45 +CWC04704,Chiller 4,RUL0022,9/27/21 5:00,9/27/21 13:00 +CWC04704,Chiller 4,RUL0022,9/28/21 7:30,9/28/21 16:00 +CWC04704,Chiller 4,RUL0022,9/29/21 0:00,9/29/21 16:00 +CWC04704,Chiller 4,RUL0022,9/30/21 0:00,9/30/21 16:00 +CWC04704,Chiller 4,RUL0022,10/1/21 0:00,10/1/21 12:00 +CWC04704,Chiller 4,RUL0022,10/4/21 7:30,10/4/21 9:30 +CWC04704,Chiller 4,RUL0018,10/7/21 11:45,10/7/21 18:01 +CWC04704,Chiller 4,RUL0022,10/19/21 6:45,10/19/21 11:15 +CWC04704,Chiller 4,RUL0022,10/26/21 3:45,10/26/21 16:00 +CWC04704,Chiller 4,RUL0022,10/27/21 0:00,10/27/21 16:00 +CWC04704,Chiller 4,RUL0022,10/28/21 0:00,10/28/21 16:00 +CWC04704,Chiller 4,RUL0022,10/29/21 0:00,10/29/21 16:00 +CWC04704,Chiller 4,RUL0022,10/30/21 0:00,10/30/21 16:00 +CWC04704,Chiller 4,RUL0022,10/31/21 0:00,10/31/21 16:00 +CWC04704,Chiller 4,RUL0022,11/1/21 0:00,11/1/21 1:30 +CWC04704,Chiller 4,RUL0018,11/1/21 3:47,11/1/21 14:29 +CWC04704,Chiller 4,RUL0018,11/1/21 14:45,11/2/21 0:00 +CWC04704,Chiller 4,RUL0018,11/2/21 0:00,11/2/21 11:30 +CWC04704,Chiller 4,RUL0022,11/3/21 6:45,11/3/21 13:15 +CWC04704,Chiller 4,RUL0022,11/9/21 9:30,11/9/21 16:00 +CWC04704,Chiller 4,RUL0022,11/10/21 0:00,11/10/21 8:15 +CWC04704,Chiller 4,RUL0022,11/11/21 10:15,11/11/21 16:00 +CWC04704,Chiller 4,RUL0022,11/12/21 10:15,11/12/21 10:45 +CWC04704,Chiller 4,RUL0022,11/12/21 12:00,11/12/21 16:00 +CWC04704,Chiller 4,RUL0022,11/13/21 0:00,11/13/21 6:00 +CWC04704,Chiller 4,RUL0018,11/13/21 10:14,11/13/21 23:59 +CWC04704,Chiller 4,RUL0018,11/14/21 0:00,11/15/21 0:00 +CWC04704,Chiller 4,RUL0018,11/15/21 0:00,11/15/21 16:30 +CWC04704,Chiller 4,RUL0022,11/15/21 10:00,11/15/21 16:00 +CWC04704,Chiller 4,RUL0022,11/16/21 0:00,11/16/21 16:00 +CWC04704,Chiller 4,RUL0022,11/17/21 11:45,11/17/21 16:00 +CWC04704,Chiller 4,RUL0022,11/18/21 0:00,11/18/21 6:00 +CWC04704,Chiller 4,RUL0018,11/18/21 7:45,11/18/21 23:59 +CWC04704,Chiller 4,RUL0018,11/19/21 0:00,11/20/21 0:00 +CWC04704,Chiller 4,RUL0018,11/20/21 0:00,11/21/21 0:00 +CWC04704,Chiller 4,RUL0018,11/21/21 0:00,11/22/21 0:00 +CWC04704,Chiller 4,RUL0018,11/22/21 0:00,11/22/21 17:59 +CWC04704,Chiller 4,RUL0018,11/22/21 18:04,11/23/21 0:00 +CWC04704,Chiller 4,RUL0018,11/23/21 0:00,11/24/21 0:00 +CWC04704,Chiller 4,RUL0018,11/24/21 0:00,11/24/21 22:16 +CWC04704,Chiller 4,RUL0018,11/25/21 0:00,11/26/21 0:00 +CWC04704,Chiller 4,RUL0018,11/26/21 0:00,11/26/21 5:28 +CWC04704,Chiller 4,RUL0018,11/26/21 5:32,11/26/21 23:59 +CWC04704,Chiller 4,RUL0018,11/27/21 0:00,11/27/21 12:20 +CWC04704,Chiller 4,RUL0018,12/2/21 6:15,12/3/21 0:00 +CWC04704,Chiller 4,RUL0018,12/3/21 0:00,12/3/21 22:02 +CWC04704,Chiller 4,RUL0022,12/13/21 13:45,12/13/21 16:00 +CWC04704,Chiller 4,RUL0022,12/14/21 0:00,12/14/21 0:45 +CWC04704,Chiller 4,RUL0018,12/14/21 16:00,12/14/21 23:06 +CWC04704,Chiller 4,RUL0022,8/30/22 7:00,8/30/22 11:30 +CWC04704,Chiller 4,RUL0022,8/31/22 6:00,8/31/22 16:00 +CWC04704,Chiller 4,RUL0022,9/1/22 0:00,9/1/22 16:00 +CWC04704,Chiller 4,RUL0022,9/2/22 0:00,9/2/22 16:00 +CWC04704,Chiller 4,RUL0022,9/3/22 0:00,9/3/22 16:00 +CWC04704,Chiller 4,RUL0022,9/4/22 0:00,9/4/22 13:00 +CWC04704,Chiller 4,RUL0022,10/12/22 8:15,10/12/22 16:00 +CWC04704,Chiller 4,RUL0022,10/13/22 0:00,10/13/22 16:00 +CWC04704,Chiller 4,RUL0022,10/14/22 0:00,10/14/22 9:45 +CWC04704,Chiller 4,RUL0022,10/25/22 4:00,10/25/22 13:15 +CWC04704,Chiller 4,RUL0022,10/26/22 3:15,10/26/22 10:15 +CWC04704,Chiller 4,RUL0018,10/27/22 14:30,10/28/22 0:00 +CWC04704,Chiller 4,RUL0018,10/28/22 0:00,10/28/22 16:05 +CWC04704,Chiller 4,RUL0022,10/28/22 10:15,10/28/22 16:00 +CWC04704,Chiller 4,RUL0022,10/31/22 2:30,10/31/22 16:00 +CWC04704,Chiller 4,RUL0022,11/1/22 2:45,11/1/22 16:00 +CWC04704,Chiller 4,RUL0022,11/2/22 0:00,11/2/22 16:00 +CWC04704,Chiller 4,RUL0022,11/3/22 0:00,11/3/22 16:00 +CWC04704,Chiller 4,RUL0022,11/4/22 0:00,11/4/22 16:00 +CWC04704,Chiller 4,RUL0022,11/5/22 0:00,11/5/22 16:00 +CWC04704,Chiller 4,RUL0022,11/6/22 0:00,11/6/22 17:00 +CWC04704,Chiller 4,RUL0022,11/7/22 0:00,11/7/22 16:00 +CWC04704,Chiller 4,RUL0022,11/8/22 0:00,11/8/22 16:00 +CWC04704,Chiller 4,RUL0022,11/9/22 0:00,11/9/22 16:00 +CWC04704,Chiller 4,RUL0022,11/10/22 0:00,11/10/22 16:00 +CWC04704,Chiller 4,RUL0022,11/11/22 0:00,11/11/22 7:15 +CWC04704,Chiller 4,RUL0022,11/14/22 5:45,11/14/22 16:00 +CWC04704,Chiller 4,RUL0022,11/15/22 0:00,11/15/22 16:00 +CWC04704,Chiller 4,RUL0022,11/16/22 0:00,11/16/22 8:00 +CWC04704,Chiller 4,RUL0022,11/23/22 3:15,11/23/22 16:00 +CWC04704,Chiller 4,RUL0018,11/24/22 0:00,11/24/22 9:13 +CWC04704,Chiller 4,RUL0022,11/24/22 4:30,11/24/22 16:00 +CWC04704,Chiller 4,RUL0022,11/25/22 0:00,11/25/22 16:00 +CWC04704,Chiller 4,RUL0018,11/26/22 1:12,11/26/22 23:59 +CWC04704,Chiller 4,RUL0018,11/27/22 0:00,11/28/22 0:00 +CWC04704,Chiller 4,RUL0018,11/28/22 0:00,11/29/22 0:00 +CWC04704,Chiller 4,RUL0022,11/29/22 0:00,11/29/22 16:00 +CWC04704,Chiller 4,RUL0022,11/30/22 0:00,11/30/22 16:00 +CWC04704,Chiller 4,RUL0022,12/1/22 0:00,12/1/22 16:00 +CWC04704,Chiller 4,RUL0022,12/2/22 0:00,12/2/22 16:00 +CWC04704,Chiller 4,RUL0022,12/3/22 0:00,12/3/22 16:00 +CWC04704,Chiller 4,RUL0022,12/4/22 0:00,12/4/22 16:00 +CWC04704,Chiller 4,RUL0022,12/5/22 0:00,12/5/22 16:00 +CWC04704,Chiller 4,RUL0022,12/6/22 0:00,12/6/22 16:00 +CWC04704,Chiller 4,RUL0018,12/7/22 2:45,12/7/22 9:15 +CWC04704,Chiller 4,RUL0018,12/7/22 9:30,12/7/22 21:00 +CWC04704,Chiller 4,RUL0018,12/8/22 0:00,12/9/22 0:00 +CWC04704,Chiller 4,RUL0018,12/9/22 0:00,12/9/22 23:27 +CWC04704,Chiller 4,RUL0022,12/10/22 0:00,12/10/22 16:00 +CWC04704,Chiller 4,RUL0018,12/11/22 0:00,12/12/22 0:00 +CWC04704,Chiller 4,RUL0018,12/12/22 0:00,12/12/22 12:33 +CWC04704,Chiller 4,RUL0022,12/12/22 7:45,12/12/22 16:00 +CWC04704,Chiller 4,RUL0022,12/13/22 0:00,12/13/22 16:00 +CWC04704,Chiller 4,RUL0017,12/13/22 19:15,12/14/22 0:00 +CWC04704,Chiller 4,RUL0017,12/14/22 0:00,12/15/22 0:00 +CWC04704,Chiller 4,RUL0017,12/15/22 0:00,12/16/22 0:00 +CWC04704,Chiller 4,RUL0017,12/16/22 0:00,12/17/22 0:00 +CWC04704,Chiller 4,RUL0017,12/17/22 0:00,12/18/22 0:00 +CWC04704,Chiller 4,RUL0017,12/18/22 0:00,12/19/22 0:00 +CWC04704,Chiller 4,RUL0017,12/19/22 0:00,12/20/22 0:00 +CWC04704,Chiller 4,RUL0017,12/20/22 0:00,12/21/22 0:00 +CWC04704,Chiller 4,RUL0017,12/21/22 0:00,12/22/22 0:00 +CWC04704,Chiller 4,RUL0017,12/22/22 0:00,12/23/22 0:00 +CWC04704,Chiller 4,RUL0017,12/23/22 0:00,12/24/22 0:00 +CWC04704,Chiller 4,RUL0017,12/24/22 0:00,12/25/22 0:00 +CWC04704,Chiller 4,RUL0017,12/25/22 0:00,12/26/22 0:00 +CWC04704,Chiller 4,RUL0017,12/26/22 0:00,12/27/22 0:00 +CWC04704,Chiller 4,RUL0017,12/27/22 0:00,12/28/22 0:00 +CWC04704,Chiller 4,RUL0017,12/28/22 0:00,12/29/22 0:00 +CWC04704,Chiller 4,RUL0017,12/29/22 0:00,12/30/22 0:00 +CWC04704,Chiller 4,RUL0017,12/30/22 0:00,12/31/22 0:00 +CWC04704,Chiller 4,RUL0017,12/31/22 0:00,1/1/23 0:00 +CWC04704,Chiller 4,RUL0017,1/1/23 0:00,1/2/23 0:00 +CWC04704,Chiller 4,RUL0017,1/2/23 0:00,1/3/23 0:00 +CWC04704,Chiller 4,RUL0017,1/3/23 0:00,1/4/23 0:00 +CWC04704,Chiller 4,RUL0017,1/4/23 0:00,1/5/23 0:00 +CWC04704,Chiller 4,RUL0017,1/5/23 0:00,1/6/23 0:00 +CWC04704,Chiller 4,RUL0017,1/6/23 0:00,1/7/23 0:00 +CWC04704,Chiller 4,RUL0017,1/7/23 0:00,1/8/23 0:00 +CWC04704,Chiller 4,RUL0017,1/8/23 0:00,1/9/23 0:00 +CWC04704,Chiller 4,RUL0017,1/9/23 0:00,1/10/23 0:00 +CWC04704,Chiller 4,RUL0017,1/10/23 0:00,1/11/23 0:00 +CWC04704,Chiller 4,RUL0017,1/11/23 0:00,1/12/23 0:00 +CWC04704,Chiller 4,RUL0018,1/11/23 12:45,1/12/23 0:00 +CWC04704,Chiller 4,RUL0012,1/11/23 12:45,1/12/23 0:00 +CWC04704,Chiller 4,RUL0017,1/12/23 0:00,1/13/23 0:00 +CWC04704,Chiller 4,RUL0018,1/12/23 0:00,1/12/23 9:45 +CWC04704,Chiller 4,RUL0012,1/12/23 0:00,1/12/23 9:45 +CWC04704,Chiller 4,RUL0018,1/12/23 11:45,1/12/23 16:30 +CWC04704,Chiller 4,RUL0012,1/12/23 11:45,1/13/23 0:00 +CWC04704,Chiller 4,RUL0022,1/13/23 0:00,1/13/23 16:00 +CWC04704,Chiller 4,RUL0022,1/18/23 6:15,1/18/23 16:00 +CWC04704,Chiller 4,RUL0022,1/19/23 0:00,1/19/23 16:00 +CWC04704,Chiller 4,RUL0022,1/20/23 0:00,1/20/23 0:15 +CWC04704,Chiller 4,RUL0018,2/10/23 8:30,2/11/23 0:00 +CWC04704,Chiller 4,RUL0018,2/11/23 0:00,2/11/23 21:40 +CWC04704,Chiller 4,RUL0022,2/14/23 4:15,2/14/23 9:30 +CWC04704,Chiller 4,RUL0022,2/16/23 8:45,2/16/23 16:00 +CWC04704,Chiller 4,RUL0022,2/17/23 0:00,2/17/23 16:00 +CWC04704,Chiller 4,RUL0022,2/20/23 4:00,2/20/23 16:00 +CWC04704,Chiller 4,RUL0022,2/21/23 0:00,2/21/23 10:00 +CWC04704,Chiller 4,RUL0018,2/21/23 11:24,2/21/23 23:59 +CWC04704,Chiller 4,RUL0018,2/22/23 0:00,2/22/23 5:53 +CWC04704,Chiller 4,RUL0022,3/2/23 7:30,3/2/23 16:00 +CWC04704,Chiller 4,RUL0022,3/3/23 0:00,3/3/23 2:00 +CWC04704,Chiller 4,RUL0022,3/13/23 9:45,3/13/23 16:00 +CWC04704,Chiller 4,RUL0022,3/14/23 0:00,3/14/23 16:00 +CWC04704,Chiller 4,RUL0022,3/15/23 0:00,3/15/23 8:00 +CWC04704,Chiller 4,RUL0022,3/21/23 7:15,3/21/23 16:00 +CWC04704,Chiller 4,RUL0022,3/22/23 0:00,3/22/23 16:00 +CWC04704,Chiller 4,RUL0022,3/23/23 0:00,3/23/23 16:00 +CWC04704,Chiller 4,RUL0022,3/24/23 0:00,3/24/23 14:45 +CWC04704,Chiller 4,RUL0022,3/29/23 3:45,3/29/23 12:15 +CWC04704,Chiller 4,RUL0018,3/29/23 13:54,3/29/23 23:59 +CWC04704,Chiller 4,RUL0018,3/30/23 0:00,3/30/23 20:12 +CWC04704,Chiller 4,RUL0022,3/30/23 15:00,3/30/23 16:00 +CWC04704,Chiller 4,RUL0022,3/31/23 0:00,3/31/23 2:15 +CWC04006,Chiller 6,RUL0017,1/4/19 0:00,1/5/19 0:00 +CWC04006,Chiller 6,RUL0012,1/4/19 0:00,1/5/19 0:00 +CWC04006,Chiller 6,RUL0017,1/5/19 0:00,1/6/19 0:00 +CWC04006,Chiller 6,RUL0012,1/5/19 0:00,1/6/19 0:00 +CWC04006,Chiller 6,RUL0017,1/6/19 0:00,1/7/19 0:00 +CWC04006,Chiller 6,RUL0012,1/6/19 0:00,1/7/19 0:00 +CWC04006,Chiller 6,RUL0017,1/7/19 0:00,1/8/19 0:00 +CWC04006,Chiller 6,RUL0012,1/7/19 0:00,1/8/19 0:00 +CWC04006,Chiller 6,RUL0017,1/8/19 0:00,1/9/19 0:00 +CWC04006,Chiller 6,RUL0012,1/8/19 0:00,1/8/19 13:15 +CWC04006,Chiller 6,RUL0017,1/9/19 0:00,1/10/19 0:00 +CWC04006,Chiller 6,RUL0012,1/9/19 12:00,1/10/19 0:00 +CWC04006,Chiller 6,RUL0017,1/10/19 0:00,1/11/19 0:00 +CWC04006,Chiller 6,RUL0012,1/10/19 0:00,1/11/19 0:00 +CWC04006,Chiller 6,RUL0017,1/11/19 0:00,1/12/19 0:00 +CWC04006,Chiller 6,RUL0012,1/11/19 0:00,1/12/19 0:00 +CWC04006,Chiller 6,RUL0017,1/12/19 0:00,1/13/19 0:00 +CWC04006,Chiller 6,RUL0012,1/12/19 0:00,1/13/19 0:00 +CWC04006,Chiller 6,RUL0017,1/13/19 0:00,1/14/19 0:00 +CWC04006,Chiller 6,RUL0012,1/13/19 0:00,1/14/19 0:00 +CWC04006,Chiller 6,RUL0017,1/14/19 0:00,1/15/19 0:00 +CWC04006,Chiller 6,RUL0012,1/14/19 0:00,1/15/19 0:00 +CWC04006,Chiller 6,RUL0017,1/15/19 0:00,1/16/19 0:00 +CWC04006,Chiller 6,RUL0012,1/15/19 0:00,1/16/19 0:00 +CWC04006,Chiller 6,RUL0017,1/16/19 0:00,1/17/19 0:00 +CWC04006,Chiller 6,RUL0012,1/16/19 0:00,1/17/19 0:00 +CWC04006,Chiller 6,RUL0017,1/17/19 0:00,1/18/19 0:00 +CWC04006,Chiller 6,RUL0012,1/17/19 0:00,1/18/19 0:00 +CWC04006,Chiller 6,RUL0017,1/18/19 0:00,1/19/19 0:00 +CWC04006,Chiller 6,RUL0012,1/18/19 0:00,1/19/19 0:00 +CWC04006,Chiller 6,RUL0017,1/19/19 0:00,1/20/19 0:00 +CWC04006,Chiller 6,RUL0012,1/19/19 0:00,1/20/19 0:00 +CWC04006,Chiller 6,RUL0017,1/20/19 0:00,1/21/19 0:00 +CWC04006,Chiller 6,RUL0012,1/20/19 0:00,1/21/19 0:00 +CWC04006,Chiller 6,RUL0017,1/21/19 0:00,1/22/19 0:00 +CWC04006,Chiller 6,RUL0012,1/21/19 0:00,1/22/19 0:00 +CWC04006,Chiller 6,RUL0017,1/22/19 0:00,1/23/19 0:00 +CWC04006,Chiller 6,RUL0012,1/22/19 0:00,1/22/19 13:00 +CWC04006,Chiller 6,RUL0012,1/22/19 15:00,1/23/19 0:00 +CWC04006,Chiller 6,RUL0017,1/23/19 0:00,1/24/19 0:00 +CWC04006,Chiller 6,RUL0012,1/23/19 0:00,1/24/19 0:00 +CWC04006,Chiller 6,RUL0017,1/24/19 0:00,1/25/19 0:00 +CWC04006,Chiller 6,RUL0012,1/24/19 0:00,1/25/19 0:00 +CWC04006,Chiller 6,RUL0017,1/25/19 0:00,1/26/19 0:00 +CWC04006,Chiller 6,RUL0012,1/25/19 0:00,1/26/19 0:00 +CWC04006,Chiller 6,RUL0017,1/26/19 0:00,1/27/19 0:00 +CWC04006,Chiller 6,RUL0012,1/26/19 0:00,1/27/19 0:00 +CWC04006,Chiller 6,RUL0017,1/27/19 0:00,1/28/19 0:00 +CWC04006,Chiller 6,RUL0012,1/27/19 0:00,1/28/19 0:00 +CWC04006,Chiller 6,RUL0017,1/28/19 0:00,1/29/19 0:00 +CWC04006,Chiller 6,RUL0012,1/28/19 0:00,1/29/19 0:00 +CWC04006,Chiller 6,RUL0017,1/29/19 0:00,1/30/19 0:00 +CWC04006,Chiller 6,RUL0012,1/29/19 0:00,1/30/19 0:00 +CWC04006,Chiller 6,RUL0017,1/30/19 0:00,1/31/19 0:00 +CWC04006,Chiller 6,RUL0012,1/30/19 0:00,1/31/19 0:00 +CWC04006,Chiller 6,RUL0017,1/31/19 0:00,2/1/19 0:00 +CWC04006,Chiller 6,RUL0012,1/31/19 0:00,2/1/19 0:00 +CWC04006,Chiller 6,RUL0017,2/1/19 0:00,2/2/19 0:00 +CWC04006,Chiller 6,RUL0012,2/1/19 0:00,2/2/19 0:00 +CWC04006,Chiller 6,RUL0017,2/2/19 0:00,2/3/19 0:00 +CWC04006,Chiller 6,RUL0012,2/2/19 0:00,2/3/19 0:00 +CWC04006,Chiller 6,RUL0017,2/3/19 0:00,2/4/19 0:00 +CWC04006,Chiller 6,RUL0012,2/3/19 0:00,2/4/19 0:00 +CWC04006,Chiller 6,RUL0017,2/4/19 0:00,2/5/19 0:00 +CWC04006,Chiller 6,RUL0012,2/4/19 0:00,2/5/19 0:00 +CWC04006,Chiller 6,RUL0017,2/5/19 0:00,2/6/19 0:00 +CWC04006,Chiller 6,RUL0012,2/5/19 0:00,2/6/19 0:00 +CWC04006,Chiller 6,RUL0017,2/6/19 0:00,2/7/19 0:00 +CWC04006,Chiller 6,RUL0012,2/6/19 0:00,2/7/19 0:00 +CWC04006,Chiller 6,RUL0017,2/7/19 0:00,2/8/19 0:00 +CWC04006,Chiller 6,RUL0012,2/7/19 0:00,2/7/19 2:30 +CWC04006,Chiller 6,RUL0012,2/7/19 11:00,2/7/19 13:00 +CWC04006,Chiller 6,RUL0012,2/7/19 13:30,2/8/19 0:00 +CWC04006,Chiller 6,RUL0017,2/8/19 0:00,2/9/19 0:00 +CWC04006,Chiller 6,RUL0012,2/8/19 0:00,2/8/19 10:30 +CWC04006,Chiller 6,RUL0012,2/8/19 13:30,2/9/19 0:00 +CWC04006,Chiller 6,RUL0017,2/9/19 0:00,2/10/19 0:00 +CWC04006,Chiller 6,RUL0017,2/10/19 0:00,2/11/19 0:00 +CWC04006,Chiller 6,RUL0017,2/11/19 0:00,2/12/19 0:00 +CWC04006,Chiller 6,RUL0017,2/12/19 0:00,2/13/19 0:00 +CWC04006,Chiller 6,RUL0012,2/12/19 10:45,2/13/19 0:00 +CWC04006,Chiller 6,RUL0017,2/13/19 0:00,2/14/19 0:00 +CWC04006,Chiller 6,RUL0012,2/13/19 0:00,2/14/19 0:00 +CWC04006,Chiller 6,RUL0017,2/14/19 0:00,2/15/19 0:00 +CWC04006,Chiller 6,RUL0012,2/14/19 0:00,2/15/19 0:00 +CWC04006,Chiller 6,RUL0017,2/15/19 0:00,2/16/19 0:00 +CWC04006,Chiller 6,RUL0012,2/15/19 0:00,2/16/19 0:00 +CWC04006,Chiller 6,RUL0017,2/16/19 0:00,2/17/19 0:00 +CWC04006,Chiller 6,RUL0012,2/16/19 0:00,2/17/19 0:00 +CWC04006,Chiller 6,RUL0017,2/17/19 0:00,2/18/19 0:00 +CWC04006,Chiller 6,RUL0012,2/17/19 0:00,2/18/19 0:00 +CWC04006,Chiller 6,RUL0017,2/18/19 0:00,2/19/19 0:00 +CWC04006,Chiller 6,RUL0012,2/18/19 0:00,2/18/19 9:45 +CWC04006,Chiller 6,RUL0012,2/18/19 12:00,2/19/19 0:00 +CWC04006,Chiller 6,RUL0017,2/19/19 0:00,2/20/19 0:00 +CWC04006,Chiller 6,RUL0012,2/19/19 0:00,2/20/19 0:00 +CWC04006,Chiller 6,RUL0017,2/20/19 0:00,2/21/19 0:00 +CWC04006,Chiller 6,RUL0012,2/20/19 0:00,2/21/19 0:00 +CWC04006,Chiller 6,RUL0017,2/21/19 0:00,2/22/19 0:00 +CWC04006,Chiller 6,RUL0012,2/21/19 0:00,2/22/19 0:00 +CWC04006,Chiller 6,RUL0017,2/22/19 0:00,2/23/19 0:00 +CWC04006,Chiller 6,RUL0012,2/22/19 0:00,2/23/19 0:00 +CWC04006,Chiller 6,RUL0017,2/23/19 0:00,2/24/19 0:00 +CWC04006,Chiller 6,RUL0012,2/23/19 0:00,2/24/19 0:00 +CWC04006,Chiller 6,RUL0017,2/24/19 0:00,2/25/19 0:00 +CWC04006,Chiller 6,RUL0012,2/24/19 0:00,2/25/19 0:00 +CWC04006,Chiller 6,RUL0017,2/25/19 0:00,2/26/19 0:00 +CWC04006,Chiller 6,RUL0012,2/25/19 0:00,2/26/19 0:00 +CWC04006,Chiller 6,RUL0017,2/26/19 0:00,2/27/19 0:00 +CWC04006,Chiller 6,RUL0012,2/26/19 0:00,2/27/19 0:00 +CWC04006,Chiller 6,RUL0017,2/27/19 0:00,2/28/19 0:00 +CWC04006,Chiller 6,RUL0012,2/27/19 0:00,2/28/19 0:00 +CWC04006,Chiller 6,RUL0017,2/28/19 0:00,3/1/19 0:00 +CWC04006,Chiller 6,RUL0012,2/28/19 0:00,3/1/19 0:00 +CWC04006,Chiller 6,RUL0017,3/1/19 0:00,3/2/19 0:00 +CWC04006,Chiller 6,RUL0012,3/1/19 0:00,3/2/19 0:00 +CWC04006,Chiller 6,RUL0017,3/2/19 0:00,3/3/19 0:00 +CWC04006,Chiller 6,RUL0012,3/2/19 0:00,3/3/19 0:00 +CWC04006,Chiller 6,RUL0017,3/3/19 0:00,3/4/19 0:00 +CWC04006,Chiller 6,RUL0012,3/3/19 0:00,3/4/19 0:00 +CWC04006,Chiller 6,RUL0017,3/4/19 0:00,3/5/19 0:00 +CWC04006,Chiller 6,RUL0012,3/4/19 0:00,3/4/19 9:45 +CWC04006,Chiller 6,RUL0017,3/5/19 0:00,3/6/19 0:00 +CWC04006,Chiller 6,RUL0017,3/6/19 0:00,3/7/19 0:00 +CWC04006,Chiller 6,RUL0017,3/7/19 0:00,3/8/19 0:00 +CWC04006,Chiller 6,RUL0017,3/8/19 0:00,3/9/19 0:00 +CWC04006,Chiller 6,RUL0017,3/9/19 0:00,3/10/19 0:00 +CWC04006,Chiller 6,RUL0017,3/10/19 0:00,3/10/19 23:00 +CWC04006,Chiller 6,RUL0017,3/11/19 0:00,3/12/19 0:00 +CWC04006,Chiller 6,RUL0017,3/12/19 0:00,3/13/19 0:00 +CWC04006,Chiller 6,RUL0017,3/13/19 0:00,3/14/19 0:00 +CWC04006,Chiller 6,RUL0017,3/14/19 0:00,3/15/19 0:00 +CWC04006,Chiller 6,RUL0017,3/15/19 0:00,3/16/19 0:00 +CWC04006,Chiller 6,RUL0017,3/16/19 0:00,3/17/19 0:00 +CWC04006,Chiller 6,RUL0017,3/17/19 0:00,3/18/19 0:00 +CWC04006,Chiller 6,RUL0017,3/18/19 0:00,3/19/19 0:00 +CWC04006,Chiller 6,RUL0017,3/19/19 0:00,3/20/19 0:00 +CWC04006,Chiller 6,RUL0017,3/20/19 0:00,3/21/19 0:00 +CWC04006,Chiller 6,RUL0017,3/21/19 0:00,3/22/19 0:00 +CWC04006,Chiller 6,RUL0017,3/22/19 0:00,3/23/19 0:00 +CWC04006,Chiller 6,RUL0017,3/23/19 0:00,3/24/19 0:00 +CWC04006,Chiller 6,RUL0017,3/24/19 0:00,3/25/19 0:00 +CWC04006,Chiller 6,RUL0017,3/25/19 0:00,3/26/19 0:00 +CWC04006,Chiller 6,RUL0017,3/26/19 0:00,3/27/19 0:00 +CWC04006,Chiller 6,RUL0017,3/27/19 0:00,3/28/19 0:00 +CWC04006,Chiller 6,RUL0017,3/28/19 0:00,3/29/19 0:00 +CWC04006,Chiller 6,RUL0017,3/29/19 0:00,3/30/19 0:00 +CWC04006,Chiller 6,RUL0017,3/30/19 0:00,3/31/19 0:00 +CWC04006,Chiller 6,RUL0017,3/31/19 0:00,4/1/19 0:00 +CWC04006,Chiller 6,RUL0017,4/1/19 0:00,4/2/19 0:00 +CWC04006,Chiller 6,RUL0017,4/2/19 0:00,4/3/19 0:00 +CWC04006,Chiller 6,RUL0017,4/3/19 0:00,4/4/19 0:00 +CWC04006,Chiller 6,RUL0017,4/4/19 0:00,4/5/19 0:00 +CWC04006,Chiller 6,RUL0017,4/5/19 0:00,4/6/19 0:00 +CWC04006,Chiller 6,RUL0017,4/6/19 0:00,4/7/19 0:00 +CWC04006,Chiller 6,RUL0017,4/7/19 0:00,4/8/19 0:00 +CWC04006,Chiller 6,RUL0017,4/8/19 0:00,4/9/19 0:00 +CWC04006,Chiller 6,RUL0017,4/9/19 0:00,4/10/19 0:00 +CWC04006,Chiller 6,RUL0017,4/10/19 0:00,4/11/19 0:00 +CWC04006,Chiller 6,RUL0017,4/11/19 0:00,4/12/19 0:00 +CWC04006,Chiller 6,RUL0017,4/12/19 0:00,4/13/19 0:00 +CWC04006,Chiller 6,RUL0017,4/13/19 0:00,4/14/19 0:00 +CWC04006,Chiller 6,RUL0017,4/14/19 0:00,4/15/19 0:00 +CWC04006,Chiller 6,RUL0017,4/15/19 0:00,4/16/19 0:00 +CWC04006,Chiller 6,RUL0017,4/16/19 0:00,4/17/19 0:00 +CWC04006,Chiller 6,RUL0017,4/17/19 0:00,4/18/19 0:00 +CWC04006,Chiller 6,RUL0017,4/18/19 0:00,4/19/19 0:00 +CWC04006,Chiller 6,RUL0017,4/19/19 0:00,4/19/19 23:58 +CWC04006,Chiller 6,RUL0017,4/21/19 0:00,4/22/19 0:00 +CWC04006,Chiller 6,RUL0017,4/22/19 0:00,4/22/19 15:15 +CWC04006,Chiller 6,RUL0018,3/24/20 10:15,3/24/20 22:30 +CWC04006,Chiller 6,RUL0018,5/15/20 12:00,5/15/20 17:15 +CWC04006,Chiller 6,RUL0018,5/22/20 12:15,5/22/20 19:00 +CWC04006,Chiller 6,RUL0018,5/26/20 11:15,5/26/20 18:45 +CWC04006,Chiller 6,RUL0018,5/29/20 14:30,5/29/20 18:15 +CWC04006,Chiller 6,RUL0021,6/6/20 11:42,6/6/20 23:59 +CWC04006,Chiller 6,RUL0021,6/7/20 0:00,6/8/20 0:00 +CWC04006,Chiller 6,RUL0021,6/8/20 0:00,6/8/20 8:00 +CWC04006,Chiller 6,RUL0021,10/13/20 13:25,10/14/20 0:00 +CWC04006,Chiller 6,RUL0021,10/14/20 0:00,10/14/20 14:12 +CWC04006,Chiller 6,RUL0021,10/21/20 16:11,10/21/20 23:59 +CWC04006,Chiller 6,RUL0021,10/22/20 0:00,10/22/20 10:06 +CWC04006,Chiller 6,RUL0021,10/26/20 0:00,10/26/20 11:15 +CWC04006,Chiller 6,RUL0018,11/30/20 12:15,11/30/20 21:15 +CWC04006,Chiller 6,RUL0021,5/20/21 16:17,5/20/21 23:59 +CWC04006,Chiller 6,RUL0021,5/21/21 0:00,5/22/21 0:00 +CWC04006,Chiller 6,RUL0021,9/17/21 14:04,9/18/21 0:00 +CWC04006,Chiller 6,RUL0021,9/18/21 0:00,9/19/21 0:00 +CWC04006,Chiller 6,RUL0021,9/19/21 0:00,9/20/21 0:00 +CWC04006,Chiller 6,RUL0021,9/20/21 0:00,9/20/21 10:15 +CWC04006,Chiller 6,RUL0021,9/21/21 16:21,9/21/21 23:59 +CWC04006,Chiller 6,RUL0021,9/22/21 0:00,9/22/21 11:30 +CWC04006,Chiller 6,RUL0022,9/22/21 9:00,9/22/21 16:00 +CWC04006,Chiller 6,RUL0022,9/23/21 5:45,9/23/21 12:00 +CWC04006,Chiller 6,RUL0021,9/23/21 15:27,9/24/21 0:00 +CWC04006,Chiller 6,RUL0021,9/24/21 0:00,9/24/21 8:11 +CWC04006,Chiller 6,RUL0022,9/24/21 4:00,9/24/21 8:15 +CWC04006,Chiller 6,RUL0022,9/25/21 5:30,9/25/21 16:00 +CWC04006,Chiller 6,RUL0022,9/26/21 0:00,9/26/21 14:30 +CWC04006,Chiller 6,RUL0022,9/27/21 5:00,9/27/21 13:00 +CWC04006,Chiller 6,RUL0021,9/27/21 15:33,9/27/21 23:59 +CWC04006,Chiller 6,RUL0021,9/28/21 0:00,9/28/21 13:08 +CWC04006,Chiller 6,RUL0022,9/28/21 9:45,9/28/21 16:00 +CWC04006,Chiller 6,RUL0022,9/29/21 0:00,9/29/21 16:00 +CWC04006,Chiller 6,RUL0022,9/30/21 0:00,9/30/21 16:00 +CWC04006,Chiller 6,RUL0022,10/1/21 0:00,10/1/21 12:00 +CWC04006,Chiller 6,RUL0021,10/1/21 15:30,10/2/21 0:00 +CWC04006,Chiller 6,RUL0021,10/2/21 0:00,10/3/21 0:00 +CWC04006,Chiller 6,RUL0021,10/3/21 0:00,10/4/21 0:00 +CWC04006,Chiller 6,RUL0021,10/4/21 0:00,10/4/21 9:29 +CWC04006,Chiller 6,RUL0022,10/4/21 7:30,10/4/21 9:30 +CWC04006,Chiller 6,RUL0021,10/4/21 15:30,10/4/21 23:59 +CWC04006,Chiller 6,RUL0021,10/5/21 0:00,10/6/21 0:00 +CWC04006,Chiller 6,RUL0021,10/6/21 0:00,10/6/21 9:24 +CWC04006,Chiller 6,RUL0021,10/6/21 15:33,10/7/21 0:00 +CWC04006,Chiller 6,RUL0021,10/7/21 0:00,10/7/21 10:11 +CWC04006,Chiller 6,RUL0022,10/19/21 6:45,10/19/21 13:30 +CWC04006,Chiller 6,RUL0021,10/19/21 15:30,10/20/21 0:00 +CWC04006,Chiller 6,RUL0021,10/20/21 0:00,10/21/21 0:00 +CWC04006,Chiller 6,RUL0021,10/21/21 0:00,10/22/21 0:00 +CWC04006,Chiller 6,RUL0021,10/22/21 0:00,10/23/21 0:00 +CWC04006,Chiller 6,RUL0021,10/23/21 0:00,10/24/21 0:00 +CWC04006,Chiller 6,RUL0021,10/24/21 0:00,10/25/21 0:00 +CWC04006,Chiller 6,RUL0021,10/25/21 0:00,10/26/21 0:00 +CWC04006,Chiller 6,RUL0021,10/26/21 0:00,10/26/21 8:19 +CWC04006,Chiller 6,RUL0022,10/26/21 2:30,10/26/21 16:00 +CWC04006,Chiller 6,RUL0022,10/27/21 0:00,10/27/21 16:00 +CWC04006,Chiller 6,RUL0022,10/28/21 0:00,10/28/21 16:00 +CWC04006,Chiller 6,RUL0022,10/29/21 0:00,10/29/21 16:00 +CWC04006,Chiller 6,RUL0022,10/30/21 0:00,10/30/21 16:00 +CWC04006,Chiller 6,RUL0022,10/31/21 0:00,10/31/21 16:00 +CWC04006,Chiller 6,RUL0022,11/1/21 0:00,11/1/21 1:30 +CWC04006,Chiller 6,RUL0021,11/2/21 15:22,11/3/21 0:00 +CWC04006,Chiller 6,RUL0021,11/3/21 0:00,11/3/21 13:03 +CWC04006,Chiller 6,RUL0021,11/3/21 15:36,11/3/21 23:59 +CWC04006,Chiller 6,RUL0021,11/4/21 0:00,11/4/21 8:16 +CWC04006,Chiller 6,RUL0021,11/4/21 8:47,11/4/21 12:45 +CWC04006,Chiller 6,RUL0021,11/4/21 15:36,11/5/21 0:00 +CWC04006,Chiller 6,RUL0021,11/5/21 0:00,11/5/21 15:00 +CWC04006,Chiller 6,RUL0021,11/5/21 15:55,11/5/21 23:59 +CWC04006,Chiller 6,RUL0021,11/6/21 0:00,11/7/21 0:00 +CWC04006,Chiller 6,RUL0021,11/7/21 0:00,11/8/21 1:00 +CWC04006,Chiller 6,RUL0021,11/8/21 0:00,11/9/21 0:00 +CWC04006,Chiller 6,RUL0021,11/9/21 0:00,11/9/21 13:15 +CWC04006,Chiller 6,RUL0022,11/9/21 9:30,11/9/21 16:00 +CWC04006,Chiller 6,RUL0022,11/10/21 0:00,11/10/21 8:15 +CWC04006,Chiller 6,RUL0022,11/11/21 9:45,11/11/21 16:00 +CWC04006,Chiller 6,RUL0021,11/12/21 0:00,11/12/21 10:39 +CWC04006,Chiller 6,RUL0022,11/12/21 10:15,11/12/21 10:45 +CWC04006,Chiller 6,RUL0022,11/12/21 12:00,11/12/21 16:00 +CWC04006,Chiller 6,RUL0022,11/13/21 0:00,11/13/21 6:00 +CWC04006,Chiller 6,RUL0022,11/15/21 10:00,11/15/21 16:00 +CWC04006,Chiller 6,RUL0022,11/16/21 0:00,11/16/21 1:45 +CWC04006,Chiller 6,RUL0022,11/17/21 9:30,11/17/21 16:00 +CWC04006,Chiller 6,RUL0022,11/18/21 0:00,11/18/21 6:30 +CWC04006,Chiller 6,RUL0021,11/27/21 12:20,11/28/21 0:00 +CWC04006,Chiller 6,RUL0021,11/28/21 0:00,11/29/21 0:00 +CWC04006,Chiller 6,RUL0021,11/29/21 0:00,11/29/21 9:27 +CWC04006,Chiller 6,RUL0021,11/29/21 12:15,11/30/21 0:00 +CWC04006,Chiller 6,RUL0021,11/30/21 0:00,11/30/21 9:43 +CWC04006,Chiller 6,RUL0022,11/30/21 5:30,11/30/21 16:00 +CWC04006,Chiller 6,RUL0022,12/1/21 0:00,12/1/21 13:45 +CWC04006,Chiller 6,RUL0018,12/2/21 9:30,12/2/21 21:45 +CWC04006,Chiller 6,RUL0022,9/2/22 5:30,9/2/22 16:00 +CWC04006,Chiller 6,RUL0022,9/3/22 0:00,9/3/22 16:00 +CWC04006,Chiller 6,RUL0022,9/4/22 0:00,9/4/22 13:00 +CWC04006,Chiller 6,RUL0021,9/5/22 0:00,9/6/22 0:00 +CWC04006,Chiller 6,RUL0021,9/6/22 0:00,9/7/22 0:00 +CWC04006,Chiller 6,RUL0021,9/7/22 0:00,9/8/22 0:00 +CWC04006,Chiller 6,RUL0021,9/8/22 0:00,9/9/22 0:00 +CWC04006,Chiller 6,RUL0021,9/9/22 0:00,9/10/22 0:00 +CWC04006,Chiller 6,RUL0021,9/10/22 0:00,9/11/22 0:00 +CWC04006,Chiller 6,RUL0021,9/11/22 0:00,9/12/22 0:00 +CWC04006,Chiller 6,RUL0021,9/12/22 0:00,9/13/22 0:00 +CWC04006,Chiller 6,RUL0021,9/13/22 0:00,9/14/22 0:00 +CWC04006,Chiller 6,RUL0021,9/14/22 0:00,9/15/22 0:00 +CWC04006,Chiller 6,RUL0021,9/15/22 0:00,9/16/22 0:00 +CWC04006,Chiller 6,RUL0021,9/16/22 0:00,9/17/22 0:00 +CWC04006,Chiller 6,RUL0021,9/17/22 0:00,9/18/22 0:00 +CWC04006,Chiller 6,RUL0021,9/18/22 0:00,9/19/22 0:00 +CWC04006,Chiller 6,RUL0021,9/19/22 0:00,9/20/22 0:00 +CWC04006,Chiller 6,RUL0021,9/20/22 0:00,9/21/22 0:00 +CWC04006,Chiller 6,RUL0021,9/21/22 0:00,9/22/22 0:00 +CWC04006,Chiller 6,RUL0021,9/22/22 0:00,9/23/22 0:00 +CWC04006,Chiller 6,RUL0021,9/23/22 0:00,9/24/22 0:00 +CWC04006,Chiller 6,RUL0021,9/24/22 0:00,9/25/22 0:00 +CWC04006,Chiller 6,RUL0021,9/25/22 0:00,9/26/22 0:00 +CWC04006,Chiller 6,RUL0021,9/26/22 0:00,9/27/22 0:00 +CWC04006,Chiller 6,RUL0022,10/12/22 8:15,10/12/22 16:00 +CWC04006,Chiller 6,RUL0022,10/13/22 0:00,10/13/22 16:00 +CWC04006,Chiller 6,RUL0022,10/14/22 0:00,10/14/22 16:00 +CWC04006,Chiller 6,RUL0022,10/15/22 0:00,10/15/22 16:00 +CWC04006,Chiller 6,RUL0022,10/16/22 0:00,10/16/22 16:00 +CWC04006,Chiller 6,RUL0022,10/17/22 0:00,10/17/22 16:00 +CWC04006,Chiller 6,RUL0022,10/18/22 7:00,10/18/22 16:00 +CWC04006,Chiller 6,RUL0022,10/19/22 0:00,10/19/22 12:00 +CWC04006,Chiller 6,RUL0021,10/19/22 14:59,10/20/22 0:00 +CWC04006,Chiller 6,RUL0021,10/20/22 0:00,10/21/22 0:00 +CWC04006,Chiller 6,RUL0021,10/21/22 0:00,10/22/22 0:00 +CWC04006,Chiller 6,RUL0021,10/22/22 0:00,10/23/22 0:00 +CWC04006,Chiller 6,RUL0021,10/23/22 0:00,10/24/22 0:00 +CWC04006,Chiller 6,RUL0021,10/24/22 0:00,10/25/22 0:00 +CWC04006,Chiller 6,RUL0021,10/25/22 0:00,10/25/22 8:42 +CWC04006,Chiller 6,RUL0022,10/25/22 4:00,10/25/22 13:15 +CWC04006,Chiller 6,RUL0021,10/25/22 15:26,10/25/22 23:59 +CWC04006,Chiller 6,RUL0021,10/26/22 0:00,10/26/22 9:45 +CWC04006,Chiller 6,RUL0022,10/26/22 3:45,10/26/22 10:00 +CWC04006,Chiller 6,RUL0021,10/26/22 12:07,10/26/22 23:59 +CWC04006,Chiller 6,RUL0021,10/27/22 0:00,10/27/22 14:18 +CWC04006,Chiller 6,RUL0021,10/28/22 18:28,10/28/22 23:59 +CWC04006,Chiller 6,RUL0021,10/29/22 0:00,10/30/22 0:00 +CWC04006,Chiller 6,RUL0021,10/30/22 0:00,10/31/22 0:00 +CWC04006,Chiller 6,RUL0021,10/31/22 0:00,10/31/22 7:57 +CWC04006,Chiller 6,RUL0022,10/31/22 2:30,10/31/22 16:00 +CWC04006,Chiller 6,RUL0021,10/31/22 19:14,11/1/22 0:00 +CWC04006,Chiller 6,RUL0021,11/1/22 0:00,11/1/22 7:47 +CWC04006,Chiller 6,RUL0022,11/1/22 2:30,11/1/22 10:45 +CWC04006,Chiller 6,RUL0022,11/3/22 3:30,11/3/22 16:00 +CWC04006,Chiller 6,RUL0022,11/4/22 0:00,11/4/22 16:00 +CWC04006,Chiller 6,RUL0022,11/5/22 0:00,11/5/22 16:00 +CWC04006,Chiller 6,RUL0022,11/6/22 0:00,11/6/22 17:00 +CWC04006,Chiller 6,RUL0022,11/7/22 0:00,11/7/22 16:00 +CWC04006,Chiller 6,RUL0022,11/8/22 0:00,11/8/22 8:00 +CWC04006,Chiller 6,RUL0022,11/9/22 4:15,11/9/22 16:00 +CWC04006,Chiller 6,RUL0022,11/10/22 0:00,11/10/22 16:00 +CWC04006,Chiller 6,RUL0022,11/11/22 0:00,11/11/22 7:15 +CWC04006,Chiller 6,RUL0021,11/11/22 10:08,11/11/22 23:59 +CWC04006,Chiller 6,RUL0021,11/12/22 0:00,11/13/22 0:00 +CWC04006,Chiller 6,RUL0021,11/13/22 0:00,11/14/22 0:00 +CWC04006,Chiller 6,RUL0021,11/14/22 0:00,11/14/22 12:25 +CWC04006,Chiller 6,RUL0022,11/14/22 5:45,11/14/22 16:00 +CWC04006,Chiller 6,RUL0022,11/15/22 0:00,11/15/22 16:00 +CWC04006,Chiller 6,RUL0022,11/16/22 0:00,11/16/22 16:00 +CWC04006,Chiller 6,RUL0022,11/17/22 0:00,11/17/22 16:00 +CWC04006,Chiller 6,RUL0022,11/18/22 0:00,11/18/22 16:00 +CWC04006,Chiller 6,RUL0022,11/20/22 3:00,11/20/22 16:00 +CWC04006,Chiller 6,RUL0022,11/21/22 0:00,11/21/22 16:00 +CWC04006,Chiller 6,RUL0022,11/22/22 0:00,11/22/22 16:00 +CWC04006,Chiller 6,RUL0022,11/23/22 0:00,11/23/22 16:00 +CWC04006,Chiller 6,RUL0022,11/24/22 4:15,11/24/22 16:00 +CWC04006,Chiller 6,RUL0022,11/25/22 0:00,11/25/22 16:00 +CWC04006,Chiller 6,RUL0022,11/29/22 0:00,11/29/22 16:00 +CWC04006,Chiller 6,RUL0022,11/30/22 0:00,11/30/22 16:00 +CWC04006,Chiller 6,RUL0022,12/1/22 0:00,12/1/22 16:00 +CWC04006,Chiller 6,RUL0022,12/2/22 0:00,12/2/22 16:00 +CWC04006,Chiller 6,RUL0022,12/3/22 0:00,12/3/22 16:00 +CWC04006,Chiller 6,RUL0022,12/4/22 0:00,12/4/22 5:45 +CWC04006,Chiller 6,RUL0022,12/4/22 6:15,12/4/22 16:00 +CWC04006,Chiller 6,RUL0022,12/5/22 0:00,12/5/22 16:00 +CWC04006,Chiller 6,RUL0022,12/6/22 0:00,12/6/22 16:00 +CWC04006,Chiller 6,RUL0018,12/9/22 17:00,12/9/22 23:23 +CWC04006,Chiller 6,RUL0022,12/10/22 0:00,12/10/22 6:30 +CWC04007,Chiller 7,RUL0012,6/10/20 9:45,6/11/20 0:00 +CWC04007,Chiller 7,RUL0012,6/11/20 0:00,6/11/20 13:30 +CWC04007,Chiller 7,RUL0012,5/20/21 14:45,5/21/21 0:00 +CWC04007,Chiller 7,RUL0012,5/21/21 0:00,5/22/21 0:00 +CWC04007,Chiller 7,RUL0012,6/9/21 16:15,6/9/21 20:45 +CWC04007,Chiller 7,RUL0012,9/14/21 18:45,9/14/21 23:00 +CWC04007,Chiller 7,RUL0012,9/15/21 10:45,9/16/21 0:00 +CWC04007,Chiller 7,RUL0012,9/16/21 0:00,9/16/21 8:45 +CWC04007,Chiller 7,RUL0012,9/16/21 9:00,9/16/21 11:00 +CWC04007,Chiller 7,RUL0012,9/16/21 12:30,9/17/21 0:00 +CWC04007,Chiller 7,RUL0012,9/17/21 0:00,9/18/21 0:00 +CWC04007,Chiller 7,RUL0012,9/18/21 0:00,9/19/21 0:00 +CWC04007,Chiller 7,RUL0012,9/19/21 0:00,9/20/21 0:00 +CWC04007,Chiller 7,RUL0012,9/20/21 0:00,9/20/21 12:30 +CWC04007,Chiller 7,RUL0012,9/21/21 11:00,9/22/21 0:00 +CWC04007,Chiller 7,RUL0012,9/22/21 0:00,9/22/21 11:30 +CWC04007,Chiller 7,RUL0012,9/22/21 15:45,9/23/21 0:00 +CWC04007,Chiller 7,RUL0012,9/23/21 0:00,9/23/21 11:30 +CWC04007,Chiller 7,RUL0022,9/23/21 6:00,9/23/21 12:00 +CWC04007,Chiller 7,RUL0022,6/1/22 6:45,6/1/22 10:00 +CWC04007,Chiller 7,RUL0022,10/31/22 2:30,10/31/22 13:00 +CWC04007,Chiller 7,RUL0022,11/1/22 7:30,11/1/22 16:00 +CWC04007,Chiller 7,RUL0022,11/2/22 0:00,11/2/22 16:00 +CWC04007,Chiller 7,RUL0022,11/3/22 0:00,11/3/22 6:15 +CWC04007,Chiller 7,RUL0022,11/4/22 3:15,11/4/22 16:00 +CWC04007,Chiller 7,RUL0022,11/5/22 0:00,11/5/22 16:00 +CWC04007,Chiller 7,RUL0022,11/6/22 0:00,11/6/22 17:00 +CWC04007,Chiller 7,RUL0022,11/7/22 0:00,11/7/22 16:00 +CWC04007,Chiller 7,RUL0022,11/8/22 0:00,11/8/22 16:00 +CWC04007,Chiller 7,RUL0022,11/9/22 0:00,11/9/22 12:15 +CWC04007,Chiller 7,RUL0022,11/22/22 4:15,11/22/22 16:00 +CWC04007,Chiller 7,RUL0022,11/23/22 0:00,11/23/22 6:30 +CWC04009,Chiller 9,RUL0018,4/7/20 9:09,4/7/20 13:59 +CWC04009,Chiller 9,RUL0018,4/7/20 15:30,4/8/20 0:00 +CWC04009,Chiller 9,RUL0018,4/8/20 0:00,4/9/20 0:00 +CWC04009,Chiller 9,RUL0018,4/9/20 0:00,4/10/20 0:00 +CWC04009,Chiller 9,RUL0018,4/10/20 0:00,4/11/20 0:00 +CWC04009,Chiller 9,RUL0018,4/11/20 0:00,4/12/20 0:00 +CWC04009,Chiller 9,RUL0018,4/12/20 0:00,4/13/20 0:00 +CWC04009,Chiller 9,RUL0018,4/13/20 0:00,4/13/20 12:15 +CWC04009,Chiller 9,RUL0018,4/13/20 12:30,4/14/20 0:00 +CWC04009,Chiller 9,RUL0018,4/14/20 0:00,4/14/20 16:45 +CWC04009,Chiller 9,RUL0018,4/14/20 16:45,4/14/20 23:59 +CWC04009,Chiller 9,RUL0018,4/15/20 0:00,4/16/20 0:00 +CWC04009,Chiller 9,RUL0018,4/16/20 0:00,4/17/20 0:00 +CWC04009,Chiller 9,RUL0018,4/17/20 0:00,4/18/20 0:00 +CWC04009,Chiller 9,RUL0018,4/18/20 0:00,4/19/20 0:00 +CWC04009,Chiller 9,RUL0018,4/19/20 0:00,4/20/20 0:00 +CWC04009,Chiller 9,RUL0018,4/20/20 0:00,4/21/20 0:00 +CWC04009,Chiller 9,RUL0018,4/21/20 0:00,4/22/20 0:00 +CWC04009,Chiller 9,RUL0018,4/22/20 0:00,4/23/20 0:00 +CWC04009,Chiller 9,RUL0018,4/23/20 0:00,4/24/20 0:00 +CWC04009,Chiller 9,RUL0018,4/24/20 0:00,4/25/20 0:00 +CWC04009,Chiller 9,RUL0018,4/25/20 0:00,4/26/20 0:00 +CWC04009,Chiller 9,RUL0018,4/26/20 0:00,4/27/20 0:00 +CWC04009,Chiller 9,RUL0018,4/27/20 0:00,4/28/20 0:00 +CWC04009,Chiller 9,RUL0018,4/28/20 0:00,4/29/20 0:00 +CWC04009,Chiller 9,RUL0018,4/29/20 0:00,4/30/20 0:00 +CWC04009,Chiller 9,RUL0018,4/30/20 0:00,5/1/20 0:00 +CWC04009,Chiller 9,RUL0018,5/1/20 0:00,5/2/20 0:00 +CWC04009,Chiller 9,RUL0018,5/2/20 0:00,5/3/20 0:00 +CWC04009,Chiller 9,RUL0018,5/3/20 0:00,5/4/20 0:00 +CWC04009,Chiller 9,RUL0018,5/4/20 0:00,5/5/20 0:00 +CWC04009,Chiller 9,RUL0018,5/5/20 0:00,5/6/20 0:00 +CWC04009,Chiller 9,RUL0018,5/6/20 0:00,5/7/20 0:00 +CWC04009,Chiller 9,RUL0018,5/7/20 0:00,5/8/20 0:00 +CWC04009,Chiller 9,RUL0018,5/8/20 0:00,5/9/20 0:00 +CWC04009,Chiller 9,RUL0018,5/9/20 0:00,5/9/20 10:37 +CWC04009,Chiller 9,RUL0018,5/9/20 10:37,5/10/20 0:00 +CWC04009,Chiller 9,RUL0018,5/10/20 0:00,5/11/20 0:00 +CWC04009,Chiller 9,RUL0018,5/11/20 0:00,5/11/20 10:45 +CWC04009,Chiller 9,RUL0018,5/11/20 12:30,5/12/20 0:00 +CWC04009,Chiller 9,RUL0018,5/12/20 0:00,5/13/20 0:00 +CWC04009,Chiller 9,RUL0018,5/13/20 0:00,5/14/20 0:00 +CWC04009,Chiller 9,RUL0018,5/14/20 0:00,5/15/20 0:00 +CWC04009,Chiller 9,RUL0018,5/15/20 0:00,5/15/20 17:15 +CWC04009,Chiller 9,RUL0018,5/21/20 5:45,5/21/20 12:30 +CWC04009,Chiller 9,RUL0018,5/27/20 14:35,5/27/20 17:54 +CWC04009,Chiller 9,RUL0018,5/27/20 17:56,5/28/20 0:00 +CWC04009,Chiller 9,RUL0018,5/28/20 0:00,5/29/20 0:00 +CWC04009,Chiller 9,RUL0018,5/29/20 0:00,5/30/20 0:00 +CWC04009,Chiller 9,RUL0018,5/30/20 0:00,5/31/20 0:00 +CWC04009,Chiller 9,RUL0018,5/31/20 0:00,6/1/20 0:00 +CWC04009,Chiller 9,RUL0018,6/1/20 0:00,6/2/20 0:00 +CWC04009,Chiller 9,RUL0018,6/2/20 0:00,6/3/20 0:00 +CWC04009,Chiller 9,RUL0018,6/3/20 0:00,6/4/20 0:00 +CWC04009,Chiller 9,RUL0018,6/4/20 0:00,6/5/20 0:00 +CWC04009,Chiller 9,RUL0018,6/5/20 0:00,6/6/20 0:00 +CWC04009,Chiller 9,RUL0018,6/6/20 0:00,6/6/20 11:40 +CWC04009,Chiller 9,RUL0018,6/8/20 8:15,6/8/20 12:45 +CWC04009,Chiller 9,RUL0018,6/8/20 13:45,6/9/20 0:00 +CWC04009,Chiller 9,RUL0018,6/9/20 0:00,6/9/20 9:00 +CWC04009,Chiller 9,RUL0018,6/9/20 14:15,6/10/20 0:00 +CWC04009,Chiller 9,RUL0018,6/10/20 0:00,6/10/20 19:00 +CWC04009,Chiller 9,RUL0018,6/10/20 19:30,6/11/20 0:00 +CWC04009,Chiller 9,RUL0018,6/11/20 0:00,6/11/20 8:37 +CWC04009,Chiller 9,RUL0018,6/15/20 21:00,6/16/20 0:00 +CWC04009,Chiller 9,RUL0018,6/16/20 0:00,6/16/20 8:19 +CWC04009,Chiller 9,RUL0018,6/16/20 14:00,6/16/20 22:12 +CWC04009,Chiller 9,RUL0018,6/17/20 13:45,6/17/20 22:04 +CWC04009,Chiller 9,RUL0018,6/18/20 12:00,6/18/20 22:53 +CWC04009,Chiller 9,RUL0018,6/19/20 12:30,6/19/20 17:15 +CWC04009,Chiller 9,RUL0018,6/19/20 18:00,6/19/20 23:13 +CWC04009,Chiller 9,RUL0018,6/21/20 12:00,6/22/20 0:00 +CWC04009,Chiller 9,RUL0018,6/22/20 0:00,6/22/20 3:09 +CWC04009,Chiller 9,RUL0018,6/22/20 8:00,6/23/20 0:00 +CWC04009,Chiller 9,RUL0018,6/23/20 0:00,6/23/20 5:49 +CWC04009,Chiller 9,RUL0018,6/24/20 12:00,6/24/20 22:11 +CWC04009,Chiller 9,RUL0018,6/25/20 14:15,6/26/20 0:00 +CWC04009,Chiller 9,RUL0018,6/26/20 8:45,6/26/20 21:30 +CWC04009,Chiller 9,RUL0018,6/27/20 0:00,6/27/20 8:45 +CWC04009,Chiller 9,RUL0018,6/27/20 12:45,6/27/20 16:22 +CWC04009,Chiller 9,RUL0018,6/29/20 9:45,6/29/20 20:43 +CWC04009,Chiller 9,RUL0018,7/1/20 15:45,7/1/20 21:15 +CWC04009,Chiller 9,RUL0018,7/2/20 13:00,7/2/20 16:15 +CWC04009,Chiller 9,RUL0018,7/2/20 16:30,7/3/20 0:00 +CWC04009,Chiller 9,RUL0018,7/3/20 13:30,7/3/20 23:14 +CWC04009,Chiller 9,RUL0018,7/4/20 12:30,7/4/20 23:12 +CWC04009,Chiller 9,RUL0018,7/5/20 11:15,7/6/20 0:00 +CWC04009,Chiller 9,RUL0018,7/6/20 5:30,7/7/20 0:00 +CWC04009,Chiller 9,RUL0018,7/7/20 0:00,7/8/20 0:00 +CWC04009,Chiller 9,RUL0018,7/8/20 0:00,7/9/20 0:00 +CWC04009,Chiller 9,RUL0018,7/9/20 0:00,7/9/20 6:15 +CWC04009,Chiller 9,RUL0018,7/9/20 6:30,7/9/20 11:45 +CWC04009,Chiller 9,RUL0018,7/9/20 17:15,7/9/20 21:00 +CWC04009,Chiller 9,RUL0018,7/10/20 0:00,7/10/20 6:30 +CWC04009,Chiller 9,RUL0018,7/10/20 6:45,7/10/20 13:30 +CWC04009,Chiller 9,RUL0018,7/10/20 16:45,7/10/20 23:40 +CWC04009,Chiller 9,RUL0018,7/11/20 3:45,7/11/20 6:45 +CWC04009,Chiller 9,RUL0018,7/11/20 7:00,7/11/20 13:30 +CWC04009,Chiller 9,RUL0018,7/11/20 17:30,7/12/20 0:00 +CWC04009,Chiller 9,RUL0018,7/12/20 0:00,7/12/20 11:15 +CWC04009,Chiller 9,RUL0018,7/12/20 16:15,7/12/20 19:15 +CWC04009,Chiller 9,RUL0018,7/12/20 20:30,7/13/20 0:00 +CWC04009,Chiller 9,RUL0018,7/13/20 0:00,7/13/20 6:30 +CWC04009,Chiller 9,RUL0018,7/14/20 19:30,7/15/20 0:00 +CWC04009,Chiller 9,RUL0018,7/15/20 0:00,7/15/20 3:45 +CWC04009,Chiller 9,RUL0018,7/15/20 11:30,7/15/20 14:45 +CWC04009,Chiller 9,RUL0018,7/19/20 8:00,7/19/20 11:30 +CWC04009,Chiller 9,RUL0018,7/19/20 17:30,7/19/20 20:45 +CWC04009,Chiller 9,RUL0018,7/20/20 20:15,7/21/20 0:00 +CWC04009,Chiller 9,RUL0018,7/21/20 0:00,7/21/20 10:15 +CWC04009,Chiller 9,RUL0018,7/21/20 20:30,7/22/20 0:00 +CWC04009,Chiller 9,RUL0018,7/22/20 0:00,7/22/20 6:45 +CWC04009,Chiller 9,RUL0018,7/22/20 7:00,7/22/20 10:30 +CWC04009,Chiller 9,RUL0018,7/22/20 19:00,7/23/20 0:00 +CWC04009,Chiller 9,RUL0018,7/23/20 0:00,7/23/20 6:30 +CWC04009,Chiller 9,RUL0018,7/23/20 20:30,7/24/20 0:00 +CWC04009,Chiller 9,RUL0018,7/24/20 18:45,7/25/20 0:00 +CWC04009,Chiller 9,RUL0018,7/25/20 0:30,7/25/20 11:00 +CWC04009,Chiller 9,RUL0018,7/26/20 2:00,7/26/20 5:15 +CWC04009,Chiller 9,RUL0018,7/26/20 11:00,7/26/20 15:07 +CWC04009,Chiller 9,RUL0018,7/26/20 15:07,7/26/20 20:30 +CWC04009,Chiller 9,RUL0018,7/27/20 0:00,7/27/20 3:30 +CWC04009,Chiller 9,RUL0018,7/29/20 20:30,7/30/20 0:00 +CWC04009,Chiller 9,RUL0018,7/30/20 0:45,7/30/20 5:30 +CWC04009,Chiller 9,RUL0018,7/30/20 20:15,7/31/20 0:00 +CWC04009,Chiller 9,RUL0018,7/31/20 9:00,7/31/20 12:15 +CWC04009,Chiller 9,RUL0018,7/31/20 12:30,7/31/20 15:45 +CWC04009,Chiller 9,RUL0018,8/1/20 11:15,8/1/20 14:30 +CWC04009,Chiller 9,RUL0018,8/1/20 15:45,8/1/20 23:15 +CWC04009,Chiller 9,RUL0018,8/2/20 20:30,8/3/20 0:00 +CWC04009,Chiller 9,RUL0018,8/4/20 3:00,8/4/20 6:00 +CWC04009,Chiller 9,RUL0018,8/5/20 14:30,8/6/20 0:00 +CWC04009,Chiller 9,RUL0018,8/6/20 0:00,8/6/20 8:00 +CWC04009,Chiller 9,RUL0018,9/28/20 14:00,9/28/20 17:15 +CWC04009,Chiller 9,RUL0018,11/10/20 16:15,11/10/20 19:45 +CWC04009,Chiller 9,RUL0018,11/26/20 16:15,11/27/20 0:00 +CWC04009,Chiller 9,RUL0018,11/27/20 0:00,11/28/20 0:00 +CWC04009,Chiller 9,RUL0018,11/28/20 0:00,11/29/20 0:00 +CWC04009,Chiller 9,RUL0018,11/30/20 11:30,11/30/20 14:30 +CWC04009,Chiller 9,RUL0018,12/1/20 0:00,12/1/20 3:45 +CWC04009,Chiller 9,RUL0018,12/1/20 5:45,12/1/20 9:30 +CWC04009,Chiller 9,RUL0018,12/1/20 14:30,12/1/20 19:15 +CWC04009,Chiller 9,RUL0018,3/30/21 14:15,3/30/21 19:15 +CWC04009,Chiller 9,RUL0018,4/1/21 13:00,4/1/21 21:15 +CWC04009,Chiller 9,RUL0018,4/2/21 0:00,4/2/21 7:00 +CWC04009,Chiller 9,RUL0018,4/2/21 14:10,4/2/21 23:59 +CWC04009,Chiller 9,RUL0018,4/3/21 0:00,4/3/21 22:50 +CWC04009,Chiller 9,RUL0018,4/21/21 9:52,4/22/21 0:00 +CWC04009,Chiller 9,RUL0018,4/22/21 0:00,4/23/21 0:00 +CWC04009,Chiller 9,RUL0018,4/23/21 0:00,4/24/21 0:00 +CWC04009,Chiller 9,RUL0018,4/24/21 0:00,4/25/21 0:00 +CWC04009,Chiller 9,RUL0018,4/25/21 0:00,4/26/21 0:00 +CWC04009,Chiller 9,RUL0018,4/26/21 0:00,4/27/21 0:00 +CWC04009,Chiller 9,RUL0018,4/27/21 0:00,4/28/21 0:00 +CWC04009,Chiller 9,RUL0018,4/28/21 0:00,4/29/21 0:00 +CWC04009,Chiller 9,RUL0018,4/29/21 0:00,4/30/21 0:00 +CWC04009,Chiller 9,RUL0018,4/30/21 0:00,4/30/21 7:23 +CWC04009,Chiller 9,RUL0018,4/30/21 12:38,5/1/21 0:00 +CWC04009,Chiller 9,RUL0018,5/1/21 0:00,5/2/21 0:00 +CWC04009,Chiller 9,RUL0018,5/2/21 0:00,5/3/21 0:00 +CWC04009,Chiller 9,RUL0018,5/3/21 0:00,5/3/21 9:54 +CWC04009,Chiller 9,RUL0018,5/3/21 9:59,5/4/21 0:00 +CWC04009,Chiller 9,RUL0018,5/4/21 0:00,5/5/21 0:00 +CWC04009,Chiller 9,RUL0018,5/5/21 0:00,5/6/21 0:00 +CWC04009,Chiller 9,RUL0018,5/6/21 0:00,5/7/21 0:00 +CWC04009,Chiller 9,RUL0018,5/7/21 0:00,5/8/21 0:00 +CWC04009,Chiller 9,RUL0018,5/8/21 0:00,5/9/21 0:00 +CWC04009,Chiller 9,RUL0018,5/9/21 0:00,5/10/21 0:00 +CWC04009,Chiller 9,RUL0018,5/10/21 0:00,5/10/21 12:15 +CWC04009,Chiller 9,RUL0017,5/10/21 12:45,5/11/21 0:00 +CWC04009,Chiller 9,RUL0017,5/11/21 0:00,5/12/21 0:00 +CWC04009,Chiller 9,RUL0017,5/12/21 0:00,5/13/21 0:00 +CWC04009,Chiller 9,RUL0017,5/13/21 0:00,5/14/21 0:00 +CWC04009,Chiller 9,RUL0017,5/14/21 0:00,5/15/21 0:00 +CWC04009,Chiller 9,RUL0017,5/15/21 0:00,5/16/21 0:00 +CWC04009,Chiller 9,RUL0017,5/16/21 0:00,5/17/21 0:00 +CWC04009,Chiller 9,RUL0017,5/17/21 0:00,5/18/21 0:00 +CWC04009,Chiller 9,RUL0017,5/18/21 0:00,5/19/21 0:00 +CWC04009,Chiller 9,RUL0017,5/19/21 0:00,5/20/21 0:00 +CWC04009,Chiller 9,RUL0017,5/20/21 0:00,5/20/21 14:45 +CWC04009,Chiller 9,RUL0022,9/16/21 2:45,9/16/21 10:45 +CWC04009,Chiller 9,RUL0022,9/22/21 9:45,9/22/21 16:00 +CWC04009,Chiller 9,RUL0022,9/23/21 5:45,9/23/21 12:00 +CWC04009,Chiller 9,RUL0022,9/24/21 4:00,9/24/21 10:15 +CWC04009,Chiller 9,RUL0022,9/25/21 5:30,9/25/21 16:00 +CWC04009,Chiller 9,RUL0022,9/26/21 0:00,9/26/21 13:15 +CWC04009,Chiller 9,RUL0022,9/27/21 5:00,9/27/21 13:00 +CWC04009,Chiller 9,RUL0022,9/28/21 9:45,9/28/21 16:00 +CWC04009,Chiller 9,RUL0022,9/29/21 0:00,9/29/21 16:00 +CWC04009,Chiller 9,RUL0022,9/30/21 0:00,9/30/21 16:00 +CWC04009,Chiller 9,RUL0022,10/1/21 0:00,10/1/21 12:00 +CWC04009,Chiller 9,RUL0022,10/4/21 7:30,10/4/21 9:30 +CWC04009,Chiller 9,RUL0022,10/19/21 6:45,10/19/21 13:30 +CWC04009,Chiller 9,RUL0022,10/26/21 3:45,10/26/21 16:00 +CWC04009,Chiller 9,RUL0022,10/27/21 0:00,10/27/21 16:00 +CWC04009,Chiller 9,RUL0022,10/28/21 0:00,10/28/21 16:00 +CWC04009,Chiller 9,RUL0022,10/29/21 0:00,10/29/21 16:00 +CWC04009,Chiller 9,RUL0022,10/30/21 0:00,10/30/21 16:00 +CWC04009,Chiller 9,RUL0022,10/31/21 0:00,10/31/21 16:00 +CWC04009,Chiller 9,RUL0022,11/1/21 0:00,11/1/21 1:30 +CWC04009,Chiller 9,RUL0018,11/1/21 3:47,11/1/21 10:14 +CWC04009,Chiller 9,RUL0018,11/1/21 10:45,11/1/21 14:30 +CWC04009,Chiller 9,RUL0018,11/1/21 14:45,11/2/21 0:00 +CWC04009,Chiller 9,RUL0018,11/2/21 0:00,11/2/21 11:30 +CWC04009,Chiller 9,RUL0022,11/9/21 9:30,11/9/21 16:00 +CWC04009,Chiller 9,RUL0022,11/10/21 0:00,11/10/21 8:15 +CWC04009,Chiller 9,RUL0022,11/11/21 9:45,11/11/21 16:00 +CWC04009,Chiller 9,RUL0022,11/12/21 9:45,11/12/21 10:45 +CWC04009,Chiller 9,RUL0022,11/12/21 11:15,11/12/21 16:00 +CWC04009,Chiller 9,RUL0022,11/13/21 0:00,11/13/21 6:00 +CWC04009,Chiller 9,RUL0018,11/13/21 10:14,11/13/21 23:59 +CWC04009,Chiller 9,RUL0018,11/14/21 0:00,11/15/21 0:00 +CWC04009,Chiller 9,RUL0018,11/15/21 0:00,11/15/21 16:49 +CWC04009,Chiller 9,RUL0022,11/15/21 12:15,11/15/21 16:00 +CWC04009,Chiller 9,RUL0022,11/16/21 0:00,11/16/21 16:00 +CWC04009,Chiller 9,RUL0022,11/17/21 0:00,11/17/21 8:15 +CWC04009,Chiller 9,RUL0018,12/1/21 18:45,12/2/21 0:00 +CWC04009,Chiller 9,RUL0018,12/2/21 0:00,12/2/21 5:37 +CWC04009,Chiller 9,RUL0022,8/30/22 7:00,8/30/22 11:30 +CWC04009,Chiller 9,RUL0022,8/31/22 5:45,8/31/22 16:00 +CWC04009,Chiller 9,RUL0022,9/1/22 0:00,9/1/22 16:00 +CWC04009,Chiller 9,RUL0022,9/2/22 0:00,9/2/22 16:00 +CWC04009,Chiller 9,RUL0022,9/3/22 0:00,9/3/22 16:00 +CWC04009,Chiller 9,RUL0022,9/4/22 0:00,9/4/22 13:00 +CWC04009,Chiller 9,RUL0022,10/12/22 8:15,10/12/22 16:00 +CWC04009,Chiller 9,RUL0022,10/13/22 0:00,10/13/22 16:00 +CWC04009,Chiller 9,RUL0022,10/14/22 0:00,10/14/22 16:00 +CWC04009,Chiller 9,RUL0022,10/15/22 0:00,10/15/22 16:00 +CWC04009,Chiller 9,RUL0022,10/16/22 0:00,10/16/22 16:00 +CWC04009,Chiller 9,RUL0022,10/17/22 0:00,10/17/22 16:00 +CWC04009,Chiller 9,RUL0022,10/18/22 7:00,10/18/22 16:00 +CWC04009,Chiller 9,RUL0022,10/19/22 0:00,10/19/22 12:00 +CWC04009,Chiller 9,RUL0022,10/25/22 3:00,10/25/22 13:15 +CWC04009,Chiller 9,RUL0022,10/26/22 3:45,10/26/22 10:00 +CWC04009,Chiller 9,RUL0018,10/27/22 14:18,10/27/22 19:44 +CWC04009,Chiller 9,RUL0018,10/28/22 12:30,10/28/22 16:27 +CWC04009,Chiller 9,RUL0022,10/31/22 2:30,10/31/22 16:00 +CWC04009,Chiller 9,RUL0022,11/1/22 2:30,11/1/22 16:00 +CWC04009,Chiller 9,RUL0022,11/2/22 0:00,11/2/22 16:00 +CWC04009,Chiller 9,RUL0022,11/3/22 0:00,11/3/22 16:00 +CWC04009,Chiller 9,RUL0022,11/4/22 0:00,11/4/22 16:00 +CWC04009,Chiller 9,RUL0022,11/5/22 0:00,11/5/22 7:15 +CWC04009,Chiller 9,RUL0022,11/8/22 4:30,11/8/22 16:00 +CWC04009,Chiller 9,RUL0022,11/9/22 0:00,11/9/22 16:00 +CWC04009,Chiller 9,RUL0022,11/10/22 0:00,11/10/22 16:00 +CWC04009,Chiller 9,RUL0022,11/11/22 0:00,11/11/22 7:15 +CWC04009,Chiller 9,RUL0022,11/14/22 6:15,11/14/22 16:00 +CWC04009,Chiller 9,RUL0022,11/15/22 0:00,11/15/22 16:00 +CWC04009,Chiller 9,RUL0022,11/16/22 0:00,11/16/22 16:00 +CWC04009,Chiller 9,RUL0022,11/17/22 0:00,11/17/22 16:00 +CWC04009,Chiller 9,RUL0022,11/18/22 0:00,11/18/22 16:00 +CWC04009,Chiller 9,RUL0022,11/20/22 3:00,11/20/22 16:00 +CWC04009,Chiller 9,RUL0022,11/21/22 0:00,11/21/22 16:00 +CWC04009,Chiller 9,RUL0022,11/22/22 0:00,11/22/22 4:00 +CWC04009,Chiller 9,RUL0022,11/23/22 2:45,11/23/22 16:00 +CWC04009,Chiller 9,RUL0022,11/24/22 3:30,11/24/22 16:00 +CWC04009,Chiller 9,RUL0022,11/25/22 0:00,11/25/22 16:00 +CWC04009,Chiller 9,RUL0022,11/29/22 0:00,11/29/22 16:00 +CWC04009,Chiller 9,RUL0022,11/30/22 0:00,11/30/22 16:00 +CWC04009,Chiller 9,RUL0022,12/1/22 0:00,12/1/22 16:00 +CWC04009,Chiller 9,RUL0022,12/2/22 0:00,12/2/22 16:00 +CWC04009,Chiller 9,RUL0022,12/3/22 0:00,12/3/22 16:00 +CWC04009,Chiller 9,RUL0022,12/4/22 0:00,12/4/22 16:00 +CWC04009,Chiller 9,RUL0022,12/5/22 0:00,12/5/22 16:00 +CWC04009,Chiller 9,RUL0022,12/6/22 0:00,12/6/22 16:00 +CWC04009,Chiller 9,RUL0018,12/7/22 0:00,12/7/22 23:00 +CWC04009,Chiller 9,RUL0018,12/8/22 0:30,12/8/22 18:45 +CWC04009,Chiller 9,RUL0018,12/9/22 12:15,12/9/22 16:30 +CWC04009,Chiller 9,RUL0022,3/29/23 3:45,3/29/23 11:45 +CWC04009,Chiller 9,RUL0022,3/30/23 15:00,3/30/23 16:00 +CWC04009,Chiller 9,RUL0022,3/31/23 0:00,3/31/23 2:15 \ No newline at end of file diff --git a/src/couchdb/sample_data/work_order/alert_rule.csv b/src/couchdb/sample_data/work_order/alert_rule.csv new file mode 100644 index 00000000..dafd6cda --- /dev/null +++ b/src/couchdb/sample_data/work_order/alert_rule.csv @@ -0,0 +1,20 @@ +rule_id,rule_name,rule_logic +RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,, +RUL0013,Chiller - Low Supply Temperature,, +RUL0014,Chiller - Cooling Substance Delta T Low,, +RUL0015,Chiller - Efficiency,, +RUL0016,Chiller - Condenser Water Flow Through A Chiller That Is Off,, +RUL0017,Chiller - Load Low,, +RUL0018,Chiller - Evaporator Approach High,, +RUL0019,Chiller - Condenser Approach High,, +RUL0020,Chiller - Chilled water differential pressure setpoint attainment,, +RUL0021,Chiller - Excessive Power use in chiller that is off,, +RUL0022,Chiller - Chiller Cycling,, +RUL0023,Chiller - Out of Optimum Energy Loop Mode,, +RUL0024,Chiller - VFD Speed is Low,, +RUL0025,Chiller - VFD Speed is High,, +RUL0026,Chiller - Amperage is High,, +RUL0027,Chiller - Makeup Water High,, +RUL0028,Chiller - Chilled water leaving temperature varies between chillers,, +RUL0029,Chiller - Chiller Off and running chilled water,, +RUL0030,Chiller - Surging,, \ No newline at end of file diff --git a/src/couchdb/sample_data/work_order/alert_rule_failure_code_mapping.csv b/src/couchdb/sample_data/work_order/alert_rule_failure_code_mapping.csv new file mode 100644 index 00000000..9789f3f3 --- /dev/null +++ b/src/couchdb/sample_data/work_order/alert_rule_failure_code_mapping.csv @@ -0,0 +1,35 @@ +rule_id,rule_name,primary_code,primary_code_description +RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CS005,Control System Malfunction +RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CS001,Calibration Drift +RUL0013,Chiller - Low Supply Temperature,CS005,Control System Malfunction +RUL0013,Chiller - Low Supply Temperature,CS002,Sensor Failure +RUL0014,Chiller - Cooling Substance Delta T Low,M013,Condenser Plugged +RUL0014,Chiller - Cooling Substance Delta T Low,M014,Condenser Tube Leak +RUL0015,Chiller - Efficiency,M010,Compressor Failure +RUL0015,Chiller - Efficiency,CS005,Control System Malfunction +RUL0016,Chiller - Condenser Water Flow Through A Chiller That Is Off,CS005,Control System Malfunction +RUL0017,Chiller - Load Low,M007,Overloading +RUL0017,Chiller - Load Low,M011,Motor Failure +RUL0018,Chiller - Evaporator Approach High,M003,Deformation +RUL0018,Chiller - Evaporator Approach High,M010,Compressor Failure +RUL0019,Chiller - Condenser Approach High,M013,Condenser Plugged +RUL0019,Chiller - Condenser Approach High,M014,Condenser Tube Leak +RUL0020,Chiller - Chilled water differential pressure setpoint attainment,CS001,Calibration Drift +RUL0020,Chiller - Chilled water differential pressure setpoint attainment,CS002,Sensor Failure +RUL0021,Chiller - Excessive Power use in chiller that is off,M007,Overloading +RUL0021,Chiller - Excessive Power use in chiller that is off,M011,Motor Failure +RUL0022,Chiller - Chiller Cycling,CS005,Control System Malfunction +RUL0023,Chiller - Out of Optimum Energy Loop Mode,CS005,Control System Malfunction +RUL0024,Chiller - VFD Speed is Low,E006,VFD (Variable Frequency Drive) Failure +RUL0024,Chiller - VFD Speed is Low,M011,Motor Failure +RUL0025,Chiller - VFD Speed is High,E006,VFD (Variable Frequency Drive) Failure +RUL0025,Chiller - VFD Speed is High,M007,Overloading +RUL0026,Chiller - Amperage is High,M007,Overloading +RUL0026,Chiller - Amperage is High,M010,Compressor Failure +RUL0027,Chiller - Makeup Water High,L004,Piping Leak +RUL0027,Chiller - Makeup Water High,L005,Seepage +RUL0028,Chiller - Chilled water leaving temperature varies between chillers,CS002,Sensor Failure +RUL0028,Chiller - Chilled water leaving temperature varies between chillers,M014,Condenser Tube Leak +RUL0029,Chiller - Chiller Off and running chilled water,CS005,Control System Malfunction +RUL0030,Chiller - Surging,M010,Compressor Failure +RUL0030,Chiller - Surging,M008,Vibration Issues \ No newline at end of file diff --git a/src/couchdb/sample_data/work_order/all_wo_with_code_component_events.csv b/src/couchdb/sample_data/work_order/all_wo_with_code_component_events.csv new file mode 100644 index 00000000..cf339f73 --- /dev/null +++ b/src/couchdb/sample_data/work_order/all_wo_with_code_component_events.csv @@ -0,0 +1,4250 @@ +wo_id,wo_description,collection,primary_code,primary_code_description,secondary_code,secondary_code_description,equipment_id,equipment_name,preventive,work_priority,actual_finish,duration,actual_labor_hours +WO259747,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,4/6/16 14:00,3:00,1:00 +WO230718,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,3/23/15 19:30,3:00,1:00 +WO230715,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04007,Chiller 7,TRUE,5,3/23/15 19:30,3:00,1:00 +WO387987,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,5/21/21 14:00,3:00,1:00 +WO362082,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04007,Chiller 7,TRUE,5,6/26/20 13:00,3:00,1:00 +WO230716,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,3/23/15 19:30,3:00,1:00 +WO285807,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,3/22/17 18:49,3:00,1:00 +WO337045,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,5/19/19 15:30,3:00,1:00 +WO236899,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,6/18/15 15:30,3:00,1:00 +WO246339,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,10/19/15 19:30,3:00,1:00 +WO255989,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/23/16 16:00,3:00,1:00 +WO213335,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,9/15/14 15:30,3:00,1:00 +WO211015,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,8/27/14 15:30,3:00,1:00 +WO205036,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,6/18/14 15:30,3:00,1:00 +WO289648,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,5/24/17 13:08,3:00,1:00 +WO273027,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,9/26/16 15:00,3:00,1:00 +WO275070,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,10/18/16 17:53,3:00,1:00 +WO292047,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,6/21/17 15:10,3:00,1:00 +WO287797,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,4/20/17 17:48,3:00,1:00 +WO232532,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,4/29/15 15:30,3:00,1:00 +WO219568,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/19/14 15:30,3:00,1:00 +WO208022,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,7/29/14 15:30,3:00,1:00 +WO259212,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/23/16 15:00,3:00,1:00 +WO317052,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/22/18 16:36,3:00,1:00 +WO382262,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/1/21 14:00,3:00,1:00 +WO375249,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/13/20 14:00,3:00,1:00 +WO294756,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/3/17 14:40,3:00,1:00 +WO310167,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/13/18 15:14,3:00,1:00 +WO369365,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/12/20 13:00,3:00,1:00 +WO319237,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/17/18 17:56,3:00,1:00 +WO203398,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/11/14 15:30,3:00,1:00 +WO278464,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/10/16 15:09,3:00,1:00 +WO286778,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,4/6/17 19:51,3:00,1:00 +WO394207,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/18/21 15:30,3:00,1:00 +WO231149,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/31/15 15:30,3:00,1:00 +WO314540,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/24/18 19:46,3:00,1:00 +WO380058,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/25/21 14:00,3:00,1:00 +WO372740,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/6/20 12:00,3:00,1:00 +WO308117,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/16/18 19:36,3:00,1:00 +WO348765,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/8/19 14:00,3:00,1:00 +WO254493,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/8/16 16:00,3:00,1:00 +WO398970,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/7/21 19:19,3:00,1:00 +WO336975,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/1/19 12:00,3:00,1:00 +WO375248,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/13/20 13:00,3:00,1:00 +WO233761,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/5/15 15:30,3:00,1:00 +WO363573,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/3/20 15:00,3:00,1:00 +WO350988,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/5/19 14:00,3:00,1:00 +WO288755,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/2/17 18:42,3:00,1:00 +WO291139,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/7/17 17:55,3:00,1:00 +WO267346,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/11/16 19:50,3:00,1:00 +WO392061,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/13/21 12:00,3:00,1:00 +WO235856,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/2/15 15:30,3:00,1:00 +WO384256,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/31/21 13:00,3:00,1:00 +WO286777,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/6/17 19:49,3:00,1:00 +WO301213,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/21/17 15:05,3:00,1:00 +WO265012,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/8/16 13:35,3:00,1:00 +WO329599,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/24/19 14:00,3:00,1:00 +WO344078,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/31/19 13:00,3:00,1:00 +WO363572,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/3/20 13:00,3:00,1:00 +WO302399,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,12/6/17 18:23,3:00,1:00 +WO389432,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/2/21 15:00,3:00,1:00 +WO270622,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/16/16 15:11,3:00,1:00 +WO248628,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,11/18/15 20:00,3:00,1:00 +WO311157,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/17/18 17:00,3:00,1:00 +WO201034,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/7/14 15:30,3:00,1:00 +WO249530,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/3/15 14:00,3:00,1:00 +WO356583,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/27/20 14:00,3:00,1:00 +WO213354,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,9/17/14 15:30,3:00,1:00 +WO327513,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/14/18 15:00,3:00,1:00 +WO320148,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,9/24/18 14:58,3:00,1:00 +WO246357,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/21/15 15:00,3:00,1:00 +WO311159,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/13/18 13:39,3:00,1:00 +WO306024,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/22/18 19:21,3:00,1:00 +WO330495,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,2/7/19 20:00,3:00,1:00 +WO274023,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/12/16 20:51,3:00,1:00 +WO251135,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/30/15 17:00,3:00,1:00 +WO309082,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/9/18 18:03,3:00,1:00 +WO370428,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/19/20 16:38,3:00,1:00 +WO328584,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,1/10/19 19:00,3:00,1:00 +WO293862,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,7/20/17 16:49,3:00,1:00 +WO296198,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/28/17 18:27,3:00,1:00 +WO202267,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/29/14 15:30,3:00,1:00 +WO306020,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/12/18 18:58,3:00,1:00 +WO208055,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,7/30/14 15:30,3:00,1:00 +WO400954,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/22/21 13:15,3:00,1:00 +WO306025,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/16/18 16:07,3:00,1:00 +WO318095,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,7/24/18 13:37,3:00,1:00 +WO273035,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,9/23/16 19:00,3:00,1:00 +WO233765,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/5/15 15:30,3:00,1:00 +WO257168,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/1/16 16:00,3:00,1:00 +WO284290,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/6/17 20:50,3:00,1:00 +WO279373,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/27/16 18:33,3:00,1:00 +WO239386,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,7/21/15 15:30,3:00,1:00 +WO242653,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,9/10/15 15:30,3:00,1:00 +WO339714,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/11/19 14:00,3:00,1:00 +WO208056,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,7/30/14 15:30,3:00,1:00 +WO236919,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/16/15 15:30,3:00,1:00 +WO205068,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/18/14 15:30,3:00,1:00 +WO332038,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/28/19 13:00,3:00,1:00 +WO216644,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/24/14 15:30,3:00,1:00 +WO314541,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/24/18 19:45,3:00,1:00 +WO206155,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,7/1/14 15:30,3:00,1:00 +WO302919,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,11/30/17 18:56,3:00,1:00 +WO237866,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/29/15 15:30,3:00,1:00 +WO292870,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,7/12/17 12:59,3:00,1:00 +WO318096,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/27/18 19:00,3:00,1:00 +WO257165,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/4/16 18:30,3:00,1:00 +WO275078,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/19/16 15:06,3:00,1:00 +WO266634,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/22/16 18:27,3:00,1:00 +WO341900,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,7/26/19 18:30,3:00,1:00 +WO259221,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/10/16 17:30,3:00,1:00 +WO315754,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/13/18 18:32,3:00,1:00 +WO250649,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/17/16 14:00,3:00,1:00 +WO224847,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/19/15 11:00,3:00,1:00 +WO201036,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/6/14 15:30,3:00,1:00 +WO209512,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/13/14 15:30,3:00,1:00 +WO248627,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,11/19/15 20:30,3:00,1:00 +WO314543,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/1/18 12:58,3:00,1:00 +WO283386,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,3/13/17 16:42,3:00,1:00 +WO330494,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,2/8/19 16:00,3:00,1:00 +WO289660,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/25/17 17:53,3:00,1:00 +WO392062,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/13/21 15:00,3:00,1:00 +WO198947,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/28/14 15:30,3:00,1:00 +WO241302,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/19/15 15:30,3:00,1:00 +WO214601,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,9/29/14 15:30,3:00,1:00 +WO277091,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,11/20/16 16:00,3:00,1:00 +WO381216,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/17/21 14:00,3:00,1:00 +WO280143,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/12/17 15:30,3:00,1:00 +WO272067,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,9/6/16 16:52,3:00,1:00 +WO286781,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/6/17 19:46,3:00,1:00 +WO202263,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/29/14 15:30,3:00,1:00 +WO253167,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/2/16 18:00,3:00,1:00 +WO298238,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/16/17 13:02,3:00,1:00 +WO329601,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/24/19 16:00,3:00,1:00 +WO282103,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/2/17 20:32,3:00,1:00 +WO235860,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/1/15 15:30,3:00,1:00 +WO315756,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/20/18 19:16,3:00,1:00 +WO336977,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/1/19 18:30,3:00,1:00 +WO376658,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/10/20 14:00,3:00,1:00 +WO309083,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/6/18 15:14,3:00,1:00 +WO240298,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/5/15 15:30,3:00,1:00 +WO291142,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/13/17 13:12,3:00,1:00 +WO323484,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,10/30/18 13:30,3:00,1:00 +WO330498,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,3/26/19 21:45,3:00,1:00 +WO248629,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/19/15 14:00,3:00,1:00 +WO347515,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/8/19 13:00,3:00,1:00 +WO318099,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,8/18/18 13:00,3:00,1:00 +WO324411,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,11/2/18 13:00,3:00,1:00 +WO318097,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/5/18 18:59,3:00,1:00 +WO272577,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,9/15/16 18:37,3:00,1:00 +WO216091,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/30/14 7:30,3:00,1:00 +WO227704,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/28/15 15:30,3:00,1:00 +WO400171,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,11/17/21 20:30,3:00,1:00 +WO376660,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,12/10/20 18:30,3:00,1:00 +WO364671,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/18/20 13:00,3:00,1:00 +WO266187,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/15/16 12:05,3:00,1:00 +WO275080,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/25/16 18:42,3:00,1:00 +WO243599,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/3/15 19:30,3:00,1:00 +WO222102,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/3/15 15:30,3:00,1:00 +WO366952,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,7/22/20 17:30,3:00,1:00 +WO342835,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,8/2/19 17:30,3:00,1:00 +WO198948,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/25/14 7:30,3:00,1:00 +WO211035,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/19/14 7:30,3:00,1:00 +WO289662,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/21/17 15:09,3:00,1:00 +WO227706,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/28/15 15:30,3:00,1:00 +WO395525,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/10/21 13:00,3:00,1:00 +WO374220,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,11/4/20 18:00,3:00,1:00 +WO287806,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,5/13/17 13:59,3:00,1:00 +WO219588,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/18/14 7:30,3:00,1:00 +WO324409,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/1/18 13:00,3:00,1:00 +WO283384,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/12/17 14:18,3:00,1:00 +WO258702,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,3/14/16 13:00,3:00,1:00 +WO381218,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/17/21 18:00,3:00,1:00 +WO238840,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/25/15 15:30,3:00,1:00 +WO335520,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/26/19 23:30,3:00,1:00 +WO279377,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/10/17 15:53,3:00,1:00 +WO238842,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,7/24/15 7:30,3:00,1:00 +WO270626,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,8/17/16 18:57,3:00,1:00 +WO285448,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,3/18/17 14:43,3:00,1:00 +WO236922,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,7/6/15 7:30,3:00,1:00 +WO230273,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,4/10/15 7:30,3:00,1:00 +WO291693,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,6/23/17 15:06,3:00,1:00 +WO286348,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,3/31/17 14:01,3:00,1:00 +WO224827,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/20/15 15:30,3:00,1:00 +WO362083,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,6/26/20 15:00,3:00,1:00 +WO387986,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,5/21/21 13:00,3:00,1:00 +WO286345,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04007,Chiller 7,TRUE,5,3/31/17 13:35,3:00,1:00 +WO286347,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,3/31/17 13:59,3:00,1:00 +WO259200,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04007,Chiller 7,TRUE,5,4/5/16 17:30,3:00,1:00 +WO253149,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/27/16 20:30,3:00,1:00 +WO337046,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,5/19/19 17:00,3:00,1:00 +WO387505,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,5/19/21 12:00,3:00,1:00 +WO337044,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,5/18/19 13:00,3:00,1:00 +WO305992,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/8/18 15:07,3:00,1:00 +WO268660,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,7/22/16 15:00,3:00,1:00 +WO279365,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/21/16 20:21,3:00,1:00 +WO264048,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,5/18/16 16:42,3:00,1:00 +WO216626,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,10/20/14 15:30,3:00,1:00 +WO277078,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/17/16 19:28,3:00,1:00 +WO293856,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,7/25/17 15:18,3:00,1:00 +WO298229,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,10/3/17 18:25,3:00,1:00 +WO227682,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/19/15 15:30,3:00,1:00 +WO241282,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,8/17/15 15:30,3:00,1:00 +WO281201,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/8/17 16:48,3:00,1:00 +WO234921,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,5/20/15 15:30,3:00,1:00 +WO302914,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/28/17 13:29,3:00,1:00 +WO209519,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/13/14 8:30,3:00,1:00 +WO348764,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/8/19 13:00,3:00,1:00 +WO242649,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,9/11/15 8:00,3:00,1:00 +WO323481,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/29/18 13:00,3:00,1:00 +WO325614,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,11/27/18 18:30,3:00,1:00 +WO265016,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/7/16 16:59,3:00,1:00 +WO306018,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/12/18 18:55,3:00,1:00 +WO240295,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/4/15 15:30,3:00,1:00 +WO362355,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,6/26/20 17:30,3:00,1:00 +WO383581,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/24/21 13:00,3:00,1:00 +WO207558,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,7/22/14 7:30,3:00,1:00 +WO212149,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,9/3/14 15:30,3:00,1:00 +WO292866,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/5/17 14:17,3:00,1:00 +WO245283,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/6/15 11:45,3:00,1:00 +WO230719,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,3/23/15 19:30,3:00,1:00 +WO294760,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/25/17 18:48,3:00,1:00 +WO311575,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04007,Chiller 7,TRUE,5,3/27/18 12:51,3:00,1:00 +WO272063,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,9/13/16 15:13,3:00,1:00 +WO214597,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,9/29/14 15:30,3:00,1:00 +WO387985,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04007,Chiller 7,TRUE,5,5/21/21 12:00,3:00,1:00 +WO223475,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/5/15 15:30,3:00,1:00 +WO337043,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04007,Chiller 7,TRUE,5,5/18/19 12:00,3:00,1:00 +WO358158,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/27/20 13:00,3:00,1:00 +WO311577,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,3/27/18 13:03,3:00,1:00 +WO240294,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/4/15 15:30,3:00,1:00 +WO355527,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/24/20 14:00,3:00,1:00 +WO311576,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,3/27/18 12:56,3:00,1:00 +WO223474,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/5/15 15:30,3:00,1:00 +WO259201,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,4/5/16 19:30,3:00,1:00 +WO284289,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/6/17 20:47,3:00,1:00 +WO247361,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/5/15 15:45,3:00,1:00 +WO291138,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/13/17 13:09,3:00,1:00 +WO362356,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,6/26/20 18:30,3:00,1:00 +WO299187,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/26/17 14:50,3:00,1:00 +WO218165,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/6/14 15:30,3:00,1:00 +WO321415,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/2/18 12:08,3:00,1:00 +WO322330,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/16/18 15:00,3:00,1:00 +WO220618,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/4/14 15:30,3:00,1:00 +WO259748,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,4/6/16 13:00,3:00,1:00 +WO218160,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/5/14 15:30,3:00,1:00 +WO311578,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,3/27/18 13:05,3:00,1:00 +WO312319,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/4/18 18:23,3:00,1:00 +WO281208,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/8/17 16:46,3:00,1:00 +WO384255,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/30/21 18:30,3:00,1:00 +WO346652,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/1/19 17:30,3:00,1:00 +WO358159,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/27/20 15:00,3:00,1:00 +WO332035,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/27/19 18:30,3:00,1:00 +WO333078,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,3/21/19 15:30,3:00,1:00 +WO403092,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/6/22 14:00,3:00,1:00 +WO400955,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/22/21 14:30,3:00,1:00 +WO300258,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,11/14/17 23:02,3:00,1:00 +WO219586,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/4/14 15:30,3:00,1:00 +WO391036,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/2/21 13:00,3:00,1:00 +WO360972,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/11/20 12:00,3:00,1:00 +WO226120,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/4/15 15:30,3:00,1:00 +WO353399,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/17/20 0:30,3:00,1:00 +WO259220,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/30/16 23:30,3:00,1:00 +WO224846,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/20/15 15:30,3:00,1:00 +WO296191,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,9/3/17 13:46,3:00,1:00 +WO325611,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/16/18 19:30,3:00,1:00 +WO261660,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/1/16 20:19,3:00,1:00 +WO255996,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/23/16 20:30,3:00,1:00 +WO344079,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/31/19 15:00,3:00,1:00 +WO265013,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/8/16 13:38,3:00,1:00 +WO266627,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,6/22/16 18:25,3:00,1:00 +WO285814,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/24/17 15:25,3:00,1:00 +WO340676,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,6/27/19 23:30,3:00,1:00 +WO211033,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/25/14 15:30,3:00,1:00 +WO297226,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/22/17 18:46,3:00,1:00 +WO306022,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/19/18 18:42,3:00,1:00 +WO232538,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/22/15 15:30,3:00,1:00 +WO389433,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/2/21 16:00,3:00,1:00 +WO222072,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/18/14 15:30,3:00,1:00 +WO252150,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/24/16 15:00,3:00,1:00 +WO283377,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/20/17 19:45,3:00,1:00 +WO298236,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/7/17 14:11,3:00,1:00 +WO251136,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/23/15 20:00,3:00,1:00 +WO268668,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,7/21/16 19:00,3:00,1:00 +WO294757,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/21/17 16:47,3:00,1:00 +WO287802,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/2/17 18:33,3:00,1:00 +WO346653,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/1/19 19:30,3:00,1:00 +WO327516,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/13/18 19:30,3:00,1:00 +WO328583,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,1/9/19 19:30,3:00,1:00 +WO261653,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,5/1/16 20:21,3:00,1:00 +WO300248,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/7/17 20:48,3:00,1:00 +WO243597,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,9/21/15 19:30,3:00,1:00 +WO283382,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/20/17 19:46,3:00,1:00 +WO321416,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/12/18 13:00,3:00,1:00 +WO270608,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,8/16/16 15:00,3:00,1:00 +WO282100,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/3/17 17:31,3:00,1:00 +WO239387,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,7/20/15 15:30,3:00,1:00 +WO309075,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/6/18 15:12,3:00,1:00 +WO268667,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,7/22/16 15:00,3:00,1:00 +WO260438,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,4/13/16 12:00,3:00,1:00 +WO311158,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/24/18 14:35,3:00,1:00 +WO334241,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/28/19 12:00,3:00,1:00 +WO266635,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/22/16 12:20,3:00,1:00 +WO285809,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/22/17 17:03,3:00,1:00 +WO287803,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/5/17 17:47,3:00,1:00 +WO272064,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/7/16 13:29,3:00,1:00 +WO220623,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/5/14 7:45,3:00,1:00 +WO298237,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,10/11/17 18:33,3:00,1:00 +WO232537,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/29/15 15:30,3:00,1:00 +WO216645,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,10/24/14 15:30,3:00,1:00 +WO280140,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/4/17 18:20,3:00,1:00 +WO275079,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,11/2/16 16:33,3:00,1:00 +WO202246,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,5/31/14 15:30,3:00,1:00 +WO260441,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/11/16 13:00,3:00,1:00 +WO319238,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/17/18 17:59,3:00,1:00 +WO283383,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/2/17 18:26,3:00,1:00 +WO251119,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/22/15 17:00,3:00,1:00 +WO300255,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,11/14/17 23:10,3:00,1:00 +WO233762,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/5/15 15:30,3:00,1:00 +WO255997,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/22/16 20:00,3:00,1:00 +WO310168,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/23/18 13:51,3:00,1:00 +WO205069,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/17/14 15:30,3:00,1:00 +WO312321,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/22/18 13:32,3:00,1:00 +WO239367,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,7/23/15 15:30,3:00,1:00 +WO274027,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,10/5/16 16:30,3:00,1:00 +WO272575,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/28/16 13:00,3:00,1:00 +WO236918,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/17/15 15:30,3:00,1:00 +WO279374,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/29/16 20:00,3:00,1:00 +WO230250,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/16/15 19:30,3:00,1:00 +WO234941,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/19/15 15:30,3:00,1:00 +WO327514,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/14/18 16:00,3:00,1:00 +WO269542,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/15/16 16:40,3:00,1:00 +WO341898,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/2/19 19:30,3:00,1:00 +WO354048,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/1/20 16:03,3:00,1:00 +WO245287,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,10/7/15 14:00,3:00,1:00 +WO248610,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/20/15 0:30,3:00,1:00 +WO333079,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,3/21/19 19:30,3:00,1:00 +WO275992,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,11/2/16 14:49,3:00,1:00 +WO289661,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/5/17 15:26,3:00,1:00 +WO243571,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,9/23/15 19:30,3:00,1:00 +WO198921,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,4/24/14 15:30,3:00,1:00 +WO301216,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,11/20/17 18:42,3:00,1:00 +WO385705,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/19/21 13:00,3:00,1:00 +WO277092,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/4/16 19:30,3:00,1:00 +WO247365,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,11/4/15 22:15,3:00,1:00 +WO212153,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,9/5/14 15:30,3:00,1:00 +WO223478,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/9/15 15:30,3:00,1:00 +WO306026,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/8/18 15:06,3:00,1:00 +WO252153,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/22/16 17:00,3:00,1:00 +WO236920,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/15/15 7:30,3:00,1:00 +WO243601,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/2/15 19:30,3:00,1:00 +WO309084,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/16/18 19:15,3:00,1:00 +WO398136,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/4/21 17:30,3:00,1:00 +WO317055,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,7/10/18 17:32,3:00,1:00 +WO321418,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,10/12/18 19:15,3:00,1:00 +WO249533,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/4/15 20:30,3:00,1:00 +WO320149,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/8/18 18:24,3:00,1:00 +WO220626,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/5/14 15:30,3:00,1:00 +WO393307,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,8/3/21 17:15,3:00,1:00 +WO241305,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,8/20/15 15:30,3:00,1:00 +WO293863,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,7/28/17 16:27,3:00,1:00 +WO356585,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,4/27/20 18:30,3:00,1:00 +WO310170,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/14/18 15:37,3:00,1:00 +WO297229,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,9/25/17 15:17,3:00,1:00 +WO213355,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/11/14 15:30,3:00,1:00 +WO404246,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/18/22 18:30,3:00,1:00 +WO351786,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/16/19 13:00,3:00,1:00 +WO361945,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/12/20 13:00,3:00,1:00 +WO402110,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,12/11/21 18:00,3:00,1:00 +WO342833,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/2/19 13:00,3:00,1:00 +WO222100,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/3/15 15:30,3:00,1:00 +WO255998,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/19/16 18:30,3:00,1:00 +WO216093,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/29/14 7:30,3:00,1:00 +WO311161,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,4/13/18 16:03,3:00,1:00 +WO268669,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/20/16 11:35,3:00,1:00 +WO202268,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/28/14 7:30,3:00,1:00 +WO364673,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,6/18/20 17:00,3:00,1:00 +WO232250,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/28/15 7:30,3:00,1:00 +WO213357,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/12/14 15:30,3:00,1:00 +WO202270,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,5/27/14 7:30,3:00,1:00 +WO344947,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/5/19 13:00,3:00,1:00 +WO293864,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/28/17 16:29,3:00,1:00 +WO326327,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,12/7/18 20:00,3:00,1:00 +WO266189,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,6/13/16 16:57,3:00,1:00 +WO230271,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/7/15 7:30,3:00,1:00 +WO295722,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/7/17 16:39,3:00,1:00 +WO313270,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,5/23/18 18:56,3:00,1:00 +WO295724,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,9/8/17 15:16,3:00,1:00 +WO371752,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/25/20 13:00,3:00,1:00 +WO391038,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,7/2/21 17:00,3:00,1:00 +WO275082,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/26/16 16:27,3:00,1:00 +WO289664,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,5/20/17 15:00,3:00,1:00 +WO388412,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,5/27/21 13:00,3:00,1:00 +WO335522,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,4/27/19 17:00,3:00,1:00 +WO371754,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,9/25/20 17:30,3:00,1:00 +WO368169,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/28/20 13:00,3:00,1:00 +WO302397,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/7/17 17:47,3:00,1:00 +WO324408,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/21/19 19:30,3:00,1:00 +WO292867,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/5/17 14:20,3:00,1:00 +WO211034,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/25/14 15:30,3:00,1:00 +WO396594,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,9/22/21 20:30,3:00,1:00 +WO404932,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/8/22 14:00,3:00,1:00 +WO275988,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/2/16 16:26,3:00,1:00 +WO235857,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/2/15 15:30,3:00,1:00 +WO377671,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/23/20 14:00,3:00,1:00 +WO228888,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/4/15 15:30,3:00,1:00 +WO201033,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/7/14 15:30,3:00,1:00 +WO214598,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/29/14 15:30,3:00,1:00 +WO341897,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/2/19 17:30,3:00,1:00 +WO260437,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/13/16 13:00,3:00,1:00 +WO297225,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,9/22/17 18:35,3:00,1:00 +WO267345,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/15/16 19:50,3:00,1:00 +WO203397,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/11/14 15:30,3:00,1:00 +WO370427,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/20/20 13:00,3:00,1:00 +WO280139,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/4/17 18:19,3:00,1:00 +WO254492,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/8/16 14:00,3:00,1:00 +WO262718,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/13/16 14:00,3:00,1:00 +WO360971,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/8/20 19:00,3:00,1:00 +WO269538,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/5/16 17:16,3:00,1:00 +WO264057,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/19/16 19:04,3:00,1:00 +WO278465,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/10/16 15:12,3:00,1:00 +WO206151,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/2/14 15:30,3:00,1:00 +WO237863,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/30/15 15:30,3:00,1:00 +WO264056,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/21/16 19:00,3:00,1:00 +WO226124,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/6/15 15:30,3:00,1:00 +WO326324,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/3/18 19:00,3:00,1:00 +WO353398,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/16/20 23:30,3:00,1:00 +WO242650,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/11/15 15:30,3:00,1:00 +WO203401,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/11/14 15:30,3:00,1:00 +WO218168,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,11/6/14 15:30,3:00,1:00 +WO339713,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/11/19 12:30,3:00,1:00 +WO355528,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/24/20 15:00,3:00,1:00 +WO237862,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/30/15 15:30,3:00,1:00 +WO281209,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/4/17 20:19,3:00,1:00 +WO226121,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/4/15 15:30,3:00,1:00 +WO300256,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/14/17 22:58,3:00,1:00 +WO264055,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/20/16 21:20,3:00,1:00 +WO366053,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/2/20 13:00,3:00,1:00 +WO350989,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/5/19 16:00,3:00,1:00 +WO324407,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/21/19 14:00,3:00,1:00 +WO198946,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/28/14 15:30,3:00,1:00 +WO404933,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/7/22 18:30,3:00,1:00 +WO269539,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/5/16 17:20,3:00,1:00 +WO325612,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/16/18 18:30,3:00,1:00 +WO288756,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/4/17 18:57,3:00,1:00 +WO296197,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/29/17 18:28,3:00,1:00 +WO253166,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/1/16 16:00,3:00,1:00 +WO274024,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/12/16 20:52,3:00,1:00 +WO332036,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/27/19 19:30,3:00,1:00 +WO222098,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/20/14 15:30,3:00,1:00 +WO313266,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/9/18 17:04,3:00,1:00 +WO262719,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/13/16 14:04,3:00,1:00 +WO320147,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,9/24/18 18:51,3:00,1:00 +WO299188,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/26/17 14:53,3:00,1:00 +WO206152,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/2/14 15:30,3:00,1:00 +WO322328,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/10/18 15:00,3:00,1:00 +WO222099,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/20/14 15:30,3:00,1:00 +WO231150,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/31/15 15:30,3:00,1:00 +WO377672,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/23/20 15:00,3:00,1:00 +WO245284,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/8/15 19:30,3:00,1:00 +WO322329,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,10/10/18 12:06,3:00,1:00 +WO224848,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/24/15 15:30,3:00,1:00 +WO366054,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/2/20 15:00,3:00,1:00 +WO346655,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/30/19 21:30,3:00,1:00 +WO302918,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/2/17 17:08,3:00,1:00 +WO219587,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/4/14 15:30,3:00,1:00 +WO386852,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/6/21 13:00,3:00,1:00 +WO330496,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/1/19 16:00,3:00,1:00 +WO230270,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/16/15 19:30,3:00,1:00 +WO212150,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/3/14 15:30,3:00,1:00 +WO278468,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/9/16 13:16,3:00,1:00 +WO317053,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/22/18 16:38,3:00,1:00 +WO230269,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/16/15 19:30,3:00,1:00 +WO340677,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,7/1/19 18:00,3:00,1:00 +WO368170,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/25/20 13:45,3:00,1:00 +WO273034,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,9/23/16 13:03,3:00,1:00 +WO261661,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/29/16 21:55,3:00,1:00 +WO254496,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/11/16 16:00,3:00,1:00 +WO234940,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/20/15 15:30,3:00,1:00 +WO313267,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/13/18 12:57,3:00,1:00 +WO326325,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/7/18 16:00,3:00,1:00 +WO292052,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/27/17 14:22,3:00,1:00 +WO339716,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/11/19 19:30,3:00,1:00 +WO241301,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/18/15 15:30,3:00,1:00 +WO267349,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,7/15/16 19:56,3:00,1:00 +WO395527,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,9/10/21 17:30,3:00,1:00 +WO231153,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/1/15 15:30,3:00,1:00 +WO300254,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,11/7/17 20:49,3:00,1:00 +WO227703,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/18/15 15:30,3:00,1:00 +WO288759,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/9/17 12:34,3:00,1:00 +WO246358,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,11/3/15 13:00,3:00,1:00 +WO279375,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/14/17 14:00,3:00,1:00 +WO299191,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,10/30/17 17:49,3:00,1:00 +WO292053,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/28/17 18:14,3:00,1:00 +WO328585,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/20/19 0:30,3:00,1:00 +WO227702,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/19/15 15:30,3:00,1:00 +WO348767,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/30/19 21:30,3:00,1:00 +WO270623,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/18/16 19:00,3:00,1:00 +WO284293,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/7/17 19:28,3:00,1:00 +WO315755,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,7/2/18 12:13,3:00,1:00 +WO308120,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/15/18 12:46,3:00,1:00 +WO213353,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,9/19/14 15:30,3:00,1:00 +WO243598,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,9/18/15 19:30,3:00,1:00 +WO344081,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/30/19 21:30,3:00,1:00 +WO285446,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/18/17 14:40,3:00,1:00 +WO262722,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/6/16 22:07,3:00,1:00 +WO319240,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/18/18 14:27,3:00,1:00 +WO326323,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,11/30/18 20:00,3:00,1:00 +WO285815,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/26/17 19:30,3:00,1:00 +WO334243,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/28/19 15:00,3:00,1:00 +WO207556,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/20/14 15:30,3:00,1:00 +WO253168,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/17/16 18:00,3:00,1:00 +WO398134,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/5/21 13:00,3:00,1:00 +WO306028,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/8/18 15:09,3:00,1:00 +WO383583,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,3/24/21 17:54,3:00,1:00 +WO359341,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/29/20 13:00,3:00,1:00 +WO354050,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/30/20 22:30,3:00,1:00 +WO277095,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,11/22/16 17:59,3:00,1:00 +WO291691,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/22/17 15:31,3:00,1:00 +WO224850,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/10/15 7:30,3:00,1:00 +WO359343,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,4/29/20 17:30,3:00,1:00 +WO261662,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/26/16 15:30,3:00,1:00 +WO309086,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,3/16/18 19:17,3:00,1:00 +WO315758,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,6/24/18 16:02,3:00,1:00 +WO246361,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/30/15 15:00,3:00,1:00 +WO293866,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,7/31/17 13:44,3:00,1:00 +WO393305,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/3/21 13:00,3:00,1:00 +WO400169,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/16/21 15:00,3:00,1:00 +WO320151,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,9/18/18 12:11,3:00,1:00 +WO205070,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/11/14 15:30,3:00,1:00 +WO277093,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/22/16 17:56,3:00,1:00 +WO347517,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,9/4/19 19:00,3:00,1:00 +WO313268,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/23/18 18:51,3:00,1:00 +WO281212,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/14/17 18:12,3:00,1:00 +WO211037,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,8/19/14 7:30,3:00,1:00 +WO281210,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/14/17 18:09,3:00,1:00 +WO205072,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,7/11/14 5:30,3:00,1:00 +WO402108,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/11/21 14:00,3:00,1:00 +WO361947,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,5/13/20 5:30,3:00,1:00 +WO287804,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/13/17 13:55,3:00,1:00 +WO333080,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/26/19 23:45,3:00,1:00 +WO198950,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,4/16/14 7:30,3:00,1:00 +WO253170,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/18/16 12:30,3:00,1:00 +WO246359,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/30/15 19:00,3:00,1:00 +WO234942,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/19/15 7:30,3:00,1:00 +WO219590,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,11/21/14 7:30,3:00,1:00 +WO270624,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/17/16 18:54,3:00,1:00 +WO322332,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/17/18 13:00,3:00,1:00 +WO258700,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/14/16 15:00,3:00,1:00 +WO351788,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,12/16/19 17:00,3:00,1:00 +WO349560,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/20/19 14:00,3:00,1:00 +WO379172,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/13/21 18:30,3:00,1:00 +WO349562,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,11/20/19 18:30,3:00,1:00 +WO261664,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,5/3/16 15:28,3:00,1:00 +WO283421,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/15/17 18:26,3:00,1:00 +WO226214,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/23/15 11:30,3:00,1:00 +WO282860,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/21/17 19:21,3:00,1:00 +WO334887,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/11/19 19:30,3:00,1:00 +WO221327,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/2/15 15:30,3:00,1:00 +WO226212,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/19/15 11:01,3:00,1:00 +WO384328,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/15/21 15:30,3:00,1:00 +WO384327,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/12/21 20:30,3:00,1:00 +WO283422,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/25/17 19:33,3:00,1:00 +WO380509,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/5/21 17:30,3:00,1:00 +WO277166,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/13/17 17:45,3:00,1:00 +WO309163,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/19/18 19:30,3:00,1:00 +WO358244,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/2/20 15:30,3:00,1:00 +WO219673,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/7/15 19:30,3:00,1:00 +WO308743,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/10/18 15:00,3:00,1:00 +WO278991,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/27/16 18:35,3:00,1:00 +WO333249,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/19/19 13:00,3:00,1:00 +WO308216,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/10/18 19:00,3:00,1:00 +WO311242,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/14/18 13:51,3:00,1:00 +WO257293,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/1/16 19:20,3:00,1:00 +WO226210,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/17/15 13:29,3:00,1:00 +WO404046,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/24/22 12:15,3:00,1:00 +WO226215,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/26/15 11:30,3:00,1:00 +WO248713,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,5/26/16 12:40,3:00,1:00 +WO250699,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/29/15 20:00,3:00,1:00 +WO355095,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/17/20 14:00,3:00,1:00 +WO250701,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/16/15 15:30,3:00,1:00 +WO279815,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/27/17 17:57,3:00,1:00 +WO250705,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/20/16 16:30,3:00,1:00 +WO256049,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/7/16 20:07,3:00,1:00 +WO358242,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,4/3/20 14:00,3:00,1:00 +WO362063,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/14/20 12:30,3:00,1:00 +WO283818,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/27/17 15:12,3:00,1:00 +WO251199,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/2/16 19:30,3:00,1:00 +WO359949,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/14/20 15:30,3:00,1:00 +WO360469,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/21/20 13:00,3:00,1:00 +WO405304,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/21/22 15:30,3:00,1:00 +WO329681,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,3/31/19 17:30,3:00,1:00 +WO385283,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/7/21 15:30,3:00,1:00 +WO385901,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/21/21 15:30,3:00,1:00 +WO386400,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/16/21 13:00,3:00,1:00 +WO230414,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/3/15 15:30,3:00,1:00 +WO360468,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/16/20 19:30,3:00,1:00 +WO385900,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/13/21 19:30,3:00,1:00 +WO404620,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/2/22 17:00,3:00,1:00 +WO296785,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04702,Chiller 2,TRUE,5,9/21/17 19:30,3:00,1:00 +WO212297,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04702,Chiller 2,TRUE,5,11/23/14 10:00,3:00,1:00 +WO242781,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04702,Chiller 2,TRUE,5,10/17/15 14:05,3:00,1:00 +WO259373,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/16/16 15:00,3:00,1:00 +WO229012,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/16/15 19:02,3:00,1:00 +WO327207,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,12/14/18 14:45,3:00,1:00 +WO250043,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/17/15 14:00,3:00,1:00 +WO303032,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/5/18 18:46,3:00,1:00 +WO280290,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/4/17 18:25,3:00,1:00 +WO282857,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/21/17 18:20,3:00,1:00 +WO308217,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/15/18 14:00,3:00,1:00 +WO304603,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/27/17 14:41,3:00,1:00 +WO308214,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/10/18 16:00,3:00,1:00 +WO333248,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/19/19 14:00,3:00,1:00 +WO222165,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/24/15 7:30,3:00,1:00 +WO254586,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/25/16 14:25,3:00,1:00 +WO308741,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/10/18 14:00,3:00,1:00 +WO308218,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/15/18 17:00,3:00,1:00 +WO384326,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/1/21 16:30,3:00,1:00 +WO256612,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/17/16 19:25,3:00,1:00 +WO335588,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/23/19 15:30,3:00,1:00 +WO227063,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/4/15 10:00,3:00,1:00 +WO228266,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/16/15 19:30,3:00,1:00 +WO282855,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/20/17 16:01,3:00,1:00 +WO226209,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/4/15 7:52,3:00,1:00 +WO304605,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/20/17 18:41,3:00,1:00 +WO257291,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/28/16 19:22,3:00,1:00 +WO282859,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/21/17 18:20,3:00,1:00 +WO308212,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/10/18 20:30,3:00,1:00 +WO359951,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/10/20 19:30,3:00,1:00 +WO228267,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/18/15 19:30,3:00,1:00 +WO333243,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/7/19 20:30,3:00,1:00 +WO304148,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/29/18 14:29,3:00,1:00 +WO279437,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/14/17 13:27,3:00,1:00 +WO354490,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,7/7/20 22:30,3:00,1:00 +WO284416,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/29/17 22:48,3:00,1:00 +WO227060,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/16/15 15:30,3:00,1:00 +WO308740,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/12/18 12:17,3:00,1:00 +WO387486,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/14/21 16:00,3:00,1:00 +WO248712,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/3/16 15:30,3:00,1:00 +WO336500,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/19/19 14:00,3:00,1:00 +WO381358,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/25/21 16:30,3:00,1:00 +WO402641,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,12/28/21 18:30,3:00,1:00 +WO330133,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/14/19 19:00,3:00,1:00 +WO380444,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,3/30/21 15:30,3:00,1:00 +WO336028,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/17/19 12:30,3:00,1:00 +WO285701,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/13/17 16:52,3:00,1:00 +WO302069,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,11/28/17 13:50,3:00,1:00 +WO276163,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,11/3/16 18:06,3:00,1:00 +WO351954,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,12/8/19 19:30,3:00,1:00 +WO276161,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,11/3/16 18:04,3:00,1:00 +WO311660,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,3/27/18 13:08,3:00,1:00 +WO362353,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,6/26/20 14:00,3:00,1:00 +WO286433,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,3/31/17 14:04,3:00,1:00 +WO347198,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,10/12/19 12:30,3:00,1:00 +WO270691,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,8/22/16 13:30,3:00,1:00 +WO303031,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/27/17 14:51,3:00,1:00 +WO219736,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/26/14 15:30,3:00,1:00 +WO248773,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/25/15 20:30,3:00,1:00 +WO254582,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/9/16 17:49,3:00,1:00 +WO358247,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,4/3/20 12:00,3:00,1:00 +WO254588,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/29/16 15:39,3:00,1:00 +WO222161,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/28/14 15:30,3:00,1:00 +WO384322,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/10/21 20:30,3:00,1:00 +WO333247,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/8/19 20:30,3:00,1:00 +WO358248,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,4/2/20 19:30,3:00,1:00 +WO334885,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/12/19 19:30,3:00,1:00 +WO256048,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/17/16 20:00,3:00,1:00 +WO309619,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/15/18 18:30,3:00,1:00 +WO282861,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/21/17 18:56,3:00,1:00 +WO219674,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/19/15 5:00,3:00,1:00 +WO277167,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/13/17 18:18,3:00,1:00 +WO333245,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/8/19 13:00,3:00,1:00 +WO309161,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/19/18 15:30,3:00,1:00 +WO222160,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/9/15 15:30,3:00,1:00 +WO335590,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/19/19 19:30,3:00,1:00 +WO329270,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/14/19 13:30,3:00,1:00 +WO278996,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/25/17 20:22,3:00,1:00 +WO254584,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/24/16 18:30,3:00,1:00 +WO227061,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/9/15 19:30,3:00,1:00 +WO385285,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/3/21 19:30,3:00,1:00 +WO304153,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,3/6/18 15:05,3:00,1:00 +WO305006,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/5/18 16:11,3:00,1:00 +WO354132,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/1/20 14:00,3:00,1:00 +WO230413,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/20/15 15:30,3:00,1:00 +WO256051,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/14/16 19:57,3:00,1:00 +WO283820,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/27/17 19:40,3:00,1:00 +WO384324,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/12/21 15:30,3:00,1:00 +WO358246,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/1/20 19:30,3:00,1:00 +WO254587,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/29/16 13:19,3:00,1:00 +WO222650,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/26/14 15:30,3:00,1:00 +WO283424,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/1/17 20:02,3:00,1:00 +WO256614,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/21/16 19:07,3:00,1:00 +WO285957,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/3/17 17:05,3:00,1:00 +WO309617,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/16/18 18:30,3:00,1:00 +WO229010,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/16/15 19:01,3:00,1:00 +WO361028,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/14/20 14:00,3:00,1:00 +WO284414,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/28/17 22:45,3:00,1:00 +WO259374,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/5/16 15:30,3:00,1:00 +WO310244,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/18/18 12:35,3:00,1:00 +WO218411,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,11/3/14 15:30,3:00,1:00 +WO351965,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,12/8/19 20:30,3:00,1:00 +WO327214,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,12/14/18 15:00,3:00,1:00 +WO256718,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,5/11/16 12:30,3:00,1:00 +WO290786,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,7/21/17 16:40,3:00,1:00 +WO367152,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,10/20/20 19:00,3:00,1:00 +WO341536,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,7/8/20 14:04,3:00,1:00 +WO265199,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,8/19/16 21:30,3:00,1:00 +WO271166,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,9/29/16 14:45,3:00,1:00 +WO347231,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,5/28/20 13:55,3:00,1:00 +WO309252,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,3/28/18 13:00,3:00,1:00 +WO334373,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,4/17/19 17:15,3:00,1:00 +WO348016,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04702,Chiller 2,TRUE,5,12/10/19 19:30,3:00,1:00 +WO398630,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04702,Chiller 2,TRUE,5,10/5/21 15:30,3:00,1:00 +WO305622,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/3/18 21:32,3:00,1:00 +WO322072,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04702,Chiller 2,TRUE,5,10/24/18 18:30,3:00,1:00 +WO305627,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/16/18 19:44,3:00,1:00 +WO252352,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/7/16 13:00,3:00,1:00 +WO373355,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04702,Chiller 2,TRUE,5,10/26/20 17:00,3:00,1:00 +WO271638,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04702,Chiller 2,TRUE,5,12/16/16 17:29,3:00,1:00 +WO211107,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,9/4/14 15:30,3:00,1:00 +WO372329,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,9/30/20 12:00,3:00,1:00 +WO296253,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,11/29/17 20:26,3:00,1:00 +WO377769,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,12/15/20 17:57,3:00,1:00 +WO247570,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,11/6/15 14:00,3:00,1:00 +WO230890,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,3/23/15 19:30,3:00,1:00 +WO247572,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,11/6/15 16:00,3:00,1:00 +WO259853,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,4/5/16 18:30,3:00,1:00 +WO230927,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,4/17/15 17:30,3:00,1:00 +WO388108,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,5/13/21 14:00,3:00,1:00 +WO273707,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,10/17/16 19:30,3:00,1:00 +WO363766,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,5/28/20 13:07,3:00,1:00 +WO323258,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,10/18/18 15:30,3:00,1:00 +WO312515,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,5/10/18 15:00,3:00,1:00 +WO298876,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,9/28/17 19:30,3:00,1:00 +WO232073,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,4/30/15 15:30,3:00,1:00 +WO244384,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,9/25/15 15:30,3:00,1:00 +WO287547,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,5/15/17 20:30,3:00,1:00 +WO277241,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/30/17 12:14,3:00,1:00 +WO232072,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,4/28/15 15:30,3:00,1:00 +WO212967,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,9/7/14 15:30,3:00,1:00 +WO324167,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,11/27/18 15:00,3:00,1:00 +WO303526,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,2/1/18 19:42,3:00,1:00 +WO343351,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,8/29/19 14:00,3:00,1:00 +WO243372,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,9/15/15 15:30,3:00,1:00 +WO297543,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,11/29/17 20:14,3:00,1:00 +WO237635,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,7/10/15 7:30,3:00,1:00 +WO292644,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,7/26/17 14:53,3:00,1:00 +WO302071,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,11/28/17 19:05,3:00,1:00 +WO343349,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,8/29/19 12:00,3:00,1:00 +WO266741,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,8/2/16 19:30,3:00,1:00 +WO348443,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,11/6/19 13:00,3:00,1:00 +WO337071,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,5/19/19 13:00,3:00,1:00 +WO398236,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,10/7/21 19:19,3:00,1:00 +WO218389,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,11/3/14 15:30,3:00,1:00 +WO388006,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,5/21/21 16:00,3:00,1:00 +WO320888,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,9/20/18 12:04,3:00,1:00 +WO241373,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,8/22/15 15:30,3:00,1:00 +WO218388,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,11/3/14 15:30,3:00,1:00 +WO377799,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,12/13/20 16:00,3:00,1:00 +WO402643,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,12/28/21 19:30,3:00,1:00 +WO343353,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,8/8/19 14:45,3:00,1:00 +WO303070,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/29/17 18:55,3:00,1:00 +WO205740,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,6/27/14 13:30,3:00,1:00 +WO202869,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,7/9/14 11:00,3:00,1:00 +WO235605,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,8/3/15 22:30,3:00,1:00 +WO290787,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,7/21/17 15:09,3:00,1:00 +WO367153,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,10/20/20 19:00,3:00,1:00 +WO372367,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,9/22/20 19:00,3:00,1:00 +WO228423,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,4/30/15 15:30,3:00,1:00 +WO296301,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,10/10/17 19:00,3:00,1:00 +WO322842,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,9/26/18 17:00,3:00,1:00 +WO315856,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,7/17/18 15:30,3:00,1:00 +WO323707,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/21/19 15:30,3:00,1:00 +WO299379,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/13/18 15:30,3:00,1:00 +WO302082,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,11/28/17 19:06,3:00,1:00 +WO247586,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,11/6/15 17:00,3:00,1:00 +WO276176,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,11/3/16 18:09,3:00,1:00 +WO315857,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,7/18/18 19:00,3:00,1:00 +WO235604,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,7/2/15 13:30,3:00,1:00 +WO202870,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,6/24/14 13:00,3:00,1:00 +WO283927,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,4/25/17 21:30,3:00,1:00 +WO242150,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,10/10/15 17:00,3:00,1:00 +WO211683,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,9/3/14 15:30,3:00,1:00 +WO341535,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,7/8/20 14:05,3:00,1:00 +WO359523,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,5/28/20 13:56,3:00,1:00 +WO265198,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,8/19/16 19:00,3:00,1:00 +WO273703,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,10/5/16 14:00,3:00,1:00 +WO259916,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,5/16/16 17:21,3:00,1:00 +WO337117,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,5/14/19 19:30,3:00,1:00 +WO362629,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,5/20/20 17:00,3:00,1:00 +WO287545,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,5/5/17 18:00,3:00,1:00 +WO273708,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,10/18/16 18:00,3:00,1:00 +WO380173,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/7/21 16:30,3:00,1:00 +WO261379,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,5/1/16 17:00,3:00,1:00 +WO232071,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,5/8/15 8:00,3:00,1:00 +WO317758,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,8/9/18 15:10,3:00,1:00 +WO312514,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,5/10/18 16:30,3:00,1:00 +WO244388,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,10/9/15 14:00,3:00,1:00 +WO214111,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,9/30/14 14:00,3:00,1:00 +WO323255,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,9/24/18 16:00,3:00,1:00 +WO375434,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,10/21/20 19:00,3:00,1:00 +WO292642,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,7/26/17 14:51,3:00,1:00 +WO348445,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,11/6/19 15:00,3:00,1:00 +WO237637,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,7/10/15 7:30,3:00,1:00 +WO272261,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,9/12/16 17:03,3:00,1:00 +WO266743,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,8/24/16 13:29,3:00,1:00 +WO213627,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,10/10/14 7:30,3:00,1:00 +WO272259,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,9/12/16 17:00,3:00,1:00 +WO243370,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,9/15/15 15:30,3:00,1:00 +WO312038,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,6/21/18 13:30,3:00,1:00 +WO298881,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,9/28/17 20:30,3:00,1:00 +WO286487,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,3/29/17 17:05,3:00,1:00 +WO349284,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,5/28/20 13:05,3:00,1:00 +WO287549,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,4/27/17 20:30,3:00,1:00 +WO338403,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,6/4/19 18:30,3:00,1:00 +WO323256,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,9/26/18 16:00,3:00,1:00 +WO312513,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,6/6/18 13:15,3:00,1:00 +WO323259,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,10/18/18 13:15,3:00,1:00 +WO287548,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,4/27/17 20:00,3:00,1:00 +WO214107,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,10/14/14 15:00,3:00,1:00 +WO375431,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,10/21/20 19:00,3:00,1:00 +WO349287,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,5/28/20 13:06,3:00,1:00 +WO298880,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,10/12/17 18:36,3:00,1:00 +WO267236,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,7/4/16 6:45,3:00,1:00 +WO369108,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,7/23/20 19:00,3:00,1:00 +WO292653,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,7/14/17 12:00,3:00,1:00 +WO303524,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,2/1/18 19:39,3:00,1:00 +WO220289,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,11/29/14 15:30,3:00,1:00 +WO324165,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,11/27/18 13:00,3:00,1:00 +WO416068,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,8/17/22 16:30,3:00,1:00 +WO319382,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,9/17/18 13:11,3:00,1:00 +WO319380,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,9/17/18 13:08,3:00,1:00 +WO297541,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,11/29/17 20:17,3:00,1:00 +WO274285,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,12/21/16 15:30,3:00,1:00 +WO317766,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,7/16/18 19:00,3:00,1:00 +WO237651,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,6/30/15 12:00,3:00,1:00 +WO245628,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,1/29/16 15:00,3:00,1:00 +WO377972,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,12/22/20 15:30,3:00,1:00 +WO387149,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,5/14/21 12:32,3:00,1:00 +WO403803,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,1/12/22 14:30,3:00,1:00 +WO393574,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,7/29/21 18:30,3:00,1:00 +WO325835,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/23/19 20:00,3:00,1:00 +WO325837,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04009,Chiller 9,TRUE,5,1/4/19 20:00,3:00,1:00 +WO353168,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,1/14/20 18:30,3:00,1:00 +WO369199,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,7/23/20 19:00,3:00,1:00 +WO351294,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04009,Chiller 9,TRUE,5,3/16/20 16:00,3:00,1:00 +WO312190,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/25/18 19:00,3:00,1:00 +WO338520,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,TRUE,5,6/26/19 18:00,3:00,1:00 +WO388298,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,5/21/21 17:30,3:00,1:00 +WO377505,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04010,Chiller 10,TRUE,5,4/6/21 18:30,3:00,1:00 +WO405421,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,2/21/22 20:00,3:00,1:00 +WO374043,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,10/13/20 15:00,3:00,1:00 +WO364520,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,6/12/20 19:00,3:00,1:00 +WO360234,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,4/20/20 15:00,3:00,1:00 +WO352097,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,12/8/19 13:00,3:00,1:00 +WO400064,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,11/10/21 17:30,3:00,1:00 +WO371141,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,9/17/20 16:30,3:00,1:00 +WO360236,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,4/22/20 15:00,3:00,1:00 +WO367298,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,7/7/20 19:00,3:00,1:00 +WO384007,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,6/21/21 19:00,3:00,1:00 +WO384009,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,6/21/21 20:00,3:00,1:00 +WO384011,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,6/29/21 14:18,3:00,1:00 +WO386598,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,6/21/21 21:00,3:00,1:00 +WO393590,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,8/18/21 14:00,3:00,1:00 +WO323482,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/16/18 20:12,3:00,1:00 +WO350682,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,12/3/19 14:00,3:00,1:00 +WO387147,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,5/13/21 15:00,3:00,1:00 +WO364522,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,6/5/20 13:00,3:00,1:00 +WO374039,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,10/13/20 13:00,3:00,1:00 +WO340903,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,TRUE,5,6/26/19 17:30,3:00,1:00 +WO333653,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,3/29/19 14:00,3:00,1:00 +WO358650,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,6/23/20 19:00,3:00,1:00 +WO367294,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,7/8/20 19:00,3:00,1:00 +WO339014,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,6/5/19 12:00,3:00,1:00 +WO400066,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,11/12/21 15:30,3:00,1:00 +WO376515,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,5/24/21 18:30,3:00,1:00 +WO350671,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,7/26/20 14:00,3:00,1:00 +WO325833,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,3/7/19 19:00,3:00,1:00 +WO350673,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,4/8/20 19:30,3:00,1:00 +WO367296,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,7/9/20 18:30,3:00,1:00 +WO362354,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,6/26/20 16:00,3:00,1:00 +WO402780,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,12/29/21 20:30,3:00,1:00 +WO343429,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,8/15/19 18:00,3:00,1:00 +WO377502,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04009,Chiller 9,TRUE,5,2/12/21 19:30,3:00,1:00 +WO377503,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/15/21 17:00,3:00,1:00 +WO387151,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,5/13/21 13:00,3:00,1:00 +WO357317,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,2/26/20 18:00,3:00,1:00 +WO380658,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,2/4/21 17:00,3:00,1:00 +WO374041,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,10/29/20 16:30,3:00,1:00 +WO405423,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,2/24/22 17:30,3:00,1:00 +WO393576,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,8/5/21 17:30,3:00,1:00 +WO400068,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,11/12/21 17:30,3:00,1:00 +WO380384,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/10/21 19:30,3:00,1:00 +WO264059,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,5/26/16 12:32,3:00,1:00 +WO384006,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,6/21/21 17:00,3:00,1:00 +WO328587,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/19/19 20:30,3:00,1:00 +WO391366,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,10/1/21 12:00,3:00,1:00 +WO374218,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/4/20 14:27,3:00,1:00 +WO391368,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,10/1/21 14:00,3:00,1:00 +WO241303,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/20/15 15:30,3:00,1:00 +WO391370,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,10/1/21 17:00,3:00,1:00 +WO393588,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,8/18/21 12:00,3:00,1:00 +WO372741,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/6/20 13:00,3:00,1:00 +WO376517,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/17/21 19:00,3:00,1:00 +WO325839,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/18/19 23:00,3:00,1:00 +WO333652,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,4/20/19 21:00,3:00,1:00 +WO351295,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/15/20 18:30,3:00,1:00 +WO351297,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04010,Chiller 10,TRUE,5,2/21/20 17:30,3:00,1:00 +WO393572,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,8/6/21 15:00,3:00,1:00 +WO389853,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,6/14/21 19:00,3:00,1:00 +WO391813,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,7/10/21 17:00,3:00,1:00 +WO358651,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04009,Chiller 9,TRUE,5,6/23/20 20:00,3:00,1:00 +WO353164,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,1/14/20 16:00,3:00,1:00 +WO337243,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,5/19/19 14:00,3:00,1:00 +WO353166,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,1/20/20 16:00,3:00,1:00 +WO377970,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,12/18/20 21:00,3:00,1:00 +WO405425,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,2/22/22 14:00,3:00,1:00 +WO360238,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,4/20/20 17:00,3:00,1:00 +WO380660,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,2/2/21 16:00,3:00,1:00 +WO396922,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,12/28/21 14:00,3:00,1:00 +WO380656,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,2/4/21 19:30,3:00,1:00 +WO398377,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,10/7/21 19:00,3:00,1:00 +WO396924,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,12/28/21 16:00,3:00,1:00 +WO396926,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,12/28/21 18:00,3:00,1:00 +WO384631,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,3/31/21 17:00,3:00,1:00 +WO393587,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,8/17/21 18:00,3:00,1:00 +WO399661,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04009,Chiller 9,TRUE,5,11/19/21 20:00,3:00,1:00 +WO404244,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/19/22 14:00,3:00,1:00 +WO396595,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/22/21 21:30,3:00,1:00 +WO366950,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/22/20 16:45,3:00,1:00 +WO388410,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/26/21 13:00,3:00,1:00 +WO298240,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/16/17 13:05,3:00,1:00 +WO344949,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,9/4/19 7:00,3:00,1:00 +WO234944,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,5/22/15 7:30,3:00,1:00 +WO394208,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/18/21 16:21,3:00,1:00 +WO382261,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/1/21 13:00,3:00,1:00 +WO256000,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/19/16 20:30,3:00,1:00 +WO334240,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/27/19 16:00,3:00,1:00 +WO268671,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,7/20/16 14:12,3:00,1:00 +WO249529,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/3/15 13:00,3:00,1:00 +WO252149,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/25/16 19:30,3:00,1:00 +WO228885,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/2/15 15:30,3:00,1:00 +WO257164,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/4/16 16:00,3:00,1:00 +WO398971,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/7/21 19:19,3:00,1:00 +WO386851,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/6/21 12:00,3:00,1:00 +WO385707,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,4/16/21 14:00,3:00,1:00 +WO275989,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/31/16 13:29,3:00,1:00 +WO301212,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/20/17 18:45,3:00,1:00 +WO247362,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/5/15 16:30,3:00,1:00 +WO333082,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,3/25/19 23:30,3:00,1:00 +WO312318,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/3/18 15:32,3:00,1:00 +WO250647,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/3/16 19:00,3:00,1:00 +WO336974,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/30/19 15:30,3:00,1:00 +WO209515,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/13/14 8:00,3:00,1:00 +WO329598,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/24/19 13:00,3:00,1:00 +WO228884,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/2/15 15:30,3:00,1:00 +WO282099,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/31/17 14:40,3:00,1:00 +WO379170,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/12/21 18:00,3:00,1:00 +WO248631,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,11/20/15 14:00,3:00,1:00 +WO308116,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/16/18 19:37,3:00,1:00 +WO369367,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,8/12/20 17:00,3:00,1:00 +WO232252,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,5/3/15 15:30,3:00,1:00 +WO380059,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/26/21 13:00,3:00,1:00 +WO403091,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/6/22 13:00,3:00,1:00 +WO33617,Routine Maintenance and more specific Unscheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04704,Chiller 4,FALSE,1,10/15/10 15:30,3:00,1:00 +WO351922,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,12/8/19 16:00,3:00,1:00 +WO247324,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,11/6/15 13:00,3:00,1:00 +WO259202,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,4/6/16 12:00,3:00,1:00 +WO246338,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,10/22/15 18:30,3:00,1:00 +WO340688,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,6/26/19 13:00,3:00,1:00 +WO324401,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,11/16/18 16:30,3:00,1:00 +WO241281,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,8/18/15 15:30,3:00,1:00 +WO236898,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,6/15/15 15:30,3:00,1:00 +WO208035,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,7/29/14 15:30,3:00,1:00 +WO230249,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/17/15 19:30,3:00,1:00 +WO261652,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,4/27/16 21:27,3:00,1:00 +WO239366,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,7/23/15 15:30,3:00,1:00 +WO266626,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,6/23/16 16:52,3:00,1:00 +WO275069,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,10/20/16 13:00,3:00,1:00 +WO338323,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,6/26/19 17:45,3:00,1:00 +WO273026,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,9/20/16 18:06,3:00,1:00 +WO198920,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,4/24/14 15:30,3:00,1:00 +WO213334,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,9/16/14 15:30,3:00,1:00 +WO328577,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,1/8/19 18:30,3:00,1:00 +WO330490,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,2/11/19 16:00,3:00,1:00 +WO300247,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,11/10/17 1:00,3:00,1:00 +WO227681,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/20/15 15:30,3:00,1:00 +WO222071,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,12/18/14 15:30,3:00,1:00 +WO234938,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/21/15 15:30,3:00,1:00 +WO287800,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/21/17 16:42,3:00,1:00 +WO261658,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/2/16 19:27,3:00,1:00 +WO326321,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/29/18 13:30,3:00,1:00 +WO255994,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/18/16 16:00,3:00,1:00 +WO243595,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,9/19/15 19:30,3:00,1:00 +WO279372,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/23/16 14:44,3:00,1:00 +WO266632,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/23/16 16:54,3:00,1:00 +WO273032,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,9/20/16 18:08,3:00,1:00 +WO239384,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/23/15 15:30,3:00,1:00 +WO326322,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/29/18 15:00,3:00,1:00 +WO246355,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/22/15 18:30,3:00,1:00 +WO222097,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/18/14 15:30,3:00,1:00 +WO267347,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,7/15/16 19:53,3:00,1:00 +WO300252,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/31/17 16:57,3:00,1:00 +WO236916,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/22/15 15:30,3:00,1:00 +WO227700,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/20/15 15:30,3:00,1:00 +WO333076,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,3/21/19 12:00,3:00,1:00 +WO293860,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/24/17 16:48,3:00,1:00 +WO254495,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/11/16 14:00,3:00,1:00 +WO224845,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/21/15 15:30,3:00,1:00 +WO294758,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,8/25/17 18:46,3:00,1:00 +WO301215,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,11/20/17 18:41,3:00,1:00 +WO330493,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/11/19 13:30,3:00,1:00 +WO236917,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/22/15 15:30,3:00,1:00 +WO311155,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/26/18 13:42,3:00,1:00 +WO239385,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/21/15 15:30,3:00,1:00 +WO251133,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/22/15 19:30,3:00,1:00 +WO348766,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/30/19 19:30,3:00,1:00 +WO242651,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,9/11/15 15:30,3:00,1:00 +WO275077,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/18/16 17:55,3:00,1:00 +WO260439,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,4/12/16 12:30,3:00,1:00 +WO273033,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/21/16 18:50,3:00,1:00 +WO340674,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,6/26/19 15:00,3:00,1:00 +WO313264,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/14/18 17:48,3:00,1:00 +WO218167,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,11/6/14 15:30,3:00,1:00 +WO231152,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/1/15 15:30,3:00,1:00 +WO298235,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/4/17 12:51,3:00,1:00 +WO259219,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/24/16 18:00,3:00,1:00 +WO292869,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,7/6/17 12:23,3:00,1:00 +WO332037,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/27/19 20:30,3:00,1:00 +WO306019,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/17/18 18:12,3:00,1:00 +WO278467,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/9/16 13:15,3:00,1:00 +WO214599,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,9/29/14 15:30,3:00,1:00 +WO341899,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,7/26/19 15:00,3:00,1:00 +WO318094,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/11/18 16:57,3:00,1:00 +WO206153,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,7/1/14 15:30,3:00,1:00 +WO260440,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/14/16 14:30,3:00,1:00 +WO212152,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,9/4/14 15:30,3:00,1:00 +WO275990,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/4/16 17:19,3:00,1:00 +WO202266,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/31/14 15:30,3:00,1:00 +WO272065,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,9/6/16 16:48,3:00,1:00 +WO299190,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/29/17 12:16,3:00,1:00 +WO320146,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/22/18 14:53,3:00,1:00 +WO211036,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,8/19/14 7:30,3:00,1:00 +WO226123,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/6/15 15:30,3:00,1:00 +WO241300,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/17/15 15:30,3:00,1:00 +WO264058,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,5/26/16 12:29,3:00,1:00 +WO284291,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/6/17 20:53,3:00,1:00 +WO223476,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/9/15 15:30,3:00,1:00 +WO286780,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/6/17 19:44,3:00,1:00 +WO311156,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,4/26/18 14:01,3:00,1:00 +WO328586,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/19/19 18:30,3:00,1:00 +WO306023,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/16/18 16:05,3:00,1:00 +WO220625,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/5/14 15:30,3:00,1:00 +WO287801,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,4/18/17 21:03,3:00,1:00 +WO308119,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/13/18 16:00,3:00,1:00 +WO219589,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,11/18/14 7:30,3:00,1:00 +WO257166,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/3/16 14:00,3:00,1:00 +WO233764,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/5/15 15:30,3:00,1:00 +WO292051,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/19/17 17:08,3:00,1:00 +WO206154,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,7/1/14 15:30,3:00,1:00 +WO198949,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/25/14 7:30,3:00,1:00 +WO209517,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,8/13/14 8:30,3:00,1:00 +WO291141,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/13/17 13:10,3:00,1:00 +WO287805,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,5/13/17 13:57,3:00,1:00 +WO241304,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,8/20/15 15:30,3:00,1:00 +WO298239,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/16/17 13:03,3:00,1:00 +WO242652,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,9/10/15 15:30,3:00,1:00 +WO335521,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/27/19 15:00,3:00,1:00 +WO306027,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/8/18 15:07,3:00,1:00 +WO376659,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,12/10/20 16:28,3:00,1:00 +WO246360,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,11/3/15 20:30,3:00,1:00 +WO272576,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/28/16 13:00,3:00,1:00 +WO258701,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,3/15/16 13:00,3:00,1:00 +WO324410,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,11/1/18 15:00,3:00,1:00 +WO311160,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/13/18 16:01,3:00,1:00 +WO230272,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/7/15 7:30,3:00,1:00 +WO388411,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,5/26/21 15:00,3:00,1:00 +WO261663,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,5/3/16 15:26,3:00,1:00 +WO383582,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,3/24/21 17:52,3:00,1:00 +WO279376,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/14/17 14:00,3:00,1:00 +WO315757,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,6/22/18 13:51,3:00,1:00 +WO289663,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,5/20/17 14:59,3:00,1:00 +WO293865,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,7/31/17 13:42,3:00,1:00 +WO207557,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,7/22/14 7:30,3:00,1:00 +WO275081,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/25/16 18:39,3:00,1:00 +WO327088,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,12/14/18 15:30,3:00,1:00 +WO275973,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,11/3/16 18:07,3:00,1:00 +WO402604,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,12/28/21 13:30,3:00,1:00 +WO285808,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/23/17 18:12,3:00,1:00 +WO230717,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,3/23/15 19:30,3:00,1:00 +WO292046,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,6/23/17 15:11,3:00,1:00 +WO320140,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,9/22/18 14:49,3:00,1:00 +WO305991,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,1/24/18 18:36,3:00,1:00 +WO277077,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,11/16/16 18:00,3:00,1:00 +WO211001,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,8/27/14 9:00,3:00,1:00 +WO264047,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,5/18/16 16:40,3:00,1:00 +WO318091,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,8/27/18 19:06,3:00,1:00 +WO251118,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,1/5/16 15:00,3:00,1:00 +WO259211,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/21/16 13:00,3:00,1:00 +WO298228,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,10/3/17 18:26,3:00,1:00 +WO253148,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,1/21/16 0:00,3:00,1:00 +WO302913,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,12/2/17 17:09,3:00,1:00 +WO216625,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,10/21/14 15:30,3:00,1:00 +WO293855,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,7/24/17 16:46,3:00,1:00 +WO333074,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,3/21/19 13:00,3:00,1:00 +WO268659,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,7/31/16 15:25,3:00,1:00 +WO243570,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,9/19/15 19:30,3:00,1:00 +WO283376,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/27/17 18:16,3:00,1:00 +WO279364,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,12/23/16 14:45,3:00,1:00 +WO234920,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,5/21/15 15:30,3:00,1:00 +WO285812,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/23/17 18:10,3:00,1:00 +WO277089,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/16/16 17:57,3:00,1:00 +WO264053,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/17/16 18:31,3:00,1:00 +WO230267,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/17/15 19:30,3:00,1:00 +WO259218,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/24/16 13:00,3:00,1:00 +WO318093,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/27/18 19:05,3:00,1:00 +WO292050,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/21/17 15:08,3:00,1:00 +WO202265,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/23/14 15:30,3:00,1:00 +WO298234,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/7/17 14:09,3:00,1:00 +WO224844,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/21/15 15:30,3:00,1:00 +WO320145,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,9/22/18 14:51,3:00,1:00 +WO283380,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/27/17 18:18,3:00,1:00 +WO198944,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/24/14 15:30,3:00,1:00 +WO296195,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/31/17 13:31,3:00,1:00 +WO313265,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/7/18 13:53,3:00,1:00 +WO219585,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/28/14 15:30,3:00,1:00 +WO232536,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,4/29/15 15:30,3:00,1:00 +WO279371,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/23/16 14:47,3:00,1:00 +WO222096,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/18/14 15:30,3:00,1:00 +WO253165,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/27/16 16:30,3:00,1:00 +WO248626,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/16/15 16:00,3:00,1:00 +WO282101,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/3/17 17:28,3:00,1:00 +WO213350,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/19/14 15:30,3:00,1:00 +WO330492,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,2/11/19 19:00,3:00,1:00 +WO201035,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,5/6/14 15:30,3:00,1:00 +WO302916,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/4/17 18:00,3:00,1:00 +WO227701,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/20/15 15:30,3:00,1:00 +WO293861,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/17/17 14:41,3:00,1:00 +WO226122,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/4/15 15:30,3:00,1:00 +WO216642,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/21/14 15:30,3:00,1:00 +WO240297,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/2/15 15:30,3:00,1:00 +WO282102,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/2/17 20:27,3:00,1:00 +WO281206,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/9/17 18:04,3:00,1:00 +WO233763,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,5/5/15 15:30,3:00,1:00 +WO270621,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/16/16 15:02,3:00,1:00 +WO288758,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/2/17 18:32,3:00,1:00 +WO254494,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/9/16 14:00,3:00,1:00 +WO209518,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/13/14 8:30,3:00,1:00 +WO278466,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/18/16 15:53,3:00,1:00 +WO268666,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/31/16 15:34,3:00,1:00 +WO284292,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/7/17 19:26,3:00,1:00 +WO211032,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/15/14 15:30,3:00,1:00 +WO205067,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/19/14 15:30,3:00,1:00 +WO288757,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,5/4/17 19:01,3:00,1:00 +WO267348,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,7/15/16 19:54,3:00,1:00 +WO237864,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,6/29/15 15:30,3:00,1:00 +WO322327,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/8/18 17:43,3:00,1:00 +WO250648,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/7/16 15:00,3:00,1:00 +WO294759,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/25/17 18:47,3:00,1:00 +WO265014,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,6/7/16 20:19,3:00,1:00 +WO280142,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/12/17 15:28,3:00,1:00 +WO205071,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,7/11/14 4:30,3:00,1:00 +WO266633,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/23/16 16:58,3:00,1:00 +WO235859,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/1/15 15:30,3:00,1:00 +WO235858,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,6/2/15 15:30,3:00,1:00 +WO281207,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/9/17 18:02,3:00,1:00 +WO326326,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,12/7/18 18:00,3:00,1:00 +WO299189,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,10/26/17 14:56,3:00,1:00 +WO300253,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/6/17 12:45,3:00,1:00 +WO265015,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/7/16 17:01,3:00,1:00 +WO201032,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/6/14 15:30,3:00,1:00 +WO230268,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/17/15 19:30,3:00,1:00 +WO255999,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/19/16 16:30,3:00,1:00 +WO310169,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/22/18 13:36,3:00,1:00 +WO213356,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/12/14 15:30,3:00,1:00 +WO339715,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/11/19 17:30,3:00,1:00 +WO203399,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,6/11/14 15:30,3:00,1:00 +WO325613,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,11/27/18 19:30,3:00,1:00 +WO203400,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/11/14 15:30,3:00,1:00 +WO318098,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,8/18/18 14:29,3:00,1:00 +WO289659,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/22/17 14:24,3:00,1:00 +WO286779,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,4/6/17 19:43,3:00,1:00 +WO224849,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/24/15 15:30,3:00,1:00 +WO322331,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/16/18 13:00,3:00,1:00 +WO274026,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/4/16 19:06,3:00,1:00 +WO312320,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/3/18 15:34,3:00,1:00 +WO247364,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,11/5/15 0:00,3:00,1:00 +WO262720,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,5/8/16 18:26,3:00,1:00 +WO366951,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,7/22/20 15:00,3:00,1:00 +WO245285,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,10/6/15 18:00,3:00,1:00 +WO359342,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/29/20 15:00,3:00,1:00 +WO272066,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,9/6/16 16:50,3:00,1:00 +WO344080,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/31/19 19:30,3:00,1:00 +WO212151,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,9/3/14 15:30,3:00,1:00 +WO391037,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,7/2/21 15:00,3:00,1:00 +WO306021,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/8/18 15:05,3:00,1:00 +WO321417,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/12/18 15:15,3:00,1:00 +WO283385,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,3/12/17 14:19,3:00,1:00 +WO257167,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/1/16 14:00,3:00,1:00 +WO275991,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,11/2/16 14:51,3:00,1:00 +WO202269,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,5/28/14 7:30,3:00,1:00 +WO374219,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,11/5/20 4:00,3:00,1:00 +WO285447,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,3/18/17 14:42,3:00,1:00 +WO243600,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/2/15 19:30,3:00,1:00 +WO216092,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/29/14 7:30,3:00,1:00 +WO398135,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/5/21 15:00,3:00,1:00 +WO320150,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,9/8/18 18:26,3:00,1:00 +WO400170,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,11/17/21 18:30,3:00,1:00 +WO222101,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/3/15 15:30,3:00,1:00 +WO342834,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,8/2/19 15:00,3:00,1:00 +WO234943,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,5/19/15 7:30,3:00,1:00 +WO295723,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,9/7/17 16:38,3:00,1:00 +WO385706,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/27/21 13:00,3:00,1:00 +WO395526,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,9/10/21 15:00,3:00,1:00 +WO238841,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,7/24/15 7:30,3:00,1:00 +WO281211,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/14/17 18:11,3:00,1:00 +WO377737,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,12/18/20 23:00,3:00,1:00 +WO218123,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,11/3/14 15:30,3:00,1:00 +WO300257,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,11/14/17 23:00,3:00,1:00 +WO301874,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,11/28/17 19:09,3:00,1:00 +WO347516,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,9/5/19 15:00,3:00,1:00 +WO286346,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,3/31/17 13:55,3:00,1:00 +WO205049,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,6/19/14 15:30,3:00,1:00 +WO322324,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,12/5/18 14:00,3:00,1:00 +WO202245,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,5/23/14 15:30,3:00,1:00 +WO248609,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,11/17/15 14:00,3:00,1:00 +WO224826,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,1/21/15 15:30,3:00,1:00 +WO281200,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,1/27/17 18:03,3:00,1:00 +WO287796,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,4/21/17 16:46,3:00,1:00 +WO296190,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,9/1/17 15:55,3:00,1:00 +WO219567,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,11/19/14 15:30,3:00,1:00 +WO289647,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,5/22/17 14:32,3:00,1:00 +WO232531,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,4/28/15 15:30,3:00,1:00 +WO311151,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,4/9/18 14:52,3:00,1:00 +WO270607,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,8/15/16 17:52,3:00,1:00 +WO313261,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,5/11/18 20:43,3:00,1:00 +WO315748,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,6/25/18 20:08,3:00,1:00 +WO309074,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/9/18 18:02,3:00,1:00 +WO326318,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,11/28/18 19:00,3:00,1:00 +WO255988,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/18/16 14:00,3:00,1:00 +WO248625,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/17/15 20:00,3:00,1:00 +WO268665,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/31/16 15:29,3:00,1:00 +WO270620,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/15/16 17:54,3:00,1:00 +WO232535,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/29/15 15:30,3:00,1:00 +WO309080,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/9/18 17:58,3:00,1:00 +WO324405,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/21/19 11:00,3:00,1:00 +WO211031,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/27/14 15:30,3:00,1:00 +WO205066,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/19/14 15:30,3:00,1:00 +WO253164,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/26/16 14:00,3:00,1:00 +WO322326,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/2/18 19:25,3:00,1:00 +WO198945,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,4/28/14 15:30,3:00,1:00 +WO328581,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,1/9/19 14:00,3:00,1:00 +WO275076,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/20/16 13:00,3:00,1:00 +WO213352,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,9/16/14 15:30,3:00,1:00 +WO255995,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/19/16 16:00,3:00,1:00 +WO333077,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/21/19 14:00,3:00,1:00 +WO340675,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/27/19 15:00,3:00,1:00 +WO251134,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/19/16 21:00,3:00,1:00 +WO315752,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/25/18 20:11,3:00,1:00 +WO306017,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/24/18 18:35,3:00,1:00 +WO264054,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/17/16 18:33,3:00,1:00 +WO280141,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/12/17 15:27,3:00,1:00 +WO292868,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,7/6/17 12:20,3:00,1:00 +WO283381,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/1/17 18:33,3:00,1:00 +WO302917,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/4/17 18:19,3:00,1:00 +WO246356,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/29/15 12:30,3:00,1:00 +WO208054,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/28/14 15:30,3:00,1:00 +WO214600,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,9/29/14 15:30,3:00,1:00 +WO338272,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,6/26/19 18:15,3:00,1:00 +WO289658,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/22/17 14:28,3:00,1:00 +WO249531,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/4/15 14:00,3:00,1:00 +WO245286,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/6/15 14:30,3:00,1:00 +WO274025,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,10/5/16 16:32,3:00,1:00 +WO328582,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/9/19 15:00,3:00,1:00 +WO208053,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/7/14 15:30,3:00,1:00 +WO243596,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/22/15 19:30,3:00,1:00 +WO241299,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/17/15 15:30,3:00,1:00 +WO329600,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/24/19 15:00,3:00,1:00 +WO308118,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/16/18 19:34,3:00,1:00 +WO252151,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/22/16 13:30,3:00,1:00 +WO336976,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/1/19 16:00,3:00,1:00 +WO240296,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,8/4/15 15:30,3:00,1:00 +WO324406,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/21/19 13:00,3:00,1:00 +WO228886,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/2/15 15:30,3:00,1:00 +WO247363,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/5/15 16:30,3:00,1:00 +WO218166,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/6/14 15:30,3:00,1:00 +WO301214,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/21/17 15:01,3:00,1:00 +WO216643,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/23/14 15:30,3:00,1:00 +WO296196,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/30/17 12:55,3:00,1:00 +WO234939,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/21/15 15:30,3:00,1:00 +WO269541,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/4/16 18:21,3:00,1:00 +WO261659,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/2/16 19:28,3:00,1:00 +WO262721,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/6/16 22:06,3:00,1:00 +WO219584,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/28/14 15:30,3:00,1:00 +WO223477,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/9/15 15:30,3:00,1:00 +WO285813,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/24/17 13:27,3:00,1:00 +WO346654,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/31/19 19:30,3:00,1:00 +WO393306,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,8/3/21 15:00,3:00,1:00 +WO220624,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/5/14 15:30,3:00,1:00 +WO277090,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/18/16 16:17,3:00,1:00 +WO228887,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/4/15 15:30,3:00,1:00 +WO269540,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,8/4/16 18:19,3:00,1:00 +WO297227,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,9/8/17 15:13,3:00,1:00 +WO249532,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/4/15 18:30,3:00,1:00 +WO248630,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,11/19/15 16:00,3:00,1:00 +WO317054,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,7/10/18 17:34,3:00,1:00 +WO315753,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/12/18 13:42,3:00,1:00 +WO268670,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,7/19/16 21:16,3:00,1:00 +WO252152,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/22/16 15:00,3:00,1:00 +WO291140,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,6/13/17 13:11,3:00,1:00 +WO361946,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,5/12/20 15:00,3:00,1:00 +WO309081,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/5/18 16:08,3:00,1:00 +WO302398,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,12/6/17 18:21,3:00,1:00 +WO237865,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/29/15 15:30,3:00,1:00 +WO231151,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/31/15 15:30,3:00,1:00 +WO297228,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/2/17 17:32,3:00,1:00 +WO334242,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/28/19 18:30,3:00,1:00 +WO270625,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,8/17/16 18:56,3:00,1:00 +WO327515,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/14/18 19:30,3:00,1:00 +WO344948,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,9/5/19 15:00,3:00,1:00 +WO236921,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,6/15/15 7:30,3:00,1:00 +WO266188,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,6/13/16 16:59,3:00,1:00 +WO277094,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,11/22/16 17:58,3:00,1:00 +WO314542,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/1/18 12:54,3:00,1:00 +WO253169,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/17/16 16:00,3:00,1:00 +WO309085,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,3/16/18 19:16,3:00,1:00 +WO381217,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/17/21 16:00,3:00,1:00 +WO313269,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,5/23/18 18:55,3:00,1:00 +WO323483,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/30/18 15:30,3:00,1:00 +WO227705,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/28/15 15:30,3:00,1:00 +WO319239,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/18/18 14:25,3:00,1:00 +WO356584,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/27/20 16:00,3:00,1:00 +WO330497,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,3/25/19 21:30,3:00,1:00 +WO369366,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,8/12/20 15:00,3:00,1:00 +WO351787,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,12/16/19 15:00,3:00,1:00 +WO354049,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/1/20 0:30,3:00,1:00 +WO379171,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/12/21 20:00,3:00,1:00 +WO402109,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,12/11/21 16:00,3:00,1:00 +WO349561,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,11/20/19 16:00,3:00,1:00 +WO291692,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,6/22/17 15:29,3:00,1:00 +WO232251,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/28/15 7:30,3:00,1:00 +WO333244,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/7/19 18:30,3:00,1:00 +WO358245,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/1/20 15:30,3:00,1:00 +WO364672,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,6/18/20 15:00,3:00,1:00 +WO227062,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/9/15 19:00,3:00,1:00 +WO285956,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/31/17 15:24,3:00,1:00 +WO282858,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/21/17 18:20,3:00,1:00 +WO304147,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/29/18 14:26,3:00,1:00 +WO309618,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/16/18 19:30,3:00,1:00 +WO229011,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/16/15 19:02,3:00,1:00 +WO250702,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/9/16 20:00,3:00,1:00 +WO280289,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/4/17 18:27,3:00,1:00 +WO226216,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/26/15 15:30,3:00,1:00 +WO222649,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/24/15 15:30,3:00,1:00 +WO228268,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/19/15 17:52,3:00,1:00 +WO384329,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/15/21 14:30,3:00,1:00 +WO309162,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/16/18 19:30,3:00,1:00 +WO329679,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/31/19 13:00,3:00,1:00 +WO385284,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/6/21 19:30,3:00,1:00 +WO278992,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/30/16 13:20,3:00,1:00 +WO250703,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/20/16 15:00,3:00,1:00 +WO250044,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/21/15 16:00,3:00,1:00 +WO282862,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/21/17 19:08,3:00,1:00 +WO221329,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/28/14 15:30,3:00,1:00 +WO278995,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/25/17 20:26,3:00,1:00 +WO329678,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/11/19 14:00,3:00,1:00 +WO282856,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/20/17 19:17,3:00,1:00 +WO304152,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,3/6/18 15:09,3:00,1:00 +WO354570,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/7/20 20:30,3:00,1:00 +WO329271,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/14/19 15:30,3:00,1:00 +WO222164,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/24/15 7:30,3:00,1:00 +WO384323,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/12/21 13:00,3:00,1:00 +WO277168,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/19/17 13:29,3:00,1:00 +WO354133,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/1/20 16:00,3:00,1:00 +WO371753,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,9/26/20 13:30,3:00,1:00 +WO404245,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/19/22 16:00,3:00,1:00 +WO333081,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,3/25/19 21:30,3:00,1:00 +WO222192,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,12/19/14 15:30,3:00,1:00 +WO270680,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,8/17/16 19:00,3:00,1:00 +WO232642,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,4/28/15 15:30,3:00,1:00 +WO230430,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,3/17/15 19:30,3:00,1:00 +WO330616,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,2/11/19 20:30,3:00,1:00 +WO306167,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,2/13/18 15:58,3:00,1:00 +WO271639,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04703,Chiller 3,TRUE,5,11/28/16 19:24,3:00,1:00 +WO287940,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,4/18/17 20:28,3:00,1:00 +WO348015,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04701,Chiller 1,TRUE,5,12/10/19 16:00,3:00,1:00 +WO289737,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,5/22/17 14:30,3:00,1:00 +WO313361,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,5/8/18 14:33,3:00,1:00 +WO398629,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04701,Chiller 1,TRUE,5,10/5/21 13:30,3:00,1:00 +WO227768,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,2/20/15 15:30,3:00,1:00 +WO296784,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04701,Chiller 1,TRUE,5,9/21/17 16:30,3:00,1:00 +WO248742,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,11/16/15 14:00,3:00,1:00 +WO235018,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,5/21/15 15:30,3:00,1:00 +WO296786,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04703,Chiller 3,TRUE,5,10/3/17 17:00,3:00,1:00 +WO281348,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,1/27/17 18:49,3:00,1:00 +WO219703,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,11/28/14 15:30,3:00,1:00 +WO398631,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04703,Chiller 3,TRUE,5,10/5/21 18:00,3:00,1:00 +WO333093,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,3/21/19 12:00,3:00,1:00 +WO212293,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04703,Chiller 3,TRUE,5,11/23/14 12:00,3:00,1:00 +WO303059,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,12/4/17 18:02,3:00,1:00 +WO224974,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,1/21/15 15:30,3:00,1:00 +WO324524,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,11/15/18 12:45,3:00,1:00 +WO278994,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/25/17 20:30,3:00,1:00 +WO372328,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,9/29/20 18:30,3:00,1:00 +WO296250,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,9/11/17 18:27,3:00,1:00 +WO347196,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,10/11/19 20:30,3:00,1:00 +WO296252,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,9/11/17 18:16,3:00,1:00 +WO270689,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,8/22/16 13:26,3:00,1:00 +WO218390,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,11/3/14 15:30,3:00,1:00 +WO254583,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/18/16 15:42,3:00,1:00 +WO247571,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,11/6/15 15:00,3:00,1:00 +WO398234,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,10/7/21 19:19,3:00,1:00 +WO276162,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,11/3/16 18:05,3:00,1:00 +WO372326,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,9/29/20 13:30,3:00,1:00 +WO250700,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/16/15 14:00,3:00,1:00 +WO304150,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/25/18 14:45,3:00,1:00 +WO358243,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,4/3/20 15:30,3:00,1:00 +WO311659,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,3/27/18 13:07,3:00,1:00 +WO404984,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/15/22 18:00,3:00,1:00 +WO384325,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/12/21 18:00,3:00,1:00 +WO241369,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,8/23/15 15:30,3:00,1:00 +WO278993,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/27/17 18:00,3:00,1:00 +WO256050,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/10/16 8:17,3:00,1:00 +WO219675,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,11/4/14 15:30,3:00,1:00 +WO286432,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,3/31/17 14:02,3:00,1:00 +WO360467,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/15/20 19:30,3:00,1:00 +WO398233,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,10/7/21 19:19,3:00,1:00 +WO283423,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/28/17 15:40,3:00,1:00 +WO333246,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/8/19 15:00,3:00,1:00 +WO211106,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,9/4/14 15:30,3:00,1:00 +WO385899,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/15/21 19:30,3:00,1:00 +WO248714,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,5/16/16 12:44,3:00,1:00 +WO259372,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,4/5/16 13:30,3:00,1:00 +WO221326,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/8/14 15:30,3:00,1:00 +WO404045,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/19/22 17:00,3:00,1:00 +WO279440,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/21/16 20:19,3:00,1:00 +WO250042,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/17/15 17:00,3:00,1:00 +WO251198,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/7/16 20:30,3:00,1:00 +WO334886,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/12/19 19:30,3:00,1:00 +WO354488,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/7/20 20:30,3:00,1:00 +WO308219,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/15/18 19:00,3:00,1:00 +WO359950,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/14/20 19:30,3:00,1:00 +WO333250,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/19/19 12:30,3:00,1:00 +WO256613,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/18/16 19:00,3:00,1:00 +WO380442,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/30/21 12:30,3:00,1:00 +WO279438,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/29/16 14:01,3:00,1:00 +WO329680,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,3/31/19 15:00,3:00,1:00 +WO235038,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,5/22/15 7:30,3:00,1:00 +WO388555,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,5/27/21 16:52,3:00,1:00 +WO294058,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,7/31/17 19:30,3:00,1:00 +WO241375,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,8/20/15 15:30,3:00,1:00 +WO324543,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/18/19 18:18,3:00,1:00 +WO258831,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,3/14/16 18:00,3:00,1:00 +WO216217,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,10/30/14 7:30,3:00,1:00 +WO335624,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,4/27/19 19:00,3:00,1:00 +WO306187,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/6/18 17:28,3:00,1:00 +WO243749,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,10/2/15 19:30,3:00,1:00 +WO264145,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,5/26/16 11:56,3:00,1:00 +WO295852,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,9/8/17 15:18,3:00,1:00 +WO329706,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,3/31/19 19:30,3:00,1:00 +WO402225,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,12/11/21 20:30,3:00,1:00 +WO320229,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,9/18/18 12:13,3:00,1:00 +WO277240,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/25/16 20:30,3:00,1:00 +WO345046,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,9/4/19 16:00,3:00,1:00 +WO393447,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,8/3/21 19:00,3:00,1:00 +WO202368,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,5/27/14 7:30,3:00,1:00 +WO362108,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,5/12/20 19:30,3:00,1:00 +WO349654,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/20/19 20:30,3:00,1:00 +WO330637,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,3/1/19 14:00,3:00,1:00 +WO364812,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,6/17/20 17:30,3:00,1:00 +WO395689,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,9/9/21 19:00,3:00,1:00 +WO213562,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,10/12/14 15:30,3:00,1:00 +WO253343,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/18/16 14:30,3:00,1:00 +WO225030,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/9/15 7:30,3:00,1:00 +WO313422,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,5/23/18 18:53,3:00,1:00 +WO347226,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,10/12/19 14:00,3:00,1:00 +WO284415,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/29/17 13:02,3:00,1:00 +WO326420,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,11/28/18 16:30,3:00,1:00 +WO211131,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,9/4/14 15:30,3:00,1:00 +WO254585,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/24/16 20:26,3:00,1:00 +WO230412,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,4/17/15 15:30,3:00,1:00 +WO241351,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,8/18/15 15:30,3:00,1:00 +WO335589,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/23/19 19:30,3:00,1:00 +WO304606,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/20/17 18:40,3:00,1:00 +WO278990,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/15/16 14:39,3:00,1:00 +WO304151,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/6/18 15:07,3:00,1:00 +WO283819,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/27/17 18:23,3:00,1:00 +WO222163,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/24/15 7:30,3:00,1:00 +WO254589,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/29/16 16:27,3:00,1:00 +WO358249,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,4/2/20 18:00,3:00,1:00 +WO218412,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,11/3/14 15:30,3:00,1:00 +WO354489,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,7/7/20 21:30,3:00,1:00 +WO221328,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/8/14 15:30,3:00,1:00 +WO380443,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,3/30/21 15:30,3:00,1:00 +WO380936,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/11/21 20:00,3:00,1:00 +WO222159,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/20/15 4:30,3:00,1:00 +WO250704,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/20/16 15:45,3:00,1:00 +WO398254,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,10/7/21 19:19,3:00,1:00 +WO271637,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04701,Chiller 1,TRUE,5,12/16/16 17:31,3:00,1:00 +WO250045,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/16/15 14:45,3:00,1:00 +WO304604,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/29/17 17:20,3:00,1:00 +WO303033,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/13/18 15:46,3:00,1:00 +WO380510,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/5/21 15:30,3:00,1:00 +WO226211,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/18/15 9:36,3:00,1:00 +WO322071,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04701,Chiller 1,TRUE,5,10/25/18 18:30,3:00,1:00 +WO308742,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/10/18 20:30,3:00,1:00 +WO404621,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/3/22 18:00,3:00,1:00 +WO308213,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/10/18 19:30,3:00,1:00 +WO373356,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04703,Chiller 3,TRUE,5,10/22/20 19:30,3:00,1:00 +WO257292,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/31/16 19:33,3:00,1:00 +WO279457,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,12/21/16 20:24,3:00,1:00 +WO308215,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/10/18 17:30,3:00,1:00 +WO268777,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,7/31/16 15:33,3:00,1:00 +WO222162,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/16/14 15:30,3:00,1:00 +WO318161,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,8/27/18 19:02,3:00,1:00 +WO247587,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,11/6/15 18:30,3:00,1:00 +WO305005,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/5/18 13:30,3:00,1:00 +WO226213,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/19/15 11:00,3:00,1:00 +WO292118,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,6/19/17 17:06,3:00,1:00 +WO259388,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,3/24/16 15:00,3:00,1:00 +WO328722,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,1/8/19 16:00,3:00,1:00 +WO273228,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,9/21/16 18:48,3:00,1:00 +WO202348,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,5/31/14 15:30,3:00,1:00 +WO211085,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,8/27/14 9:00,3:00,1:00 +WO243722,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,9/22/15 15:30,3:00,1:00 +WO294018,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,7/17/17 14:42,3:00,1:00 +WO285976,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,3/23/17 18:14,3:00,1:00 +WO253289,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,2/18/16 14:00,3:00,1:00 +WO320223,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,9/22/18 14:52,3:00,1:00 +WO283429,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,2/27/17 18:19,3:00,1:00 +WO208160,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,8/7/14 15:30,3:00,1:00 +WO311253,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,4/26/18 13:43,3:00,1:00 +WO213530,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,9/16/14 15:30,3:00,1:00 +WO261794,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,4/27/16 21:29,3:00,1:00 +WO242148,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,10/10/15 16:30,3:00,1:00 +WO367154,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,7/23/20 19:00,3:00,1:00 +WO211681,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,11/10/14 13:30,3:00,1:00 +WO242147,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,10/10/15 16:30,3:00,1:00 +WO372366,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,9/25/20 19:00,3:00,1:00 +WO228419,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,5/15/15 20:15,3:00,1:00 +WO242149,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,10/12/15 16:30,3:00,1:00 +WO211680,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,10/15/14 13:50,3:00,1:00 +WO309251,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,3/28/18 12:00,3:00,1:00 +WO271163,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,11/4/16 12:00,3:00,1:00 +WO228422,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,5/1/15 15:30,3:00,1:00 +WO235606,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,7/2/15 14:30,3:00,1:00 +WO283925,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,7/21/17 19:00,3:00,1:00 +WO315858,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,6/18/18 17:30,3:00,1:00 +WO377816,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/16/20 13:00,3:00,1:00 +WO310266,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/29/18 18:52,3:00,1:00 +WO251787,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/19/16 17:00,3:00,1:00 +WO319359,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/16/18 12:40,3:00,1:00 +WO327779,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/14/19 14:30,3:00,1:00 +WO334377,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/16/19 12:00,3:00,1:00 +WO239943,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/31/15 7:30,3:00,1:00 +WO298837,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/25/17 13:58,3:00,1:00 +WO353513,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/17/20 21:30,3:00,1:00 +WO294867,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/11/17 16:32,3:00,1:00 +WO244888,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/4/15 14:00,3:00,1:00 +WO259891,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/21/16 14:30,3:00,1:00 +WO386998,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/7/21 13:13,3:00,1:00 +WO290791,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/22/17 15:50,3:00,1:00 +WO308313,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/21/18 17:57,3:00,1:00 +WO323620,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/26/18 12:00,3:00,1:00 +WO303786,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/5/17 14:55,3:00,1:00 +WO286469,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/25/17 16:43,3:00,1:00 +WO265204,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/12/16 13:08,3:00,1:00 +WO267199,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/12/16 17:31,3:00,1:00 +WO254656,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/10/16 16:00,3:00,1:00 +WO351140,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/9/19 18:00,3:00,1:00 +WO278143,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/10/17 15:49,3:00,1:00 +WO344192,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/30/19 22:30,3:00,1:00 +WO271681,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/31/16 16:34,3:00,1:00 +WO228432,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/8/15 7:30,3:00,1:00 +WO389652,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/3/21 12:00,3:00,1:00 +WO314684,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/24/18 19:40,3:00,1:00 +WO222714,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,4/9/15 15:30,3:00,1:00 +WO373354,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04701,Chiller 1,TRUE,5,10/26/20 14:30,3:00,1:00 +WO241370,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,8/22/15 15:30,3:00,1:00 +WO402640,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,12/28/21 17:00,3:00,1:00 +WO348017,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04703,Chiller 3,TRUE,5,12/11/19 16:00,3:00,1:00 +WO211105,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,9/4/14 15:30,3:00,1:00 +WO242782,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04703,Chiller 3,TRUE,5,10/17/15 14:30,3:00,1:00 +WO246493,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,10/29/15 18:30,3:00,1:00 +WO296238,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,8/31/17 13:33,3:00,1:00 +WO322073,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04703,Chiller 3,TRUE,5,10/23/18 19:30,3:00,1:00 +WO398235,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,10/7/21 19:19,3:00,1:00 +WO372327,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,9/29/20 15:00,3:00,1:00 +WO347197,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,10/12/19 11:45,3:00,1:00 +WO315813,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,6/25/18 20:13,3:00,1:00 +WO239489,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,7/30/15 15:30,3:00,1:00 +WO298369,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,10/4/17 12:52,3:00,1:00 +WO264135,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,5/17/16 15:02,3:00,1:00 +WO241371,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,8/23/15 15:30,3:00,1:00 +WO320885,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,9/21/18 20:11,3:00,1:00 +WO241372,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,8/22/15 15:30,3:00,1:00 +WO199024,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,4/24/14 15:30,3:00,1:00 +WO340699,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,6/27/19 13:00,3:00,1:00 +WO216786,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,10/23/14 15:30,3:00,1:00 +WO230889,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,3/23/15 19:30,3:00,1:00 +WO205147,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,6/19/14 15:30,3:00,1:00 +WO211103,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,9/4/14 15:30,3:00,1:00 +WO362352,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,6/26/20 12:00,3:00,1:00 +WO377768,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,12/13/20 13:00,3:00,1:00 +WO322404,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,10/8/18 17:45,3:00,1:00 +WO212296,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04701,Chiller 1,TRUE,5,11/22/14 12:00,3:00,1:00 +WO275167,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,10/18/16 17:57,3:00,1:00 +WO266700,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,6/23/16 17:01,3:00,1:00 +WO309181,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,3/6/18 15:13,3:00,1:00 +WO242780,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04701,Chiller 1,TRUE,5,10/17/15 13:31,3:00,1:00 +WO251221,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,1/20/16 22:00,3:00,1:00 +WO256068,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,2/19/16 14:00,3:00,1:00 +WO277232,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,11/16/16 18:01,3:00,1:00 +WO300348,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,11/6/17 12:49,3:00,1:00 +WO236992,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,6/22/15 15:30,3:00,1:00 +WO400320,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/18/21 14:00,3:00,1:00 +WO380159,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/27/21 18:30,3:00,1:00 +WO202880,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/2/14 7:30,3:00,1:00 +WO238021,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/7/15 7:30,3:00,1:00 +WO291778,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,6/23/17 15:08,3:00,1:00 +WO302555,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,12/6/17 18:25,3:00,1:00 +WO238998,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,7/25/15 15:30,3:00,1:00 +WO318165,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,8/18/18 15:00,3:00,1:00 +WO376826,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,12/10/20 20:30,3:00,1:00 +WO333096,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,3/25/19 19:15,3:00,1:00 +WO356697,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,4/28/20 13:00,3:00,1:00 +WO211109,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,8/19/14 7:30,3:00,1:00 +WO404338,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/18/22 16:00,3:00,1:00 +WO309230,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,3/16/18 19:18,3:00,1:00 +WO296845,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04704,Chiller 4,TRUE,5,10/3/17 19:30,3:00,1:00 +WO256102,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/25/16 15:30,3:00,1:00 +WO347600,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,9/4/19 16:00,3:00,1:00 +WO227807,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/28/15 15:30,3:00,1:00 +WO237013,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,7/6/15 7:30,3:00,1:00 +WO250750,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/20/16 19:00,3:00,1:00 +WO300394,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/14/17 23:03,3:00,1:00 +WO268813,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,7/20/16 14:15,3:00,1:00 +WO219735,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/21/14 7:30,3:00,1:00 +WO342908,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,8/2/19 19:30,3:00,1:00 +WO279026,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/25/17 20:25,3:00,1:00 +WO326468,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,12/10/18 22:30,3:00,1:00 +WO230470,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,4/10/15 7:30,3:00,1:00 +WO207735,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,7/20/14 15:30,3:00,1:00 +WO380539,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,3/30/21 17:30,3:00,1:00 +WO250751,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/20/16 20:00,3:00,1:00 +WO222213,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/24/15 7:30,3:00,1:00 +WO359502,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,4/29/20 19:30,3:00,1:00 +WO374393,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/4/20 20:00,3:00,1:00 +WO222212,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/3/15 15:30,3:00,1:00 +WO217509,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04704,Chiller 4,TRUE,5,11/22/14 10:00,3:00,1:00 +WO271693,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04704,Chiller 4,TRUE,5,11/30/16 19:50,3:00,1:00 +WO286488,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,3/30/17 17:19,3:00,1:00 +WO337118,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,5/14/19 17:30,3:00,1:00 +WO362630,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,5/20/20 19:30,3:00,1:00 +WO312040,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,6/21/18 15:30,3:00,1:00 +WO205700,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,6/27/14 15:00,3:00,1:00 +WO369089,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,9/25/20 19:00,3:00,1:00 +WO298877,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,10/2/17 15:00,3:00,1:00 +WO237632,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,7/7/15 15:30,3:00,1:00 +WO338399,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,5/31/19 19:30,3:00,1:00 +WO343345,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,8/15/19 14:00,3:00,1:00 +WO292637,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,7/19/17 20:00,3:00,1:00 +WO273706,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,10/18/16 18:00,3:00,1:00 +WO369088,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,7/23/20 19:00,3:00,1:00 +WO317761,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,8/8/18 12:10,3:00,1:00 +WO244387,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,9/25/15 16:00,3:00,1:00 +WO237631,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,6/30/15 13:00,3:00,1:00 +WO243371,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,9/15/15 15:30,3:00,1:00 +WO292643,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,7/26/17 14:52,3:00,1:00 +WO348446,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,11/6/19 16:00,3:00,1:00 +WO212968,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,9/7/14 15:30,3:00,1:00 +WO343352,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,8/29/19 15:00,3:00,1:00 +WO319383,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,9/17/18 13:13,3:00,1:00 +WO324166,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,11/27/18 14:00,3:00,1:00 +WO343350,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,8/29/19 13:00,3:00,1:00 +WO302070,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,11/28/17 19:02,3:00,1:00 +WO347195,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,10/11/19 20:30,3:00,1:00 +WO388005,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,5/22/21 13:37,3:00,1:00 +WO337070,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,5/19/19 12:00,3:00,1:00 +WO256716,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,5/13/16 19:30,3:00,1:00 +WO351953,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,12/8/19 16:00,3:00,1:00 +WO259852,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,4/5/16 16:45,3:00,1:00 +WO232328,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,5/3/15 15:30,3:00,1:00 +WO296276,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,9/11/17 18:25,3:00,1:00 +WO270687,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,8/22/16 13:22,3:00,1:00 +WO296249,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,9/11/17 18:31,3:00,1:00 +WO320909,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,9/21/18 20:08,3:00,1:00 +WO372362,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,9/29/20 17:30,3:00,1:00 +WO270688,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,8/22/16 13:24,3:00,1:00 +WO320887,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,9/21/18 20:06,3:00,1:00 +WO211104,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,9/4/14 15:30,3:00,1:00 +WO270690,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,8/22/16 13:28,3:00,1:00 +WO351966,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,12/8/19 14:00,3:00,1:00 +WO320886,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,9/20/18 12:03,3:00,1:00 +WO327206,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,12/14/18 14:15,3:00,1:00 +WO377800,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,12/18/20 22:00,3:00,1:00 +WO296251,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,9/11/17 18:29,3:00,1:00 +WO402644,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,12/28/21 15:00,3:00,1:00 +WO296299,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,10/20/17 16:30,3:00,1:00 +WO202871,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,6/4/14 14:00,3:00,1:00 +WO309250,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,5/3/18 14:30,3:00,1:00 +WO261895,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,5/3/16 15:29,3:00,1:00 +WO272715,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,10/28/16 13:00,3:00,1:00 +WO279468,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/14/17 14:39,3:00,1:00 +WO322415,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,10/17/18 15:00,3:00,1:00 +WO383719,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,3/24/21 19:30,3:00,1:00 +WO351955,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,12/16/19 19:00,3:00,1:00 +WO246560,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/4/15 20:30,3:00,1:00 +WO205168,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,7/11/14 7:30,3:00,1:00 +WO283438,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,3/13/17 16:48,3:00,1:00 +WO281386,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/14/17 18:13,3:00,1:00 +WO270693,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,8/17/16 18:59,3:00,1:00 +WO199057,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,4/16/14 7:30,3:00,1:00 +WO288040,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,5/13/17 15:34,3:00,1:00 +WO266269,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,6/13/16 17:00,3:00,1:00 +WO381391,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/16/21 14:00,3:00,1:00 +WO385984,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,4/26/21 13:00,3:00,1:00 +WO256715,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,5/12/16 19:00,3:00,1:00 +WO311269,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,4/13/18 16:04,3:00,1:00 +WO369517,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,8/13/20 14:00,3:00,1:00 +WO328732,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/19/19 22:30,3:00,1:00 +WO354598,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,7/7/20 23:30,3:00,1:00 +WO248772,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/20/15 16:00,3:00,1:00 +WO304180,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,3/6/18 15:03,3:00,1:00 +WO256717,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,5/11/16 11:30,3:00,1:00 +WO398237,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,10/5/21 17:30,3:00,1:00 +WO379362,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/14/21 17:43,3:00,1:00 +WO322839,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,12/10/18 13:45,3:00,1:00 +WO315822,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,6/24/18 16:04,3:00,1:00 +WO289743,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,5/20/17 15:05,3:00,1:00 +WO296300,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,11/29/17 17:00,3:00,1:00 +WO391190,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,7/2/21 19:30,3:00,1:00 +WO359522,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,5/28/20 13:54,3:00,1:00 +WO275213,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,10/25/16 18:41,3:00,1:00 +WO211682,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,9/3/14 14:30,3:00,1:00 +WO285584,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,3/21/17 12:57,3:00,1:00 +WO372364,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,10/20/20 19:00,3:00,1:00 +WO290788,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,7/27/17 11:48,3:00,1:00 +WO334371,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,5/15/19 16:00,3:00,1:00 +WO271165,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,9/29/16 14:30,3:00,1:00 +WO363788,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,5/28/20 13:04,3:00,1:00 +WO277572,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/23/16 19:30,3:00,1:00 +WO312522,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,4/17/18 19:00,3:00,1:00 +WO295436,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/17/17 0:27,3:00,1:00 +WO328246,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/25/19 15:30,3:00,1:00 +WO349293,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,5/28/20 13:03,3:00,1:00 +WO241089,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/24/15 15:30,3:00,1:00 +WO219552,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/22/14 15:30,3:00,1:00 +WO332187,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/16/19 13:00,3:00,1:00 +WO217472,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/31/14 7:30,3:00,1:00 +WO242838,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/9/15 15:30,3:00,1:00 +WO257386,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/4/16 8:30,3:00,1:00 +WO339848,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/13/19 14:43,3:00,1:00 +WO396768,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/23/21 20:30,3:00,1:00 +WO223159,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/4/15 15:30,3:00,1:00 +WO384432,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/1/21 15:00,3:00,1:00 +WO214779,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/12/14 15:30,3:00,1:00 +WO292615,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/25/17 13:12,3:00,1:00 +WO382390,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/2/21 13:00,3:00,1:00 +WO405034,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/8/22 16:00,3:00,1:00 +WO325727,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/7/18 12:15,3:00,1:00 +WO321619,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/15/18 13:45,3:00,1:00 +WO368233,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/30/20 12:00,3:00,1:00 +WO296827,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/20/17 12:15,3:00,1:00 +WO403251,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/7/22 13:00,3:00,1:00 +WO401063,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/29/21 13:00,3:00,1:00 +WO246983,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/3/15 18:55,3:00,1:00 +WO346811,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/30/19 22:30,3:00,1:00 +WO200360,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/5/14 7:30,3:00,1:00 +WO220814,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/3/14 6:30,3:00,1:00 +WO352987,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/2/20 15:00,3:00,1:00 +WO279864,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/17/17 19:30,3:00,1:00 +WO252342,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/7/16 12:30,3:00,1:00 +WO274286,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04009,Chiller 9,TRUE,5,12/29/16 17:00,3:00,1:00 +WO241397,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,8/22/15 15:30,3:00,1:00 +WO270712,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,8/22/16 13:34,3:00,1:00 +WO327215,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,12/14/18 15:15,3:00,1:00 +WO276177,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,11/3/16 18:10,3:00,1:00 +WO302083,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,11/28/17 19:08,3:00,1:00 +WO309249,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,5/3/18 13:30,3:00,1:00 +WO334370,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,5/15/19 14:00,3:00,1:00 +WO283924,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,7/21/17 19:00,3:00,1:00 +WO322841,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,9/26/18 15:00,3:00,1:00 +WO372365,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,10/20/20 19:00,3:00,1:00 +WO334372,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,4/17/19 15:45,3:00,1:00 +WO231326,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/10/15 7:30,3:00,1:00 +WO341537,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,5/28/20 13:56,3:00,1:00 +WO322840,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,12/10/18 14:00,3:00,1:00 +WO228421,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,5/16/15 21:45,3:00,1:00 +WO265200,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,7/6/16 10:30,3:00,1:00 +WO283926,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,4/25/17 21:00,3:00,1:00 +WO366170,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/1/20 16:00,3:00,1:00 +WO347230,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,5/28/20 13:54,3:00,1:00 +WO296298,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,10/10/17 19:00,3:00,1:00 +WO206311,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/15/14 7:30,3:00,1:00 +WO242858,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04704,Chiller 4,TRUE,5,10/17/15 15:05,3:00,1:00 +WO398683,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04704,Chiller 4,TRUE,5,10/5/21 19:30,3:00,1:00 +WO273656,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/21/16 18:42,3:00,1:00 +WO375383,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/12/20 17:00,3:00,1:00 +WO212349,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/3/14 7:30,3:00,1:00 +WO337101,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/2/19 12:00,3:00,1:00 +WO358337,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/28/20 15:15,3:00,1:00 +WO269671,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/7/16 15:16,3:00,1:00 +WO342029,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/27/19 11:00,3:00,1:00 +WO208758,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/4/14 7:30,3:00,1:00 +WO363719,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/29/20 13:00,3:00,1:00 +WO306202,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/6/18 17:30,3:00,1:00 +WO249695,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/30/15 13:00,3:00,1:00 +WO355656,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/20/20 19:00,3:00,1:00 +WO370594,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/21/20 12:00,3:00,1:00 +WO329714,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/15/19 13:00,3:00,1:00 +WO225610,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/16/15 7:30,3:00,1:00 +WO317127,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/5/18 18:55,3:00,1:00 +WO399138,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/7/21 19:19,3:00,1:00 +WO282350,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/31/17 14:29,3:00,1:00 +WO312461,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/5/18 15:46,3:00,1:00 +WO233483,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/3/15 15:30,3:00,1:00 +WO236093,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/4/15 7:30,3:00,1:00 +WO276193,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/4/16 17:20,3:00,1:00 +WO380165,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/8/21 16:00,3:00,1:00 +WO230928,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,4/20/15 13:21,3:00,1:00 +WO388109,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,5/13/21 19:30,3:00,1:00 +WO230929,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,4/17/15 18:30,3:00,1:00 +WO337119,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,5/14/19 15:00,3:00,1:00 +WO273704,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,10/4/16 15:00,3:00,1:00 +WO323257,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,9/26/18 17:15,3:00,1:00 +WO214110,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,9/30/14 15:00,3:00,1:00 +WO232068,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,4/28/15 15:30,3:00,1:00 +WO292636,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,7/14/17 14:00,3:00,1:00 +WO363763,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,5/28/20 13:05,3:00,1:00 +WO267221,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,7/16/16 12:00,3:00,1:00 +WO292634,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,9/5/17 19:09,3:00,1:00 +WO292635,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,7/14/17 13:00,3:00,1:00 +WO312512,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,6/6/18 13:14,3:00,1:00 +WO343347,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,7/23/20 19:00,3:00,1:00 +WO369090,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,7/23/20 19:00,3:00,1:00 +WO317757,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,6/29/18 14:30,3:00,1:00 +WO267220,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,7/4/16 20:00,3:00,1:00 +WO237628,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,6/30/15 14:00,3:00,1:00 +WO237633,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,7/1/15 11:00,3:00,1:00 +WO343343,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,8/15/19 15:30,3:00,1:00 +WO322117,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04704,Chiller 4,TRUE,5,11/6/18 20:30,3:00,1:00 +WO292645,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,7/26/17 14:54,3:00,1:00 +WO237638,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,7/10/15 7:30,3:00,1:00 +WO287507,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,4/27/17 19:30,3:00,1:00 +WO272262,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,9/12/16 17:05,3:00,1:00 +WO243373,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,9/15/15 15:30,3:00,1:00 +WO237636,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,7/10/15 7:30,3:00,1:00 +WO272260,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,9/12/16 17:01,3:00,1:00 +WO319381,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,9/17/18 13:10,3:00,1:00 +WO297542,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,11/29/17 20:16,3:00,1:00 +WO261311,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,5/1/16 13:00,3:00,1:00 +WO248595,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/27/15 20:00,3:00,1:00 +WO273722,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,10/4/16 16:00,3:00,1:00 +WO353010,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,12/13/19 17:00,3:00,1:00 +WO244406,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,9/28/15 10:00,3:00,1:00 +WO323269,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,9/26/18 19:00,3:00,1:00 +WO373419,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04704,Chiller 4,TRUE,5,10/26/20 19:30,3:00,1:00 +WO348054,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04704,Chiller 4,TRUE,5,10/31/19 15:30,3:00,1:00 +WO259917,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,5/16/16 16:38,3:00,1:00 +WO312039,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,6/21/18 14:00,3:00,1:00 +WO259918,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,5/16/16 16:42,3:00,1:00 +WO286489,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,3/31/17 16:08,3:00,1:00 +WO261375,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,5/1/16 15:00,3:00,1:00 +WO388110,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,5/13/21 15:30,3:00,1:00 +WO362631,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,5/20/20 14:30,3:00,1:00 +WO312511,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,4/6/18 14:45,3:00,1:00 +WO287546,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,5/11/17 14:00,3:00,1:00 +WO317759,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,8/7/18 16:45,3:00,1:00 +WO369086,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,7/23/20 19:00,3:00,1:00 +WO267217,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,7/4/16 21:30,3:00,1:00 +WO205703,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,7/14/14 15:00,3:00,1:00 +WO245629,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04009,Chiller 9,TRUE,5,1/13/16 20:00,3:00,1:00 +WO292632,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,7/14/17 15:00,3:00,1:00 +WO343346,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,8/13/19 14:00,3:00,1:00 +WO346886,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/26/19 19:15,3:00,1:00 +WO349286,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,7/8/20 13:56,3:00,1:00 +WO317760,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,8/7/18 16:15,3:00,1:00 +WO205704,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,6/27/14 14:30,3:00,1:00 +WO320287,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/25/19 16:00,3:00,1:00 +WO298879,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,9/28/17 22:45,3:00,1:00 +WO397373,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/23/21 20:00,3:00,1:00 +WO267222,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,7/16/16 15:00,3:00,1:00 +WO303525,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,2/1/18 19:41,3:00,1:00 +WO213628,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,10/10/14 7:30,3:00,1:00 +WO266742,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,8/2/16 19:30,3:00,1:00 +WO348444,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,11/6/19 14:00,3:00,1:00 +WO220290,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,11/29/14 15:30,3:00,1:00 +WO303527,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,2/1/18 19:47,3:00,1:00 +WO324168,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,11/27/18 16:00,3:00,1:00 +WO297544,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,11/29/17 20:12,3:00,1:00 +WO266744,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,8/2/16 19:30,3:00,1:00 +WO232004,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,4/28/15 15:30,3:00,1:00 +WO270342,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/29/16 15:30,3:00,1:00 +WO214127,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,9/30/14 13:30,3:00,1:00 +WO375461,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,10/21/20 19:00,3:00,1:00 +WO303109,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/24/17 18:45,3:00,1:00 +WO379443,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,12/21/20 14:00,3:00,1:00 +WO338419,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,5/31/19 19:30,3:00,1:00 +WO323708,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04009,Chiller 9,TRUE,5,4/1/19 10:00,3:00,1:00 +WO299380,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04009,Chiller 9,TRUE,5,3/15/18 15:30,3:00,1:00 +WO372007,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,12/8/20 20:00,3:00,1:00 +WO350670,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/3/20 15:00,3:00,1:00 +WO350672,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,5/18/20 19:30,3:00,1:00 +WO325838,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/22/19 19:00,3:00,1:00 +WO377504,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/25/21 18:30,3:00,1:00 +WO377507,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,2/8/21 15:30,3:00,1:00 +WO372505,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,9/29/20 12:00,3:00,1:00 +WO360237,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,4/22/20 19:30,3:00,1:00 +WO372504,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,9/29/20 16:00,3:00,1:00 +WO351300,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/4/20 19:30,3:00,1:00 +WO353167,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,1/13/20 20:00,3:00,1:00 +WO387150,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,5/10/21 15:25,3:00,1:00 +WO377973,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,12/22/20 14:00,3:00,1:00 +WO377501,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,4/21/21 16:30,3:00,1:00 +WO405426,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,TRUE,5,2/22/22 18:30,3:00,1:00 +WO364523,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,6/5/20 15:00,3:00,1:00 +WO353169,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,TRUE,5,1/20/20 20:30,3:00,1:00 +WO380655,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,2/2/21 14:00,3:00,1:00 +WO360239,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,TRUE,5,4/23/20 13:00,3:00,1:00 +WO374038,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,10/16/20 14:00,3:00,1:00 +WO400063,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,11/9/21 20:00,3:00,1:00 +WO360233,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,4/20/20 17:44,3:00,1:00 +WO367295,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/7/20 17:00,3:00,1:00 +WO360235,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,4/20/20 19:30,3:00,1:00 +WO380657,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/5/21 20:00,3:00,1:00 +WO405422,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/22/22 16:00,3:00,1:00 +WO396925,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,12/28/21 17:00,3:00,1:00 +WO384012,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,6/22/21 15:00,3:00,1:00 +WO393589,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,8/18/21 13:00,3:00,1:00 +WO396921,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,12/28/21 13:00,3:00,1:00 +WO396923,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,12/28/21 15:00,3:00,1:00 +WO399660,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,11/17/21 20:00,3:00,1:00 +WO288608,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/23/17 19:30,3:00,1:00 +WO405424,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,2/23/22 19:30,3:00,1:00 +WO351293,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/7/20 18:00,3:00,1:00 +WO403804,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,1/12/22 17:30,3:00,1:00 +WO325829,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/21/19 18:00,3:00,1:00 +WO376516,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,5/4/21 18:30,3:00,1:00 +WO325836,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,1/21/19 20:00,3:00,1:00 +WO325841,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04010,Chiller 10,TRUE,5,3/5/19 0:30,3:00,1:00 +WO346999,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,10/2/19 14:30,3:00,1:00 +WO393577,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,TRUE,5,8/4/21 13:00,3:00,1:00 +WO393571,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,8/6/21 19:00,3:00,1:00 +WO367293,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,7/8/20 17:00,3:00,1:00 +WO400069,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,TRUE,5,11/11/21 19:30,3:00,1:00 +WO380661,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,TRUE,5,2/2/21 18:00,3:00,1:00 +WO387152,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,TRUE,5,5/11/21 13:30,3:00,1:00 +WO347359,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,10/12/19 14:45,3:00,1:00 +WO353165,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/20/20 18:30,3:00,1:00 +WO338522,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,5/31/19 19:30,3:00,1:00 +WO374040,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/12/20 14:00,3:00,1:00 +WO377508,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/16/21 18:30,3:00,1:00 +WO393575,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,7/28/21 18:30,3:00,1:00 +WO351296,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/8/20 18:30,3:00,1:00 +WO398378,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,10/7/21 15:00,3:00,1:00 +WO351298,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04010,Chiller 10,TRUE,5,2/13/20 19:30,3:00,1:00 +WO380659,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,2/3/21 19:00,3:00,1:00 +WO371142,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,9/17/20 19:00,3:00,1:00 +WO400067,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,11/12/21 19:30,3:00,1:00 +WO402360,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/2/22 19:30,3:00,1:00 +WO384010,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,6/25/21 21:00,3:00,1:00 +WO391364,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,9/30/21 17:00,3:00,1:00 +WO386599,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,6/21/21 22:00,3:00,1:00 +WO386601,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,6/21/21 23:00,3:00,1:00 +WO384008,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,6/25/21 20:00,3:00,1:00 +WO374042,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,10/30/20 18:30,3:00,1:00 +WO398375,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,10/7/21 19:19,3:00,1:00 +WO351299,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,5/28/20 13:00,3:00,1:00 +WO397976,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,10/7/21 19:19,3:00,1:00 +WO367299,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,TRUE,5,7/9/20 13:00,3:00,1:00 +WO387146,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,5/10/21 13:00,3:00,1:00 +WO405420,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,2/21/22 17:30,3:00,1:00 +WO374044,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,TRUE,5,10/15/20 19:00,3:00,1:00 +WO353163,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,1/14/20 14:00,3:00,1:00 +WO376514,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/16/21 18:30,3:00,1:00 +WO325834,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/25/19 20:00,3:00,1:00 +WO325840,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/6/19 0:30,3:00,1:00 +WO400065,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/10/21 14:00,3:00,1:00 +WO349387,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,7/8/20 13:57,3:00,1:00 +WO367297,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,7/10/20 18:30,3:00,1:00 +WO387148,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/14/21 12:25,3:00,1:00 +WO393573,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/5/21 19:00,3:00,1:00 +WO357318,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,2/26/20 20:00,3:00,1:00 +WO391367,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,10/1/21 13:00,3:00,1:00 +WO384632,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,4/1/21 14:00,3:00,1:00 +WO391369,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,10/1/21 15:00,3:00,1:00 +WO350683,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,12/3/19 16:00,3:00,1:00 +WO391814,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,7/10/21 20:00,3:00,1:00 +WO396927,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,12/28/21 19:00,3:00,1:00 +WO386600,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,6/18/21 19:30,3:00,1:00 +WO391365,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,9/30/21 18:00,3:00,1:00 +WO354148,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/31/20 0:30,3:00,1:00 +WO371928,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,9/25/20 19:30,3:00,1:00 +WO262363,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/29/16 14:41,3:00,1:00 +WO372931,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/7/20 11:45,3:00,1:00 +WO301476,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/22/17 17:33,3:00,1:00 +WO361089,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/8/20 19:00,3:00,1:00 +WO392222,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/15/21 12:00,3:00,1:00 +WO394336,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/17/21 12:00,3:00,1:00 +WO284512,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/12/17 14:22,3:00,1:00 +WO348874,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/4/19 19:30,3:00,1:00 +WO288898,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/20/17 14:57,3:00,1:00 +WO298377,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,10/16/17 13:06,3:00,1:00 +WO367119,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,7/22/20 19:30,3:00,1:00 +WO145937,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04702,Chiller 2,FALSE,1,2/17/13 7:30,3:00,1:00 +WO57479,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,4/27/11 12:00,3:00,1:00 +WO24943,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,10/25/10 19:53,3:00,1:00 +WO34527,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,11/19/10 15:30,3:00,1:00 +WO104443,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04007,Chiller 7,TRUE,5,3/26/12 15:30,3:00,1:00 +WO121405,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04007,Chiller 7,FALSE,1,7/24/12 15:30,3:00,1:00 +WO16130,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,6/22/10 14:12,3:00,1:00 +WO107035,Vibration Analysis and more specific Post-Maintenance Vibration Analysis related to entire chiller system,entire chiller system,MT013,Vibration Analysis,MT013c,Post-Maintenance Vibration Analysis,CWC04006,Chiller 6,FALSE,1,4/11/12 16:00,3:00,1:00 +WO147848,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,3/25/13 15:30,3:00,1:00 +WO95205,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,FALSE,1,1/11/12 9:30,3:00,1:00 +WO319605,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04007,Chiller 7,FALSE,1,7/6/18 19:30,3:00,1:00 +WO43395,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,1,12/2/10 15:30,3:00,1:00 +WO55175,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,3/25/11 15:30,3:00,1:00 +WO202155,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,4/22/14 15:30,3:00,1:00 +WO104451,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,3/26/12 15:30,3:00,1:00 +WO100095,Head Operations and more specific Reinstall Heads related to condenser|evaporator,condenser|evaporator,M020,Head Operations,M020b,Reinstall Heads,CWC04702,Chiller 2,FALSE,1,1/26/12 15:30,3:00,1:00 +WO206825,Control System Malfunction and more specific Control Loop Failure related to entire chiller system,entire chiller system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04009,Chiller 9,FALSE,1,6/24/14 15:30,3:00,1:00 +WO49715,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04013,Chiller 13,FALSE,1,1/24/11 15:30,3:00,1:00 +WO57245,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04013,Chiller 13,FALSE,1,3/29/11 15:30,3:00,1:00 +WO280705,Head Operations and more specific Reinstall Heads related to condenser,condenser,M020,Head Operations,M020b,Reinstall Heads,CWC04010,Chiller 10,FALSE,1,1/4/17 14:00,3:00,1:00 +WO291425,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04009,Chiller 9,FALSE,1,5/26/17 19:30,3:00,1:00 +WO263815,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,FALSE,1,4/5/16 19:30,3:00,1:00 +WO164965,Draining Operations and more specific Drain Water related to condenser,condenser,M016,Draining Operations,M016a,Drain Water,CWC04006,Chiller 6,FALSE,1,7/18/13 7:00,3:00,1:00 +WO234875,Major Overhaul and more specific Piping Overhaul related to refrigerant circuit,refrigerant circuit,M017,Major Overhaul,M017b,Piping Overhaul,CWC04014,Chiller 14,FALSE,1,4/23/15 15:30,3:00,1:00 +WO293245,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04009,Chiller 9,FALSE,1,6/20/17 21:30,3:00,1:00 +WO257045,Major Overhaul and more specific Chiller Overhaul related to entire chiller system,entire chiller system,M017,Major Overhaul,M017a,Chiller Overhaul,CWC04014,Chiller 14,FALSE,1,2/12/16 20:30,3:00,1:00 +WO160835,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,6/7/13 20:00,3:00,1:00 +WO301175,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04006,Chiller 6,FALSE,1,10/25/17 19:30,3:00,1:00 +WO277455,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04014,Chiller 14,FALSE,1,11/1/16 19:30,3:00,1:00 +WO145936,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04702,Chiller 2,FALSE,1,2/11/13 20:30,3:00,1:00 +WO140795,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04010,Chiller 10,FALSE,1,12/14/12 15:30,3:00,1:00 +WO124486,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04704,Chiller 4,FALSE,1,8/16/12 17:30,3:00,1:00 +WO200796,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04009,Chiller 9,FALSE,1,4/18/14 15:30,3:00,1:00 +WO77356,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04009,Chiller 9,FALSE,1,8/18/11 15:30,3:00,1:00 +WO145986,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04007,Chiller 7,FALSE,1,1/25/13 3:30,3:00,1:00 +WO95196,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04701,Chiller 1,FALSE,1,1/8/12 15:30,3:00,1:00 +WO374595,Sensor Failure and more specific Temperature Sensor Failure related to refrigerant circuit,refrigerant circuit,CS002,Sensor Failure,CS002a,Temperature Sensor Failure,CWC04007,Chiller 7,FALSE,1,11/19/20 15:00,3:00,1:00 +WO114836,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,5/26/12 15:00,3:00,1:00 +WO322677,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04006,Chiller 6,FALSE,1,9/5/18 19:30,3:00,1:00 +WO207336,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,6/19/14 15:30,3:00,1:00 +WO47666,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,12/7/10 15:30,3:00,1:00 +WO205437,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04009,Chiller 9,FALSE,1,5/27/14 15:30,3:00,1:00 +WO164716,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04010,Chiller 10,FALSE,1,7/10/13 15:30,3:00,1:00 +WO59386,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,4/13/11 15:30,3:00,1:00 +WO47686,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04010,Chiller 10,FALSE,1,12/31/10 15:30,3:00,1:00 +WO198546,Major Overhaul and more specific Piping Overhaul related to condenser,condenser,M017,Major Overhaul,M017b,Piping Overhaul,CWC04006,Chiller 6,FALSE,1,3/24/14 15:30,3:00,1:00 +WO199836,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04009,Chiller 9,FALSE,1,4/7/14 15:30,3:00,1:00 +WO383535,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,FALSE,1,2/23/21 16:30,3:00,1:00 +WO39876,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,FALSE,1,10/10/10 15:30,3:00,1:00 +WO288606,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04010,Chiller 10,FALSE,1,4/18/17 19:30,3:00,1:00 +WO43396,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04010,Chiller 10,FALSE,1,12/2/10 15:30,3:00,1:00 +WO296116,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04009,Chiller 9,FALSE,1,7/25/17 19:30,3:00,1:00 +WO311026,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04009,Chiller 9,FALSE,1,2/26/18 20:30,3:00,1:00 +WO46476,Leak Detection and more specific Visual Inspection related to entire chiller system,entire chiller system,MT008,Leak Detection,MT008a,Visual Inspection,CWC04702,Chiller 2,FALSE,1,1/6/11 15:30,3:00,1:00 +WO219946,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04007,Chiller 7,FALSE,1,10/31/14 15:30,3:00,1:00 +WO286166,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04014,Chiller 14,FALSE,1,3/12/17 19:30,3:00,1:00 +WO398506,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04012,Chiller 12,FALSE,1,9/20/21 18:00,3:00,1:00 +WO285176,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04012,Chiller 12,FALSE,1,2/25/17 20:30,3:00,1:00 +WO310126,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04014,Chiller 14,FALSE,1,2/15/18 20:30,3:00,1:00 +WO37687,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04007,Chiller 7,FALSE,1,10/2/10 19:30,3:00,1:00 +WO55297,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,3/12/11 15:30,3:00,1:00 +WO383536,Head Operations and more specific Remove Heads related to entire chiller system,entire chiller system,M020,Head Operations,M020a,Remove Heads,CWC04014,Chiller 14,FALSE,1,2/23/21 19:00,3:00,1:00 +WO49717,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,1/26/11 15:30,3:00,1:00 +WO125497,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04014,Chiller 14,FALSE,1,9/5/12 15:30,3:00,1:00 +WO402406,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,FALSE,2,12/1/21 20:30,3:00,1:00 +WO54117,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,FALSE,1,3/3/11 15:30,3:00,1:00 +WO289536,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04006,Chiller 6,FALSE,1,5/2/17 21:30,3:00,1:00 +WO289256,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04014,Chiller 14,FALSE,1,4/27/17 19:30,3:00,1:00 +WO321896,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04013,Chiller 13,FALSE,1,8/14/18 19:30,3:00,1:00 +WO371657,Vibration Analysis and more specific Post-Maintenance Vibration Analysis related to entire chiller system,entire chiller system,MT013,Vibration Analysis,MT013c,Post-Maintenance Vibration Analysis,CWC04009,Chiller 9,FALSE,1,8/24/20 19:00,3:00,1:00 +WO378537,Deformation and more specific Deformation of Housing related to evaporator,evaporator,M003,Deformation,M003b,Deformation of Housing,CWC04704,Chiller 4,FALSE,2,12/7/20 20:30,3:00,1:00 +WO82817,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,9/21/11 15:30,3:00,1:00 +WO289527,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04010,Chiller 10,FALSE,1,5/2/17 21:30,3:00,1:00 +WO292727,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04009,Chiller 9,FALSE,1,6/19/17 9:30,3:00,1:00 +WO286167,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04014,Chiller 14,FALSE,1,2/11/17 20:30,3:00,1:00 +WO306387,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04701,Chiller 1,FALSE,1,12/12/17 20:30,3:00,1:00 +WO317407,Sensor Failure and more specific Temperature Sensor Failure related to compressor,compressor,CS002,Sensor Failure,CS002a,Temperature Sensor Failure,CWC04007,Chiller 7,FALSE,2,7/25/18 17:44,3:00,1:00 +WO321367,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04013,Chiller 13,FALSE,2,7/18/18 19:30,3:00,1:00 +WO317477,Refrigerant Leak and more specific Small Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001a,Small Leak,CWC04013,Chiller 13,FALSE,2,7/25/18 17:47,3:00,1:00 +WO203967,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,4/29/14 15:30,3:00,1:00 +WO319607,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04007,Chiller 7,FALSE,1,7/2/18 14:30,3:00,1:00 +WO178397,Lubrication and more specific Lubrication of Bearings related to entire chiller system,entire chiller system,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04009,Chiller 9,FALSE,1,10/21/13 15:30,3:00,1:00 +WO318057,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04013,Chiller 13,FALSE,1,6/15/18 19:30,3:00,1:00 +WO174068,Refrigerant Leak and more specific Large Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001b,Large Leak,CWC04009,Chiller 9,FALSE,1,10/4/13 15:30,3:00,1:00 +WO199838,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04009,Chiller 9,FALSE,1,4/8/14 15:30,3:00,1:00 +WO167198,Vibration Analysis and more specific Post-Maintenance Vibration Analysis related to entire chiller system,entire chiller system,MT013,Vibration Analysis,MT013c,Post-Maintenance Vibration Analysis,CWC04009,Chiller 9,FALSE,1,8/22/13 13:30,3:00,1:00 +WO236738,Leak Detection and more specific Visual Inspection related to entire chiller system,entire chiller system,MT008,Leak Detection,MT008a,Visual Inspection,CWC04009,Chiller 9,FALSE,1,5/15/15 15:30,3:00,1:00 +WO400557,Oil Analysis and more specific Initial Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010a,Initial Oil Analysis,CWC04012,Chiller 12,FALSE,2,10/26/21 15:56,3:00,1:00 +WO229848,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04007,Chiller 7,FALSE,1,2/27/15 15:30,3:00,1:00 +WO397657,Cleaning and more specific Internal Cleaning related to compressor,compressor,MT002,Cleaning,MT002b,Internal Cleaning,CWC04014,Chiller 14,FALSE,2,9/9/21 17:00,3:00,1:00 +WO304898,Refrigerant Addition and more specific Small Amount related to evaporator,evaporator,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,FALSE,1,11/29/17 0:00,3:00,1:00 +WO234878,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,4/23/15 15:30,3:00,1:00 +WO311028,Condenser Tube Leak and more specific Minor Leak related to condenser,condenser,M014,Condenser Tube Leak,M014a,Minor Leak,CWC04009,Chiller 9,FALSE,1,2/27/18 20:30,3:00,1:00 +WO291438,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,5/31/17 19:30,3:00,1:00 +WO291098,Cleaning and more specific Internal Cleaning related to compressor,compressor,MT002,Cleaning,MT002b,Internal Cleaning,CWC04013,Chiller 13,FALSE,1,5/12/17 19:30,3:00,1:00 +WO95238,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04010,Chiller 10,FALSE,1,12/28/11 15:30,3:00,1:00 +WO296158,Oil Analysis and more specific Post-Maintenance Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010c,Post-Maintenance Oil Analysis,CWC04014,Chiller 14,FALSE,1,7/16/17 19:30,3:00,1:00 +WO115338,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04010,Chiller 10,FALSE,1,5/30/12 15:30,3:00,1:00 +WO115408,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04010,Chiller 10,FALSE,1,6/6/12 14:00,3:00,1:00 +WO286188,Sensor Failure and more specific Temperature Sensor Failure related to refrigerant circuit,refrigerant circuit,CS002,Sensor Failure,CS002a,Temperature Sensor Failure,CWC04014,Chiller 14,FALSE,1,3/10/17 20:30,3:00,1:00 +WO263818,Control System Malfunction and more specific Control Loop Failure related to condenser,condenser,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04006,Chiller 6,FALSE,1,4/17/16 19:30,3:00,1:00 +WO396538,Routine Maintenance and more specific Scheduled Maintenance related to refrigerant circuit,refrigerant circuit,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,FALSE,2,8/24/21 15:16,3:00,1:00 +WO343608,Sensor Failure and more specific Temperature Sensor Failure related to control system,control system,CS002,Sensor Failure,CS002a,Temperature Sensor Failure,CWC04704,Chiller 4,FALSE,1,11/7/19 21:11,3:00,1:00 +WO257048,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04702,Chiller 2,FALSE,1,2/12/16 20:30,3:00,1:00 +WO46479,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04010,Chiller 10,FALSE,1,1/5/11 11:00,3:00,1:00 +WO199959,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04010,Chiller 10,FALSE,1,4/10/14 15:30,3:00,1:00 +WO219969,Lubrication and more specific Lubrication of Bearings related to entire chiller system,entire chiller system,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04704,Chiller 4,FALSE,1,10/22/14 15:30,3:00,1:00 +WO62619,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,4/20/11 15:30,3:00,1:00 +WO93639,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04703,Chiller 3,FALSE,1,12/21/11 3:30,3:00,1:00 +WO383528,Control System Malfunction and more specific Control Loop Failure related to entire chiller system,entire chiller system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04012,Chiller 12,FALSE,1,2/23/21 16:45,3:00,1:00 +WO382058,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,1/26/21 20:30,3:00,1:00 +WO115409,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04010,Chiller 10,FALSE,1,6/7/12 12:30,3:00,1:00 +WO397658,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,2,9/9/21 17:02,3:00,1:00 +WO137169,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04704,Chiller 4,FALSE,1,11/26/12 15:30,3:00,1:00 +WO384658,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04012,Chiller 12,FALSE,1,3/5/21 16:30,3:00,1:00 +WO316569,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,FALSE,1,6/7/18 15:30,3:00,1:00 +WO356429,Software Error and more specific Control Software Error related to control system,control system,CS004,Software Error,CS004a,Control Software Error,CWC04014,Chiller 14,FALSE,1,1/31/20 20:30,3:00,1:00 +WO309889,Condenser Plugged and more specific Complete Plugging related to entire chiller system,entire chiller system,M013,Condenser Plugged,M013b,Complete Plugging,CWC04007,Chiller 7,FALSE,1,2/21/18 20:30,3:00,1:00 +WO398078,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04012,Chiller 12,FALSE,2,9/14/21 19:39,3:00,1:00 +WO310129,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04007,Chiller 7,FALSE,1,2/15/18 20:30,3:00,1:00 +WO319579,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04013,Chiller 13,FALSE,1,7/7/18 19:30,3:00,1:00 +WO321359,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04006,Chiller 6,FALSE,1,7/26/18 19:30,3:00,1:00 +WO47730,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04013,Chiller 13,FALSE,1,12/17/10 15:30,3:00,1:00 +WO305459,Head Operations and more specific Remove Heads related to condenser,condenser,M020,Head Operations,M020a,Remove Heads,CWC04010,Chiller 10,FALSE,1,12/14/17 20:30,3:00,1:00 +WO55300,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,3/9/11 15:30,3:00,1:00 +WO314479,Refrigerant Addition and more specific Large Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004b,Large Amount,CWC04009,Chiller 9,FALSE,1,3/27/18 19:30,3:00,1:00 +WO315089,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,FALSE,2,5/18/18 15:30,3:00,1:00 +WO383119,Control System Malfunction and more specific Control Loop Failure related to control system,control system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04009,Chiller 9,FALSE,1,2/17/21 18:00,3:00,1:00 +WO54100,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,FALSE,1,2/21/11 15:30,3:00,1:00 +WO43400,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,1,12/4/10 15:30,3:00,1:00 +WO41380,Routine Maintenance and more specific Unscheduled Maintenance related to compressor,compressor,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04006,Chiller 6,FALSE,1,11/8/10 15:30,3:00,1:00 +WO236759,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04007,Chiller 7,FALSE,1,5/13/15 15:30,3:00,1:00 +WO281959,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04703,Chiller 3,FALSE,1,1/20/17 20:30,3:00,1:00 +WO396009,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04012,Chiller 12,FALSE,2,8/16/21 18:14,3:00,1:00 +WO293239,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04704,Chiller 4,FALSE,1,6/27/17 19:30,3:00,1:00 +WO37670,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04701,Chiller 1,FALSE,1,10/1/10 15:30,3:00,1:00 +WO286189,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04014,Chiller 14,FALSE,1,3/12/17 19:30,3:00,1:00 +WO287389,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04009,Chiller 9,FALSE,1,3/30/17 19:30,3:00,1:00 +WO287779,Process Upset and more specific Unexpected Load Change related to entire chiller system,entire chiller system,OP001,Process Upset,OP001a,Unexpected Load Change,CWC04006,Chiller 6,FALSE,1,4/8/17 19:30,3:00,1:00 +WO280699,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04010,Chiller 10,FALSE,1,12/28/16 20:30,3:00,1:00 +WO221609,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04703,Chiller 3,FALSE,1,11/4/14 15:30,3:00,1:00 +WO169460,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04007,Chiller 7,FALSE,1,8/7/13 15:30,3:00,1:00 +WO102710,Piping Leak and more specific Small Leak related to refrigerant circuit,refrigerant circuit,L004,Piping Leak,L004a,Small Leak,CWC04704,Chiller 4,FALSE,1,3/1/12 15:30,3:00,1:00 +WO284130,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04010,Chiller 10,FALSE,1,2/16/17 20:30,3:00,1:00 +WO188800,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04010,Chiller 10,FALSE,1,12/31/13 19:00,3:00,1:00 +WO305430,Actuator Failure and more specific Pneumatic Actuator Failure related to control system,control system,M009,Actuator Failure,M009b,Pneumatic Actuator Failure,CWC04009,Chiller 9,FALSE,1,12/2/17 20:30,3:00,1:00 +WO296150,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04006,Chiller 6,FALSE,1,7/15/17 19:30,3:00,1:00 +WO140920,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04009,Chiller 9,FALSE,1,12/21/12 15:30,3:00,1:00 +WO291100,Lubrication and more specific Lubrication of Shafts related to entire chiller system,entire chiller system,MT003,Lubrication,MT003b,Lubrication of Shafts,CWC04014,Chiller 14,FALSE,1,5/16/17 19:30,3:00,1:00 +WO207361,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04006,Chiller 6,FALSE,1,6/13/14 15:30,3:00,1:00 +WO164860,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04009,Chiller 9,FALSE,1,7/19/13 3:30,3:00,1:00 +WO200810,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04006,Chiller 6,FALSE,1,4/17/14 15:30,3:00,1:00 +WO57241,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04013,Chiller 13,FALSE,1,3/25/11 10:30,3:00,1:00 +WO212531,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04009,Chiller 9,FALSE,1,7/18/14 3:30,3:00,1:00 +WO47671,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04013,Chiller 13,FALSE,1,12/6/10 15:30,3:00,1:00 +WO221591,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,11/23/14 15:30,3:00,1:00 +WO101961,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04013,Chiller 13,FALSE,1,2/3/12 15:30,3:00,1:00 +WO50721,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04014,Chiller 14,FALSE,1,1/31/11 15:30,3:00,1:00 +WO86631,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,10/27/11 19:30,3:00,1:00 +WO108851,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04007,Chiller 7,FALSE,1,3/29/12 15:30,3:00,1:00 +WO91911,Software Error and more specific Monitoring Software Error related to control system,control system,CS004,Software Error,CS004b,Monitoring Software Error,CWC04701,Chiller 1,FALSE,1,11/15/11 15:30,3:00,1:00 +WO145991,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04007,Chiller 7,FALSE,1,1/23/13 3:30,3:00,1:00 +WO24702,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,10/25/10 19:53,3:00,1:00 +WO238241,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04010,Chiller 10,FALSE,1,6/20/15 15:30,3:00,1:00 +WO237291,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04014,Chiller 14,FALSE,1,6/5/15 15:30,3:00,1:00 +WO300971,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04703,Chiller 3,FALSE,1,10/17/17 19:30,3:00,1:00 +WO23468,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,10/25/10 20:38,3:00,1:00 +WO29654,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,10/25/10 20:38,3:00,1:00 +WO93582,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,12/5/11 15:30,3:00,1:00 +WO293261,Major Overhaul and more specific Chiller Overhaul related to entire chiller system,entire chiller system,M017,Major Overhaul,M017a,Chiller Overhaul,CWC04009,Chiller 9,FALSE,1,6/14/17 19:30,3:00,1:00 +WO53232,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,FALSE,1,2/20/11 15:30,3:00,1:00 +WO319631,Refrigerant Leak and more specific Large Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001b,Large Leak,CWC04013,Chiller 13,FALSE,2,7/9/18 19:30,3:00,1:00 +WO395831,Vibration Issues and more specific Low Frequency Vibration related to entire chiller system,entire chiller system,M008,Vibration Issues,M008b,Low Frequency Vibration,CWC04703,Chiller 3,FALSE,2,8/12/21 19:30,3:00,1:00 +WO123902,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04704,Chiller 4,FALSE,1,8/8/12 15:30,3:00,1:00 +WO55302,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,3/11/11 15:30,3:00,1:00 +WO292321,Major Overhaul and more specific Chiller Overhaul related to entire chiller system,entire chiller system,M017,Major Overhaul,M017a,Chiller Overhaul,CWC04009,Chiller 9,FALSE,1,6/14/17 9:30,3:00,1:00 +WO43372,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,1,12/3/10 15:30,3:00,1:00 +WO321891,Refrigerant Addition and more specific Large Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004b,Large Amount,CWC04013,Chiller 13,FALSE,1,8/16/18 19:30,3:00,1:00 +WO59392,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04013,Chiller 13,FALSE,1,4/14/11 15:30,3:00,1:00 +WO386631,Refrigerant Leak and more specific Small Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001a,Small Leak,CWC04013,Chiller 13,FALSE,1,4/1/21 19:30,3:00,1:00 +WO238252,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04007,Chiller 7,FALSE,1,6/21/15 15:30,3:00,1:00 +WO64012,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04704,Chiller 4,FALSE,1,5/3/11 15:30,3:00,1:00 +WO54462,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04007,Chiller 7,TRUE,5,3/25/11 15:30,3:00,1:00 +WO306942,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,FALSE,1,1/8/18 20:30,3:00,1:00 +WO263831,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04704,Chiller 4,FALSE,1,4/20/16 19:30,3:00,1:00 +WO398031,Control System Malfunction and more specific Communication Failure related to control system,control system,CS005,Control System Malfunction,CS005b,Communication Failure,CWC04014,Chiller 14,FALSE,2,9/13/21 19:13,3:00,1:00 +WO304392,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04704,Chiller 4,FALSE,1,11/17/17 20:30,3:00,1:00 +WO281012,Routine Maintenance and more specific Scheduled Maintenance related to motor,motor,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,FALSE,1,12/27/16 20:30,3:00,1:00 +WO310575,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04014,Chiller 14,FALSE,1,2/27/18 17:00,3:00,1:00 +WO311025,Head Operations and more specific Reinstall Heads related to condenser,condenser,M020,Head Operations,M020b,Reinstall Heads,CWC04014,Chiller 14,FALSE,1,3/1/18 20:30,3:00,1:00 +WO55177,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,3/25/11 7:15,3:00,1:00 +WO367822,Vibration Analysis and more specific Post-Maintenance Vibration Analysis related to entire chiller system,entire chiller system,MT013,Vibration Analysis,MT013c,Post-Maintenance Vibration Analysis,CWC04009,Chiller 9,FALSE,1,6/16/20 19:30,3:00,1:00 +WO104445,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,3/26/12 15:30,3:00,1:00 +WO147844,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,3/25/13 15:30,3:00,1:00 +WO197542,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04009,Chiller 9,FALSE,1,3/14/14 15:30,3:00,1:00 +WO196335,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04007,Chiller 7,FALSE,1,2/28/14 15:30,3:00,1:00 +WO58445,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,4/3/11 15:30,3:00,1:00 +WO204412,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04703,Chiller 3,FALSE,1,5/9/14 15:30,3:00,1:00 +WO99575,Vibration Analysis and more specific Post-Maintenance Vibration Analysis related to entire chiller system,entire chiller system,MT013,Vibration Analysis,MT013c,Post-Maintenance Vibration Analysis,CWC04006,Chiller 6,FALSE,1,2/8/12 22:00,3:00,1:00 +WO147850,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,3/25/13 15:30,3:00,1:00 +WO57195,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04013,Chiller 13,FALSE,1,3/23/11 15:30,3:00,1:00 +WO318055,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04009,Chiller 9,FALSE,2,6/19/18 23:30,3:00,1:00 +WO95245,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04701,Chiller 1,FALSE,1,1/17/12 12:03,3:00,1:00 +WO128635,Major Overhaul and more specific Chiller Overhaul related to entire chiller system,entire chiller system,M017,Major Overhaul,M017a,Chiller Overhaul,CWC04009,Chiller 9,FALSE,1,9/11/12 15:30,3:00,1:00 +WO221595,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04013,Chiller 13,FALSE,1,11/30/14 15:30,3:00,1:00 +WO221885,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04703,Chiller 3,FALSE,1,10/17/14 15:30,3:00,1:00 +WO233612,Cleaning and more specific Internal Cleaning related to condenser|evaporator,condenser|evaporator,MT002,Cleaning,MT002b,Internal Cleaning,CWC04010,Chiller 10,FALSE,1,4/3/15 15:30,3:00,1:00 +WO237315,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,5/26/15 15:30,3:00,1:00 +WO215862,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04012,Chiller 12,FALSE,1,9/26/14 15:30,3:00,1:00 +WO226072,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04014,Chiller 14,FALSE,1,1/5/15 9:00,3:00,1:00 +WO290043,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04009,Chiller 9,FALSE,1,5/8/17 19:30,3:00,1:00 +WO287165,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04014,Chiller 14,FALSE,1,3/27/17 19:30,3:00,1:00 +WO318052,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04007,Chiller 7,FALSE,1,6/19/18 23:30,3:00,1:00 +WO284135,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04006,Chiller 6,FALSE,1,2/12/17 20:30,3:00,1:00 +WO232185,Rupture and more specific Rupture in Vessels related to compressor,compressor,M004,Rupture,M004b,Rupture in Vessels,CWC04701,Chiller 1,FALSE,1,3/13/15 11:30,3:00,1:00 +WO221582,Routine Maintenance and more specific Annual Draining related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001c,Annual Draining,CWC04007,Chiller 7,FALSE,1,11/23/14 16:00,3:00,1:00 +WO145985,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04702,Chiller 2,FALSE,1,1/20/13 3:30,3:00,1:00 +WO291023,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04009,Chiller 9,FALSE,1,5/17/17 19:30,3:00,1:00 +WO284195,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04006,Chiller 6,FALSE,1,2/15/17 20:30,3:00,1:00 +WO236733,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04013,Chiller 13,FALSE,1,5/21/15 15:30,3:00,1:00 +WO234843,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04702,Chiller 2,FALSE,1,4/17/15 11:00,3:00,1:00 +WO291123,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04009,Chiller 9,FALSE,1,5/15/17 19:30,3:00,1:00 +WO221883,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04007,Chiller 7,FALSE,1,10/20/14 15:30,3:00,1:00 +WO296135,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04704,Chiller 4,FALSE,1,8/1/17 19:30,3:00,1:00 +WO285205,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04010,Chiller 10,FALSE,1,2/28/17 20:30,3:00,1:00 +WO291095,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04013,Chiller 13,FALSE,1,5/11/17 19:30,3:00,1:00 +WO303305,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04014,Chiller 14,FALSE,1,11/13/17 20:30,3:00,1:00 +WO297033,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04006,Chiller 6,FALSE,1,8/16/17 19:30,3:00,1:00 +WO174035,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,8/23/13 15:30,3:00,1:00 +WO299743,Misalignment and more specific Misalignment of Shaft related to compressor,compressor,M005,Misalignment,M005b,Misalignment of Shaft,CWC04006,Chiller 6,FALSE,1,9/25/17 19:30,3:00,1:00 +WO141866,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,FALSE,1,1/3/13 15:30,3:00,1:00 +WO76563,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04010,Chiller 10,FALSE,1,8/12/11 15:30,3:00,1:00 +WO56283,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04013,Chiller 13,FALSE,1,3/30/11 11:01,3:00,1:00 +WO238256,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04013,Chiller 13,FALSE,1,6/17/15 15:30,3:00,1:00 +WO141893,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,12/24/12 15:30,3:00,1:00 +WO301165,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04006,Chiller 6,FALSE,1,10/10/17 19:30,3:00,1:00 +WO47693,Head Operations and more specific Remove Heads related to entire chiller system,entire chiller system,M020,Head Operations,M020a,Remove Heads,CWC04012,Chiller 12,FALSE,1,12/28/10 15:30,3:00,1:00 +WO55303,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04009,Chiller 9,FALSE,1,3/10/11 15:30,3:00,1:00 +WO305385,Filling Operations and more specific Fill Water Piping related to entire chiller system,entire chiller system,MT015,Filling Operations,MT017a,Fill Water Piping,CWC04012,Chiller 12,FALSE,1,12/1/17 20:30,3:00,1:00 +WO148446,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,2/26/13 3:30,3:00,1:00 +WO153516,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,1,4/25/13 3:30,3:00,1:00 +WO110193,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,4/9/12 15:30,3:00,1:00 +WO110153,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04006,Chiller 6,FALSE,1,4/11/12 15:30,3:00,1:00 +WO126733,Vibration Analysis and more specific Initial Vibration Analysis related to entire chiller system,entire chiller system,MT013,Vibration Analysis,MT013a,Initial Vibration Analysis,CWC04012,Chiller 12,FALSE,1,9/28/12 18:00,3:00,1:00 +WO398125,Seepage and more specific Refrigerant Seepage related to refrigerant circuit,refrigerant circuit,L005,Seepage,L005a,Refrigerant Seepage,CWC04013,Chiller 13,FALSE,2,9/16/21 19:09,3:00,1:00 +WO102646,Condenser Plugged and more specific Complete Plugging related to evaporator,evaporator,M013,Condenser Plugged,M013b,Complete Plugging,CWC04704,Chiller 4,FALSE,1,2/26/12 15:30,3:00,1:00 +WO137173,Lubrication and more specific Lubrication of Bearings related to entire chiller system,entire chiller system,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04009,Chiller 9,FALSE,1,12/3/12 15:30,3:00,1:00 +WO64016,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04014,Chiller 14,FALSE,1,5/10/11 15:30,3:00,1:00 +WO169456,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04006,Chiller 6,FALSE,1,8/7/13 15:30,3:00,1:00 +WO159366,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,6/5/13 7:30,3:00,1:00 +WO399372,Refrigerant Leak and more specific Small Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001a,Small Leak,CWC04007,Chiller 7,FALSE,2,10/4/21 19:39,3:00,1:00 +WO37003,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,FALSE,1,10/6/10 15:30,3:00,1:00 +WO400122,Head Operations and more specific Remove Heads related to entire chiller system,entire chiller system,M020,Head Operations,M020a,Remove Heads,CWC04007,Chiller 7,FALSE,2,10/22/21 19:30,3:00,1:00 +WO229846,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,2/25/15 15:30,3:00,1:00 +WO93586,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04703,Chiller 3,FALSE,1,12/3/11 15:30,3:00,1:00 +WO178424,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04007,Chiller 7,FALSE,1,10/17/13 15:30,3:00,1:00 +WO188806,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04006,Chiller 6,FALSE,1,1/15/14 15:30,3:00,1:00 +WO39844,Refrigerant Leak and more specific Small Leak related to compressor,compressor,L001,Refrigerant Leak,L001a,Small Leak,CWC04701,Chiller 1,FALSE,1,10/1/10 15:30,3:00,1:00 +WO137166,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,11/29/12 15:30,3:00,1:00 +WO43374,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04010,Chiller 10,FALSE,1,12/2/10 15:30,3:00,1:00 +WO100093,Head Operations and more specific Reinstall Heads related to evaporator,evaporator,M020,Head Operations,M020b,Reinstall Heads,CWC04014,Chiller 14,FALSE,1,1/24/12 15:30,3:00,1:00 +WO390305,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,5/20/21 19:00,3:00,1:00 +WO99524,Vibration Analysis and more specific Post-Maintenance Vibration Analysis related to entire chiller system,entire chiller system,MT013,Vibration Analysis,MT013c,Post-Maintenance Vibration Analysis,CWC04702,Chiller 2,FALSE,1,2/8/12 23:00,3:00,1:00 +WO95236,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04010,Chiller 10,FALSE,1,12/27/11 15:30,3:00,1:00 +WO97193,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04006,Chiller 6,FALSE,1,1/17/12 15:30,3:00,1:00 +WO41564,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04704,Chiller 4,FALSE,1,10/20/10 15:30,3:00,1:00 +WO185816,Leak Detection and more specific Visual Inspection related to entire chiller system,entire chiller system,MT008,Leak Detection,MT008a,Visual Inspection,CWC04704,Chiller 4,FALSE,1,12/23/13 15:30,3:00,1:00 +WO401673,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04012,Chiller 12,FALSE,2,11/15/21 20:30,3:00,1:00 +WO95203,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04009,Chiller 9,FALSE,1,1/4/12 15:30,3:00,1:00 +WO386693,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04009,Chiller 9,FALSE,1,4/7/21 15:00,3:00,1:00 +WO398863,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,FALSE,2,9/28/21 18:38,3:00,1:00 +WO226924,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04014,Chiller 14,FALSE,1,1/8/15 7:30,3:00,1:00 +WO285686,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04014,Chiller 14,FALSE,1,3/9/17 21:30,3:00,1:00 +WO356495,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04010,Chiller 10,FALSE,2,2/11/20 20:00,3:00,1:00 +WO263973,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04014,Chiller 14,FALSE,1,4/29/16 19:30,3:00,1:00 +WO140794,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,12/14/12 15:30,3:00,1:00 +WO382653,Cleaning and more specific Internal Cleaning related to compressor,compressor,MT002,Cleaning,MT002b,Internal Cleaning,CWC04010,Chiller 10,FALSE,1,2/10/21 14:00,3:00,1:00 +WO285186,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,2/23/17 20:30,3:00,1:00 +WO49527,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04013,Chiller 13,FALSE,1,1/20/11 15:30,3:00,1:00 +WO226764,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04009,Chiller 9,FALSE,1,1/30/15 15:30,3:00,1:00 +WO338653,Control System Malfunction and more specific Control Loop Failure related to compressor,compressor,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04704,Chiller 4,FALSE,1,5/9/19 16:00,3:00,1:00 +WO154874,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04013,Chiller 13,FALSE,1,5/3/13 15:30,3:00,1:00 +WO145984,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04009,Chiller 9,FALSE,1,1/16/13 3:30,3:00,1:00 +WO300556,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04009,Chiller 9,FALSE,1,10/9/17 19:30,3:00,1:00 +WO319586,Evaporator Leak and more specific Major Leak related to evaporator,evaporator,L003,Evaporator Leak,L003b,Major Leak,CWC04013,Chiller 13,FALSE,2,8/31/18 13:00,3:00,1:00 +WO279996,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04007,Chiller 7,FALSE,1,12/19/16 20:30,3:00,1:00 +WO144344,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04007,Chiller 7,FALSE,1,1/28/13 15:30,3:00,1:00 +WO390303,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04012,Chiller 12,FALSE,1,5/19/21 19:00,3:00,1:00 +WO102707,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04009,Chiller 9,FALSE,1,3/2/12 15:30,3:00,1:00 +WO121394,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04007,Chiller 7,FALSE,1,7/25/12 15:30,3:00,1:00 +WO311516,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04009,Chiller 9,FALSE,1,3/7/18 20:30,3:00,1:00 +WO303206,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04704,Chiller 4,FALSE,1,11/14/17 20:30,3:00,1:00 +WO58457,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04014,Chiller 14,FALSE,1,3/30/11 15:30,3:00,1:00 +WO145947,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04701,Chiller 1,FALSE,1,2/7/13 3:30,3:00,1:00 +WO307016,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04010,Chiller 10,FALSE,1,12/30/17 20:30,3:00,1:00 +WO258506,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04702,Chiller 2,FALSE,1,2/17/16 12:30,3:00,1:00 +WO209434,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04009,Chiller 9,FALSE,1,6/24/14 15:30,3:00,1:00 +WO257044,Draining Operations and more specific Drain Water related to entire chiller system,entire chiller system,M016,Draining Operations,M016a,Drain Water,CWC04009,Chiller 9,FALSE,1,2/10/16 20:30,3:00,1:00 +WO86637,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,10/29/11 15:30,3:00,1:00 +WO273354,Sensor Failure and more specific Temperature Sensor Failure related to refrigerant circuit,refrigerant circuit,CS002,Sensor Failure,CS002a,Temperature Sensor Failure,CWC04007,Chiller 7,FALSE,1,8/25/16 19:30,3:00,1:00 +WO307456,Refrigerant Leak and more specific Large Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001b,Large Leak,CWC04012,Chiller 12,FALSE,1,1/15/18 20:30,3:00,1:00 +WO398824,Piping Leak and more specific Large Leak related to refrigerant circuit,refrigerant circuit,L004,Piping Leak,L004b,Large Leak,CWC04014,Chiller 14,FALSE,2,9/27/21 18:44,3:00,1:00 +WO147777,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,FALSE,1,3/9/13 10:30,3:00,1:00 +WO164857,Control System Malfunction and more specific Control Loop Failure related to entire chiller system,entire chiller system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04010,Chiller 10,FALSE,1,7/23/13 3:30,3:00,1:00 +WO291424,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04009,Chiller 9,FALSE,1,5/16/17 19:30,3:00,1:00 +WO365424,Sensor Failure and more specific Temperature Sensor Failure related to refrigerant circuit,refrigerant circuit,CS002,Sensor Failure,CS002a,Temperature Sensor Failure,CWC04006,Chiller 6,FALSE,1,6/3/20 19:00,3:00,1:00 +WO319574,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04006,Chiller 6,FALSE,1,6/26/18 19:30,3:00,1:00 +WO304474,Draining Operations and more specific Drain Oil related to refrigerant circuit,refrigerant circuit,M016,Draining Operations,M016b,Drain Oil,CWC04012,Chiller 12,FALSE,1,11/26/17 20:30,3:00,1:00 +WO316016,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04009,Chiller 9,FALSE,2,5/17/18 19:30,3:00,1:00 +WO384716,Software Error and more specific Control Software Error related to control system,control system,CS004,Software Error,CS004a,Control Software Error,CWC04010,Chiller 10,FALSE,1,3/5/21 16:30,3:00,1:00 +WO205447,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04702,Chiller 2,FALSE,1,5/21/14 15:30,3:00,1:00 +WO234857,Draining Operations and more specific Drain Water related to entire chiller system,entire chiller system,M016,Draining Operations,M016a,Drain Water,CWC04702,Chiller 2,FALSE,1,4/15/15 15:30,3:00,1:00 +WO400106,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04014,Chiller 14,FALSE,2,10/13/21 19:30,3:00,1:00 +WO236734,Control System Malfunction and more specific Control Loop Failure related to condenser,condenser,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04014,Chiller 14,FALSE,1,5/22/15 15:30,3:00,1:00 +WO287167,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04701,Chiller 1,FALSE,1,3/24/17 19:30,3:00,1:00 +WO284197,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04010,Chiller 10,FALSE,1,2/16/17 20:30,3:00,1:00 +WO257047,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04701,Chiller 1,FALSE,1,2/8/16 20:30,3:00,1:00 +WO285177,Refrigerant Leak and more specific Small Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001a,Small Leak,CWC04012,Chiller 12,FALSE,1,2/17/17 20:30,3:00,1:00 +WO289107,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,1,4/26/17 19:30,3:00,1:00 +WO282577,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,1/25/17 20:30,3:00,1:00 +WO238257,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04006,Chiller 6,FALSE,1,6/19/15 15:30,3:00,1:00 +WO209438,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04006,Chiller 6,FALSE,1,7/10/14 15:30,3:00,1:00 +WO209418,Flow Sensor Failure and more specific Sensor Not Responding related to control system,control system,OP004,Flow Sensor Failure,OP004a,Sensor Not Responding,CWC04009,Chiller 9,FALSE,1,7/8/14 16:30,3:00,1:00 +WO311027,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04009,Chiller 9,FALSE,1,2/23/18 20:30,3:00,1:00 +WO303307,Refrigerant Addition and more specific Large Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004b,Large Amount,CWC04012,Chiller 12,FALSE,1,11/8/17 20:30,3:00,1:00 +WO317467,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04009,Chiller 9,FALSE,1,6/9/18 19:30,3:00,1:00 +WO229248,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04009,Chiller 9,FALSE,1,2/19/15 11:30,3:00,1:00 +WO202148,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04013,Chiller 13,FALSE,1,4/27/14 15:30,3:00,1:00 +WO381657,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04009,Chiller 9,FALSE,1,1/20/21 20:00,3:00,1:00 +WO306378,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04701,Chiller 1,FALSE,1,12/13/17 20:30,3:00,1:00 +WO238258,Refrigerant Leak and more specific Small Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001a,Small Leak,CWC04010,Chiller 10,FALSE,1,6/15/15 15:30,3:00,1:00 +WO198549,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,3/18/14 15:30,3:00,1:00 +WO58458,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,4/5/11 15:30,3:00,1:00 +WO400857,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04007,Chiller 7,FALSE,2,11/2/21 16:41,3:00,1:00 +WO303208,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,11/2/17 19:30,3:00,1:00 +WO287688,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,4/2/17 19:30,3:00,1:00 +WO88688,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,11/3/11 15:30,3:00,1:00 +WO215858,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04014,Chiller 14,FALSE,1,9/24/14 15:30,3:00,1:00 +WO286298,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,3/3/17 20:30,3:00,1:00 +WO234868,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04007,Chiller 7,FALSE,1,4/8/15 15:30,3:00,1:00 +WO319618,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04006,Chiller 6,FALSE,2,7/12/18 19:30,3:00,1:00 +WO289108,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,FALSE,1,4/25/17 19:30,3:00,1:00 +WO123918,Control System Malfunction and more specific Control Loop Failure related to control system,control system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04006,Chiller 6,FALSE,1,8/15/12 15:30,3:00,1:00 +WO102648,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,FALSE,1,2/17/12 3:30,3:00,1:00 +WO115398,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04010,Chiller 10,FALSE,1,6/4/12 9:00,3:00,1:00 +WO24706,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,10/25/10 19:53,3:00,1:00 +WO84668,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,11/4/11 15:30,3:00,1:00 +WO131263,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,12/4/12 15:30,3:00,1:00 +WO57477,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,4/28/11 13:30,3:00,1:00 +WO24941,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,10/25/10 19:53,3:00,1:00 +WO57481,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,4/18/11 12:00,3:00,1:00 +WO387768,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04013,Chiller 13,FALSE,1,4/19/21 19:30,3:00,1:00 +WO115399,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04010,Chiller 10,FALSE,1,6/6/12 15:30,3:00,1:00 +WO164969,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,7/24/13 3:30,3:00,1:00 +WO221599,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,1,10/7/14 15:30,3:00,1:00 +WO371658,Vibration Analysis and more specific Post-Maintenance Vibration Analysis related to entire chiller system,entire chiller system,MT013,Vibration Analysis,MT013c,Post-Maintenance Vibration Analysis,CWC04012,Chiller 12,FALSE,1,8/24/20 19:00,3:00,1:00 +WO102709,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04009,Chiller 9,FALSE,1,3/1/12 15:30,3:00,1:00 +WO130359,Vibration Analysis and more specific Post-Maintenance Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013c,Post-Maintenance Vibration Analysis,CWC04703,Chiller 3,FALSE,1,10/24/12 21:00,3:00,1:00 +WO196349,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04704,Chiller 4,FALSE,1,2/26/14 15:30,3:00,1:00 +WO114829,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04010,Chiller 10,FALSE,1,5/23/12 15:03,3:00,1:00 +WO174049,Control System Malfunction and more specific Control Loop Failure related to entire chiller system,entire chiller system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04006,Chiller 6,FALSE,1,9/1/13 15:30,3:00,1:00 +WO400558,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04006,Chiller 6,FALSE,2,10/26/21 15:59,3:00,1:00 +WO321899,Condenser Plugged and more specific Complete Plugging related to entire chiller system,entire chiller system,M013,Condenser Plugged,M013b,Complete Plugging,CWC04006,Chiller 6,FALSE,2,8/13/18 19:30,3:00,1:00 +WO147846,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,3/25/13 15:30,3:00,1:00 +WO23154,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,10/25/10 20:38,3:00,1:00 +WO101829,Vibration Analysis and more specific Post-Maintenance Vibration Analysis related to entire chiller system,entire chiller system,MT013,Vibration Analysis,MT013c,Post-Maintenance Vibration Analysis,CWC04703,Chiller 3,FALSE,1,2/22/12 23:00,3:00,1:00 +WO16126,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,6/22/10 14:12,3:00,1:00 +WO23144,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,10/25/10 20:38,3:00,1:00 +WO16128,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,6/22/10 14:12,3:00,1:00 +WO237319,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04007,Chiller 7,FALSE,1,5/26/15 15:00,3:00,1:00 +WO28879,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,10/25/10 20:38,3:00,1:00 +WO47660,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,12/9/10 15:30,3:00,1:00 +WO23152,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,10/25/10 20:38,3:00,1:00 +WO277419,Eddy Current Test and more specific Condenser Eddy Current Test related to condenser,condenser,MT007,Eddy Current Test,MT007a,Condenser Eddy Current Test,CWC04009,Chiller 9,FALSE,1,11/8/16 20:30,3:00,1:00 +WO28883,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,10/25/10 20:38,3:00,1:00 +WO287259,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04014,Chiller 14,FALSE,1,3/26/17 19:30,3:00,1:00 +WO299779,Cleaning and more specific Internal Cleaning related to refrigerant circuit,refrigerant circuit,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,9/25/17 19:30,3:00,1:00 +WO279339,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04007,Chiller 7,FALSE,1,11/21/16 20:30,3:00,1:00 +WO371659,Vibration Analysis and more specific Post-Maintenance Vibration Analysis related to entire chiller system,entire chiller system,MT013,Vibration Analysis,MT013c,Post-Maintenance Vibration Analysis,CWC04014,Chiller 14,FALSE,1,8/24/20 19:00,3:00,1:00 +WO290049,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04006,Chiller 6,FALSE,1,5/4/17 19:30,3:00,1:00 +WO199840,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,4/9/14 15:30,3:00,1:00 +WO291089,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04007,Chiller 7,FALSE,1,5/22/17 19:30,3:00,1:00 +WO281010,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04013,Chiller 13,FALSE,1,12/27/16 20:30,3:00,1:00 +WO383519,Cleaning and more specific Internal Cleaning related to compressor,compressor,MT002,Cleaning,MT002b,Internal Cleaning,CWC04012,Chiller 12,FALSE,1,2/22/21 20:30,3:00,1:00 +WO383059,Refrigerant Addition and more specific Large Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004b,Large Amount,CWC04009,Chiller 9,FALSE,1,2/15/21 20:00,3:00,1:00 +WO279300,Oil Analysis and more specific Post-Maintenance Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010c,Post-Maintenance Oil Analysis,CWC04012,Chiller 12,FALSE,1,11/21/16 20:30,3:00,1:00 +WO284139,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04006,Chiller 6,FALSE,1,2/11/17 20:30,3:00,1:00 +WO221880,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04009,Chiller 9,FALSE,1,10/10/14 15:30,3:00,1:00 +WO277420,Eddy Current Test and more specific Condenser Eddy Current Test related to entire chiller system,entire chiller system,MT007,Eddy Current Test,MT007a,Condenser Eddy Current Test,CWC04009,Chiller 9,FALSE,1,11/7/16 20:30,3:00,1:00 +WO307440,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04010,Chiller 10,FALSE,1,1/17/18 20:30,3:00,1:00 +WO97170,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,1/19/12 15:30,3:00,1:00 +WO152380,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04704,Chiller 4,FALSE,1,4/17/13 15:30,3:00,1:00 +WO178420,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04007,Chiller 7,FALSE,1,10/31/13 15:30,3:00,1:00 +WO137700,Sensor Failure and more specific Temperature Sensor Failure related to control system,control system,CS002,Sensor Failure,CS002a,Temperature Sensor Failure,CWC04010,Chiller 10,FALSE,1,12/11/12 13:00,3:00,1:00 +WO147800,Evaporator Leak and more specific Minor Leak related to evaporator,evaporator,L003,Evaporator Leak,L003a,Minor Leak,CWC04012,Chiller 12,FALSE,1,3/13/13 3:30,3:00,1:00 +WO310520,Leak Detection and more specific Visual Inspection related to entire chiller system,entire chiller system,MT008,Leak Detection,MT008a,Visual Inspection,CWC04009,Chiller 9,FALSE,1,2/26/18 20:30,3:00,1:00 +WO300970,Major Overhaul and more specific Chiller Overhaul related to entire chiller system,entire chiller system,M017,Major Overhaul,M017a,Chiller Overhaul,CWC04703,Chiller 3,FALSE,1,10/18/17 19:30,3:00,1:00 +WO291430,Deformation and more specific Deformation of Housing related to entire chiller system,entire chiller system,M003,Deformation,M003b,Deformation of Housing,CWC04009,Chiller 9,FALSE,1,5/30/17 19:30,3:00,1:00 +WO291120,Sensor Failure and more specific Temperature Sensor Failure related to control system,control system,CS002,Sensor Failure,CS002a,Temperature Sensor Failure,CWC04006,Chiller 6,FALSE,1,5/27/17 19:30,3:00,1:00 +WO299760,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04006,Chiller 6,FALSE,1,9/27/17 19:30,3:00,1:00 +WO303210,Refrigerant Leak and more specific Small Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001a,Small Leak,CWC04704,Chiller 4,FALSE,1,11/7/17 20:30,3:00,1:00 +WO202150,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04010,Chiller 10,FALSE,1,4/25/14 15:30,3:00,1:00 +WO43371,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,1,12/4/10 15:30,3:00,1:00 +WO213851,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04009,Chiller 9,FALSE,1,8/15/14 15:30,3:00,1:00 +WO76561,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04007,Chiller 7,FALSE,1,8/11/11 15:30,3:00,1:00 +WO59391,Control System Malfunction and more specific Control Loop Failure related to entire chiller system,entire chiller system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04014,Chiller 14,FALSE,1,4/13/11 13:30,3:00,1:00 +WO93512,Control System Malfunction and more specific Control Loop Failure related to entire chiller system,entire chiller system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04009,Chiller 9,FALSE,1,11/9/11 9:00,3:00,1:00 +WO67981,Refrigerant Leak and more specific Large Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001b,Large Leak,CWC04702,Chiller 2,FALSE,1,6/9/11 15:30,3:00,1:00 +WO54101,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,FALSE,1,2/22/11 15:30,3:00,1:00 +WO46481,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04010,Chiller 10,FALSE,1,1/4/11 15:20,3:00,1:00 +WO152151,Vibration Analysis and more specific Post-Maintenance Vibration Analysis related to entire chiller system,entire chiller system,MT013,Vibration Analysis,MT013c,Post-Maintenance Vibration Analysis,CWC04006,Chiller 6,FALSE,1,4/19/13 19:30,3:00,1:00 +WO136431,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04014,Chiller 14,FALSE,1,11/6/12 15:30,3:00,1:00 +WO382630,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04007,Chiller 7,FALSE,1,2/5/21 15:00,3:00,1:00 +WO383080,Refrigerant Addition and more specific Large Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004b,Large Amount,CWC04006,Chiller 6,FALSE,1,2/16/21 16:15,3:00,1:00 +WO140921,Draining Operations and more specific Drain Water related to entire chiller system,entire chiller system,M016,Draining Operations,M016a,Drain Water,CWC04006,Chiller 6,FALSE,1,12/22/12 5:30,3:00,1:00 +WO164861,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04014,Chiller 14,FALSE,1,7/22/13 3:30,3:00,1:00 +WO147842,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04007,Chiller 7,TRUE,5,3/25/13 15:30,3:00,1:00 +WO374180,Control System Malfunction and more specific Control Loop Failure related to refrigerant circuit,refrigerant circuit,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04007,Chiller 7,FALSE,1,10/14/20 19:30,3:00,1:00 +WO382061,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04014,Chiller 14,FALSE,1,1/29/21 19:00,3:00,1:00 +WO276951,Leak Detection and more specific Visual Inspection related to condenser,condenser,MT008,Leak Detection,MT008a,Visual Inspection,CWC04009,Chiller 9,FALSE,1,10/9/16 19:30,3:00,1:00 +WO386211,Draining Operations and more specific Drain Water related to entire chiller system,entire chiller system,M016,Draining Operations,M016a,Drain Water,CWC04010,Chiller 10,FALSE,1,3/26/21 12:00,3:00,1:00 +WO95202,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04009,Chiller 9,FALSE,1,12/30/11 15:30,3:00,1:00 +WO49532,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04006,Chiller 6,FALSE,1,1/12/11 15:30,3:00,1:00 +WO297031,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04704,Chiller 4,FALSE,1,8/7/17 19:30,3:00,1:00 +WO47682,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04007,Chiller 7,FALSE,1,12/13/10 15:30,3:00,1:00 +WO320951,Control System Malfunction and more specific Control Loop Failure related to control system,control system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04014,Chiller 14,FALSE,2,8/22/18 16:31,3:00,1:00 +WO97032,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04010,Chiller 10,FALSE,1,12/28/11 14:00,3:00,1:00 +WO398081,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04704,Chiller 4,FALSE,2,9/14/21 19:43,3:00,1:00 +WO310091,Head Operations and more specific Reinstall Heads related to condenser,condenser,M020,Head Operations,M020b,Reinstall Heads,CWC04702,Chiller 2,FALSE,1,2/3/18 20:30,3:00,1:00 +WO57192,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04013,Chiller 13,FALSE,1,3/22/11 15:30,3:00,1:00 +WO315982,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,1,5/18/18 19:30,3:00,1:00 +WO303242,Major Overhaul and more specific Chiller Overhaul related to entire chiller system,entire chiller system,M017,Major Overhaul,M017a,Chiller Overhaul,CWC04704,Chiller 4,FALSE,1,11/8/17 20:30,3:00,1:00 +WO287791,Misalignment and more specific Misalignment of Shaft related to compressor,compressor,M005,Misalignment,M005b,Misalignment of Shaft,CWC04012,Chiller 12,FALSE,1,4/7/17 21:30,3:00,1:00 +WO397191,Refrigerant Leak and more specific Small Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001a,Small Leak,CWC04013,Chiller 13,FALSE,2,9/14/21 17:00,3:00,1:00 +WO390302,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04007,Chiller 7,FALSE,1,5/19/21 15:00,3:00,1:00 +WO293262,Major Overhaul and more specific Chiller Overhaul related to entire chiller system,entire chiller system,M017,Major Overhaul,M017a,Chiller Overhaul,CWC04009,Chiller 9,FALSE,1,6/12/17 19:30,3:00,1:00 +WO311532,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,1,3/8/18 20:30,3:00,1:00 +WO299752,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04703,Chiller 3,FALSE,1,9/30/17 19:30,3:00,1:00 +WO386612,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04010,Chiller 10,FALSE,1,4/2/21 13:00,3:00,1:00 +WO267462,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04006,Chiller 6,FALSE,1,6/9/16 19:30,3:00,1:00 +WO188802,Major Overhaul and more specific Motor Overhaul related to compressor,compressor,M017,Major Overhaul,M017d,Motor Overhaul,CWC04009,Chiller 9,FALSE,1,1/17/14 15:30,3:00,1:00 +WO282012,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,1/12/17 22:30,3:00,1:00 +WO298053,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04009,Chiller 9,FALSE,1,9/6/17 19:30,3:00,1:00 +WO234852,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04009,Chiller 9,FALSE,1,4/13/15 10:00,3:00,1:00 +WO289103,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04012,Chiller 12,FALSE,1,4/20/17 19:30,3:00,1:00 +WO199342,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04010,Chiller 10,FALSE,1,4/4/14 15:30,3:00,1:00 +WO199842,Refrigerant Leak and more specific Small Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001a,Small Leak,CWC04010,Chiller 10,FALSE,1,4/10/14 15:30,3:00,1:00 +WO234863,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04007,Chiller 7,FALSE,1,4/10/15 16:30,3:00,1:00 +WO292473,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04009,Chiller 9,FALSE,1,6/20/17 11:00,3:00,1:00 +WO219963,Major Overhaul and more specific Compressor Overhaul related to compressor,compressor,M017,Major Overhaul,M017c,Compressor Overhaul,CWC04009,Chiller 9,FALSE,1,10/22/14 15:30,3:00,1:00 +WO319572,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04013,Chiller 13,FALSE,1,6/27/18 19:30,3:00,1:00 +WO303963,Cleaning and more specific Internal Cleaning related to evaporator,evaporator,MT002,Cleaning,MT002b,Internal Cleaning,CWC04012,Chiller 12,FALSE,1,11/28/17 20:30,3:00,1:00 +WO88683,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,10/31/11 15:30,3:00,1:00 +WO318733,Control System Malfunction and more specific Control Loop Failure related to refrigerant circuit,refrigerant circuit,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04007,Chiller 7,FALSE,2,7/10/18 11:28,3:00,1:00 +WO178403,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,10/21/13 15:30,3:00,1:00 +WO136443,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04703,Chiller 3,FALSE,1,11/19/12 15:30,3:00,1:00 +WO43373,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,1,12/2/10 15:30,3:00,1:00 +WO123903,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,8/8/12 15:30,3:00,1:00 +WO16170,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,6/22/10 14:12,3:00,1:00 +WO114853,Condenser Plugged and more specific Complete Plugging related to evaporator,evaporator,M013,Condenser Plugged,M013b,Complete Plugging,CWC04704,Chiller 4,FALSE,1,5/30/12 15:30,3:00,1:00 +WO106993,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,3/16/12 15:30,3:00,1:00 +WO257043,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04010,Chiller 10,FALSE,1,1/27/16 20:30,3:00,1:00 +WO95204,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04006,Chiller 6,FALSE,1,1/4/12 15:30,3:00,1:00 +WO47674,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04007,Chiller 7,FALSE,1,12/6/10 15:30,3:00,1:00 +WO95244,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04006,Chiller 6,FALSE,1,1/6/12 15:30,3:00,1:00 +WO93644,Refrigerant Leak and more specific Large Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001b,Large Leak,CWC04703,Chiller 3,FALSE,1,12/20/11 3:30,3:00,1:00 +WO99474,Head Operations and more specific Reinstall Heads related to evaporator,evaporator,M020,Head Operations,M020b,Reinstall Heads,CWC04014,Chiller 14,FALSE,1,1/24/12 15:30,3:00,1:00 +WO110174,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,4/3/12 15:30,3:00,1:00 +WO52594,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,FALSE,1,2/14/11 15:30,3:00,1:00 +WO55304,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,3/10/11 15:30,3:00,1:00 +WO158564,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04007,Chiller 7,FALSE,1,5/31/13 15:30,3:00,1:00 +WO222524,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,11/19/14 15:30,3:00,1:00 +WO136444,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04703,Chiller 3,FALSE,1,11/20/12 15:30,3:00,1:00 +WO366933,VFD (Variable Frequency Drive) Failure and more specific Control Failure related to control system,control system,E006,VFD (Variable Frequency Drive) Failure,E006a,Control Failure,CWC04006,Chiller 6,FALSE,1,11/20/20 19:00,3:00,1:00 +WO366934,VFD (Variable Frequency Drive) Failure and more specific Control Failure related to control system,control system,E006,VFD (Variable Frequency Drive) Failure,E006a,Control Failure,CWC04009,Chiller 9,FALSE,1,11/19/20 20:00,3:00,1:00 +WO209414,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04009,Chiller 9,FALSE,1,7/3/14 15:30,3:00,1:00 +WO320004,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04007,Chiller 7,FALSE,1,7/10/18 23:30,3:00,1:00 +WO137165,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04010,Chiller 10,FALSE,1,11/29/12 15:30,3:00,1:00 +WO314464,Refrigerant Addition and more specific Large Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004b,Large Amount,CWC04014,Chiller 14,FALSE,1,4/12/18 19:30,3:00,1:00 +WO386644,Control System Malfunction and more specific Control Loop Failure related to entire chiller system,entire chiller system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04007,Chiller 7,FALSE,1,4/2/21 19:30,3:00,1:00 +WO54464,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,3/25/11 15:30,3:00,1:00 +WO281964,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04703,Chiller 3,FALSE,1,1/20/17 20:30,3:00,1:00 +WO23150,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,10/25/10 20:38,3:00,1:00 +WO398794,Control System Malfunction and more specific Control Loop Failure related to control system,control system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04007,Chiller 7,FALSE,2,9/24/21 13:36,3:00,1:00 +WO28881,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,10/25/10 20:38,3:00,1:00 +WO293244,Process Upset and more specific Control System Upset related to cooling tower,cooling tower,OP001,Process Upset,OP001b,Control System Upset,CWC04014,Chiller 14,FALSE,1,6/22/17 19:30,3:00,1:00 +WO77355,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,8/18/11 15:30,3:00,1:00 +WO386274,Cleaning and more specific Internal Cleaning related to compressor,compressor,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,3/29/21 13:00,3:00,1:00 +WO104449,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,3/26/12 15:30,3:00,1:00 +WO106995,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,3/7/12 15:30,3:00,1:00 +WO306934,Replacement and more specific Chiller Replacement related to entire chiller system,entire chiller system,M018,Replacement,M018a,Chiller Replacement,CWC04012,Chiller 12,FALSE,1,1/10/18 20:30,3:00,1:00 +WO205445,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04701,Chiller 1,FALSE,1,5/19/14 15:30,3:00,1:00 +WO59385,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04013,Chiller 13,FALSE,1,4/14/11 15:30,3:00,1:00 +WO307944,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04014,Chiller 14,FALSE,1,1/22/18 20:30,3:00,1:00 +WO101965,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04704,Chiller 4,FALSE,1,2/10/12 15:30,3:00,1:00 +WO325164,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04013,Chiller 13,FALSE,2,9/26/18 19:30,3:00,1:00 +WO233615,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04007,Chiller 7,FALSE,1,4/7/15 15:30,3:00,1:00 +WO212535,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04704,Chiller 4,FALSE,1,8/15/14 3:30,3:00,1:00 +WO285185,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04012,Chiller 12,FALSE,1,2/26/17 20:30,3:00,1:00 +WO39815,Draining Operations and more specific Drain Water related to entire chiller system,entire chiller system,M016,Draining Operations,M016a,Drain Water,CWC04007,Chiller 7,FALSE,1,10/2/10 15:00,3:00,1:00 +WO125505,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04007,Chiller 7,FALSE,1,8/29/12 15:30,3:00,1:00 +WO164855,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,7/17/13 3:30,3:00,1:00 +WO159365,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,1,6/6/13 3:30,3:00,1:00 +WO281965,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04012,Chiller 12,FALSE,1,1/12/17 22:30,3:00,1:00 +WO232195,Major Overhaul and more specific Chiller Overhaul related to entire chiller system,entire chiller system,M017,Major Overhaul,M017a,Chiller Overhaul,CWC04701,Chiller 1,FALSE,1,3/25/15 3:30,3:00,1:00 +WO276535,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04009,Chiller 9,FALSE,1,10/17/16 19:30,3:00,1:00 +WO153515,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,4/27/13 3:30,3:00,1:00 +WO287685,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,4/1/17 19:30,3:00,1:00 +WO245705,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04007,Chiller 7,FALSE,1,9/21/15 15:30,3:00,1:00 +WO289105,Major Overhaul and more specific Chiller Overhaul related to entire chiller system,entire chiller system,M017,Major Overhaul,M017a,Chiller Overhaul,CWC04014,Chiller 14,FALSE,1,4/23/17 19:30,3:00,1:00 +WO306935,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,1/9/18 20:30,3:00,1:00 +WO167196,Vibration Analysis and more specific Post-Maintenance Vibration Analysis related to entire chiller system,entire chiller system,MT013,Vibration Analysis,MT013c,Post-Maintenance Vibration Analysis,CWC04006,Chiller 6,FALSE,1,8/22/13 14:30,3:00,1:00 +WO108796,Refrigerant Addition and more specific Large Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004b,Large Amount,CWC04014,Chiller 14,FALSE,1,3/30/12 15:30,3:00,1:00 +WO100086,Refrigerant Addition and more specific Large Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004b,Large Amount,CWC04703,Chiller 3,FALSE,1,1/27/12 15:30,3:00,1:00 +WO141896,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04014,Chiller 14,FALSE,1,12/19/12 15:30,3:00,1:00 +WO145946,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,2/5/13 3:30,3:00,1:00 +WO207316,Refrigerant Addition and more specific Large Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004b,Large Amount,CWC04013,Chiller 13,FALSE,1,6/2/14 15:30,3:00,1:00 +WO232186,Major Overhaul and more specific Chiller Overhaul related to entire chiller system,entire chiller system,M017,Major Overhaul,M017a,Chiller Overhaul,CWC04703,Chiller 3,FALSE,1,11/5/14 15:30,3:00,1:00 +WO397146,Control System Malfunction and more specific Control Loop Failure related to entire chiller system,entire chiller system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04014,Chiller 14,FALSE,2,8/30/21 15:47,3:00,1:00 +WO47676,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04007,Chiller 7,FALSE,1,12/13/10 15:30,3:00,1:00 +WO101957,Major Overhaul and more specific Chiller Overhaul related to entire chiller system,entire chiller system,M017,Major Overhaul,M017a,Chiller Overhaul,CWC04704,Chiller 4,FALSE,1,2/8/12 15:30,3:00,1:00 +WO197536,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04007,Chiller 7,FALSE,1,3/10/14 15:30,3:00,1:00 +WO43397,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,1,12/3/10 15:30,3:00,1:00 +WO86636,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,10/30/11 15:30,3:00,1:00 +WO99477,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04701,Chiller 1,FALSE,1,2/6/12 15:37,3:00,1:00 +WO293246,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04009,Chiller 9,FALSE,1,6/19/17 21:30,3:00,1:00 +WO110167,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,3/4/12 15:30,3:00,1:00 +WO287166,Major Overhaul and more specific Chiller Overhaul related to entire chiller system,entire chiller system,M017,Major Overhaul,M017a,Chiller Overhaul,CWC04014,Chiller 14,FALSE,1,3/26/17 19:30,3:00,1:00 +WO279296,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04007,Chiller 7,FALSE,1,11/21/16 20:30,3:00,1:00 +WO49716,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04010,Chiller 10,FALSE,1,1/24/11 15:30,3:00,1:00 +WO97037,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04010,Chiller 10,FALSE,1,12/30/11 11:30,3:00,1:00 +WO34531,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,11/19/10 15:30,3:00,1:00 +WO34533,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,11/19/10 15:30,3:00,1:00 +WO24708,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,10/25/10 19:53,3:00,1:00 +WO24939,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,10/25/10 19:53,3:00,1:00 +WO39877,Flow Sensor Failure and more specific Sensor Not Responding related to condenser,condenser,OP004,Flow Sensor Failure,OP004a,Sensor Not Responding,CWC04701,Chiller 1,FALSE,1,11/30/10 14:37,3:00,1:00 +WO285206,Head Operations and more specific Remove Heads related to condenser,condenser,M020,Head Operations,M020a,Remove Heads,CWC04014,Chiller 14,FALSE,1,2/23/17 20:30,3:00,1:00 +WO16168,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,6/22/10 14:12,3:00,1:00 +WO93637,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04703,Chiller 3,FALSE,1,12/22/11 3:30,3:00,1:00 +WO29656,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,10/25/10 20:38,3:00,1:00 +WO16172,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,6/22/10 14:12,3:00,1:00 +WO303306,Major Overhaul and more specific Chiller Overhaul related to entire chiller system,entire chiller system,M017,Major Overhaul,M017a,Chiller Overhaul,CWC04704,Chiller 4,FALSE,1,11/8/17 20:30,3:00,1:00 +WO93577,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04703,Chiller 3,FALSE,1,1/4/12 15:40,3:00,1:00 +WO398456,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04012,Chiller 12,FALSE,2,9/22/21 12:30,3:00,1:00 +WO301866,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04704,Chiller 4,FALSE,1,10/30/17 19:30,3:00,1:00 +WO318056,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04013,Chiller 13,FALSE,1,6/18/18 19:30,3:00,1:00 +WO123907,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04009,Chiller 9,FALSE,1,8/13/12 15:30,3:00,1:00 +WO148447,Head Operations and more specific Reinstall Heads related to condenser,condenser,M020,Head Operations,M020b,Reinstall Heads,CWC04009,Chiller 9,FALSE,1,2/21/13 3:30,3:00,1:00 +WO314466,Refrigerant Addition and more specific Large Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004b,Large Amount,CWC04006,Chiller 6,FALSE,1,4/9/18 19:30,3:00,1:00 +WO137167,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,11/28/12 15:30,3:00,1:00 +WO125507,Control System Malfunction and more specific Control Loop Failure related to entire chiller system,entire chiller system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04012,Chiller 12,FALSE,1,8/25/12 12:00,3:00,1:00 +WO289526,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04704,Chiller 4,FALSE,1,5/2/17 21:30,3:00,1:00 +WO263816,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04014,Chiller 14,FALSE,1,4/17/16 19:30,3:00,1:00 +WO305446,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04701,Chiller 1,FALSE,1,12/11/17 20:30,3:00,1:00 +WO142797,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04701,Chiller 1,FALSE,1,1/16/13 19:30,3:00,1:00 +WO164707,Misalignment and more specific Misalignment of Shaft related to entire chiller system,entire chiller system,M005,Misalignment,M005b,Misalignment of Shaft,CWC04014,Chiller 14,FALSE,1,7/12/13 15:30,3:00,1:00 +WO373677,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04012,Chiller 12,FALSE,2,10/1/20 19:30,3:00,1:00 +WO104447,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,3/26/12 15:30,3:00,1:00 +WO28885,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,10/25/10 20:38,3:00,1:00 +WO286177,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04014,Chiller 14,FALSE,1,3/15/17 16:30,3:00,1:00 +WO16134,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,6/22/10 14:12,3:00,1:00 +WO316897,Process Upset and more specific Control System Upset related to condenser,condenser,OP001,Process Upset,OP001b,Control System Upset,CWC04014,Chiller 14,FALSE,2,6/1/18 19:30,3:00,1:00 +WO284127,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,2/16/17 20:30,3:00,1:00 +WO178427,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04701,Chiller 1,FALSE,1,11/1/13 15:30,3:00,1:00 +WO296517,Major Overhaul and more specific Chiller Overhaul related to entire chiller system,entire chiller system,M017,Major Overhaul,M017a,Chiller Overhaul,CWC04704,Chiller 4,FALSE,1,8/7/17 19:30,3:00,1:00 +WO200968,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04010,Chiller 10,FALSE,1,4/17/14 15:30,3:00,1:00 +WO55298,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04013,Chiller 13,FALSE,1,3/13/11 15:00,3:00,1:00 +WO234858,Cleaning and more specific External Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002a,External Cleaning,CWC04006,Chiller 6,FALSE,1,4/16/15 9:00,3:00,1:00 +WO398127,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,2,9/16/21 19:16,3:00,1:00 +WO86638,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,10/28/11 19:30,3:00,1:00 +WO392787,Evaporator Leak and more specific Major Leak related to entire chiller system,entire chiller system,L003,Evaporator Leak,L003b,Major Leak,CWC04014,Chiller 14,FALSE,2,6/23/21 19:31,3:00,1:00 +WO276518,Condenser Plugged and more specific Complete Plugging related to entire chiller system,entire chiller system,M013,Condenser Plugged,M013b,Complete Plugging,CWC04009,Chiller 9,FALSE,1,10/18/16 19:30,3:00,1:00 +WO101828,Vibration Analysis and more specific Post-Maintenance Vibration Analysis related to entire chiller system,entire chiller system,MT013,Vibration Analysis,MT013c,Post-Maintenance Vibration Analysis,CWC04702,Chiller 2,FALSE,1,2/22/12 23:00,3:00,1:00 +WO101938,Vibration Analysis and more specific Post-Maintenance Vibration Analysis related to entire chiller system,entire chiller system,MT013,Vibration Analysis,MT013c,Post-Maintenance Vibration Analysis,CWC04704,Chiller 4,FALSE,1,2/29/12 22:00,3:00,1:00 +WO301188,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04703,Chiller 3,FALSE,1,10/23/17 19:30,3:00,1:00 +WO293288,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04006,Chiller 6,FALSE,1,6/12/17 19:30,3:00,1:00 +WO280708,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04006,Chiller 6,FALSE,1,1/4/17 17:00,3:00,1:00 +WO100088,Routine Maintenance and more specific Scheduled Maintenance related to condenser,condenser,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,FALSE,1,1/28/12 3:30,3:00,1:00 +WO148449,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,FALSE,1,2/22/13 3:30,3:00,1:00 +WO58460,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,3/31/11 15:30,3:00,1:00 +WO279268,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04007,Chiller 7,FALSE,1,12/2/16 20:30,3:00,1:00 +WO207259,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,6/4/14 15:30,3:00,1:00 +WO321358,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04013,Chiller 13,FALSE,1,7/26/18 19:30,3:00,1:00 +WO43399,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04013,Chiller 13,FALSE,1,12/5/10 15:30,3:00,1:00 +WO43369,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04007,Chiller 7,FALSE,1,12/6/10 15:30,3:00,1:00 +WO58459,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,4/1/11 15:30,3:00,1:00 +WO97169,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04702,Chiller 2,FALSE,1,1/31/12 14:12,3:00,1:00 +WO66429,Refrigerant Leak and more specific Large Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001b,Large Leak,CWC04701,Chiller 1,FALSE,1,5/26/11 19:30,3:00,1:00 +WO373678,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04013,Chiller 13,FALSE,2,10/1/20 19:30,3:00,1:00 +WO121399,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04009,Chiller 9,FALSE,1,7/26/12 15:30,3:00,1:00 +WO314469,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04007,Chiller 7,FALSE,1,4/6/18 19:30,3:00,1:00 +WO382048,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,1/29/21 17:30,3:00,1:00 +WO231489,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,3/12/15 18:30,3:00,1:00 +WO47680,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,12/8/10 15:30,3:00,1:00 +WO400509,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04009,Chiller 9,FALSE,2,10/22/21 19:37,3:00,1:00 +WO43370,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04013,Chiller 13,FALSE,1,12/5/10 15:30,3:00,1:00 +WO396099,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04012,Chiller 12,FALSE,1,8/18/21 18:16,3:00,1:00 +WO283199,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04704,Chiller 4,FALSE,1,1/23/17 20:30,3:00,1:00 +WO264019,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04701,Chiller 1,FALSE,1,4/25/16 19:30,3:00,1:00 +WO283200,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04704,Chiller 4,FALSE,1,1/21/17 20:30,3:00,1:00 +WO279270,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04006,Chiller 6,FALSE,1,12/1/16 20:30,3:00,1:00 +WO237310,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04014,Chiller 14,FALSE,1,5/27/15 15:30,3:00,1:00 +WO279269,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04009,Chiller 9,FALSE,1,12/1/16 20:30,3:00,1:00 +WO212530,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04009,Chiller 9,FALSE,1,7/24/14 3:30,3:00,1:00 +WO287789,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,4/6/17 21:30,3:00,1:00 +WO281029,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04006,Chiller 6,FALSE,1,1/4/17 20:30,3:00,1:00 +WO167200,Vibration Analysis and more specific Post-Maintenance Vibration Analysis related to entire chiller system,entire chiller system,MT013,Vibration Analysis,MT013c,Post-Maintenance Vibration Analysis,CWC04010,Chiller 10,FALSE,1,8/22/13 15:00,3:00,1:00 +WO108840,Control System Malfunction and more specific Control Loop Failure related to pressure monitoring and control components,pressure monitoring and control components,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04007,Chiller 7,FALSE,1,3/29/12 15:30,3:00,1:00 +WO300559,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,10/6/17 19:30,3:00,1:00 +WO93580,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,12/5/11 15:30,3:00,1:00 +WO93640,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04703,Chiller 3,FALSE,1,12/20/11 3:30,3:00,1:00 +WO293280,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04006,Chiller 6,FALSE,1,6/14/17 19:30,3:00,1:00 +WO96080,Vibration Analysis and more specific Post-Maintenance Vibration Analysis related to entire chiller system,entire chiller system,MT013,Vibration Analysis,MT013c,Post-Maintenance Vibration Analysis,CWC04704,Chiller 4,FALSE,1,1/24/12 18:30,3:00,1:00 +WO293260,Major Overhaul and more specific Chiller Overhaul related to entire chiller system,entire chiller system,M017,Major Overhaul,M017a,Chiller Overhaul,CWC04009,Chiller 9,FALSE,1,6/16/17 19:30,3:00,1:00 +WO314470,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04013,Chiller 13,FALSE,1,4/5/18 19:30,3:00,1:00 +WO144350,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,1/1/13 15:30,3:00,1:00 +WO288200,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,4/12/17 19:30,3:00,1:00 +WO311530,Refrigerant Transfer and more specific Transfer to Another Unit related to entire chiller system,entire chiller system,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,1,3/15/18 19:30,3:00,1:00 +WO306920,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,1,1/4/18 20:30,3:00,1:00 +WO123840,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04701,Chiller 1,FALSE,1,8/25/12 19:30,3:00,1:00 +WO300570,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04014,Chiller 14,FALSE,1,10/11/17 19:30,3:00,1:00 +WO306900,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,FALSE,1,1/3/18 20:30,3:00,1:00 +WO285180,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04014,Chiller 14,FALSE,1,3/1/17 20:30,3:00,1:00 +WO299060,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,9/15/17 19:30,3:00,1:00 +WO284140,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04006,Chiller 6,FALSE,1,2/10/17 20:30,3:00,1:00 +WO199751,Control System Malfunction and more specific Control Loop Failure related to entire chiller system,entire chiller system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04009,Chiller 9,FALSE,1,4/15/14 10:30,3:00,1:00 +WO287190,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,FALSE,1,3/26/17 19:30,3:00,1:00 +WO64011,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04704,Chiller 4,FALSE,1,4/29/11 15:30,3:00,1:00 +WO205441,Control System Malfunction and more specific Control Loop Failure related to control system,control system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04010,Chiller 10,FALSE,1,5/28/14 15:30,3:00,1:00 +WO39871,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04701,Chiller 1,FALSE,1,10/6/10 15:30,3:00,1:00 +WO56281,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,3/14/11 15:30,3:00,1:00 +WO102701,Cleaning and more specific Internal Cleaning related to refrigerant circuit,refrigerant circuit,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,3/1/12 15:30,3:00,1:00 +WO106991,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,1,3/7/12 15:30,3:00,1:00 +WO93641,Control System Malfunction and more specific Control Loop Failure related to entire chiller system,entire chiller system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04703,Chiller 3,FALSE,1,12/22/11 3:30,3:00,1:00 +WO95201,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04010,Chiller 10,FALSE,1,12/29/11 15:30,3:00,1:00 +WO97031,Routine Maintenance and more specific Scheduled Maintenance related to condenser,condenser,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04009,Chiller 9,FALSE,1,1/3/12 16:00,3:00,1:00 +WO114851,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04010,Chiller 10,FALSE,1,5/30/12 15:30,3:00,1:00 +WO158581,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04007,Chiller 7,FALSE,1,5/29/13 15:30,3:00,1:00 +WO157651,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04013,Chiller 13,FALSE,1,5/8/13 15:30,3:00,1:00 +WO381160,Routine Maintenance and more specific Scheduled Maintenance related to condenser,condenser,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,FALSE,1,1/15/21 20:30,3:00,1:00 +WO149471,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,3/13/13 3:30,3:00,1:00 +WO174041,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04009,Chiller 9,FALSE,1,10/2/13 15:30,3:00,1:00 +WO298051,Control System Malfunction and more specific Control Loop Failure related to entire chiller system,entire chiller system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04012,Chiller 12,FALSE,1,9/7/17 19:30,3:00,1:00 +WO49522,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04010,Chiller 10,FALSE,1,1/21/11 15:30,3:00,1:00 +WO296161,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04007,Chiller 7,FALSE,1,8/2/17 19:30,3:00,1:00 +WO56282,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,3/15/11 15:30,3:00,1:00 +WO290041,Head Operations and more specific Reinstall Heads related to entire chiller system,entire chiller system,M020,Head Operations,M020b,Reinstall Heads,CWC04009,Chiller 9,FALSE,1,5/9/17 22:30,3:00,1:00 +WO291121,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,5/30/17 19:30,3:00,1:00 +WO136442,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04704,Chiller 4,FALSE,1,11/14/12 15:30,3:00,1:00 +WO285711,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,3/4/17 20:30,3:00,1:00 +WO277421,Control System Malfunction and more specific Control Loop Failure related to entire chiller system,entire chiller system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04704,Chiller 4,FALSE,1,10/31/16 19:30,3:00,1:00 +WO54102,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,2/28/11 15:30,3:00,1:00 +WO310492,Evaporator Leak and more specific Major Leak related to entire chiller system,entire chiller system,L003,Evaporator Leak,L003b,Major Leak,CWC04009,Chiller 9,FALSE,1,2/23/18 20:30,3:00,1:00 +WO299742,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04007,Chiller 7,FALSE,1,9/25/17 19:30,3:00,1:00 +WO100092,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04702,Chiller 2,FALSE,1,1/24/12 15:30,3:00,1:00 +WO100102,Head Operations and more specific Reinstall Heads related to condenser,condenser,M020,Head Operations,M020b,Reinstall Heads,CWC04012,Chiller 12,FALSE,1,1/27/12 15:30,3:00,1:00 +WO303962,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04014,Chiller 14,FALSE,1,11/30/17 20:30,3:00,1:00 +WO279272,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04704,Chiller 4,FALSE,1,11/30/16 18:00,3:00,1:00 +WO234842,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04007,Chiller 7,FALSE,1,4/22/15 18:30,3:00,1:00 +WO392402,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04014,Chiller 14,FALSE,1,6/18/21 15:00,3:00,1:00 +WO287162,Head Operations and more specific Reinstall Heads related to condenser,condenser,M020,Head Operations,M020b,Reinstall Heads,CWC04014,Chiller 14,FALSE,1,3/28/17 19:30,3:00,1:00 +WO273352,Sensor Failure and more specific Temperature Sensor Failure related to refrigerant circuit,refrigerant circuit,CS002,Sensor Failure,CS002a,Temperature Sensor Failure,CWC04007,Chiller 7,FALSE,1,8/25/16 19:30,3:00,1:00 +WO233552,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04007,Chiller 7,FALSE,1,4/6/15 15:30,3:00,1:00 +WO212532,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04006,Chiller 6,FALSE,1,7/25/14 3:30,3:00,1:00 +WO157653,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,5/6/13 15:30,3:00,1:00 +WO284143,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,1,2/1/17 20:30,3:00,1:00 +WO301163,Refrigerant Leak and more specific Small Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001a,Small Leak,CWC04703,Chiller 3,FALSE,1,10/19/17 19:30,3:00,1:00 +WO319062,Sensor Failure and more specific Temperature Sensor Failure related to control system,control system,CS002,Sensor Failure,CS002a,Temperature Sensor Failure,CWC04007,Chiller 7,FALSE,2,8/1/18 16:26,3:00,1:00 +WO225992,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04006,Chiller 6,FALSE,1,12/17/14 15:30,3:00,1:00 +WO318062,Refrigerant Addition and more specific Large Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004b,Large Amount,CWC04013,Chiller 13,FALSE,1,6/13/18 23:30,3:00,1:00 +WO205443,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04006,Chiller 6,FALSE,1,5/28/14 15:30,3:00,1:00 +WO228692,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04014,Chiller 14,FALSE,1,2/2/15 15:00,3:00,1:00 +WO59393,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,4/15/11 15:30,3:00,1:00 +WO321353,Condenser Tube Leak and more specific Minor Leak related to evaporator,evaporator,M014,Condenser Tube Leak,M014a,Minor Leak,CWC04013,Chiller 13,FALSE,2,7/27/18 19:30,3:00,1:00 +WO406692,Control System Malfunction and more specific Control Loop Failure related to cooling tower,cooling tower,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04703,Chiller 3,FALSE,2,2/11/22 20:30,3:00,1:00 +WO394592,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04704,Chiller 4,FALSE,2,7/27/21 19:30,3:00,1:00 +WO232203,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,3/24/15 10:30,3:00,1:00 +WO237313,Lubrication and more specific Lubrication of Bearings related to motor,motor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04009,Chiller 9,FALSE,1,5/31/15 15:30,3:00,1:00 +WO110163,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,1,4/10/12 15:30,3:00,1:00 +WO108853,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04009,Chiller 9,FALSE,1,3/29/12 15:30,3:00,1:00 +WO400112,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04012,Chiller 12,FALSE,2,10/8/21 14:00,3:00,1:00 +WO158583,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,5/30/13 15:30,3:00,1:00 +WO145993,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,1/23/13 15:30,3:00,1:00 +WO276953,Head Operations and more specific Remove Heads related to condenser,condenser,M020,Head Operations,M020a,Remove Heads,CWC04009,Chiller 9,FALSE,1,10/6/16 19:30,3:00,1:00 +WO400142,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04009,Chiller 9,FALSE,2,10/20/21 15:32,3:00,1:00 +WO93574,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,12/5/11 15:30,3:00,1:00 +WO267483,Lubrication and more specific Lubrication of Bearings related to entire chiller system,entire chiller system,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04704,Chiller 4,FALSE,1,6/10/16 19:30,3:00,1:00 +WO392843,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,FALSE,1,7/1/21 18:30,3:00,1:00 +WO93643,Condenser Tube Leak and more specific Major Leak related to evaporator,evaporator,L002,Condenser Tube Leak,L002b,Major Leak,CWC04012,Chiller 12,FALSE,1,12/19/11 3:30,3:00,1:00 +WO54104,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,FALSE,1,3/2/11 15:30,3:00,1:00 +WO385053,Cleaning and more specific Internal Cleaning related to compressor,compressor,MT002,Cleaning,MT002b,Internal Cleaning,CWC04006,Chiller 6,FALSE,1,3/12/21 16:00,3:00,1:00 +WO395423,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04012,Chiller 12,FALSE,2,8/26/21 18:49,3:00,1:00 +WO100094,Head Operations and more specific Reinstall Heads related to condenser,condenser,M020,Head Operations,M020b,Reinstall Heads,CWC04014,Chiller 14,FALSE,1,1/25/12 15:30,3:00,1:00 +WO377533,Calibration and more specific Sensor Calibration related to refrigerant circuit|control system,refrigerant circuit|control system,MT011,Calibration,MT011a,Sensor Calibration,CWC04012,Chiller 12,FALSE,2,11/18/20 20:30,3:00,1:00 +WO77354,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04010,Chiller 10,FALSE,1,8/16/11 0:00,3:00,1:00 +WO153534,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,4/27/13 3:30,3:00,1:00 +WO59394,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04013,Chiller 13,FALSE,1,4/15/11 15:30,3:00,1:00 +WO219944,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04703,Chiller 3,FALSE,1,10/31/14 15:30,3:00,1:00 +WO47664,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,12/8/10 15:30,3:00,1:00 +WO386643,Refrigerant Leak and more specific Large Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001b,Large Leak,CWC04006,Chiller 6,FALSE,1,4/3/21 19:30,3:00,1:00 +WO58454,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04014,Chiller 14,FALSE,1,4/4/11 15:30,3:00,1:00 +WO49524,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04012,Chiller 12,FALSE,1,1/17/11 15:30,3:00,1:00 +WO169434,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04702,Chiller 2,FALSE,1,8/6/13 15:30,3:00,1:00 +WO282024,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04006,Chiller 6,FALSE,1,1/5/17 20:30,3:00,1:00 +WO282574,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,1,1/24/17 20:30,3:00,1:00 +WO232204,Cleaning and more specific Internal Cleaning related to condenser|evaporator,condenser|evaporator,MT002,Cleaning,MT002b,Internal Cleaning,CWC04010,Chiller 10,FALSE,1,3/27/15 13:30,3:00,1:00 +WO293224,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04014,Chiller 14,FALSE,1,6/28/17 19:30,3:00,1:00 +WO399764,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04703,Chiller 3,FALSE,2,10/14/21 16:00,3:00,1:00 +WO398124,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04012,Chiller 12,FALSE,2,9/16/21 19:06,3:00,1:00 +WO276964,Condenser Plugged and more specific Complete Plugging related to condenser,condenser,M013,Condenser Plugged,M013b,Complete Plugging,CWC04009,Chiller 9,FALSE,1,10/12/16 19:30,3:00,1:00 +WO316044,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04013,Chiller 13,FALSE,1,5/13/18 19:30,3:00,1:00 +WO24704,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,10/25/10 19:53,3:00,1:00 +WO34535,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,11/19/10 15:30,3:00,1:00 +WO23466,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,10/25/10 20:38,3:00,1:00 +WO29652,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,10/25/10 20:38,3:00,1:00 +WO23470,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,10/25/10 20:38,3:00,1:00 +WO54466,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,3/25/11 7:15,3:00,1:00 +WO28877,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,10/25/10 20:38,3:00,1:00 +WO23146,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,10/25/10 20:38,3:00,1:00 +WO16132,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,6/22/10 14:12,3:00,1:00 +WO103617,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/30/12 9:00,3:00,1:00 +WO39028,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/30/10 15:30,3:00,1:00 +WO162682,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,7/19/13 15:30,3:00,1:00 +WO181692,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/27/13 15:30,3:00,1:00 +WO158223,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,6/13/13 15:30,3:00,1:00 +WO107294,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,4/19/12 15:30,3:00,1:00 +WO114324,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,6/22/12 15:30,3:00,1:00 +WO38439,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/23/10 15:30,3:00,1:00 +WO155339,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,5/23/13 8:00,3:00,1:00 +WO146969,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/20/13 9:30,3:00,1:00 +WO99750,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/23/12 15:30,3:00,1:00 +WO111301,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,5/21/12 15:30,3:00,1:00 +WO150541,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,4/22/13 9:00,3:00,1:00 +WO42672,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/27/10 15:30,3:00,1:00 +WO140165,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/18/13 8:30,3:00,1:00 +WO62775,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,5/16/11 15:30,3:00,1:00 +WO35436,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/8/10 16:30,3:00,1:00 +WO166792,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,9/9/13 9:03,3:00,1:00 +WO75326,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,8/16/11 15:30,3:00,1:00 +WO54496,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/30/11 15:30,3:00,1:00 +WO121729,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,8/24/12 15:30,3:00,1:00 +WO71174,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,7/18/11 15:30,3:00,1:00 +WO29650,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,10/25/10 19:53,3:00,1:00 +WO190855,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/18/14 15:30,3:00,1:00 +WO58504,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,5/4/11 15:30,3:00,1:00 +WO41916,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/20/10 7:15,3:00,1:00 +WO44670,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/10/11 15:30,3:00,1:00 +WO37276,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/18/10 15:30,3:00,1:00 +WO128717,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,10/25/12 15:30,3:00,1:00 +WO178498,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/18/13 15:30,3:00,1:00 +WO143711,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/6/13 9:00,3:00,1:00 +WO83058,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,10/19/11 15:30,3:00,1:00 +WO116928,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,7/20/12 9:30,3:00,1:00 +WO49892,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/16/11 15:30,3:00,1:00 +WO29648,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,10/25/10 19:53,3:00,1:00 +WO30468,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,10/25/10 19:53,3:00,1:00 +WO40103,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/10/10 15:30,3:00,1:00 +WO190827,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/19/14 15:30,3:00,1:00 +WO186359,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,1/21/14 15:30,3:00,1:00 +WO49890,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/16/11 15:30,3:00,1:00 +WO133530,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,11/23/12 8:00,3:00,1:00 +WO181690,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,12/21/13 15:30,3:00,1:00 +WO79141,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,9/19/11 15:30,3:00,1:00 +WO107292,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,4/23/12 15:30,3:00,1:00 +WO195035,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/18/14 15:30,3:00,1:00 +WO116926,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,7/20/12 8:00,3:00,1:00 +WO83056,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,10/17/11 15:30,3:00,1:00 +WO58502,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,5/3/11 15:30,3:00,1:00 +WO178496,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,11/18/13 15:30,3:00,1:00 +WO37884,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,12/7/10 15:30,3:00,1:00 +WO146967,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/18/13 9:00,3:00,1:00 +WO40945,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/17/10 15:30,3:00,1:00 +WO67410,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,6/20/11 15:30,3:00,1:00 +WO86881,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/23/11 15:30,3:00,1:00 +WO186361,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/21/14 15:30,3:00,1:00 +WO45627,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/19/11 15:30,3:00,1:00 +WO195037,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/19/14 15:30,3:00,1:00 +WO133532,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/23/12 8:00,3:00,1:00 +WO33578,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/4/10 15:30,3:00,1:00 +WO136562,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/18/12 15:30,3:00,1:00 +WO174218,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,10/23/13 15:30,3:00,1:00 +WO94583,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/20/12 15:30,3:00,1:00 +WO79143,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,9/19/11 15:30,3:00,1:00 +WO91279,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/23/11 15:30,3:00,1:00 +WO43559,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/7/11 15:30,3:00,1:00 +WO169694,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,9/17/13 15:30,3:00,1:00 +WO125669,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,9/26/12 15:30,3:00,1:00 +WO121727,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,8/27/12 15:30,3:00,1:00 +WO71172,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,7/22/11 15:30,3:00,1:00 +WO140163,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/14/13 15:30,3:00,1:00 +WO125667,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,9/29/12 15:30,3:00,1:00 +WO99748,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/17/12 15:30,3:00,1:00 +WO54494,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/30/11 15:30,3:00,1:00 +WO75739,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,8/16/11 15:30,3:00,1:00 +WO128715,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,10/25/12 15:30,3:00,1:00 +WO86879,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,11/23/11 15:30,3:00,1:00 +WO45625,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,1/19/11 15:30,3:00,1:00 +WO174216,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,10/22/13 15:30,3:00,1:00 +WO158221,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,6/12/13 15:30,3:00,1:00 +WO111299,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,6/4/12 15:30,3:00,1:00 +WO136560,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,12/20/12 15:30,3:00,1:00 +WO166790,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,8/23/13 15:30,3:00,1:00 +WO143709,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/5/13 15:30,3:00,1:00 +WO162680,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,7/19/13 15:30,3:00,1:00 +WO103615,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/30/12 8:00,3:00,1:00 +WO94581,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,1/23/12 9:00,3:00,1:00 +WO114322,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,6/19/12 15:30,3:00,1:00 +WO169692,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,9/16/13 15:30,3:00,1:00 +WO155337,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,5/23/13 8:00,3:00,1:00 +WO62773,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,5/17/11 15:30,3:00,1:00 +WO91277,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,12/23/11 15:30,3:00,1:00 +WO41914,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,12/20/10 15:30,3:00,1:00 +WO67408,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,6/20/11 15:30,3:00,1:00 +WO150539,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,4/22/13 8:00,3:00,1:00 +WO79219,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/4/11 19:30,3:00,1:00 +WO163242,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,7/27/13 15:30,3:00,1:00 +WO54582,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,3/25/11 15:30,3:00,1:00 +WO42030,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/23/10 15:30,3:00,1:00 +WO19833,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/25/10 19:53,3:00,1:00 +WO188944,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/4/14 15:30,3:00,1:00 +WO91363,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/11/12 7:45,3:00,1:00 +WO49970,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/14/11 15:30,3:00,1:00 +WO58588,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,4/26/11 17:30,3:00,1:00 +WO103685,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,4/17/12 19:30,3:00,1:00 +WO195081,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/6/14 8:30,3:00,1:00 +WO16236,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,6/22/10 14:12,3:00,1:00 +WO133598,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,11/30/12 4:30,3:00,1:00 +WO100432,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/23/12 7:30,3:00,1:00 +WO33678,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/4/10 15:30,3:00,1:00 +WO135014,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/3/12 7:30,3:00,1:00 +WO156824,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/7/13 7:30,3:00,1:00 +WO37892,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/7/10 15:30,3:00,1:00 +WO24548,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/25/10 19:53,3:00,1:00 +WO60836,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/5/11 15:30,3:00,1:00 +WO54574,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/30/11 15:30,3:00,1:00 +WO77564,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,9/9/11 15:30,3:00,1:00 +WO147015,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/22/13 11:00,3:00,1:00 +WO148698,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,4/3/13 15:30,3:00,1:00 +WO148696,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/3/13 15:30,3:00,1:00 +WO107356,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/19/12 15:30,3:00,1:00 +WO97327,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/3/12 15:30,3:00,1:00 +WO180127,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/4/13 15:30,3:00,1:00 +WO86967,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,11/22/11 7:30,3:00,1:00 +WO119019,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/1/12 15:30,3:00,1:00 +WO133592,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,11/26/12 17:00,3:00,1:00 +WO137818,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/16/13 7:30,3:00,1:00 +WO45733,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/20/11 15:30,3:00,1:00 +WO64639,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/28/11 15:30,3:00,1:00 +WO79217,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,9/19/11 15:30,3:00,1:00 +WO160329,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/3/13 15:30,3:00,1:00 +WO190893,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/17/14 15:30,3:00,1:00 +WO62859,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,5/18/11 15:30,3:00,1:00 +WO102085,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/15/12 7:30,3:00,1:00 +WO136618,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/18/12 10:00,3:00,1:00 +WO109025,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/1/12 15:30,3:00,1:00 +WO156826,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/7/13 7:30,3:00,1:00 +WO94643,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/20/12 15:30,3:00,1:00 +WO47946,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/9/11 15:30,3:00,1:00 +WO123146,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/6/12 15:30,3:00,1:00 +WO37894,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/2/10 9:00,3:00,1:00 +WO42028,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/20/10 15:30,3:00,1:00 +WO51990,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/4/11 15:30,3:00,1:00 +WO71250,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,7/22/11 15:30,3:00,1:00 +WO158785,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/14/13 9:00,3:00,1:00 +WO174260,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,10/23/13 15:30,3:00,1:00 +WO145442,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/11/13 15:30,3:00,1:00 +WO83134,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,10/17/11 15:30,3:00,1:00 +WO178536,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,11/19/13 15:30,3:00,1:00 +WO171326,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/1/13 15:30,3:00,1:00 +WO195077,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/19/14 15:30,3:00,1:00 +WO185216,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/30/14 7:30,3:00,1:00 +WO89751,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/7/11 15:30,3:00,1:00 +WO155381,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/21/13 15:30,3:00,1:00 +WO147017,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/6/13 15:30,3:00,1:00 +WO43683,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/10/11 15:30,3:00,1:00 +WO73327,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/2/11 15:30,3:00,1:00 +WO174258,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/23/13 15:30,3:00,1:00 +WO114382,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/22/12 15:30,3:00,1:00 +WO16228,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/22/10 14:12,3:00,1:00 +WO131365,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,11/14/12 8:00,3:00,1:00 +WO116992,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/22/12 15:30,3:00,1:00 +WO91355,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/27/11 15:30,3:00,1:00 +WO131357,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/14/12 7:30,3:00,1:00 +WO111359,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/22/12 15:30,3:00,1:00 +WO148706,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/1/13 15:30,3:00,1:00 +WO174262,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/8/13 7:30,3:00,1:00 +WO75750,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/16/11 15:30,3:00,1:00 +WO86965,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,11/23/11 15:30,3:00,1:00 +WO30168,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/25/10 19:53,3:00,1:00 +WO60846,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/5/11 15:30,3:00,1:00 +WO24544,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/25/10 19:53,3:00,1:00 +WO39303,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/2/10 15:30,3:00,1:00 +WO97337,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/3/12 15:30,3:00,1:00 +WO99820,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/20/12 15:30,3:00,1:00 +WO152468,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/6/13 15:30,3:00,1:00 +WO114384,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/14/12 8:00,3:00,1:00 +WO133590,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,11/23/12 8:00,3:00,1:00 +WO169740,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,9/11/13 7:30,3:00,1:00 +WO43693,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/10/11 15:30,3:00,1:00 +WO190891,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/17/14 15:30,3:00,1:00 +WO145444,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/11/13 15:30,3:00,1:00 +WO89759,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/8/11 15:30,3:00,1:00 +WO26819,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/25/10 19:53,3:00,1:00 +WO69153,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,7/6/11 15:30,3:00,1:00 +WO192918,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/4/14 15:30,3:00,1:00 +WO77574,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,9/6/11 15:30,3:00,1:00 +WO80990,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,10/5/11 15:30,3:00,1:00 +WO121791,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,9/3/12 15:30,3:00,1:00 +WO39321,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/2/10 15:30,3:00,1:00 +WO45739,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/20/11 15:30,3:00,1:00 +WO58584,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/26/11 17:30,3:00,1:00 +WO62851,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/16/11 15:30,3:00,1:00 +WO107362,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,4/17/12 7:30,3:00,1:00 +WO37364,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,12/1/10 15:30,3:00,1:00 +WO42034,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,12/23/10 15:30,3:00,1:00 +WO83126,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/18/11 15:30,3:00,1:00 +WO183165,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/6/14 15:30,3:00,1:00 +WO73325,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/2/11 15:30,3:00,1:00 +WO131355,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/14/12 7:30,3:00,1:00 +WO112802,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/14/12 15:30,3:00,1:00 +WO51992,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/4/11 15:30,3:00,1:00 +WO60838,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/5/11 15:30,3:00,1:00 +WO69143,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/6/11 15:30,3:00,1:00 +WO126854,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/3/12 15:30,3:00,1:00 +WO102083,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/15/12 15:30,3:00,1:00 +WO92596,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/2/12 15:30,3:00,1:00 +WO47948,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/9/11 15:30,3:00,1:00 +WO188936,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/3/14 15:30,3:00,1:00 +WO183167,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/6/14 15:30,3:00,1:00 +WO84788,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/31/11 15:30,3:00,1:00 +WO192916,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/4/14 15:30,3:00,1:00 +WO64637,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/28/11 15:30,3:00,1:00 +WO171324,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/1/13 15:30,3:00,1:00 +WO97329,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/3/12 15:30,3:00,1:00 +WO150585,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/22/13 9:00,3:00,1:00 +WO181732,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/22/13 15:30,3:00,1:00 +WO119017,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/1/12 15:30,3:00,1:00 +WO152458,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/6/13 15:30,3:00,1:00 +WO99822,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/21/12 15:30,3:00,1:00 +WO125735,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,9/26/12 9:00,3:00,1:00 +WO71248,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,7/18/11 15:30,3:00,1:00 +WO158288,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/14/13 15:30,3:00,1:00 +WO105420,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,4/2/12 15:30,3:00,1:00 +WO79159,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,9/19/11 15:30,3:00,1:00 +WO89749,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/7/11 15:30,3:00,1:00 +WO58580,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/4/11 15:30,3:00,1:00 +WO152460,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/6/13 15:30,3:00,1:00 +WO181730,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/27/13 15:30,3:00,1:00 +WO142045,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/15/13 7:30,3:00,1:00 +WO137820,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/16/13 7:30,3:00,1:00 +WO80980,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/5/11 15:30,3:00,1:00 +WO94641,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/20/12 15:30,3:00,1:00 +WO140211,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/18/13 8:30,3:00,1:00 +WO84796,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,10/31/11 15:30,3:00,1:00 +WO56531,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,4/6/11 15:30,3:00,1:00 +WO51946,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/4/11 15:30,3:00,1:00 +WO83132,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/19/11 15:30,3:00,1:00 +WO123154,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,9/6/12 15:30,3:00,1:00 +WO115671,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/3/12 15:30,3:00,1:00 +WO147013,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/22/13 10:00,3:00,1:00 +WO107354,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/19/12 15:30,3:00,1:00 +WO165054,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/13/13 15:30,3:00,1:00 +WO64647,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/28/11 15:30,3:00,1:00 +WO136624,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/19/13 8:00,3:00,1:00 +WO105428,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/2/12 15:30,3:00,1:00 +WO111367,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,7/6/12 19:30,3:00,1:00 +WO121785,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/23/12 15:30,3:00,1:00 +WO56539,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/6/11 15:30,3:00,1:00 +WO45735,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/20/11 15:30,3:00,1:00 +WO54576,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/30/11 15:30,3:00,1:00 +WO136620,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/11/13 7:30,3:00,1:00 +WO166838,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,8/24/13 15:30,3:00,1:00 +WO91357,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/26/11 15:30,3:00,1:00 +WO88144,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,11/21/11 15:30,3:00,1:00 +WO171330,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,10/1/13 15:30,3:00,1:00 +WO125747,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,9/26/12 15:30,3:00,1:00 +WO103681,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/17/12 19:30,3:00,1:00 +WO114388,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,7/14/12 7:15,3:00,1:00 +WO49968,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/16/11 15:30,3:00,1:00 +WO112812,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/14/12 15:30,3:00,1:00 +WO103679,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/27/12 11:00,3:00,1:00 +WO116990,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,7/26/12 15:30,3:00,1:00 +WO192922,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/5/14 15:30,3:00,1:00 +WO111363,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/5/12 19:30,3:00,1:00 +WO140219,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/27/13 8:30,3:00,1:00 +WO186393,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/20/14 15:30,3:00,1:00 +WO162721,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,7/22/13 15:30,3:00,1:00 +WO83140,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,11/3/11 8:15,3:00,1:00 +WO121787,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/3/12 15:30,3:00,1:00 +WO136616,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/18/12 15:30,3:00,1:00 +WO140213,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/18/13 9:30,3:00,1:00 +WO156822,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/10/13 15:30,3:00,1:00 +WO107358,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/17/12 15:30,3:00,1:00 +WO169734,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,9/16/13 15:30,3:00,1:00 +WO76088,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/25/11 15:30,3:00,1:00 +WO128777,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/26/12 15:30,3:00,1:00 +WO176063,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,11/6/13 15:30,3:00,1:00 +WO147021,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,4/6/13 15:30,3:00,1:00 +WO166834,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/21/13 7:30,3:00,1:00 +WO142053,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/15/13 7:30,3:00,1:00 +WO83136,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/3/11 8:00,3:00,1:00 +WO196825,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/1/14 9:00,3:00,1:00 +WO181738,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/4/14 15:30,3:00,1:00 +WO160335,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,7/3/13 15:30,3:00,1:00 +WO76092,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,8/25/11 15:30,3:00,1:00 +WO195085,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,4/6/14 8:30,3:00,1:00 +WO67492,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,6/23/11 15:30,3:00,1:00 +WO22054,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/25/10 19:53,3:00,1:00 +WO180125,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/4/13 15:30,3:00,1:00 +WO174266,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,11/12/13 7:30,3:00,1:00 +WO91359,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/11/12 7:15,3:00,1:00 +WO26823,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/25/10 19:53,3:00,1:00 +WO30172,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/25/10 19:53,3:00,1:00 +WO94593,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/25/12 15:30,3:00,1:00 +WO189980,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/18/14 7:30,3:00,1:00 +WO125753,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/10/12 7:30,3:00,1:00 +WO150593,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,4/30/13 7:30,3:00,1:00 +WO140205,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/14/13 15:30,3:00,1:00 +WO94635,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/23/12 15:30,3:00,1:00 +WO58574,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/3/11 8:00,3:00,1:00 +WO155375,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/23/13 8:00,3:00,1:00 +WO37886,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/7/10 15:30,3:00,1:00 +WO75745,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/16/11 15:30,3:00,1:00 +WO109031,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,5/1/12 15:30,3:00,1:00 +WO131361,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/14/12 8:00,3:00,1:00 +WO186397,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/21/14 15:30,3:00,1:00 +WO99816,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/17/12 15:30,3:00,1:00 +WO54568,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/30/11 15:30,3:00,1:00 +WO60842,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,5/5/11 15:30,3:00,1:00 +WO150579,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/15/13 8:30,3:00,1:00 +WO62847,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/17/11 15:30,3:00,1:00 +WO145450,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/8/13 15:30,3:00,1:00 +WO140207,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/14/13 15:30,3:00,1:00 +WO152464,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,5/6/13 15:30,3:00,1:00 +WO43691,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/10/11 15:30,3:00,1:00 +WO143749,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/6/13 15:30,3:00,1:00 +WO37888,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/2/10 8:00,3:00,1:00 +WO186399,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/21/14 15:30,3:00,1:00 +WO22056,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/25/10 19:53,3:00,1:00 +WO42020,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/20/10 15:30,3:00,1:00 +WO67480,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/20/11 15:30,3:00,1:00 +WO97335,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/3/12 15:30,3:00,1:00 +WO183171,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/7/14 15:30,3:00,1:00 +WO107350,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/24/12 15:30,3:00,1:00 +WO155371,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/23/13 8:00,3:00,1:00 +WO56535,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,4/6/11 15:30,3:00,1:00 +WO140217,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/27/13 8:45,3:00,1:00 +WO86961,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/23/11 15:30,3:00,1:00 +WO51996,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/4/11 15:30,3:00,1:00 +WO115677,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,7/2/12 15:30,3:00,1:00 +WO125741,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,9/27/12 15:30,3:00,1:00 +WO189982,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/11/14 7:30,3:00,1:00 +WO171328,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,10/1/13 15:30,3:00,1:00 +WO137826,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/10/13 15:30,3:00,1:00 +WO116982,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/20/12 8:00,3:00,1:00 +WO143751,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/6/13 15:30,3:00,1:00 +WO69149,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,7/6/11 15:30,3:00,1:00 +WO168082,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,9/4/13 15:30,3:00,1:00 +WO99814,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/17/12 15:30,3:00,1:00 +WO158783,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,7/14/13 8:15,3:00,1:00 +WO42022,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/20/10 15:30,3:00,1:00 +WO103673,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/30/12 8:00,3:00,1:00 +WO116994,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,7/22/12 15:30,3:00,1:00 +WO178534,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/18/13 15:30,3:00,1:00 +WO24031,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/25/10 19:53,3:00,1:00 +WO142049,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/15/13 8:00,3:00,1:00 +WO156832,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/10/13 15:30,3:00,1:00 +WO56537,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/6/11 15:30,3:00,1:00 +WO76090,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,8/25/11 15:30,3:00,1:00 +WO20954,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/25/10 19:53,3:00,1:00 +WO163240,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,7/27/13 15:30,3:00,1:00 +WO77570,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,9/9/11 15:30,3:00,1:00 +WO155385,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,5/31/13 7:30,3:00,1:00 +WO165050,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,8/13/13 15:30,3:00,1:00 +WO91361,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/11/12 7:30,3:00,1:00 +WO165052,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/13/13 15:30,3:00,1:00 +WO143761,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/24/13 15:30,3:00,1:00 +WO188940,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/3/14 15:30,3:00,1:00 +WO133596,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,11/30/12 4:30,3:00,1:00 +WO188942,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/4/14 15:30,3:00,1:00 +WO89757,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/7/11 15:30,3:00,1:00 +WO136622,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/11/13 7:30,3:00,1:00 +WO180131,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/4/13 15:30,3:00,1:00 +WO80988,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/5/11 15:30,3:00,1:00 +WO166836,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,8/21/13 7:30,3:00,1:00 +WO49972,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/14/11 15:30,3:00,1:00 +WO26821,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/25/10 19:53,3:00,1:00 +WO115679,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,7/2/12 15:30,3:00,1:00 +WO196823,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/1/14 9:00,3:00,1:00 +WO60844,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/5/11 15:30,3:00,1:00 +WO166826,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/23/13 15:30,3:00,1:00 +WO181726,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/21/13 15:30,3:00,1:00 +WO190887,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/19/14 15:30,3:00,1:00 +WO162717,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/19/13 15:30,3:00,1:00 +WO148702,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,4/1/13 15:30,3:00,1:00 +WO45727,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/20/11 15:30,3:00,1:00 +WO43685,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/10/11 15:30,3:00,1:00 +WO67478,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/20/11 15:30,3:00,1:00 +WO168076,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,9/12/13 15:30,3:00,1:00 +WO176055,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/6/13 15:30,3:00,1:00 +WO160327,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/3/13 15:30,3:00,1:00 +WO89755,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/7/11 15:30,3:00,1:00 +WO69145,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/6/11 15:30,3:00,1:00 +WO128779,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/25/12 15:30,3:00,1:00 +WO166828,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/20/13 15:30,3:00,1:00 +WO196819,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/31/14 15:30,3:00,1:00 +WO112810,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/14/12 15:30,3:00,1:00 +WO47952,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/9/11 15:30,3:00,1:00 +WO190889,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/18/14 17:00,3:00,1:00 +WO92656,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/2/12 15:30,3:00,1:00 +WO121779,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/23/12 15:30,3:00,1:00 +WO97333,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/3/12 15:30,3:00,1:00 +WO77566,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/9/11 15:30,3:00,1:00 +WO54570,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/30/11 15:30,3:00,1:00 +WO79209,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,9/19/11 15:30,3:00,1:00 +WO39317,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/7/10 15:30,3:00,1:00 +WO135016,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/6/12 15:30,3:00,1:00 +WO196817,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/31/14 15:30,3:00,1:00 +WO105424,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,4/2/12 15:30,3:00,1:00 +WO136610,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/20/12 15:30,3:00,1:00 +WO128781,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/25/12 15:30,3:00,1:00 +WO102091,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/15/12 15:00,3:00,1:00 +WO105418,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/2/12 15:30,3:00,1:00 +WO109027,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/1/12 15:30,3:00,1:00 +WO145448,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/14/13 8:00,3:00,1:00 +WO79211,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/19/11 15:30,3:00,1:00 +WO75741,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/16/11 15:30,3:00,1:00 +WO43689,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/10/11 15:30,3:00,1:00 +WO176059,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/6/13 15:30,3:00,1:00 +WO56529,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/6/11 15:30,3:00,1:00 +WO178532,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/18/13 15:30,3:00,1:00 +WO91351,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/23/11 15:30,3:00,1:00 +WO176057,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/6/13 15:30,3:00,1:00 +WO33780,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/4/10 15:30,3:00,1:00 +WO69151,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,7/6/11 15:30,3:00,1:00 +WO84786,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/31/11 15:30,3:00,1:00 +WO165048,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/13/13 15:30,3:00,1:00 +WO135020,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/6/12 15:30,3:00,1:00 +WO195073,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/20/14 15:30,3:00,1:00 +WO58586,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/26/11 17:30,3:00,1:00 +WO105426,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/2/12 15:30,3:00,1:00 +WO114374,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/19/12 15:30,3:00,1:00 +WO158282,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/13/13 15:30,3:00,1:00 +WO121775,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/23/12 15:30,3:00,1:00 +WO129491,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/26/12 4:00,3:00,1:00 +WO165046,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/13/13 15:30,3:00,1:00 +WO174254,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/22/13 15:30,3:00,1:00 +WO125743,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/28/12 15:30,3:00,1:00 +WO168080,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,9/4/13 15:30,3:00,1:00 +WO45725,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/19/11 15:30,3:00,1:00 +WO168078,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/4/13 15:30,3:00,1:00 +WO39301,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/7/10 15:30,3:00,1:00 +WO166832,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/20/13 15:30,3:00,1:00 +WO128785,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,10/26/12 15:30,3:00,1:00 +WO37362,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,12/1/10 15:30,3:00,1:00 +WO126852,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,10/3/12 15:30,3:00,1:00 +WO123152,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,9/6/12 15:30,3:00,1:00 +WO111355,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/22/12 15:30,3:00,1:00 +WO80982,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/5/11 15:30,3:00,1:00 +WO156830,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,6/7/13 8:00,3:00,1:00 +WO114376,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/19/12 15:30,3:00,1:00 +WO188930,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/3/14 15:30,3:00,1:00 +WO116984,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/20/12 8:00,3:00,1:00 +WO67486,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/20/11 15:30,3:00,1:00 +WO119027,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/13/12 8:00,3:00,1:00 +WO42026,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/20/10 15:30,3:00,1:00 +WO94647,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/25/12 15:30,3:00,1:00 +WO174256,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/22/13 15:30,3:00,1:00 +WO62853,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/16/11 15:30,3:00,1:00 +WO115673,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/3/12 15:30,3:00,1:00 +WO169738,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,9/10/13 6:00,3:00,1:00 +WO103677,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/30/12 9:00,3:00,1:00 +WO143755,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/8/13 15:30,3:00,1:00 +WO112804,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/14/12 15:30,3:00,1:00 +WO49966,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/16/11 15:30,3:00,1:00 +WO73331,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,8/2/11 15:30,3:00,1:00 +WO77572,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,9/6/11 15:30,3:00,1:00 +WO150587,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/22/13 9:00,3:00,1:00 +WO142043,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/21/13 3:30,3:00,1:00 +WO121789,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,9/3/12 15:30,3:00,1:00 +WO28317,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/25/10 19:53,3:00,1:00 +WO116988,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,7/26/12 15:30,3:00,1:00 +WO160331,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,7/3/13 15:30,3:00,1:00 +WO155379,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/21/13 15:30,3:00,1:00 +WO140215,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/27/13 9:30,3:00,1:00 +WO103683,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/17/12 19:30,3:00,1:00 +WO143757,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/8/13 15:30,3:00,1:00 +WO25733,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/25/10 19:53,3:00,1:00 +WO126860,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/3/12 15:30,3:00,1:00 +WO162719,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,7/22/13 15:30,3:00,1:00 +WO178538,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,11/19/13 15:30,3:00,1:00 +WO67490,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,6/23/11 8:00,3:00,1:00 +WO169736,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/6/13 7:30,3:00,1:00 +WO131363,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,11/14/12 8:00,3:00,1:00 +WO109035,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/1/12 15:30,3:00,1:00 +WO195079,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/18/14 15:30,3:00,1:00 +WO114380,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/22/12 15:30,3:00,1:00 +WO183163,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/7/14 15:30,3:00,1:00 +WO158290,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/12/13 15:30,3:00,1:00 +WO42032,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,12/23/10 15:30,3:00,1:00 +WO23178,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/25/10 19:53,3:00,1:00 +WO166830,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/21/13 15:30,3:00,1:00 +WO163238,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/27/13 15:30,3:00,1:00 +WO123144,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,9/6/12 15:30,3:00,1:00 +WO73335,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/2/11 15:30,3:00,1:00 +WO45731,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/20/11 15:30,3:00,1:00 +WO73333,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,8/2/11 15:30,3:00,1:00 +WO19831,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/25/10 19:53,3:00,1:00 +WO111361,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/22/12 15:30,3:00,1:00 +WO150591,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/30/13 7:30,3:00,1:00 +WO75752,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/16/11 15:30,3:00,1:00 +WO58582,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/4/11 15:30,3:00,1:00 +WO47954,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/9/11 15:30,3:00,1:00 +WO125751,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/10/12 7:30,3:00,1:00 +WO186401,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/21/14 7:30,3:00,1:00 +WO102093,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/15/12 8:00,3:00,1:00 +WO192914,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/5/14 15:30,3:00,1:00 +WO100490,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/23/12 7:30,3:00,1:00 +WO169732,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,9/17/13 15:30,3:00,1:00 +WO71252,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/5/11 15:30,3:00,1:00 +WO71254,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,8/5/11 15:30,3:00,1:00 +WO47956,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/9/11 15:30,3:00,1:00 +WO33686,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,11/5/10 15:30,3:00,1:00 +WO155383,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/3/13 6:30,3:00,1:00 +WO114386,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,7/14/12 8:00,3:00,1:00 +WO67484,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/21/11 15:30,3:00,1:00 +WO137828,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/10/13 15:30,3:00,1:00 +WO185220,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/2/14 15:30,3:00,1:00 +WO54578,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/25/11 9:00,3:00,1:00 +WO119029,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,8/13/12 9:00,3:00,1:00 +WO178544,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,11/25/13 7:30,3:00,1:00 +WO129489,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/3/12 15:30,3:00,1:00 +WO181734,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/4/14 15:30,3:00,1:00 +WO92660,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/2/12 15:30,3:00,1:00 +WO135024,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/6/12 15:30,3:00,1:00 +WO115681,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,7/2/12 15:30,3:00,1:00 +WO23174,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/25/10 19:53,3:00,1:00 +WO125749,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/10/12 7:30,3:00,1:00 +WO143759,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/24/13 15:30,3:00,1:00 +WO126862,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,10/3/12 15:30,3:00,1:00 +WO88140,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/21/11 15:30,3:00,1:00 +WO129493,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/31/12 5:00,3:00,1:00 +WO145452,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/8/13 15:30,3:00,1:00 +WO37360,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/1/10 15:30,3:00,1:00 +WO168084,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,9/4/13 15:30,3:00,1:00 +WO158781,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,7/9/13 5:45,3:00,1:00 +WO62855,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/18/11 15:30,3:00,1:00 +WO133594,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/30/12 4:30,3:00,1:00 +WO178540,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/22/13 7:30,3:00,1:00 +WO71256,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,8/5/11 15:30,3:00,1:00 +WO189984,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/11/14 7:30,3:00,1:00 +WO116996,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,7/22/12 15:30,3:00,1:00 +WO79223,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,11/4/11 19:30,3:00,1:00 +WO22058,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/25/10 19:53,3:00,1:00 +WO49974,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/14/11 15:30,3:00,1:00 +WO155387,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,5/31/13 7:30,3:00,1:00 +WO143763,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/24/13 15:30,3:00,1:00 +WO99928,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/16/12 15:30,3:00,1:00 +WO48277,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/22/11 11:30,3:00,1:00 +WO189128,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/22/14 15:30,3:00,1:00 +WO142327,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/15/13 11:30,3:00,1:00 +WO98177,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/17/12 16:30,3:00,1:00 +WO40397,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/27/11 9:00,3:00,1:00 +WO41338,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/6/11 15:30,3:00,1:00 +WO189140,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/4/14 15:30,3:00,1:00 +WO136071,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/28/13 8:00,3:00,1:00 +WO195369,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/29/14 15:30,3:00,1:00 +WO99930,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/8/12 16:00,3:00,1:00 +WO193176,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/10/14 15:30,3:00,1:00 +WO181848,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/30/13 15:30,3:00,1:00 +WO51307,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/24/11 16:30,3:00,1:00 +WO99934,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/8/12 16:00,3:00,1:00 +WO191937,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/14/14 15:30,3:00,1:00 +WO195371,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/11/14 15:30,3:00,1:00 +WO27384,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/25/10 18:11,3:00,1:00 +WO98971,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/3/12 15:00,3:00,1:00 +WO94940,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/18/12 15:30,3:00,1:00 +WO101418,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/28/12 15:30,3:00,1:00 +WO45192,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/24/11 15:30,3:00,1:00 +WO98977,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,3/3/12 15:00,3:00,1:00 +WO137412,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/28/13 10:00,3:00,1:00 +WO181038,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/8/14 7:30,3:00,1:00 +WO93072,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/26/12 15:30,3:00,1:00 +WO49231,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/10/11 12:30,3:00,1:00 +WO58576,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/3/11 15:30,3:00,1:00 +WO62845,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/17/11 15:30,3:00,1:00 +WO133586,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/23/12 8:00,3:00,1:00 +WO84792,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,10/31/11 15:30,3:00,1:00 +WO94637,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/23/12 15:30,3:00,1:00 +WO83128,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/19/11 15:30,3:00,1:00 +WO33682,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,11/5/10 15:30,3:00,1:00 +WO119025,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,8/13/12 8:00,3:00,1:00 +WO80986,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,10/5/11 15:30,3:00,1:00 +WO181728,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/21/13 15:30,3:00,1:00 +WO147009,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/18/13 9:00,3:00,1:00 +WO147007,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/20/13 8:30,3:00,1:00 +WO137824,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/10/13 15:30,3:00,1:00 +WO112808,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,6/14/12 15:30,3:00,1:00 +WO169730,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/18/13 15:30,3:00,1:00 +WO126858,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,10/3/12 15:30,3:00,1:00 +WO150581,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,4/15/13 8:30,3:00,1:00 +WO107348,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/23/12 15:30,3:00,1:00 +WO176061,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,11/6/13 15:30,3:00,1:00 +WO121781,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/24/12 15:30,3:00,1:00 +WO64589,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,5/28/11 15:30,3:00,1:00 +WO64645,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/28/11 15:30,3:00,1:00 +WO183169,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/7/14 15:30,3:00,1:00 +WO49962,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/17/11 15:30,3:00,1:00 +WO152466,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/6/13 15:30,3:00,1:00 +WO102089,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/15/12 8:00,3:00,1:00 +WO135022,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/6/12 15:30,3:00,1:00 +WO136612,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/19/12 15:30,3:00,1:00 +WO71244,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/22/11 15:30,3:00,1:00 +WO169728,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,9/18/13 15:30,3:00,1:00 +WO123150,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,9/6/12 15:30,3:00,1:00 +WO171322,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/1/13 15:30,3:00,1:00 +WO91349,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/23/11 8:30,3:00,1:00 +WO34537,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/9/10 15:30,3:00,1:00 +WO86959,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/23/11 15:30,3:00,1:00 +WO174264,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,11/8/13 7:30,3:00,1:00 +WO192920,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/5/14 15:30,3:00,1:00 +WO49960,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/17/11 15:30,3:00,1:00 +WO109033,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/1/12 15:30,3:00,1:00 +WO30170,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/25/10 19:53,3:00,1:00 +WO51998,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/10/11 15:30,3:00,1:00 +WO18352,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/25/10 19:53,3:00,1:00 +WO158280,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/13/13 15:30,3:00,1:00 +WO180133,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/4/13 15:30,3:00,1:00 +WO160333,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,7/3/13 15:30,3:00,1:00 +WO103671,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/30/12 8:00,3:00,1:00 +WO148704,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/1/13 15:30,3:00,1:00 +WO71242,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/18/11 15:30,3:00,1:00 +WO92658,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/2/12 15:30,3:00,1:00 +WO39319,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/7/10 15:30,3:00,1:00 +WO22504,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/25/10 19:53,3:00,1:00 +WO196821,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/31/14 15:30,3:00,1:00 +WO16230,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,6/22/10 14:12,3:00,1:00 +WO83138,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,11/3/11 8:00,3:00,1:00 +WO162715,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/19/13 15:30,3:00,1:00 +WO111353,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/4/12 8:30,3:00,1:00 +WO84794,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,10/31/11 15:30,3:00,1:00 +WO33684,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,11/5/10 15:30,3:00,1:00 +WO133584,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/23/12 8:00,3:00,1:00 +WO142051,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/15/13 8:00,3:00,1:00 +WO195075,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/20/14 15:30,3:00,1:00 +WO111365,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,7/5/12 19:30,3:00,1:00 +WO79221,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,11/4/11 19:30,3:00,1:00 +WO107360,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/17/12 15:30,3:00,1:00 +WO24546,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/25/10 19:53,3:00,1:00 +WO62801,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,5/18/11 15:30,3:00,1:00 +WO23176,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/25/10 19:53,3:00,1:00 +WO178542,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,11/25/13 7:30,3:00,1:00 +WO45737,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/20/11 15:30,3:00,1:00 +WO100488,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/23/12 7:30,3:00,1:00 +WO195083,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/6/14 8:30,3:00,1:00 +WO189126,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/26/14 15:30,3:00,1:00 +WO98179,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/17/12 16:30,3:00,1:00 +WO142331,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/15/13 14:00,3:00,1:00 +WO41340,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/27/11 7:30,3:00,1:00 +WO48264,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/8/11 11:30,3:00,1:00 +WO44196,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/17/11 15:30,3:00,1:00 +WO48268,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/10/11 15:30,3:00,1:00 +WO190192,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/6/14 15:30,3:00,1:00 +WO40402,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/28/11 15:30,3:00,1:00 +WO90779,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/3/12 8:00,3:00,1:00 +WO49469,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/1/11 15:30,3:00,1:00 +WO48270,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/15/11 16:30,3:00,1:00 +WO142323,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/18/13 16:30,3:00,1:00 +WO93068,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/23/12 16:00,3:00,1:00 +WO98165,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/6/12 8:00,3:00,1:00 +WO189136,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/28/14 11:30,3:00,1:00 +WO142319,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/15/13 8:00,3:00,1:00 +WO142325,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/15/13 10:30,3:00,1:00 +WO98173,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/8/12 15:30,3:00,1:00 +WO85012,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/25/12 15:00,3:00,1:00 +WO98975,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/21/12 15:30,3:00,1:00 +WO195367,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,4/29/14 15:30,3:00,1:00 +WO189134,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/28/14 11:30,3:00,1:00 +WO90773,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/3/12 7:30,3:00,1:00 +WO90771,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/29/11 15:30,3:00,1:00 +WO101416,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/28/12 15:30,3:00,1:00 +WO42158,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/18/11 15:30,3:00,1:00 +WO136748,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/26/12 15:30,3:00,1:00 +WO98969,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/13/12 15:30,3:00,1:00 +WO92230,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/9/12 15:30,3:00,1:00 +WO144784,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/7/13 15:30,3:00,1:00 +WO190188,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/11/14 15:30,3:00,1:00 +WO181844,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/29/13 7:00,3:00,1:00 +WO50139,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/10/11 16:30,3:00,1:00 +WO143907,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/6/13 15:30,3:00,1:00 +WO191935,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/14/14 15:30,3:00,1:00 +WO143191,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/5/13 11:30,3:00,1:00 +WO191933,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/14/14 15:30,3:00,1:00 +WO142313,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/26/13 12:30,3:00,1:00 +WO98973,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/11/12 10:45,3:00,1:00 +WO48279,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/22/11 14:00,3:00,1:00 +WO143911,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,2/25/13 11:30,3:00,1:00 +WO50143,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/11/11 15:30,3:00,1:00 +WO94944,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,12/22/11 15:30,3:00,1:00 +WO40399,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/13/10 15:30,3:00,1:00 +WO43104,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/1/11 15:30,3:00,1:00 +WO91467,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/3/12 15:30,3:00,1:00 +WO52295,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/1/11 16:30,3:00,1:00 +WO101414,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/28/12 15:30,3:00,1:00 +WO144786,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/25/13 15:30,3:00,1:00 +WO49227,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/10/11 9:30,3:00,1:00 +WO178718,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/3/13 15:30,3:00,1:00 +WO182640,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,12/30/13 15:30,3:00,1:00 +WO193180,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/12/14 15:30,3:00,1:00 +WO139574,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/18/13 7:30,3:00,1:00 +WO59019,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/22/11 15:30,3:00,1:00 +WO142347,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/18/13 7:30,3:00,1:00 +WO103983,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/3/12 15:30,3:00,1:00 +WO49473,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,3/1/11 15:30,3:00,1:00 +WO42162,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/1/11 15:30,3:00,1:00 +WO139576,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/21/13 7:00,3:00,1:00 +WO178720,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/17/14 15:30,3:00,1:00 +WO98109,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/6/12 7:30,3:00,1:00 +WO48272,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/16/11 11:30,3:00,1:00 +WO147307,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,4/29/13 8:00,3:00,1:00 +WO40395,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/22/11 15:30,3:00,1:00 +WO136069,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/25/13 3:30,3:00,1:00 +WO193178,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/12/14 15:30,3:00,1:00 +WO41344,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/22/11 15:30,3:00,1:00 +WO41201,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/17/10 15:30,3:00,1:00 +WO189142,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/4/14 15:30,3:00,1:00 +WO98167,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/6/12 8:30,3:00,1:00 +WO181846,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/21/13 15:30,3:00,1:00 +WO51309,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/22/11 8:00,3:00,1:00 +WO100644,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/16/12 14:00,3:00,1:00 +WO137410,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,2/6/13 15:30,3:00,1:00 +WO142321,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/18/13 12:30,3:00,1:00 +WO99932,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/8/12 16:00,3:00,1:00 +WO142343,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/18/13 4:30,3:00,1:00 +WO49476,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/10/11 15:30,3:00,1:00 +WO181030,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/9/13 15:30,3:00,1:00 +WO136073,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/14/12 16:00,3:00,1:00 +WO181032,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/9/13 15:30,3:00,1:00 +WO27444,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/25/10 18:11,3:00,1:00 +WO98967,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/11/12 9:45,3:00,1:00 +WO181034,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/8/14 7:30,3:00,1:00 +WO178722,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/20/14 15:30,3:00,1:00 +WO27442,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/25/10 18:11,3:00,1:00 +WO45194,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,3/3/11 15:30,3:00,1:00 +WO49478,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/22/11 15:30,3:00,1:00 +WO49471,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,3/1/11 15:30,3:00,1:00 +WO142349,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/12/12 3:30,3:00,1:00 +WO98981,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/6/12 15:30,3:00,1:00 +WO42160,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/24/11 15:30,3:00,1:00 +WO100642,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/16/12 14:00,3:00,1:00 +WO52299,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/29/11 8:00,3:00,1:00 +WO190190,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/6/14 15:30,3:00,1:00 +WO100646,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/16/12 14:00,3:00,1:00 +WO92232,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/3/12 8:00,3:00,1:00 +WO143189,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/22/13 15:30,3:00,1:00 +WO98169,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/8/12 15:30,3:00,1:00 +WO189132,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/28/14 11:30,3:00,1:00 +WO51311,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/22/11 9:00,3:00,1:00 +WO43106,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/1/11 15:30,3:00,1:00 +WO48275,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/16/11 16:30,3:00,1:00 +WO181028,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/21/13 15:30,3:00,1:00 +WO98175,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/17/12 16:30,3:00,1:00 +WO48266,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/9/11 15:30,3:00,1:00 +WO189138,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/4/14 15:30,3:00,1:00 +WO143195,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,2/26/13 15:30,3:00,1:00 +WO142329,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/15/13 13:00,3:00,1:00 +WO190194,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/6/14 15:30,3:00,1:00 +WO59017,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/27/11 12:45,3:00,1:00 +WO147309,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/23/13 10:00,3:00,1:00 +WO103981,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/26/12 15:30,3:00,1:00 +WO136746,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/22/12 15:30,3:00,1:00 +WO144782,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/11/13 15:30,3:00,1:00 +WO136742,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/4/13 15:30,3:00,1:00 +WO147311,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/24/13 10:00,3:00,1:00 +WO41342,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/27/11 15:30,3:00,1:00 +WO91463,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/16/12 15:30,3:00,1:00 +WO92234,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/17/12 15:30,3:00,1:00 +WO93070,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/15/12 15:30,3:00,1:00 +WO98983,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,3/3/12 15:00,3:00,1:00 +WO49229,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/10/11 11:00,3:00,1:00 +WO94942,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/22/12 15:30,3:00,1:00 +WO45190,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/10/11 15:30,3:00,1:00 +WO98979,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/11/12 8:00,3:00,1:00 +WO181026,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/9/13 15:30,3:00,1:00 +WO189130,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/21/14 9:00,3:00,1:00 +WO142317,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/15/13 9:00,3:00,1:00 +WO48281,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/22/11 16:30,3:00,1:00 +WO52297,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/28/11 11:00,3:00,1:00 +WO91465,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/3/12 15:30,3:00,1:00 +WO143909,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,3/6/13 15:30,3:00,1:00 +WO50141,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/11/11 11:30,3:00,1:00 +WO136744,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/12/13 8:00,3:00,1:00 +WO81318,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,10/31/11 12:00,3:00,1:00 +WO143193,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/5/13 15:30,3:00,1:00 +WO98171,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/7/12 15:30,3:00,1:00 +WO43102,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/1/11 15:30,3:00,1:00 +WO142339,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/18/13 4:00,3:00,1:00 +WO45188,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/10/11 15:30,3:00,1:00 +WO90777,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/13/12 15:30,3:00,1:00 +WO59015,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,4/27/11 13:45,3:00,1:00 +WO136075,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,12/10/12 15:30,3:00,1:00 +WO103979,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/26/12 15:30,3:00,1:00 +WO142345,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/14/13 3:30,3:00,1:00 +WO40404,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/27/11 15:30,3:00,1:00 +WO91469,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/19/12 15:30,3:00,1:00 +WO181036,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/8/14 7:30,3:00,1:00 +WO142341,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/8/13 15:30,3:00,1:00 +WO49480,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/25/11 15:30,3:00,1:00 +WO139578,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/15/13 15:30,3:00,1:00 +WO160555,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,7/14/13 15:30,3:00,1:00 +WO126279,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,10/18/12 4:30,3:00,1:00 +WO160559,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,7/13/13 15:30,3:00,1:00 +WO73872,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,8/13/11 15:30,3:00,1:00 +WO85218,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,11/4/11 15:30,3:00,1:00 +WO166997,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,9/7/13 7:30,3:00,1:00 +WO85222,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,11/4/11 15:30,3:00,1:00 +WO178849,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/24/13 15:30,3:00,1:00 +WO139691,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/15/13 14:00,3:00,1:00 +WO142618,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,10/12/12 3:30,3:00,1:00 +WO54838,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,3/30/11 15:30,3:00,1:00 +WO84139,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04701,Chiller 1,TRUE,5,10/27/11 7:30,3:00,1:00 +WO63089,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,5/17/11 15:30,3:00,1:00 +WO79569,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,9/19/11 15:30,3:00,1:00 +WO71590,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,7/22/11 15:30,3:00,1:00 +WO130761,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04701,Chiller 1,TRUE,5,11/17/12 13:00,3:00,1:00 +WO130771,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04703,Chiller 3,TRUE,5,11/16/12 15:00,3:00,1:00 +WO87371,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,11/23/11 15:30,3:00,1:00 +WO175384,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04703,Chiller 3,TRUE,5,11/24/13 11:00,3:00,1:00 +WO114552,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,6/19/12 15:30,3:00,1:00 +WO107572,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,4/23/12 15:30,3:00,1:00 +WO181903,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,12/21/13 15:30,3:00,1:00 +WO158595,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,6/12/13 15:30,3:00,1:00 +WO46255,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,1/19/11 15:30,3:00,1:00 +WO128973,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,10/25/12 15:30,3:00,1:00 +WO155586,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,5/23/13 7:30,3:00,1:00 +WO178777,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,11/18/13 15:30,3:00,1:00 +WO150724,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,4/15/13 9:00,3:00,1:00 +WO42224,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,12/20/10 15:30,3:00,1:00 +WO131916,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,12/4/12 15:30,3:00,1:00 +WO85304,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,11/4/11 15:30,3:00,1:00 +WO175382,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04702,Chiller 2,TRUE,5,11/23/13 15:00,3:00,1:00 +WO83267,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,11/3/11 7:30,3:00,1:00 +WO73870,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,8/13/11 15:30,3:00,1:00 +WO146545,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,4/24/13 14:34,3:00,1:00 +WO146547,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,4/24/13 14:34,3:00,1:00 +WO146549,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,4/24/13 14:35,3:00,1:00 +WO129088,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,2/13/13 11:04,3:00,1:00 +WO118312,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,8/8/12 23:00,3:00,1:00 +WO73868,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,8/13/11 15:30,3:00,1:00 +WO170105,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,9/7/13 15:30,3:00,1:00 +WO115880,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,7/22/12 15:30,3:00,1:00 +WO138279,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,1/10/13 15:30,3:00,1:00 +WO61128,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/5/11 15:30,3:00,1:00 +WO56771,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/8/11 15:30,3:00,1:00 +WO69502,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/8/11 15:30,3:00,1:00 +WO64853,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/28/11 15:30,3:00,1:00 +WO93154,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/9/12 15:30,3:00,1:00 +WO198386,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,5/12/14 15:30,3:00,1:00 +WO148406,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,3/27/13 15:30,3:00,1:00 +WO159726,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,7/18/13 19:00,3:00,1:00 +WO176720,Filter Replacement and more specific Air Filter Replacement related to control system,control system,MT014,Filter Replacement,MT014a,Air Filter Replacement,CWC04006,Chiller 6,TRUE,5,11/5/13 15:30,3:00,1:00 +WO159732,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,6/28/13 9:30,3:00,1:00 +WO193443,Filter Replacement and more specific Air Filter Replacement related to control system,control system,MT014,Filter Replacement,MT014a,Air Filter Replacement,CWC04006,Chiller 6,TRUE,5,3/4/14 15:30,3:00,1:00 +WO152933,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,5/1/13 16:30,3:00,1:00 +WO131880,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,12/4/12 15:30,3:00,1:00 +WO55256,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,3/25/11 15:30,3:00,1:00 +WO148293,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,3/25/13 15:30,3:00,1:00 +WO121982,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,8/20/12 15:30,3:00,1:00 +WO131884,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,12/4/12 15:30,3:00,1:00 +WO166993,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,9/7/13 8:00,3:00,1:00 +WO148291,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,3/25/13 15:30,3:00,1:00 +WO95050,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/20/12 15:30,3:00,1:00 +WO99139,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/16/12 15:30,3:00,1:00 +WO166989,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,9/7/13 8:00,3:00,1:00 +WO121974,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,8/20/12 15:30,3:00,1:00 +WO75666,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,8/17/11 15:30,3:00,1:00 +WO121922,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,8/27/12 15:30,3:00,1:00 +WO84143,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04703,Chiller 3,TRUE,5,10/27/11 9:30,3:00,1:00 +WO170095,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,9/18/13 15:30,3:00,1:00 +WO195416,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,3/20/14 15:30,3:00,1:00 +WO94984,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,1/23/12 15:30,3:00,1:00 +WO162797,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,7/19/13 15:30,3:00,1:00 +WO117404,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,7/26/12 15:30,3:00,1:00 +WO111597,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,6/4/12 8:30,3:00,1:00 +WO147398,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,3/21/13 9:00,3:00,1:00 +WO126269,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,9/28/12 15:30,3:00,1:00 +WO50080,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,2/16/11 15:30,3:00,1:00 +WO91481,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,12/27/11 15:30,3:00,1:00 +WO185577,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/30/14 7:30,3:00,1:00 +WO126378,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,10/10/12 7:30,3:00,1:00 +WO111679,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,7/6/12 19:30,3:00,1:00 +WO100800,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/23/12 7:30,3:00,1:00 +WO181143,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/8/14 7:30,3:00,1:00 +WO181953,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/4/14 15:30,3:00,1:00 +WO170103,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,9/7/13 15:30,3:00,1:00 +WO130156,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,11/13/12 20:00,3:00,1:00 +WO163597,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,7/27/13 15:30,3:00,1:00 +WO160595,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,7/13/13 15:30,3:00,1:00 +WO108719,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,5/4/12 17:00,3:00,1:00 +WO167001,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,8/24/13 15:30,3:00,1:00 +WO170173,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,9/7/13 7:45,3:00,1:00 +WO103215,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,3/21/12 21:00,3:00,1:00 +WO195504,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,4/6/14 8:30,3:00,1:00 +WO73874,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,8/13/11 15:30,3:00,1:00 +WO103217,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,3/21/12 21:30,3:00,1:00 +WO103219,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,7/16/12 14:15,3:00,1:00 +WO174763,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/12/13 7:30,3:00,1:00 +WO163689,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,7/22/13 18:00,3:00,1:00 +WO118314,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,8/10/12 22:00,3:00,1:00 +WO160557,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,7/14/13 15:30,3:00,1:00 +WO138265,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,12/20/12 11:00,3:00,1:00 +WO129023,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,2/13/13 11:04,3:00,1:00 +WO90030,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/30/11 13:59,3:00,1:00 +WO52222,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/1/11 15:30,3:00,1:00 +WO39152,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/1/10 15:30,3:00,1:00 +WO167049,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,9/7/13 7:30,3:00,1:00 +WO85252,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,11/4/11 15:30,3:00,1:00 +WO85174,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/3/11 7:30,3:00,1:00 +WO116748,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,7/13/12 21:00,3:00,1:00 +WO81348,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/19/11 7:30,3:00,1:00 +WO130769,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04702,Chiller 2,TRUE,5,11/17/12 3:30,3:00,1:00 +WO84141,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04702,Chiller 2,TRUE,5,10/27/11 8:00,3:00,1:00 +WO103223,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,4/10/12 18:30,3:00,1:00 +WO192242,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,4/14/14 15:30,3:00,1:00 +WO146553,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,4/24/13 14:36,3:00,1:00 +WO151989,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,5/10/13 19:30,3:00,1:00 +WO192244,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,4/4/14 9:00,3:00,1:00 +WO174853,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,11/1/13 14:00,3:00,1:00 +WO196294,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,3/29/14 15:00,3:00,1:00 +WO116666,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,7/13/12 22:00,3:00,1:00 +WO116668,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,8/16/12 7:00,3:00,1:00 +WO198394,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,4/23/14 15:30,3:00,1:00 +WO171031,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,9/27/13 14:00,3:00,1:00 +WO198396,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,4/21/14 15:00,3:00,1:00 +WO198398,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,4/11/14 12:30,3:00,1:00 +WO171041,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,10/2/13 9:15,3:00,1:00 +WO171877,Filter Replacement and more specific Air Filter Replacement related to control system,control system,MT014,Filter Replacement,MT014a,Air Filter Replacement,CWC04006,Chiller 6,TRUE,5,10/2/13 15:30,3:00,1:00 +WO168621,Filter Replacement and more specific Air Filter Replacement related to control system,control system,MT014,Filter Replacement,MT014a,Air Filter Replacement,CWC04006,Chiller 6,TRUE,5,9/3/13 15:30,3:00,1:00 +WO119532,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/17/12 4:15,3:00,1:00 +WO197294,Filter Replacement and more specific Air Filter Replacement related to control system,control system,MT014,Filter Replacement,MT014a,Air Filter Replacement,CWC04006,Chiller 6,TRUE,5,3/31/14 15:30,3:00,1:00 +WO127342,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/11/12 15:30,3:00,1:00 +WO145763,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/8/13 7:30,3:00,1:00 +WO198390,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,5/9/14 9:45,3:00,1:00 +WO135492,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/7/13 15:30,3:00,1:00 +WO109525,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/4/12 15:30,3:00,1:00 +WO83265,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,11/3/11 7:30,3:00,1:00 +WO101736,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/3/12 15:30,3:00,1:00 +WO115876,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,7/22/12 15:30,3:00,1:00 +WO160697,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/9/13 5:00,3:00,1:00 +WO188257,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/26/14 15:30,3:00,1:00 +WO170101,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,9/7/13 15:30,3:00,1:00 +WO130988,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/3/12 15:30,3:00,1:00 +WO98509,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/10/12 7:30,3:00,1:00 +WO83269,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,11/3/11 7:30,3:00,1:00 +WO113290,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/5/12 19:30,3:00,1:00 +WO126283,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,10/18/12 6:30,3:00,1:00 +WO176642,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/8/13 7:30,3:00,1:00 +WO116750,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,7/13/12 20:00,3:00,1:00 +WO159730,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,6/28/13 10:30,3:00,1:00 +WO171037,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,11/4/13 9:00,3:00,1:00 +WO159736,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,6/28/13 8:30,3:00,1:00 +WO152925,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,5/13/13 16:00,3:00,1:00 +WO171879,Filter Replacement and more specific Air Filter Replacement related to control system,control system,MT014,Filter Replacement,MT014a,Air Filter Replacement,CWC04009,Chiller 9,TRUE,5,10/2/13 15:30,3:00,1:00 +WO198392,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,4/14/14 11:30,3:00,1:00 +WO46328,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,2/4/11 10:00,3:00,1:00 +WO166995,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,9/7/13 7:30,3:00,1:00 +WO166991,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,9/7/13 8:00,3:00,1:00 +WO75662,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,8/17/11 15:30,3:00,1:00 +WO85220,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,11/4/11 15:30,3:00,1:00 +WO75658,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,8/17/11 15:30,3:00,1:00 +WO104983,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,3/26/12 15:30,3:00,1:00 +WO75668,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,8/17/11 15:30,3:00,1:00 +WO71050,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,8/5/11 15:30,3:00,1:00 +WO79655,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/4/11 15:45,3:00,1:00 +WO83325,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,11/3/11 7:30,3:00,1:00 +WO144056,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/24/13 15:30,3:00,1:00 +WO115932,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,7/22/12 15:30,3:00,1:00 +WO170171,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,9/11/13 7:30,3:00,1:00 +WO178847,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/22/13 7:30,3:00,1:00 +WO134022,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/28/12 5:00,3:00,1:00 +WO95048,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/25/12 15:30,3:00,1:00 +WO140662,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/27/13 8:15,3:00,1:00 +WO150808,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,4/30/13 7:30,3:00,1:00 +WO83323,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/3/11 8:00,3:00,1:00 +WO155630,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,6/3/13 7:30,3:00,1:00 +WO88374,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/21/11 15:30,3:00,1:00 +WO114684,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,7/14/12 8:00,3:00,1:00 +WO99137,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/11/12 9:00,3:00,1:00 +WO174609,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,10/22/13 15:30,3:00,1:00 +WO136809,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,12/20/12 15:30,3:00,1:00 +WO83259,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,10/19/11 15:30,3:00,1:00 +WO175380,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04701,Chiller 1,TRUE,5,11/23/13 11:30,3:00,1:00 +WO191030,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,2/19/14 8:30,3:00,1:00 +WO67662,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,6/20/11 15:30,3:00,1:00 +WO186652,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,1/21/14 15:30,3:00,1:00 +WO166943,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,8/22/13 15:30,3:00,1:00 +WO75743,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,8/16/11 15:30,3:00,1:00 +WO133903,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,11/23/12 8:00,3:00,1:00 +WO37896,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,12/7/10 15:30,3:00,1:00 +WO104087,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,3/30/12 8:00,3:00,1:00 +WO143948,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,3/6/13 15:30,3:00,1:00 +WO99944,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,2/17/12 15:30,3:00,1:00 +WO58864,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,5/3/11 15:30,3:00,1:00 +WO140524,Freon Management and more specific Freon Level Check related to refrigerant circuit,refrigerant circuit,MT012,Freon Management,MT012a,Freon Level Check,CWC04009,Chiller 9,TRUE,5,2/14/13 15:30,3:00,1:00 +WO115878,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,7/22/12 15:30,3:00,1:00 +WO75756,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,8/17/11 15:30,3:00,1:00 +WO126281,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,10/18/12 5:30,3:00,1:00 +WO174855,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,10/29/13 15:30,3:00,1:00 +WO192248,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,4/11/14 11:00,3:00,1:00 +WO151993,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,5/3/13 23:00,3:00,1:00 +WO129086,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,10/17/12 21:30,3:00,1:00 +WO116670,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,8/16/12 7:00,3:00,1:00 +WO116672,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,7/13/12 23:00,3:00,1:00 +WO163691,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,8/9/13 9:00,3:00,1:00 +WO151991,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,5/3/13 22:00,3:00,1:00 +WO118310,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,8/7/12 23:00,3:00,1:00 +WO129084,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,10/28/12 9:30,3:00,1:00 +WO103221,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,5/23/12 16:30,3:00,1:00 +WO151987,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,5/24/13 12:54,3:00,1:00 +WO129090,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,2/13/13 11:04,3:00,1:00 +WO130152,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,12/27/12 11:24,3:00,1:00 +WO108715,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,5/24/12 17:00,3:00,1:00 +WO149235,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/6/13 15:30,3:00,1:00 +WO142676,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/15/13 4:30,3:00,1:00 +WO171697,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/10/13 7:00,3:00,1:00 +WO183638,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/12/14 15:30,3:00,1:00 +WO157303,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/7/13 6:00,3:00,1:00 +WO152843,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/7/13 7:30,3:00,1:00 +WO146621,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,4/24/13 14:36,3:00,1:00 +WO77906,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/6/11 15:30,3:00,1:00 +WO43949,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/12/11 15:30,3:00,1:00 +WO73723,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/5/11 15:30,3:00,1:00 +WO129177,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,10/17/12 21:00,3:00,1:00 +WO48064,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/10/11 15:30,3:00,1:00 +WO152923,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,5/13/13 17:00,3:00,1:00 +WO152927,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,4/26/13 18:00,3:00,1:00 +WO152931,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,5/24/13 9:37,3:00,1:00 +WO171039,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,9/27/13 14:30,3:00,1:00 +WO152935,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,5/22/13 20:30,3:00,1:00 +WO152929,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,5/13/13 18:00,3:00,1:00 +WO196296,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,3/29/14 15:00,3:00,1:00 +WO148410,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,3/27/13 15:30,3:00,1:00 +WO159728,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,7/8/13 17:00,3:00,1:00 +WO171033,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,10/1/13 15:15,3:00,1:00 +WO159734,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,6/28/13 13:30,3:00,1:00 +WO197296,Filter Replacement and more specific Air Filter Replacement related to control system,control system,MT014,Filter Replacement,MT014a,Air Filter Replacement,CWC04009,Chiller 9,TRUE,5,3/31/14 15:30,3:00,1:00 +WO168623,Filter Replacement and more specific Air Filter Replacement related to control system,control system,MT014,Filter Replacement,MT014a,Air Filter Replacement,CWC04009,Chiller 9,TRUE,5,9/3/13 15:30,3:00,1:00 +WO121972,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,8/20/12 8:30,3:00,1:00 +WO75660,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,8/17/11 15:30,3:00,1:00 +WO116032,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/14/12 7:15,3:00,1:00 +WO121976,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,8/20/12 15:30,3:00,1:00 +WO104981,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,3/26/12 15:30,3:00,1:00 +WO55254,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,4/1/11 11:11,3:00,1:00 +WO121980,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,8/20/12 15:30,3:00,1:00 +WO131882,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,12/4/12 15:30,3:00,1:00 +WO192262,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/2/14 15:30,3:00,1:00 +WO168573,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/6/13 7:30,3:00,1:00 +WO135494,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/25/13 7:30,3:00,1:00 +WO117464,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,7/22/12 15:30,3:00,1:00 +WO67368,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,6/23/11 15:30,3:00,1:00 +WO142616,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/18/13 4:30,3:00,1:00 +WO158999,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,7/14/13 9:00,3:00,1:00 +WO99141,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/14/12 13:00,3:00,1:00 +WO147490,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,4/7/13 15:30,3:00,1:00 +WO126380,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,10/18/12 7:30,3:00,1:00 +WO136861,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/19/13 8:00,3:00,1:00 +WO91541,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/11/12 7:30,3:00,1:00 +WO62745,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,5/18/11 15:30,3:00,1:00 +WO104193,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,4/17/12 19:30,3:00,1:00 +WO190357,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/18/14 7:30,3:00,1:00 +WO76184,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,8/25/11 15:30,3:00,1:00 +WO130038,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/3/12 15:30,3:00,1:00 +WO122047,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,8/20/12 15:30,3:00,1:00 +WO131918,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,12/4/12 15:30,3:00,1:00 +WO108713,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,5/24/12 17:30,3:00,1:00 +WO130150,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,11/14/12 22:00,3:00,1:00 +WO174851,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,11/1/13 13:30,3:00,1:00 +WO192246,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,4/15/14 15:30,3:00,1:00 +WO108717,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,5/4/12 17:00,3:00,1:00 +WO130154,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,11/14/12 23:00,3:00,1:00 +WO163693,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,7/22/13 19:00,3:00,1:00 +WO116664,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,7/23/12 19:00,3:00,1:00 +WO146551,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,4/24/13 14:35,3:00,1:00 +WO164565,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/9/13 7:30,3:00,1:00 +WO105926,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/12/12 7:30,3:00,1:00 +WO197216,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/6/14 7:45,3:00,1:00 +WO138267,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/19/13 8:00,3:00,1:00 +WO123688,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/5/12 17:30,3:00,1:00 +WO179629,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/30/13 15:30,3:00,1:00 +WO129175,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,1/17/12 19:30,3:00,1:00 +WO146623,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,4/11/13 22:00,3:00,1:00 +WO175640,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04704,Chiller 4,TRUE,5,11/24/13 15:00,3:00,1:00 +WO148408,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,3/27/13 15:30,3:00,1:00 +WO196292,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,3/29/14 15:00,3:00,1:00 +WO171029,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,9/27/13 13:00,3:00,1:00 +WO193445,Filter Replacement and more specific Air Filter Replacement related to control system,control system,MT014,Filter Replacement,MT014a,Air Filter Replacement,CWC04009,Chiller 9,TRUE,5,3/4/14 15:30,3:00,1:00 +WO176722,Filter Replacement and more specific Air Filter Replacement related to control system,control system,MT014,Filter Replacement,MT014a,Air Filter Replacement,CWC04009,Chiller 9,TRUE,5,11/5/13 15:30,3:00,1:00 +WO181736,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/4/14 15:30,3:00,1:00 +WO107660,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,4/17/12 7:30,3:00,1:00 +WO54580,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,3/25/11 15:30,3:00,1:00 +WO147019,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/6/13 15:30,3:00,1:00 +WO88142,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,11/21/11 15:30,3:00,1:00 +WO94645,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/25/12 8:00,3:00,1:00 +WO19829,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/25/10 19:53,3:00,1:00 +WO180129,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/4/13 15:30,3:00,1:00 +WO150589,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/1/13 5:30,3:00,1:00 +WO185218,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/2/14 15:30,3:00,1:00 +WO121986,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,9/3/12 15:30,3:00,1:00 +WO67488,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/23/11 15:30,3:00,1:00 +WO92652,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/2/12 15:30,3:00,1:00 +WO418185,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,9/29/22 15:00,1:00,0:00 +WO418183,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,9/29/22 14:00,1:00,0:00 +WO418742,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,10/13/22 12:30,1:15,0:00 +WO418744,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,10/13/22 14:30,1:15,0:00 +WO419485,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,10/24/22 15:00,2:00,0:00 +WO419480,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04702,Chiller 2,TRUE,5,10/6/22 19:30,2:00,0:00 +WO420286,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/8/22 14:00,1:30,0:00 +WO421035,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,11/3/22 17:00,1:00,0:00 +WO422181,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/13/22 13:00,1:30,0:00 +WO422077,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,12/5/22 14:00,1:15,0:00 +WO419390,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/12/22 15:00,2:00,0:00 +WO419788,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,11/7/22 17:00,1:15,0:00 +WO415518,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,9/29/22 13:00,1:00,0:00 +WO418189,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,10/14/22 19:00,1:00,0:00 +WO418745,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,10/13/22 15:30,1:15,0:00 +WO421032,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/3/22 15:00,1:00,0:00 +WO421033,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,11/14/22 19:30,1:00,0:00 +WO421194,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,11/28/22 14:00,2:00,0:00 +WO421195,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,11/28/22 16:00,2:00,0:00 +WO419957,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,1/19/23 20:00,12:00,0:00 +WO421031,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,11/3/22 13:00,1:00,0:00 +WO423545,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/4/23 13:00,1:15,0:00 +WO422708,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,12/16/22 12:15,1:15,0:00 +WO424004,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/6/23 17:00,1:30,0:00 +WO423896,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/4/23 14:00,1:15,0:00 +WO427271,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,6/2/23 8:00,1:00,1:00 +WO427274,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,6/2/23 9:00,1:00,1:00 +WO426337,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,2/20/23 17:00,2:00,0:00 +WO428206,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/21/23 15:00,8:00,8:00 +WO427276,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,6/2/23 10:00,1:00,1:00 +WO427277,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,6/2/23 12:00,1:00,1:00 +WO427859,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,4/10/23 10:00,2:00,2:00 +WO427042,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/23/23 17:30,1:15,0:00 +WO428681,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,4/6/23 9:00,3:00,2:00 +WO428204,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/18/23 15:00,5:00,8:00 +WO428205,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/19/23 15:00,5:00,8:00 +WO421494,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,5/31/23 15:00,6:00,1:30 +WO419884,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,11/15/22 16:00,3:00,0:00 +WO422859,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04009,Chiller 9,TRUE,5,3/6/23 19:30,40:00:00,0:00 +WO422871,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,2/28/23 19:30,40:00:00,0:00 +WO418550,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,10/3/22 19:00,2:15,0:00 +WO422737,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,12/16/22 13:15,1:15,0:00 +WO425782,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,2/13/23 19:30,1:00,0:00 +WO428172,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/19/23 10:00,1:15,1:00 +WO419479,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04701,Chiller 1,TRUE,5,10/10/22 15:30,2:30,0:00 +WO424483,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,3/30/23 15:00,2:00,0:00 +WO415517,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,7/29/22 13:00,1:00,0:00 +WO418186,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,10/14/22 16:00,1:00,0:00 +WO421036,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,TRUE,5,11/7/22 16:00,1:00,0:00 +WO415520,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,9/29/22 13:00,1:00,0:00 +WO419607,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,10/25/22 18:30,3:00,0:00 +WO426336,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/20/23 14:30,2:00,0:00 +WO424425,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,3/29/23 15:00,2:00,0:00 +WO419608,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,10/26/22 18:30,3:00,0:00 +WO425294,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/27/23 14:00,1:15,0:00 +WO427273,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,6/2/23 15:00,1:00,1:00 +WO418187,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,9/29/22 17:00,1:00,0:00 +WO424424,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/30/23 13:00,2:00,2:00 +WO427272,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,9/20/23 10:00,1:00,1:00 +WO424777,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,1/24/23 16:00,2:00,0:00 +WO425012,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/27/23 13:00,1:15,0:00 +WO419521,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04704,Chiller 4,TRUE,5,10/17/22 15:30,1:30,0:00 +WO418761,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,10/13/22 18:00,1:15,0:00 +WO428569,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/17/23 15:00,6:00,8:00 +WO423026,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,12/19/22 14:00,2:00,0:00 +WO425025,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,1/30/23 16:30,3:30,0:00 +WO424311,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,1/11/23 19:00,3:00,0:00 +WO427121,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/23/23 16:00,1:30,0:00 +WO419481,Calibration and more specific Control System Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011b,Control System Calibration,CWC04703,Chiller 3,TRUE,5,10/6/22 15:30,2:00,0:00 +WO422861,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/23/23 14:30,40:00:00,7:30 +WO423027,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,12/19/22 16:00,2:00,0:00 +WO424569,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,3/30/23 19:00,1:00,0:00 +WO423667,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/2/23 19:30,2:00,0:00 +WO427084,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/23/23 13:00,2:30,0:00 +WO422736,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,12/16/22 13:00,1:15,0:00 +WO419389,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/21/22 16:00,2:00,0:00 +WO421034,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,11/2/22 18:30,1:00,0:00 +WO418184,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,9/29/22 14:00,1:00,0:00 +WO418088,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/2/23 19:30,12:00,0:00 +WO418743,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,10/13/22 13:30,1:15,0:00 +WO427275,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,9/20/23 11:00,1:00,1:00 +WO415519,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,9/29/22 12:00,1:00,0:00 +WO424426,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,3/29/23 13:00,2:00,0:00 +WO421196,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,11/29/22 14:00,2:00,0:00 +WO421030,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,11/7/22 14:00,1:00,0:00 +WO426338,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,2/20/23 20:00,2:00,0:00 +WO418188,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,9/29/22 18:00,1:00,0:00 +WO428682,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,4/6/23 12:00,3:00,3:00 +WO419391,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/21/22 18:30,2:00,0:00 +WO424763,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,1/26/23 17:00,2:30,0:00 +WO419958,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04009,Chiller 9,TRUE,5,1/20/23 20:00,12:00,0:00 +WO427783,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,4/10/23 12:00,2:00,2:00 +WO427781,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/11/23 9:00,2:00,2:00 +WO422860,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/30/23 14:30,40:00:00,37:30:00 +WO425781,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,2/10/23 17:30,1:00,0:00 +WO421493,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/15/23 14:30,6:00,15:00 +WO425373,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,2/1/23 13:30,1:30,0:00 +WO427086,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/23/23 19:30,2:30,0:00 +WO422858,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/8/23 19:30,40:00:00,0:00 +WO419883,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,11/15/22 15:00,3:00,0:00 +WO423181,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,12/20/22 16:00,2:00,0:00 +WO421495,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,8/10/23 14:30,6:00,15:00 +WO424472,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,1/25/23 15:00,3:30,0:00 +WO425784,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,TRUE,5,2/16/23 23:00,1:00,0:00 +WO425783,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,2/17/23 20:30,1:00,0:00 +WO419882,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,11/15/22 14:00,3:00,0:00 +WO424471,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,1/23/23 15:00,2:30,0:00 +WO427080,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/21/23 19:30,3:30,0:00 +WO427085,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/23/23 15:30,2:00,0:00 +WO421496,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,8/24/23 14:30,6:00,15:00 +WO422857,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,12/16/22 13:30,1:15,0:00 +WO427079,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/21/23 15:30,2:30,0:00 +WO421315,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,11/29/22 16:00,2:00,0:00 +WO428566,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/14/23 15:00,7:00,8:00 +WO427782,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/11/23 11:00,2:00,2:00 +WO423028,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,12/20/22 14:00,2:00,0:00 +WO418865,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,10/13/22 19:00,1:15,0:00 +WO424568,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,3/30/23 18:00,1:00,0:00 +WO425778,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,2/17/23 14:30,1:00,0:00 +WO428568,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,3/9/23 12:30,1:30,5:30 +WO427083,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/22/23 19:30,2:30,0:00 +WO422862,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04010,Chiller 10,TRUE,5,7/28/23 14:30,40:00:00,7:30 +WO424686,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,1/23/23 17:00,2:00,0:00 +WO422733,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,12/16/22 12:30,1:15,0:00 +WO419881,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,11/15/22 13:00,3:00,0:00 +WO424684,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,1/24/23 14:00,2:00,0:00 +WO424567,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,3/30/23 17:00,1:00,0:00 +WO420150,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,11/8/22 13:00,1:15,0:00 +WO428567,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/12/23 15:00,9:00,8:00 +WO427081,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/22/23 14:00,3:00,0:00 +WO422864,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,3/13/23 18:30,40:00:00,0:00 +WO422734,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,12/16/22 12:45,1:15,0:00 +WO425780,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,2/8/23 18:30,1:00,0:00 +WO424310,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,1/10/23 17:30,3:00,0:00 +WO426744,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/20/23 17:30,1:15,0:00 +WO424685,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,1/23/23 19:30,2:00,0:00 +WO427082,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/22/23 15:30,1:30,0:00 +WO422863,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,12/21/22 20:30,4:00,0:00 +WO424566,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,3/30/23 16:00,1:00,0:00 +WO426467,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,2/21/23 14:30,2:00,0:00 +WO425779,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,2/17/23 17:00,1:00,0:00 +WO426653,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04006,Chiller 6,FALSE,2,3/8/23 20:40,3:00,1:00 +WO426965,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04007,Chiller 7,FALSE,2,3/1/23 13:18,3:00,1:00 +WO426652,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04006,Chiller 6,FALSE,2,2/12/23 5:00,3:00,1:00 +WO406831,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/24/22 13:00,3:00,1:00 +WO414235,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/14/22 23:30,3:00,1:00 +WO410896,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,5/23/22 17:30,3:00,1:00 +WO408740,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/11/22 12:00,3:00,1:00 +WO412942,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,6/22/22 16:00,3:00,1:00 +WO410897,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/26/22 12:30,3:00,1:00 +WO410000,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/29/22 14:30,3:00,1:00 +WO417694,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/21/22 19:00,3:00,1:00 +WO417696,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,9/22/22 19:00,3:00,1:00 +WO407802,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/24/22 19:30,3:00,1:00 +WO409266,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/7/22 19:30,3:00,1:00 +WO409657,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/20/22 19:00,3:00,1:00 +WO404565,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,4/4/22 15:00,3:00,1:00 +WO407798,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/23/22 14:30,3:00,1:00 +WO416070,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,8/17/22 18:30,3:00,1:00 +WO411127,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,5/31/22 15:00,3:00,1:00 +WO416150,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,8/12/22 18:30,3:00,1:00 +WO401256,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,9/14/22 18:30,3:00,1:00 +WO407996,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,3/30/22 18:00,3:00,1:00 +WO413480,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,6/30/22 18:00,3:00,1:00 +WO413482,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,7/1/22 13:00,3:00,1:00 +WO405429,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,3/22/22 19:30,3:00,1:00 +WO402351,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04009,Chiller 9,TRUE,5,6/10/22 23:00,3:00,1:00 +WO409476,Cleaning and more specific Internal Cleaning related to refrigerant circuit,refrigerant circuit,MT002,Cleaning,MT002b,Internal Cleaning,CWC04014,Chiller 14,FALSE,2,3/21/22 19:30,3:00,1:00 +WO410953,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,5/26/22 13:30,3:00,1:00 +WO410955,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,6/15/22 14:00,3:00,1:00 +WO415055,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,7/25/22 15:00,3:00,1:00 +WO421677,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,12/5/22 13:00,3:00,1:00 +WO418041,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,9/27/22 12:00,3:00,1:00 +WO415056,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/25/22 16:00,3:00,1:00 +WO415816,Sensor Failure and more specific Pressure Sensor Failure related to control system,control system,CS002,Sensor Failure,CS002b,Pressure Sensor Failure,CWC04006,Chiller 6,FALSE,2,7/14/22 19:30,3:00,1:00 +WO412943,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/23/22 15:30,3:00,1:00 +WO412067,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/14/22 13:00,3:00,1:00 +WO414180,Routine Maintenance and more specific Unscheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance,CWC04704,Chiller 4,FALSE,2,6/15/22 18:31,3:00,1:00 +WO408527,Control System Malfunction and more specific Control Loop Failure related to entire chiller system,entire chiller system,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04013,Chiller 13,FALSE,2,3/10/22 20:30,3:00,1:00 +WO415933,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/11/22 13:00,3:00,1:00 +WO415935,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,8/11/22 17:00,3:00,1:00 +WO407709,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,3/31/22 15:00,3:00,1:00 +WO410002,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,4/28/22 13:00,3:00,1:00 +WO411651,Control System Malfunction and more specific Control Loop Failure related to condenser,condenser,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04006,Chiller 6,FALSE,2,5/4/22 16:00,3:00,1:00 +WO416203,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04013,Chiller 13,FALSE,2,7/25/22 13:30,3:00,1:00 +WO413702,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,FALSE,2,6/7/22 12:30,3:00,1:00 +WO408529,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04006,Chiller 6,FALSE,2,3/11/22 20:30,3:00,1:00 +WO417695,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,9/22/22 17:30,3:00,1:00 +WO409948,Head Operations and more specific Reinstall Heads related to condenser,condenser,M020,Head Operations,M020b,Reinstall Heads,CWC04010,Chiller 10,FALSE,2,4/6/22 13:30,3:00,1:00 +WO412889,Cleaning and more specific Internal Cleaning related to entire chiller system,entire chiller system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04012,Chiller 12,FALSE,2,5/25/22 18:30,3:00,1:00 +WO412068,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,6/14/22 15:00,3:00,1:00 +WO409523,Control System Malfunction and more specific Communication Failure related to entire chiller system,entire chiller system,CS005,Control System Malfunction,CS005b,Communication Failure,CWC04009,Chiller 9,FALSE,2,3/29/22 14:30,3:00,1:00 +WO415934,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,8/11/22 15:00,3:00,1:00 +WO407804,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/15/22 15:30,3:00,1:00 +WO410546,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,5/20/22 19:15,3:00,1:00 +WO409656,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,5/19/22 14:00,3:00,1:00 +WO407800,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/24/22 14:00,3:00,1:00 +WO407799,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,3/23/22 18:30,3:00,1:00 +WO409654,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/18/22 19:00,3:00,1:00 +WO416036,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,8/12/22 13:00,3:00,1:00 +WO411132,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,TRUE,5,6/1/22 17:00,3:00,1:00 +WO417763,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,9/23/22 13:00,3:00,1:00 +WO404650,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,4/4/22 17:00,3:00,1:00 +WO416727,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/6/22 16:00,3:00,1:00 +WO415153,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,7/27/22 15:30,3:00,1:00 +WO416071,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,9/26/22 12:30,3:00,1:00 +WO408992,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,4/12/22 15:30,3:00,1:00 +WO411006,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,5/19/22 19:30,3:00,1:00 +WO416152,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,8/16/22 15:00,3:00,1:00 +WO407997,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,3/30/22 19:00,3:00,1:00 +WO414862,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,7/26/22 14:00,3:00,1:00 +WO407999,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,3/31/22 13:00,3:00,1:00 +WO413484,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,7/1/22 15:00,3:00,1:00 +WO411124,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,6/21/22 16:00,3:00,1:00 +WO412374,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,6/21/22 19:00,3:00,1:00 +WO411129,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,5/31/22 18:30,3:00,1:00 +WO407998,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,3/31/22 12:00,3:00,1:00 +WO413483,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,7/1/22 14:00,3:00,1:00 +WO402350,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04006,Chiller 6,TRUE,5,4/11/22 12:00,3:00,1:00 +WO405430,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,3/28/22 12:00,3:00,1:00 +WO405431,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,3/28/22 14:00,3:00,1:00 +WO402355,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,6/14/22 19:00,3:00,1:00 +WO411126,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,5/31/22 13:00,3:00,1:00 +WO416149,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/16/22 13:00,3:00,1:00 +WO410954,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,6/15/22 13:00,3:00,1:00 +WO416626,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,8/18/22 12:00,3:00,1:00 +WO406830,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/24/22 12:00,3:00,1:00 +WO418335,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/26/22 15:30,3:00,1:00 +WO416627,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/18/22 14:00,3:00,1:00 +WO408741,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,4/11/22 13:00,3:00,1:00 +WO407707,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/30/22 18:30,3:00,1:00 +WO405933,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/3/22 14:00,3:00,1:00 +WO410952,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04007,Chiller 7,TRUE,5,6/15/22 12:00,3:00,1:00 +WO405935,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,3/3/22 20:00,3:00,1:00 +WO414237,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,7/13/22 21:30,3:00,1:00 +WO412069,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,6/16/22 17:30,3:00,1:00 +WO409268,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/6/22 19:00,3:00,1:00 +WO409655,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,4/19/22 19:00,3:00,1:00 +WO407803,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/15/22 14:00,3:00,1:00 +WO410978,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,6/21/22 15:00,3:00,1:00 +WO411005,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,5/19/22 18:00,3:00,1:00 +WO410323,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,7/6/22 12:00,3:00,1:00 +WO402352,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,6/13/22 18:30,3:00,1:00 +WO416148,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,8/18/22 16:00,3:00,1:00 +WO411131,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,6/1/22 15:00,3:00,1:00 +WO401258,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,6/28/22 18:30,3:00,1:00 +WO408991,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,4/11/22 19:00,3:00,1:00 +WO413479,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,6/30/22 17:00,3:00,1:00 +WO408001,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,3/31/22 15:00,3:00,1:00 +WO408508,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04009,Chiller 9,FALSE,2,3/10/22 20:00,3:00,1:00 +WO408549,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,2,3/14/22 16:30,3:00,1:00 +WO411939,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04012,Chiller 12,FALSE,2,5/6/22 14:00,3:00,1:00 +WO408524,Refrigerant Leak and more specific Small Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001a,Small Leak,CWC04006,Chiller 6,FALSE,2,3/9/22 20:30,3:00,1:00 +WO408575,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,2,3/15/22 18:30,3:00,1:00 +WO416240,Software Error and more specific Control Software Error related to control system,control system,CS004,Software Error,CS004a,Control Software Error,CWC04014,Chiller 14,FALSE,2,7/26/22 19:30,3:00,1:00 +WO408526,Head Operations and more specific Set Up for Overhaul related to condenser,condenser,M020,Head Operations,M020c,Set Up for Overhaul,CWC04009,Chiller 9,FALSE,2,3/10/22 20:30,3:00,1:00 +WO407194,Control System Malfunction and more specific Control Loop Failure related to refrigerant circuit,refrigerant circuit,CS005,Control System Malfunction,CS005a,Control Loop Failure,CWC04006,Chiller 6,FALSE,2,3/25/22 16:30,3:00,1:00 +WO405934,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,3/3/22 16:00,3:00,1:00 +WO407708,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,3/31/22 13:00,3:00,1:00 +WO404564,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/4/22 13:00,3:00,1:00 +WO407805,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,3/15/22 19:30,3:00,1:00 +WO409267,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/5/22 19:00,3:00,1:00 +WO410977,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,6/15/22 15:00,3:00,1:00 +WO406106,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,3/3/22 18:30,3:00,1:00 +WO407849,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,3/31/22 17:00,3:00,1:00 +WO410204,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,4/28/22 15:00,3:00,1:00 +WO406945,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,3/21/22 17:30,3:00,1:00 +WO408839,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/13/22 16:00,3:00,1:00 +WO413034,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/27/22 14:30,3:00,1:00 +WO403726,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,3/14/22 13:00,3:00,1:00 +WO416069,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,8/17/22 17:30,3:00,1:00 +WO402353,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04014,Chiller 14,TRUE,5,6/29/22 12:00,3:00,1:00 +WO402356,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04012,Chiller 12,TRUE,5,6/10/22 18:30,3:00,1:00 +WO413481,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,7/1/22 12:00,3:00,1:00 +WO413485,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,7/1/22 16:00,3:00,1:00 +WO410324,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,7/6/22 13:00,3:00,1:00 +WO410326,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,7/1/22 16:00,3:00,1:00 +WO416147,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,7/25/22 13:00,3:00,1:00 +WO411130,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,6/2/22 18:30,3:00,1:00 +WO416153,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,TRUE,5,8/18/22 18:30,3:00,1:00 +WO414863,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,7/26/22 17:00,3:00,1:00 +WO401255,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/12/22 18:30,3:00,1:00 +WO408525,Draining Operations and more specific Drain Water related to condenser,condenser,M016,Draining Operations,M016a,Drain Water,CWC04009,Chiller 9,FALSE,2,3/8/22 20:30,3:00,1:00 +WO410456,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04009,Chiller 9,FALSE,2,4/14/22 16:30,3:00,1:00 +WO413176,Leak Detection and more specific Pressure Test related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008b,Pressure Test,CWC04014,Chiller 14,FALSE,2,5/30/22 18:30,3:00,1:00 +WO409048,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04012,Chiller 12,FALSE,2,3/18/22 18:30,3:00,1:00 +WO416458,Software Error and more specific Control Software Error related to control system,control system,CS004,Software Error,CS004a,Control Software Error,CWC04014,Chiller 14,FALSE,2,7/28/22 19:30,3:00,1:00 +WO407167,Leak Detection and more specific Visual Inspection related to refrigerant circuit,refrigerant circuit,MT008,Leak Detection,MT008a,Visual Inspection,CWC04006,Chiller 6,FALSE,2,2/22/22 20:30,3:00,1:00 +WO409018,Refrigerant Leak and more specific Small Leak related to refrigerant circuit,refrigerant circuit,L001,Refrigerant Leak,L001a,Small Leak,CWC04014,Chiller 14,FALSE,2,3/17/22 15:00,3:00,1:00 +WO411168,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04013,Chiller 13,FALSE,2,4/22/22 18:00,3:00,1:00 +WO409017,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04009,Chiller 9,FALSE,2,3/15/22 15:00,3:00,1:00 +WO409947,Misalignment and more specific Misalignment of Shaft related to compressor,compressor,M005,Misalignment,M005b,Misalignment of Shaft,CWC04014,Chiller 14,FALSE,2,4/6/22 18:30,3:00,1:00 +WO414236,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,7/13/22 23:30,3:00,1:00 +WO410001,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/29/22 16:30,3:00,1:00 +WO414203,Condenser Plugged and more specific Partial Plugging related to condenser,condenser,M013,Condenser Plugged,M013a,Partial Plugging,CWC04704,Chiller 4,FALSE,2,6/17/22 14:00,3:00,1:00 +WO414891,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04009,Chiller 9,FALSE,2,6/24/22 15:00,3:00,1:00 +WO407801,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,3/24/22 15:30,3:00,1:00 +WO404563,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/1/22 15:30,3:00,1:00 +WO414377,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,7/14/22 21:30,3:00,1:00 +WO412214,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,6/15/22 18:30,3:00,1:00 +WO411007,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,5/20/22 15:30,3:00,1:00 +WO410988,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/26/22 14:30,3:00,1:00 +WO418434,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/26/22 16:30,3:00,1:00 +WO402354,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04010,Chiller 10,TRUE,5,6/9/22 18:30,3:00,1:00 +WO408002,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,3/31/22 17:00,3:00,1:00 +WO410325,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,7/6/22 14:00,3:00,1:00 +WO405432,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,3/28/22 13:00,3:00,1:00 +WO411128,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/1/22 13:00,3:00,1:00 +WO416151,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,8/15/22 18:30,3:00,1:00 +WO401257,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,9/16/22 18:30,3:00,1:00 +WO408000,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,3/31/22 14:00,3:00,1:00 +WO426264,Head Operations and more specific Remove Heads related to condenser,condenser,M020,Head Operations,M020a,Remove Heads,CWC04009,Chiller 9,FALSE,2,2/14/23 16:00,3:00,1:00 +WO427329,Misalignment and more specific Misalignment of Shaft related to compressor,compressor,M005,Misalignment,M005b,Misalignment of Shaft,CWC04009,Chiller 9,FALSE,2,3/21/23 18:30,3:00,1:00 +WO427382,Misalignment and more specific Misalignment of Shaft related to compressor,compressor,M005,Misalignment,M005b,Misalignment of Shaft,CWC04014,Chiller 14,FALSE,2,3/9/23 19:00,3:00,1:00 +WO420437,Sensor Failure and more specific Temperature Sensor Failure related to control system,control system,CS002,Sensor Failure,CS002a,Temperature Sensor Failure,CWC04703,Chiller 3,FALSE,2,10/13/22 13:00,3:00,1:00 +WO424172,Sensor Failure and more specific Temperature Sensor Failure related to control system,control system,CS002,Sensor Failure,CS002a,Temperature Sensor Failure,CWC04010,Chiller 10,FALSE,2,12/29/22 20:30,3:00,1:00 +WO124903,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04701,Chiller 1,TRUE,5,5/4/23 17:50,1:00,0:00 +WO124904,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04702,Chiller 2,TRUE,5,5/3/23 12:00,1:00,0:00 +WO124905,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04703,Chiller 3,TRUE,5,5/4/23 14:00,1:00,1:00 +WO124906,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04704,Chiller 4,TRUE,5,5/4/23 15:00,1:00,1:00 +WO127077,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,4/11/23 9:00,2:00,2:00 +WO127078,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,4/11/23 11:00,2:00,2:00 +WO127079,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,4/10/23 9:00,2:00,2:00 +WO127096,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,4/10/23 11:00,2:00,2:00 +WO127292,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04013,Chiller 13,TRUE,5,4/17/23 8:00,1:30,1:00 +WO127832,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,4/26/23 7:15,1:15,0:15 +WO128018,Actuator Failure and more specific Pneumatic Actuator Failure related to control system,control system,M009,Actuator Failure,M009b,Pneumatic Actuator Failure,CWC04009,Chiller 9,FALSE,2,4/22/23 14:30,1:00,7:30 +WO128423,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04007,Chiller 7,TRUE,5,4/26/23 7:30,1:15,0:15 +WO128424,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,4/26/23 7:45,1:15,0:15 +WO128425,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,4/26/23 8:00,1:15,0:15 +WO128427,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04007,Chiller 7,TRUE,5,4/19/23 10:00,1:15,1:00 +WO128431,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,4/26/23 8:15,1:15,0:15 +WO128432,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,4/26/23 8:30,1:15,0:15 +WO128441,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,4/26/23 9:00,1:15,0:30 +WO128598,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,4/28/23 9:00,2:30,2:00 +WO128599,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,5/1/23 11:00,2:30,2:00 +WO128600,Calibration and more specific Sensor Calibration related to calibration and control elements,calibration and control elements,MT011,Calibration,MT011a,Sensor Calibration,CWC04009,Chiller 9,TRUE,5,4/28/23 13:00,8:00,1:00 +WO130575,Leak Detection and more specific Visual Inspection related to entire chiller system,entire chiller system,MT008,Leak Detection,MT008a,Visual Inspection,CWC04014,Chiller 14,FALSE,2,4/28/23 9:30,1:00,2:30 +WO130589,Refrigerant Transfer and more specific Transfer to Another Unit related to refrigerant circuit,refrigerant circuit,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit,CWC04014,Chiller 14,FALSE,2,4/27/23 12:00,1:00,5:00 +WO130601,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04704,Chiller 4,FALSE,2,4/27/23 15:00,1:00,2:30 +WO130869,Refrigerant Addition and more specific Small Amount related to entire chiller system,entire chiller system,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/10/23 12:00,1:15,1:00 +WO130976,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/31/23 15:00,1:30,1:30 +WO132874,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,5/22/23 12:30,1:00,2:00 +WO132875,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,5/22/23 15:00,1:00,2:00 +WO132876,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,5/23/23 10:30,1:00,2:00 +WO132877,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,5/22/23 10:30,1:00,3:30 +WO132878,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,5/26/23 14:30,1:00,7:30 +WO132879,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,5/23/23 12:30,1:00,2:00 +WO132880,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,TRUE,5,5/23/23 15:00,1:00,2:00 +WO134121,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/2/23 9:00,2:00,2:00 +WO134122,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,6/2/23 11:00,2:00,2:00 +WO134123,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,6/2/23 13:00,2:00,1:30 +WO134226,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,6/2/23 15:00,2:00,2:00 +WO134307,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,6/5/23 14:30,2:15,7:30 +WO135846,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,6/6/23 8:00,1:15,1:00 +WO135847,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,6/7/23 11:30,1:15,1:00 +WO135848,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,6/2/23 11:00,2:00,0:00 +WO135849,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,6/2/23 11:00,2:00,0:00 +WO135850,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,6/2/23 11:00,2:00,0:00 +WO136257,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,6/2/23 11:00,2:00,0:00 +WO136271,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,5/31/23 15:00,1:30,0:00 +WO136387,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,7/31/23 11:30,3:00,3:30 +WO136388,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,8/1/23 10:30,3:00,4:00 +WO137579,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,7/26/23 8:00,1:15,1:00 +WO138881,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,7/31/23 8:00,1:15,1:00 +WO139076,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/1/23 13:30,1:30,3:00 +WO139500,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04006,Chiller 6,TRUE,5,9/21/23 11:00,1:00,1:00 +WO139502,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04010,Chiller 10,TRUE,5,9/21/23 12:00,1:00,1:00 +WO139503,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04007,Chiller 7,TRUE,5,9/21/23 13:00,1:00,1:00 +WO139504,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04012,Chiller 12,TRUE,5,9/21/23 13:00,1:00,1:00 +WO139505,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04009,Chiller 9,TRUE,5,9/21/23 14:00,1:00,1:00 +WO139506,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04013,Chiller 13,TRUE,5,9/21/23 15:00,1:00,1:00 +WO139507,Vibration Analysis and more specific Routine Vibration Analysis related to compressor,compressor,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis,CWC04014,Chiller 14,TRUE,5,9/22/23 8:00,1:00,1:00 +WO142687,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/11/23 15:00,2:00,2:00 +WO142688,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,8/11/23 9:00,2:00,2:00 +WO142689,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,8/11/23 11:00,2:00,2:00 +WO142776,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,8/16/23 9:00,2:00,2:00 +WO144362,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,8/16/23 10:00,1:15,1:00 +WO144490,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04006,Chiller 6,TRUE,5,8/17/23 8:00,1:00,1:00 +WO144491,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,8/18/23 12:30,1:00,2:00 +WO144492,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/18/23 15:00,1:00,2:00 +WO144493,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,8/18/23 10:30,1:00,3:30 +WO144494,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,8/22/23 14:30,1:00,7:30 +WO144495,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04009,Chiller 9,TRUE,5,8/17/23 10:00,1:00,1:00 +WO144496,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04012,Chiller 12,TRUE,5,8/21/23 12:30,1:00,2:00 +WO146295,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,8/17/23 9:00,1:15,1:00 +WO146583,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/1/23 13:30,1:30,0:00 +WO148908,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,8/30/23 9:00,2:00,2:00 +WO148909,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,8/30/23 11:00,2:00,2:00 +WO148910,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,8/30/23 13:30,2:00,2:00 +WO149024,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,8/31/23 9:00,2:00,2:00 +WO150233,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,9/1/23 13:30,1:15,1:00 +WO150322,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,9/5/23 9:30,3:00,1:00 +WO150323,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,9/5/23 10:30,3:00,1:00 +WO150324,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,9/5/23 11:30,3:00,1:00 +WO150325,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04704,Chiller 4,TRUE,5,9/5/23 12:30,3:00,1:00 +WO151333,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04012,Chiller 12,FALSE,2,7/24/23 10:30,1:00,3:30 +WO151335,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04009,Chiller 9,FALSE,2,7/24/23 12:30,1:00,2:00 +WO151567,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04006,Chiller 6,FALSE,2,7/25/23 11:00,1:00,2:00 +WO153070,Software Error and more specific Monitoring Software Error related to control system,control system,CS004,Software Error,CS004b,Monitoring Software Error,CWC04010,Chiller 10,FALSE,2,8/2/23 15:00,1:00,3:30 +WO153758,Routine Maintenance and more specific Scheduled Maintenance related to control system,control system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,FALSE,2,8/4/23 15:00,1:00,3:30 +WO153820,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/1/23 15:00,1:15,1:30 +WO154346,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04014,Chiller 14,TRUE,5,9/13/23 8:00,1:15,1:00 +WO154347,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04013,Chiller 13,TRUE,5,9/13/23 9:00,1:15,1:00 +WO154348,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04009,Chiller 9,TRUE,5,9/13/23 10:00,1:15,1:00 +WO154349,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04006,Chiller 6,TRUE,5,9/13/23 11:00,1:15,1:00 +WO154406,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04010,Chiller 10,TRUE,5,9/13/23 14:30,1:15,1:00 +WO154453,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/15/23 15:00,1:30,1:00 +WO154681,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,9/13/23 13:30,1:15,1:00 +WO154682,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04012,Chiller 12,TRUE,5,9/15/23 8:00,2:15,1:00 +WO155721,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/19/23 9:00,2:00,2:00 +WO155722,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,9/19/23 11:00,2:00,2:00 +WO155723,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,9/21/23 15:00,2:00,1:30 +WO155949,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,9/21/23 13:00,2:00,2:00 +WO158687,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04013,Chiller 13,TRUE,5,9/26/23 15:00,3:00,4:30 +WO158689,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04014,Chiller 14,TRUE,5,9/27/23 14:30,3:00,7:30 +WO159763,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,9/26/23 8:00,1:15,1:00 +WO160218,Cleaning and more specific Internal Cleaning related to control system,control system,MT002,Cleaning,MT002b,Internal Cleaning,CWC04703,Chiller 3,FALSE,2,8/28/23 14:30,1:00,3:00 +WO161564,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,9/28/23 8:00,1:15,1:00 +WO161737,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,9/28/23 11:00,1:30,1:00 +WO162597,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04009,Chiller 9,FALSE,1,9/5/23 18:30,1:00,3:00 +WO162599,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04007,Chiller 7,FALSE,1,9/7/23 18:30,1:00,3:30 +WO164008,Cleaning and more specific Internal Cleaning related to condenser,condenser,MT002,Cleaning,MT002b,Internal Cleaning,CWC04007,Chiller 7,FALSE,1,9/12/23 15:00,1:00,4:00 +WO164771,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04701,Chiller 1,TRUE,5,10/3/23 14:00,2:00,2:00 +WO164772,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04702,Chiller 2,TRUE,5,10/4/23 9:00,2:00,2:00 +WO164773,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04703,Chiller 3,TRUE,5,10/4/23 11:00,2:00,2:00 +WO164853,Routine Maintenance and more specific Scheduled Maintenance related to entire chiller system,entire chiller system,MT001,Routine Maintenance,MT001a,Scheduled Maintenance,CWC04704,Chiller 4,TRUE,5,10/4/23 13:00,2:00,2:00 +WO166789,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04007,Chiller 7,TRUE,5,10/5/23 15:00,1:15,3:30 +WO166912,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04701,Chiller 1,TRUE,5,10/10/23 8:00,3:00,1:00 +WO166914,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04702,Chiller 2,TRUE,5,10/10/23 9:00,3:00,1:00 +WO166916,Oil Analysis and more specific Routine Oil Analysis related to compressor,compressor,MT010,Oil Analysis,MT010b,Routine Oil Analysis,CWC04703,Chiller 3,TRUE,5,10/10/23 11:00,3:00,2:00 +WO167258,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04010,Chiller 10,FALSE,1,9/25/23 13:00,1:00,6:00 +WO168191,Refrigerant Addition and more specific Small Amount related to refrigerant circuit,refrigerant circuit,MT004,Refrigerant Addition,MT004a,Small Amount,CWC04010,Chiller 10,TRUE,5,10/12/23 14:30,1:15,1:00 +WO169992,Lubrication and more specific Lubrication of Bearings related to compressor,compressor,MT003,Lubrication,MT003a,Lubrication of Bearings,CWC04006,Chiller 6,FALSE,1,10/6/23 11:00,1:00,4:00 \ No newline at end of file diff --git a/src/couchdb/sample_data/work_order/anomaly_to_failure_code_mapping.csv b/src/couchdb/sample_data/work_order/anomaly_to_failure_code_mapping.csv new file mode 100644 index 00000000..b8ea54f3 --- /dev/null +++ b/src/couchdb/sample_data/work_order/anomaly_to_failure_code_mapping.csv @@ -0,0 +1,17 @@ +kpi_name,anomaly_type,category,primary_code,primary_code_description,secondary_code,secondary_code_description +Flow Efficiency,High,Structural and Mechanical Failures,M005,Misalignment,M005c,Misalignment in Flow Control Valve +Flow Efficiency,High,Structural and Mechanical Failures,M006,Overheating,M006b,Overheating of Compressor +Flow Efficiency,Low,Structural and Mechanical Failures,M015,Flow Sensor Failure,M015b,Incorrect Sensor Reading +Flow Efficiency,Low,Structural and Mechanical Failures,M003,Deformation,M003a,Deformation of Blades +Delta Temperature,High,Structural and Mechanical Failures,M013,Condenser Plugged,M013c,Condenser Plugged (Severe) +Delta Temperature,High,Operational Failures,OP002,Blockage,OP002a,Partial Blockage +Delta Temperature,Low,Control System Failures,CS001,Calibration Drift,CS001a,Sensor Calibration Drift +Delta Setpoint,High,Control System Failures,CS006,Control System Lag,CS006a,Slow Response to Temperature Changes +Delta Setpoint,Low,Control System Failures,CS007,Overactive Control Logic,CS007a,Excessive Adjustments Causing Overcooling +Cooling Load,High,External Influences,EX001,Environmental Impact,EX001a,Temperature Extremes +Cooling Load,High,Human Factors,H001,Human Error,H001a,Operational Error +Cooling Load,Low,Operational Failures,OP004,Incorrect Cooling Zone Operation,OP004c,Improperly Controlled or Shut Off Zones +Return Temperature,High,Structural and Mechanical Failures,M012,Sensor/Transducer Failure,M012a,Temperature Sensor Failure +Return Temperature,High,Operational Failures,OP003,Contamination,OP003b,Contamination in Water +Return Temperature,Low,Structural and Mechanical Failures,M012,Sensor/Transducer Failure,M012b,Pressure Sensor Failure +Return Temperature,Low,Operational Failures,OP004,Flow Sensor Failure,OP004b,Incorrect Sensor Reading diff --git a/src/couchdb/sample_data/work_order/component.csv b/src/couchdb/sample_data/work_order/component.csv new file mode 100644 index 00000000..652411cc --- /dev/null +++ b/src/couchdb/sample_data/work_order/component.csv @@ -0,0 +1,15 @@ +equipment,component,explanation +chiller,compressor,"compresses the refrigerant to increase its pressure and temperature, essential for the cooling cycle." +chiller,condenser,"condenses the refrigerant by transferring heat to the cooling medium, typically water or air." +chiller,evaporator,"absorbs heat from the chilled water, causing the refrigerant to evaporate and complete the cooling process." +chiller,control system,"monitors and regulates the chiller's operations, including temperature, pressure, and flow." +chiller,temperature sensor,"measure the temperature of refrigerant, water, and other fluids within the chiller system." +chiller,pressure sensor,detect and monitor the pressure levels of refrigerant and water to ensure safe and efficient operation. +chiller,flow meter,"measure the flow rate of water, refrigerant, or coolant to maintain proper system balance." +chiller,expansion valve,"controls the flow of refrigerant into the evaporator, reducing its pressure and causing it to cool." +chiller,cooling tower,"removes heat from the condenser water by allowing it to evaporate, typically used in water-cooled systems." +chiller,motor,"drives the compressor or other mechanical components, converting electrical energy into mechanical energy." +chiller,refrigerant circuit,"the path through which refrigerant flows, including the compressor, condenser, evaporator, and expansion valve." +chiller,chilled water system,"circulates chilled water to and from the evaporator, distributing cooling to the building or process." +chiller,cooling system,"includes all components involved in the cooling process, such as compressor, condenser, evaporator, and control system." +chiller,chiller,a machine that removes heat from a liquid via a vapor-compression or absorption refrigeration cycle. \ No newline at end of file diff --git a/src/couchdb/sample_data/work_order/event.csv b/src/couchdb/sample_data/work_order/event.csv new file mode 100644 index 00000000..4657379e --- /dev/null +++ b/src/couchdb/sample_data/work_order/event.csv @@ -0,0 +1,6257 @@ +event_id,event_group,event_category,event_type,description,equipment_id,equipment_name,event_time,note +WO-16170,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2010-06-22 14:12:00, +WO16228,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-06-22 14:12:00, +WO37670,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04701,Chiller 1,2010-10-01 15:30:00, +WO39844,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04701,Chiller 1,2010-10-01 15:30:00, +WO37003,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-10-06 15:30:00, +WO39871,WORK_ORDER,CM,MT008,Leak Detection,CWC04701,Chiller 1,2010-10-06 15:30:00, +WO27384,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-10-25 18:11:00, +WO24939,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2010-10-25 19:53:00, +WO30168,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-10-25 19:53:00, +WO24544,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-10-25 19:53:00, +WO26819,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-10-25 19:53:00, +WO22054,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-10-25 19:53:00, +WO24031,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-10-25 19:53:00, +WO20954,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-10-25 19:53:00, +WO28317,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-10-25 19:53:00, +WO25733,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-10-25 19:53:00, +WO23174,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-10-25 19:53:00, +WO18352,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-10-25 19:53:00, +WO22504,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-10-25 19:53:00, +WO19829,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-10-25 19:53:00, +WO23468,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2010-10-25 20:38:00, +WO29654,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2010-10-25 20:38:00, +WO34537,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-11-09 15:30:00, +WO39877,WORK_ORDER,CM,OP004,Flow Sensor Failure,CWC04701,Chiller 1,2010-11-30 14:37:00, +WO37360,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-12-01 15:30:00, +WO39152,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-12-01 15:30:00, +WO41201,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-12-17 15:30:00, +WO42030,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2010-12-23 15:30:00, +WO42162,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-01-01 15:30:00, +WO45190,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-01-10 15:30:00, +WO43949,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-01-12 15:30:00, +WO45735,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-01-20 15:30:00, +WO49227,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-02-10 09:30:00, +WO49476,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-02-10 15:30:00, +WO48064,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-02-10 15:30:00, +WO49970,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-02-14 15:30:00, +WO49469,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-03-01 15:30:00, +WO52222,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-03-01 15:30:00, +WO54578,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-03-25 09:00:00, +WO56771,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-04-08 15:30:00, +WO58584,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-04-26 17:30:00, +WO57479,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2011-04-27 12:00:00, +WO61128,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-05-05 15:30:00, +WO62855,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-05-18 15:30:00, +WO66429,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04701,Chiller 1,2011-05-26 19:30:00, +WO64853,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-05-28 15:30:00, +WO67488,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-06-23 15:30:00, +WO69502,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-07-08 15:30:00, +WO71252,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-08-05 15:30:00, +WO73723,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-08-05 15:30:00, +WO73868,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2011-08-13 15:30:00, +WO76088,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-08-25 15:30:00, +WO77906,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-09-06 15:30:00, +WO81348,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-10-19 07:30:00, +WO84139,WORK_ORDER,PM,MT011,Calibration,CWC04701,Chiller 1,2011-10-27 07:30:00, +WO85174,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-11-03 07:30:00, +WO83265,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2011-11-03 07:30:00, +WO83136,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-11-03 08:00:00, +WO79219,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-11-04 19:30:00, +WO91911,WORK_ORDER,CM,CS004,Software Error,CWC04701,Chiller 1,2011-11-15 15:30:00, +WO88140,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-11-21 15:30:00, +WO90030,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2011-12-30 13:59:00, +WO95196,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-01-08 15:30:00, +WO93154,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-01-09 15:30:00, +WO91359,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-01-11 07:15:00, +WO95205,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-01-11 09:30:00, +WO98969,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-01-13 15:30:00, +WO95245,WORK_ORDER,CM,MT008,Leak Detection,CWC04701,Chiller 1,2012-01-17 12:03:00, +WO92234,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-01-17 15:30:00, +WO94940,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-01-18 15:30:00, +WO94645,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-01-25 08:00:00, +WO99477,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-02-06 15:37:00, +WO98509,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-02-10 07:30:00, +WO98967,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-02-11 09:45:00, +WO100432,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-02-23 07:30:00, +WO98971,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-03-03 15:00:00, +WO101736,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-03-03 15:30:00, +WO105926,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-04-12 07:30:00, +WO107358,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-04-17 15:30:00, +WO103681,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-04-17 19:30:00, +WO109525,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-05-04 15:30:00, +WO108713,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2012-05-24 17:30:00, +WO111363,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-07-05 19:30:00, +WO113290,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-07-05 19:30:00, +WO116032,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-07-14 07:15:00, +WO114384,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-07-14 08:00:00, +WO116992,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-07-22 15:30:00, +WO115876,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2012-07-22 15:30:00, +WO118312,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2012-08-08 23:00:00, +WO119532,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-08-17 04:15:00, +WO123840,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-08-25 19:30:00, +WO121787,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-09-03 15:30:00, +WO123688,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-09-05 17:30:00, +WO125749,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-10-10 07:30:00, +WO127342,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-10-11 15:30:00, +WO126279,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2012-10-18 04:30:00, +WO129489,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-11-03 15:30:00, +WO130988,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-11-03 15:30:00, +WO130761,WORK_ORDER,PM,MT011,Calibration,CWC04701,Chiller 1,2012-11-17 13:00:00, +WO133594,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2012-11-30 04:30:00, +WO130152,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2012-12-27 11:24:00, +WO136620,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-01-11 07:30:00, +WO142797,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-01-16 19:30:00, +WO139574,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-01-18 07:30:00, +WO138267,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-01-19 08:00:00, +WO135494,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-01-25 07:30:00, +WO140215,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-01-27 09:30:00, +WO145947,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-02-07 03:30:00, +WO142341,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-02-08 15:30:00, +WO142676,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-02-15 04:30:00, +WO142339,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-02-18 04:00:00, +WO143759,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-02-24 15:30:00, +WO145763,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-03-08 07:30:00, +WO147017,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-04-06 15:30:00, +WO149235,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-04-06 15:30:00, +WO150589,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-05-01 05:30:00, +WO152843,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-05-07 07:30:00, +WO151987,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2013-05-24 12:54:00, +WO155383,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-06-03 06:30:00, +WO157303,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-06-07 06:00:00, +WO160697,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-07-09 05:00:00, +WO158785,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-07-14 09:00:00, +WO160555,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2013-07-14 15:30:00, +WO163689,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2013-07-22 18:00:00, +WO163238,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-07-27 15:30:00, +WO164565,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-08-09 07:30:00, +WO166834,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-08-21 07:30:00, +WO169736,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-09-06 07:30:00, +WO168573,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-09-06 07:30:00, +WO170101,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2013-09-07 15:30:00, +WO171697,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-09-10 07:00:00, +WO178427,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-11-01 15:30:00, +WO178718,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-11-03 15:30:00, +WO174262,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-11-08 07:30:00, +WO176642,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-11-08 07:30:00, +WO178540,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-11-22 07:30:00, +WO175380,WORK_ORDER,PM,MT011,Calibration,CWC04701,Chiller 1,2013-11-23 11:30:00, +WO179629,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2013-11-30 15:30:00, +WO181734,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-01-04 15:30:00, +WO181034,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-01-08 07:30:00, +WO183638,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-01-12 15:30:00, +WO188257,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-01-26 15:30:00, +WO185216,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-01-30 07:30:00, +WO189980,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-02-18 07:30:00, +WO192262,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-03-02 15:30:00, +WO197216,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-04-06 07:45:00, +WO195081,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-04-06 08:30:00, +WO192242,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2014-04-14 15:30:00, +WO198948,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-04-25 07:30:00, +WO200360,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-05-05 07:30:00, +WO205445,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-05-19 15:30:00, +WO202268,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-05-28 07:30:00, +WO202880,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-06-02 07:30:00, +WO202869,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2014-07-09 11:00:00, +WO205070,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-07-11 15:30:00, +WO206311,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-07-15 07:30:00, +WO207556,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-07-20 15:30:00, +WO208758,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-08-04 07:30:00, +WO211035,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-08-19 07:30:00, +WO212349,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-09-03 07:30:00, +WO213627,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2014-10-10 07:30:00, +WO213355,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-10-11 15:30:00, +WO214779,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-10-12 15:30:00, +WO211680,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2014-10-15 13:50:00, +WO216091,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-10-30 07:30:00, +WO217472,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-10-31 07:30:00, +WO219588,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-11-18 07:30:00, +WO212296,WORK_ORDER,PM,MT011,Calibration,CWC04701,Chiller 1,2014-11-22 12:00:00, +WO220814,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2014-12-03 06:30:00, +WO222100,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-01-03 15:30:00, +WO223159,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-01-04 15:30:00, +WO224848,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-01-24 15:30:00, +WO225610,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-02-16 07:30:00, +WO222163,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-02-24 07:30:00, +WO227704,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-02-28 15:30:00, +WO232185,WORK_ORDER,CM,M004,Rupture,CWC04701,Chiller 1,2015-03-13 11:30:00, +WO232195,WORK_ORDER,CM,M017,Major Overhaul,CWC04701,Chiller 1,2015-03-25 03:30:00, +WO230271,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-04-07 07:30:00, +WO219673,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-04-07 19:30:00, +WO228432,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-04-08 07:30:00, +WO231326,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-04-10 07:30:00, +WO232250,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-04-28 07:30:00, +WO233483,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-05-03 15:30:00, +WO228419,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2015-05-15 20:15:00, +WO234942,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-05-19 07:30:00, +WO236093,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-06-04 07:30:00, +WO236920,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-06-15 07:30:00, +WO235604,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2015-07-02 13:30:00, +WO238021,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-07-07 07:30:00, +WO237635,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2015-07-10 07:30:00, +WO238840,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-07-25 15:30:00, +WO239943,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-07-31 07:30:00, +WO241303,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-08-20 15:30:00, +WO242838,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-09-09 15:30:00, +WO243370,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2015-09-15 15:30:00, +WO243599,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-10-03 19:30:00, +WO244888,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-10-04 14:00:00, +WO242147,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2015-10-10 16:30:00, +WO242780,WORK_ORDER,PM,MT011,Calibration,CWC04701,Chiller 1,2015-10-17 13:31:00, +WO246359,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-10-30 19:00:00, +WO246983,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-11-03 18:55:00, +WO248629,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-11-19 14:00:00, +WO249695,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2015-12-30 13:00:00, +WO248712,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-01-03 15:30:00, +WO250647,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-01-03 19:00:00, +WO253168,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-01-17 18:00:00, +WO251787,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-01-19 17:00:00, +WO250703,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-01-20 15:00:00, +WO257047,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04701,Chiller 1,2016-02-08 20:30:00, +WO254656,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-02-10 16:00:00, +WO255998,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-02-19 18:30:00, +WO257386,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-03-04 08:30:00, +WO258700,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-03-14 15:00:00, +WO259891,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-04-21 14:30:00, +WO264019,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04701,Chiller 1,2016-04-25 19:30:00, +WO261662,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-04-26 15:30:00, +WO262363,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-04-29 14:41:00, +WO256715,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2016-05-12 19:00:00, +WO264057,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-05-19 19:04:00, +WO265204,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-06-12 13:08:00, +WO266187,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-06-15 12:05:00, +WO267199,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-07-12 17:31:00, +WO268669,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-07-20 11:35:00, +WO266741,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2016-08-02 19:30:00, +WO269671,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-08-07 15:16:00, +WO270624,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-08-17 18:54:00, +WO265198,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2016-08-19 19:00:00, +WO271681,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-08-31 16:34:00, +WO272259,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2016-09-12 17:00:00, +WO273656,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-10-21 18:42:00, +WO275080,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-10-25 18:42:00, +WO272575,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-10-28 13:00:00, +WO271163,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2016-11-04 12:00:00, +WO276193,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-11-04 17:20:00, +WO277093,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2016-11-22 17:56:00, +WO271637,WORK_ORDER,PM,MT011,Calibration,CWC04701,Chiller 1,2016-12-16 17:31:00, +WO278143,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-01-10 15:49:00, +WO279375,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-01-14 14:00:00, +WO279864,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-01-17 19:30:00, +WO278994,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-01-25 20:30:00, +WO282350,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-01-31 14:29:00, +WO277166,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-02-13 17:45:00, +WO281210,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-02-14 18:09:00, +WO283384,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-03-12 14:18:00, +WO284512,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-03-12 14:22:00, +WO285446,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-03-18 14:40:00, +WO287167,WORK_ORDER,CM,MT003,Lubrication,CWC04701,Chiller 1,2017-03-24 19:30:00, +WO286469,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-04-25 16:43:00, +WO287804,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-05-13 13:55:00, +WO288898,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-05-20 14:57:00, +WO289662,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-05-21 15:09:00, +WO291691,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-06-22 15:31:00, +WO290791,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-06-22 15:50:00, +WO290786,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2017-07-21 16:40:00, +WO283924,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2017-07-21 19:00:00, +WO292615,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-07-25 13:12:00, +WO292642,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2017-07-26 14:51:00, +WO293864,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-07-28 16:29:00, +WO294867,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-08-11 16:32:00, +WO295722,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-09-07 16:39:00, +WO296827,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-09-20 12:15:00, +WO296784,WORK_ORDER,PM,MT011,Calibration,CWC04701,Chiller 1,2017-09-21 16:30:00, +WO296298,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2017-10-10 19:00:00, +WO298238,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-10-16 13:02:00, +WO298837,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-10-25 13:58:00, +WO300256,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-11-14 22:58:00, +WO301476,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-11-22 17:33:00, +WO297541,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2017-11-29 20:17:00, +WO302397,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-12-07 17:47:00, +WO305446,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04701,Chiller 1,2017-12-11 20:30:00, +WO306387,WORK_ORDER,CM,MT008,Leak Detection,CWC04701,Chiller 1,2017-12-12 20:30:00, +WO306378,WORK_ORDER,CM,MT008,Leak Detection,CWC04701,Chiller 1,2017-12-13 20:30:00, +WO303031,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2017-12-27 14:51:00, +WO303524,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2018-02-01 19:39:00, +WO306202,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-02-06 17:30:00, +WO306026,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-02-08 15:06:00, +WO308313,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-02-21 17:57:00, +WO304151,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-03-06 15:07:00, +WO309084,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-03-16 19:15:00, +WO310266,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-03-29 18:52:00, +WO311159,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-04-13 13:39:00, +WO309249,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2018-05-03 13:30:00, +WO312461,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-05-05 15:46:00, +WO313268,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-05-23 18:51:00, +WO314684,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-05-24 19:40:00, +WO315756,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-06-20 19:16:00, +WO317127,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-07-05 18:55:00, +WO318097,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-07-05 18:59:00, +WO315856,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2018-07-17 15:30:00, +WO319359,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-08-16 12:40:00, +WO320149,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-09-08 18:24:00, +WO319380,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2018-09-17 13:08:00, +WO321619,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-10-15 13:45:00, +WO322330,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-10-16 15:00:00, +WO322071,WORK_ORDER,PM,MT011,Calibration,CWC04701,Chiller 1,2018-10-25 18:30:00, +WO323620,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-10-26 12:00:00, +WO324409,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-11-01 13:00:00, +WO324165,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2018-11-27 13:00:00, +WO325727,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-12-07 12:15:00, +WO326325,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2018-12-07 16:00:00, +WO322839,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2018-12-10 13:45:00, +WO327779,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-01-14 14:30:00, +WO328585,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-01-20 00:30:00, +WO329714,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-02-15 13:00:00, +WO330496,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-03-01 16:00:00, +WO334377,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-03-16 12:00:00, +WO332187,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-03-16 13:00:00, +WO325829,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-03-21 18:00:00, +WO333080,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-03-26 23:45:00, +WO329679,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-03-31 13:00:00, +WO335520,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-04-26 23:30:00, +WO337101,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-05-02 12:00:00, +WO334370,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2019-05-15 14:00:00, +WO339848,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-06-13 14:43:00, +WO342029,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-07-27 11:00:00, +WO342833,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-08-02 13:00:00, +WO343349,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2019-08-29 12:00:00, +WO344192,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-08-30 22:30:00, +WO346811,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-08-30 22:30:00, +WO344947,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-09-05 13:00:00, +WO347515,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-09-08 13:00:00, +WO348874,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-11-04 19:30:00, +WO348443,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2019-11-06 13:00:00, +WO349560,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-11-20 14:00:00, +WO351140,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-12-09 18:00:00, +WO348015,WORK_ORDER,PM,MT011,Calibration,CWC04701,Chiller 1,2019-12-10 16:00:00, +WO351786,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2019-12-16 13:00:00, +WO353513,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-01-17 21:30:00, +WO354048,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-02-01 16:03:00, +WO355656,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-02-20 19:00:00, +WO356583,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-04-27 14:00:00, +WO358337,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-04-28 15:15:00, +WO359341,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-04-29 13:00:00, +WO361089,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-05-08 19:00:00, +WO361945,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-05-12 13:00:00, +WO363719,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-05-29 13:00:00, +WO364671,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-06-18 13:00:00, +WO366170,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-07-01 16:00:00, +WO354488,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-07-07 20:30:00, +WO341535,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2020-07-08 14:05:00, +WO366950,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-07-22 16:45:00, +WO368233,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-07-30 12:00:00, +WO350670,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-08-03 15:00:00, +WO369365,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-08-12 13:00:00, +WO370594,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-08-21 12:00:00, +WO371752,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-09-25 13:00:00, +WO372931,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-10-07 11:45:00, +WO367152,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2020-10-20 19:00:00, +WO372364,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2020-10-20 19:00:00, +WO373354,WORK_ORDER,PM,MT011,Calibration,CWC04701,Chiller 1,2020-10-26 14:30:00, +WO374218,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-11-04 14:27:00, +WO375383,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-11-12 17:00:00, +al_ba202117-a422-4bb4-a0f2-bdf1ffeca12f,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04701,Chiller 1,2020-11-24 19:00:00, +al_4e7893ea-a14f-48c5-b1b9-d6fd7c5c56d7,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04701,Chiller 1,2020-11-25 00:00:00, +al_b68ccaec-7600-4e17-b675-b9e37b365034,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04701,Chiller 1,2020-11-29 02:57:00, +al_428b9bcc-ab05-475e-abeb-d86943edbe73,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04701,Chiller 1,2020-11-30 00:00:00, +al_14e3c71b-0865-4a62-af0c-bc32eaf8e65a,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04701,Chiller 1,2020-12-02 03:19:00, +al_0e82c8a0-bc45-4644-bd9b-5d3c3620b02d,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04701,Chiller 1,2020-12-03 00:00:00, +al_67e60372-5377-4820-b0df-41e4cdcb1422,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04701,Chiller 1,2020-12-04 00:00:00, +al_d5a59c86-7803-425a-a16b-2261edb9decf,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04701,Chiller 1,2020-12-06 05:57:00, +al_74b8ed19-c56b-4a29-8a5c-53a7488ac7c2,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04701,Chiller 1,2020-12-07 00:00:00, +al_36855d81-e50a-417f-bd3a-a10b7b5da5f7,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04701,Chiller 1,2020-12-08 00:00:00, +al_38df3789-af99-48c1-a373-cf72caa36d2f,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04701,Chiller 1,2020-12-09 00:00:00, +al_703fbf8a-24f4-4488-9dfc-50718d6e7289,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04701,Chiller 1,2020-12-10 00:00:00, +WO376658,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-12-10 14:00:00, +al_39b26eb2-a78e-4d11-b2dd-5ed3054d3499,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04701,Chiller 1,2020-12-11 00:00:00, +al_b2e4d677-3b29-46ca-b4c9-f6803e4e5099,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04701,Chiller 1,2020-12-12 01:30:00, +al_fed922bc-9a21-48a3-b4d5-48b1be48203a,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04701,Chiller 1,2020-12-14 15:15:00, +al_59d50e8c-568a-4b24-884d-78ecaee0df8e,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-14 15:15:00, +al_3316ea35-7b30-48fe-a0d1-bcef43c43f5d,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-15 00:00:00, +al_b2307cd4-8046-41e7-ae3d-e7054e57c13f,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-16 00:00:00, +WO377816,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2020-12-16 13:00:00, +al_96bafd33-a62f-4279-9e44-403fad1ffcbc,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-17 00:00:00, +al_d7656226-6963-40f6-aa8e-b20fd571edda,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-18 00:00:00, +al_81b5e382-6659-4e9a-91e5-94474bc34ee9,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-19 00:00:00, +al_d0c4d3fb-20c4-4a0e-b6b5-10b417dcf357,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-20 00:00:00, +al_5b464d07-0ca5-4196-bd23-4b3e583eed48,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-21 00:00:00, +al_93f75435-fadf-4c2b-8d95-7b6712cf5ac9,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-22 00:00:00, +al_919908ba-094b-4d9e-a3da-91d13c3657b8,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-23 00:00:00, +al_f801936c-8f9b-4138-bd37-eb33e175a8bc,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-24 00:00:00, +al_defc4992-7396-49fc-8b74-6849372c6ec3,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-25 00:00:00, +al_812ba497-89c7-4b20-ae7d-e83647144ca3,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-26 00:00:00, +al_45196406-e661-464a-bd2c-51732ca73e77,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-27 00:00:00, +al_0c88f994-c933-47ba-b5e4-0f46a42954b6,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-28 00:00:00, +al_f9bb3671-4573-440d-961c-d91660cba254,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-29 00:00:00, +al_b0da9e92-7949-4d2d-bfe9-d75bc0a1f5d3,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-30 00:00:00, +al_eeb9bef8-95a0-4b07-a8d1-086c98e57df3,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2020-12-31 00:00:00, +al_990113f3-b8a1-45ea-acaa-2df5d35ea663,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-01 00:00:00, +al_21cb6a55-7641-421b-9fbf-fc91260e543b,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-02 00:00:00, +al_6f378cff-fd2b-4809-8b13-2001888494a3,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-03 00:00:00, +al_14895734-627b-4d43-8fab-ee69b566bdd4,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-04 00:00:00, +al_32bf6fb3-d1ec-4903-8bc7-294d648e3997,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-05 00:00:00, +al_05a84a2b-bbb0-4ec8-9cbd-3d03938d164c,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-06 00:00:00, +al_3e540c5b-6dbe-4fbe-bd18-d05107fbc558,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-07 00:00:00, +al_8dafa76d-303d-4635-83ce-42428b3166ae,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-08 00:00:00, +al_b8984189-8f10-45ac-9463-925b8334fefc,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-09 00:00:00, +al_4654d083-f7ed-4ae7-a961-8565e62f93a3,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-10 00:00:00, +al_176bda59-35d9-473a-a3e9-62ab9de5cc48,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-11 00:00:00, +al_b7121fe5-f682-45ec-81a2-ecb861d2ecd2,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-12 00:00:00, +WO379170,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-01-12 18:00:00, +al_a2da4633-c58b-4365-a580-75786eb1c853,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-13 00:00:00, +al_17f0b4f6-cd0d-4227-a988-0d3d3f6f353a,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-14 00:00:00, +al_6afc12b7-b804-4393-be69-31bd25180f19,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-15 00:00:00, +al_f3e4561d-fe27-40bd-9d93-9aec788468f0,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04701,Chiller 1,2021-01-16 00:00:00, +al_393515e0-e6d7-48cb-8e07-41d776f16664,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-16 00:00:00, +al_77df3d26-19d1-4b33-936c-f35a8decf349,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04701,Chiller 1,2021-01-16 09:00:00, +al_c69fad4e-598e-4548-9f2a-256bd00d8a33,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04701,Chiller 1,2021-01-17 00:00:00, +al_2d67675e-d814-4002-ab79-dd5eb67f7b93,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-17 00:00:00, +al_bee3659b-3550-4a87-8fb5-53b9b115eb2c,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04701,Chiller 1,2021-01-18 00:00:00, +al_3ca5e908-aa77-4dc1-a099-cde849c5da7b,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-18 00:00:00, +al_5437dd53-e6bd-4131-bd32-b508ae1e3208,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04701,Chiller 1,2021-01-19 00:00:00, +al_1a378a73-49f1-4dc8-9779-58741e4e4db9,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-19 00:00:00, +al_6cfd0cbe-e52a-486d-a599-7a9faed198cc,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-20 00:00:00, +al_1fae8040-42b8-4e97-a430-9aee6bf9c405,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-21 00:00:00, +al_b285b1b6-c97a-49e0-afb0-c4dcf0e78915,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-22 00:00:00, +al_06c6d052-05b3-41f0-80d1-3d1ae9902808,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-23 00:00:00, +al_e816cd9d-f1c4-4800-abd0-f81181fceb8d,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-24 00:00:00, +al_e0e9edbf-c44d-449b-a5e6-bd1ed155727a,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-25 00:00:00, +al_e6fbcf6b-38e2-4a55-aa7b-4317f1bb0f8a,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-26 00:00:00, +al_8d7bf7c3-e8a9-46eb-9499-fe59eff94e52,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-27 00:00:00, +WO380159,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-01-27 18:30:00,AW=0 CHILLER #1 +al_480d0410-5c65-4ade-8f84-2cb526b8e96e,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-28 00:00:00, +al_2c9849a4-cec7-4e73-b4c3-7853fb1482da,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-29 00:00:00, +al_ee0f126d-957c-4659-b8bd-36e6a50ff5d4,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-30 00:00:00, +al_860e1b10-44d9-4b4c-b95e-d170718e4315,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-01-31 00:00:00, +al_d7565f76-f616-4564-bcf2-b9fd2de1d0c0,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-01 00:00:00, +al_6d61ea1b-9c6b-4410-a0cd-78ea976ad667,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-02 00:00:00, +al_5bcb03d7-11f8-45ed-b4ac-9128718ebf17,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-03 00:00:00, +al_9bf9352f-4f2f-4497-9896-0cf069bfd29d,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-04 00:00:00, +al_9f4a67f1-8a23-4c53-9687-fdc2d8b42325,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-05 00:00:00, +al_e09988bb-32f1-4c04-984c-379e588067e3,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-06 00:00:00, +al_81eb01fc-4335-4471-a55d-223bab0e7815,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-07 00:00:00, +al_657f1507-c64e-4656-b579-c4e4ae917916,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-08 00:00:00, +al_3a14d5eb-af6e-4d30-a740-78da3a030285,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-09 00:00:00, +al_9786b459-b684-4d47-b634-58f819ba5f05,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-10 00:00:00, +al_20d08466-4002-41f9-8099-0c470dec7e05,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-11 00:00:00, +al_c3e6894b-5783-49cb-a47d-7a36152cab8e,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-12 00:00:00, +al_7dab28b9-1fb4-426b-9d9d-9b521d83fdd5,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-13 00:00:00, +al_b9ca9077-1a34-482e-910e-cae9adf13204,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-14 00:00:00, +al_c1271f08-fbc4-4892-9002-a9679700a9f8,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-15 00:00:00, +al_23586d9d-15d4-4186-a3ca-4c67fb4728d1,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-16 00:00:00, +al_ceb6483a-a635-43f0-8d8a-7f49ea452f0b,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04701,Chiller 1,2021-02-16 20:45:00, +al_b657417b-40fe-4ec0-8d28-8b0a1294b2dc,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04701,Chiller 1,2021-02-17 00:00:00, +al_4fdd14b4-a2e3-4c7c-83fe-849a6aaca87e,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-17 00:00:00, +WO381216,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-02-17 14:00:00, +al_6e413fbc-d24e-48a7-8f31-7ef3bc8a7b48,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-18 00:00:00, +al_f929a35a-0582-4e2b-a123-946942bf6c39,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-19 00:00:00, +al_e45068f3-c65c-4d2c-9197-e72b545746b7,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-20 00:00:00, +al_72367bda-73c9-4255-8069-9075d2ff828f,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-21 00:00:00, +al_73699ca4-44f7-479a-b4c9-d36aa5817e17,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-22 00:00:00, +al_e4c27e51-1518-4f7d-9d60-6841924c69b8,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-23 00:00:00, +al_27eb1d8b-edca-4a21-bf60-76714555ad86,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-24 00:00:00, +al_93f48fcb-0641-430f-8e92-8f6ee056dc65,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04701,Chiller 1,2021-02-24 12:30:00, +al_3c862ee2-7f8e-4aa6-824e-417c2f7ba4da,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-25 00:00:00, +al_8fce3477-6149-4fbd-8658-a5ffbd282d95,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04701,Chiller 1,2021-02-25 12:45:00, +al_701902bb-f8cd-4b61-a05d-5c279b351529,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04701,Chiller 1,2021-02-26 00:00:00, +al_00b2e5af-3ee4-498a-9634-fd73033d00e9,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-26 00:00:00, +al_98464ad9-84a8-453f-a833-6c977c4f7a4e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04701,Chiller 1,2021-02-26 00:00:00, +al_57638392-fc08-42b7-a0cc-b00cc8678387,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-27 00:00:00, +al_fd60d682-bb50-4f75-bf85-0939a1d55a1d,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-02-28 00:00:00, +al_0c481307-81c7-4df9-8234-6a9a311820a9,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-01 00:00:00, +al_e83a90c1-7ccd-4be2-a074-325425c46eee,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-02 00:00:00, +WO382390,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-03-02 13:00:00, +al_96b51914-5769-4dbb-8b19-f05a0e4af301,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-03 00:00:00, +al_52b2d96c-b7cb-4273-bdc9-b16488de4f8b,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-04 00:00:00, +al_94296f61-a005-4378-b711-b57a8c9e3dc1,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-05 00:00:00, +al_f43db813-9e20-44ca-b4e9-07939bcd90d7,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-06 00:00:00, +al_21f6f835-58f3-430f-930e-9d469c58f7a4,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-07 00:00:00, +al_7cce56c5-b030-49d4-891b-37137b3fc56c,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-08 00:00:00, +al_f7bc95f1-c74a-4799-992f-d1a137a51959,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-09 00:00:00, +al_bccf4cb7-e3fa-4468-a4a5-0500b86c3c84,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-10 00:00:00, +al_1463fccf-5585-41dc-b8c5-32717065cf39,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-11 00:00:00, +al_7ece723f-f380-4be5-b8e2-252b2c96cf51,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-12 00:00:00, +al_ffcafd9d-08be-4b34-be1e-aaae0f064758,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-13 00:00:00, +al_c9ee87f2-2c50-40ee-ab8a-5abf16308f24,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-14 00:00:00, +al_475677d6-e59f-46c9-99cf-cff638c6c300,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-15 00:00:00, +al_2d487cec-4136-42d5-a4b6-85d72326fbbe,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-16 00:00:00, +al_a7618665-0ab2-4e7b-861d-369c589a7aab,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-17 00:00:00, +al_3aa4e744-5bd3-44be-bcd9-7865bdff9455,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-18 00:00:00, +al_c9678705-3d9e-45e0-aaa6-9c409aec5c08,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04701,Chiller 1,2021-03-18 12:30:00, +al_1fa313c1-861e-4411-91b6-85f6e20f5ff0,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04701,Chiller 1,2021-03-19 00:00:00, +al_2790462f-75a1-429b-8241-56997e60ccb0,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-19 00:00:00, +al_3b08ff78-7e9a-4aca-93c2-f044dd2896ba,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-20 00:00:00, +al_995b2b2c-56cd-4fc4-8fcd-e0840dbe375d,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04701,Chiller 1,2021-03-20 17:30:00, +al_d8ee08eb-68f8-46af-b355-ff8c4775a7c5,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04701,Chiller 1,2021-03-21 00:00:00, +al_4f28b9b7-cfc2-442f-bcc9-ee284d6bc626,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04701,Chiller 1,2021-03-21 00:00:00, +WO383581,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-03-24 13:00:00, +WO380442,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-03-30 12:30:00, +WO384432,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-04-01 15:00:00, +WO385705,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-04-19 13:00:00, +WO386998,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-05-07 13:13:00, +WO388410,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-05-26 13:00:00, +WO389652,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-06-03 12:00:00, +WO376514,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-06-16 18:30:00, +WO386598,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2021-06-21 21:00:00, +WO391036,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-07-02 13:00:00, +WO392222,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-07-15 12:00:00, +WO393305,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-08-03 13:00:00, +WO394336,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-08-17 12:00:00, +WO393587,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2021-08-17 18:00:00, +WO395525,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-09-10 13:00:00, +al_1f749bee-b579-4d6d-acb5-13b467054e75,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04701,Chiller 1,2021-09-16 02:45:00, +WO396768,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-09-23 20:30:00, +WO398134,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-10-05 13:00:00, +WO398629,WORK_ORDER,PM,MT011,Calibration,CWC04701,Chiller 1,2021-10-05 13:30:00, +WO399138,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-10-07 19:19:00, +WO400169,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-11-16 15:00:00, +WO401063,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-11-29 13:00:00, +WO402108,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2021-12-11 14:00:00, +WO403251,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-01-07 13:00:00, +WO404244,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-01-19 14:00:00, +WO405034,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-02-08 16:00:00, +WO405933,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-03-03 14:00:00, +WO406945,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-03-21 17:30:00, +WO405429,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2022-03-22 19:30:00, +WO407707,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-03-30 18:30:00, +WO404563,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-04-01 15:30:00, +WO408839,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-04-13 16:00:00, +WO410000,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-04-29 14:30:00, +WO410988,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-05-26 14:30:00, +WO412067,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-06-14 13:00:00, +WO413034,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-06-27 14:30:00, +WO410323,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2022-07-06 12:00:00, +WO414235,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-07-14 23:30:00, +WO415153,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-07-27 15:30:00, +WO415517,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2022-07-29 13:00:00, +WO415933,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-08-11 13:00:00, +WO416068,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2022-08-17 16:30:00, +WO416727,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-09-06 16:00:00, +WO401255,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-09-12 18:30:00, +WO417694,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-09-21 19:00:00, +WO418434,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-09-26 16:30:00, +WO419479,WORK_ORDER,PM,MT011,Calibration,CWC04701,Chiller 1,2022-10-10 15:30:00, +WO419389,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-10-21 16:00:00, +WO420286,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-11-08 14:00:00, +WO419881,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2022-11-15 13:00:00, +WO421194,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-11-28 14:00:00, +WO422181,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-12-13 13:00:00, +WO423026,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2022-12-19 14:00:00, +WO424004,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-01-06 17:00:00, +WO424684,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-01-24 14:00:00, +WO425373,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-02-01 13:30:00, +al_1cbaee7b-ebba-4ea0-9216-8fcb7f924178,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04701,Chiller 1,2023-02-14 07:15:00, +al_aa72731c-c447-4529-9bca-0f2c63e035e5,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04701,Chiller 1,2023-02-15 00:00:00, +WO426336,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-02-20 14:30:00, +WO427121,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-03-23 16:00:00, +WO424424,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-03-30 13:00:00, +WO424566,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2023-03-30 16:00:00, +WO427781,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-04-11 09:00:00, +WO127077,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-04-11 09:00:00, +WO124903,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04701,Chiller 1,2023-05-04 17:50:00, +WO130976,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-05-31 15:00:00, +WO136271,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-05-31 15:00:00, +WO134121,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-06-02 09:00:00, +WO135848,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-06-02 11:00:00, +WO139076,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-08-01 13:30:00, +WO146583,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-08-01 13:30:00, +WO142687,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-08-11 15:00:00, +WO421493,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-08-15 14:30:00, +WO148908,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-08-30 09:00:00, +WO150322,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2023-09-05 09:30:00, +WO154453,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-09-15 15:00:00, +WO155721,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-09-19 09:00:00, +WO161737,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-09-28 11:00:00, +WO164771,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04701,Chiller 1,2023-10-03 14:00:00, +WO166912,WORK_ORDER,PM,MT010,Oil Analysis,CWC04701,Chiller 1,2023-10-10 08:00:00, +WO16128,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2010-06-22 14:12:00, +WO24702,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2010-10-25 19:53:00, +WO28879,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2010-10-25 20:38:00, +WO23146,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2010-10-25 20:38:00, +WO33678,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2010-11-04 15:30:00, +WO34527,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2010-11-19 15:30:00, +WO37888,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2010-12-02 08:00:00, +WO43396,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04010,Chiller 10,2010-12-02 15:30:00, +WO43374,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04010,Chiller 10,2010-12-02 15:30:00, +WO39303,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2010-12-02 15:30:00, +WO42022,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2010-12-20 15:30:00, +WO47686,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04010,Chiller 10,2010-12-31 15:30:00, +WO46481,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04010,Chiller 10,2011-01-04 15:20:00, +WO46479,WORK_ORDER,CM,MT002,Cleaning,CWC04010,Chiller 10,2011-01-05 11:00:00, +WO41338,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-01-06 15:30:00, +WO43685,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-01-10 15:30:00, +WO45727,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-01-20 15:30:00, +WO49522,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04010,Chiller 10,2011-01-21 15:30:00, +WO49716,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04010,Chiller 10,2011-01-24 15:30:00, +WO41340,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-01-27 07:30:00, +WO47948,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-02-09 15:30:00, +WO49962,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-02-17 15:30:00, +WO48277,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-02-22 11:30:00, +WO48279,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-02-22 14:00:00, +WO48281,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-02-22 16:30:00, +WO51992,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-03-04 15:30:00, +WO54464,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2011-03-25 15:30:00, +WO54570,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-03-30 15:30:00, +WO56531,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-04-06 15:30:00, +WO58576,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-05-03 15:30:00, +WO60838,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-05-05 15:30:00, +WO62847,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-05-17 15:30:00, +WO64639,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-05-28 15:30:00, +WO67480,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-06-20 15:30:00, +WO69145,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-07-06 15:30:00, +WO71244,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-07-22 15:30:00, +WO73327,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-08-02 15:30:00, +WO76563,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04010,Chiller 10,2011-08-12 15:30:00, +WO77354,WORK_ORDER,CM,MT002,Cleaning,CWC04010,Chiller 10,2011-08-16 00:00:00, +WO75745,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-08-16 15:30:00, +WO75756,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2011-08-17 15:30:00, +WO77566,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-09-09 15:30:00, +WO79211,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-09-19 15:30:00, +WO80982,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-10-05 15:30:00, +WO83128,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-10-19 15:30:00, +WO84788,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-10-31 15:30:00, +WO85304,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2011-11-04 15:30:00, +WO86961,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-11-23 15:30:00, +WO89751,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-12-07 15:30:00, +WO91351,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2011-12-23 15:30:00, +WO95236,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04010,Chiller 10,2011-12-27 15:30:00, +WO97032,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04010,Chiller 10,2011-12-28 14:00:00, +WO95238,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04010,Chiller 10,2011-12-28 15:30:00, +WO95201,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04010,Chiller 10,2011-12-29 15:30:00, +WO97037,WORK_ORDER,CM,MT002,Cleaning,CWC04010,Chiller 10,2011-12-30 11:30:00, +WO92652,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-01-02 15:30:00, +WO91465,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-01-03 15:30:00, +WO91463,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-01-16 15:30:00, +WO94637,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-01-23 15:30:00, +WO97329,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-02-03 15:30:00, +WO99816,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-02-17 15:30:00, +WO98177,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-02-17 16:30:00, +WO98179,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-02-17 16:30:00, +WO98175,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-02-17 16:30:00, +WO102085,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-03-15 07:30:00, +WO103217,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2012-03-21 21:30:00, +WO104445,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2012-03-26 15:30:00, +WO103673,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-03-30 08:00:00, +WO105420,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-04-02 15:30:00, +WO109027,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-05-01 15:30:00, +WO111355,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-05-22 15:30:00, +WO114829,WORK_ORDER,CM,MT002,Cleaning,CWC04010,Chiller 10,2012-05-23 15:03:00, +WO107350,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-05-24 15:30:00, +WO115338,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04010,Chiller 10,2012-05-30 15:30:00, +WO114851,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04010,Chiller 10,2012-05-30 15:30:00, +WO115398,WORK_ORDER,CM,MT002,Cleaning,CWC04010,Chiller 10,2012-06-04 09:00:00, +WO115408,WORK_ORDER,CM,MT002,Cleaning,CWC04010,Chiller 10,2012-06-06 14:00:00, +WO115399,WORK_ORDER,CM,MT002,Cleaning,CWC04010,Chiller 10,2012-06-06 15:30:00, +WO115409,WORK_ORDER,CM,MT002,Cleaning,CWC04010,Chiller 10,2012-06-07 12:30:00, +WO112804,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-06-14 15:30:00, +WO114376,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-06-19 15:30:00, +WO115673,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-07-03 15:30:00, +WO116666,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2012-07-13 22:00:00, +WO116984,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-07-20 08:00:00, +WO119019,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-08-01 15:30:00, +WO122047,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2012-08-20 15:30:00, +WO121781,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-08-24 15:30:00, +WO123146,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-09-06 15:30:00, +WO125743,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-09-28 15:30:00, +WO126854,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-10-03 15:30:00, +WO129086,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2012-10-17 21:30:00, +WO128781,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-10-25 15:30:00, +WO131357,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-11-14 07:30:00, +WO133586,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-11-23 08:00:00, +WO137165,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04010,Chiller 10,2012-11-29 15:30:00, +WO131916,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2012-12-04 15:30:00, +WO135016,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-12-06 15:30:00, +WO137700,WORK_ORDER,CM,CS002,Sensor Failure,CWC04010,Chiller 10,2012-12-11 13:00:00, +WO140795,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04010,Chiller 10,2012-12-14 15:30:00, +WO136612,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2012-12-19 15:30:00, +WO136742,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-01-04 15:30:00, +WO136744,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-01-12 08:00:00, +WO137820,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-01-16 07:30:00, +WO140207,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-02-14 15:30:00, +WO142045,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-02-15 07:30:00, +WO142329,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-02-15 13:00:00, +WO142331,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-02-15 14:00:00, +WO142313,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-02-26 12:30:00, +WO143751,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-03-06 15:30:00, +WO145444,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-03-11 15:30:00, +WO147009,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-03-18 09:00:00, +WO147844,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2013-03-25 15:30:00, +WO148698,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-04-03 15:30:00, +WO150581,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-04-15 08:30:00, +WO146547,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2013-04-24 14:34:00, +WO152933,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2013-05-01 16:30:00, +WO152460,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-05-06 15:30:00, +WO155375,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-05-23 08:00:00, +WO156826,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-06-07 07:30:00, +WO158282,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-06-13 15:30:00, +WO159734,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2013-06-28 13:30:00, +WO160329,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-07-03 15:30:00, +WO164716,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04010,Chiller 10,2013-07-10 15:30:00, +WO162717,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-07-19 15:30:00, +WO164857,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04010,Chiller 10,2013-07-23 03:30:00, +WO165048,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-08-13 15:30:00, +WO166828,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-08-20 15:30:00, +WO167200,WORK_ORDER,CM,MT013,Vibration Analysis,CWC04010,Chiller 10,2013-08-22 15:00:00, +WO168078,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-09-04 15:30:00, +WO167049,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2013-09-07 07:30:00, +WO169730,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-09-18 15:30:00, +WO171039,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2013-09-27 14:30:00, +WO171326,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-10-01 15:30:00, +WO174256,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-10-22 15:30:00, +WO176057,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-11-06 15:30:00, +WO178534,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-11-18 15:30:00, +WO180129,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-12-04 15:30:00, +WO181728,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-12-21 15:30:00, +WO181846,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-12-21 15:30:00, +WO181844,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2013-12-29 07:00:00, +WO188800,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04010,Chiller 10,2013-12-31 19:00:00, +WO183167,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-01-06 15:30:00, +WO186399,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-01-21 15:30:00, +WO188930,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-02-03 15:30:00, +WO190889,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-02-18 17:00:00, +WO192918,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-03-04 15:30:00, +WO189140,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-03-04 15:30:00, +WO189142,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-03-04 15:30:00, +WO189138,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-03-04 15:30:00, +WO195075,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-03-20 15:30:00, +WO196819,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-03-31 15:30:00, +WO199342,WORK_ORDER,CM,MT002,Cleaning,CWC04010,Chiller 10,2014-04-04 15:30:00, +WO199959,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04010,Chiller 10,2014-04-10 15:30:00, +WO199842,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04010,Chiller 10,2014-04-10 15:30:00, +WO200968,WORK_ORDER,CM,MT008,Leak Detection,CWC04010,Chiller 10,2014-04-17 15:30:00, +WO198396,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2014-04-21 15:00:00, +WO202150,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04010,Chiller 10,2014-04-25 15:30:00, +WO198945,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-04-28 15:30:00, +WO201034,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-05-07 15:30:00, +WO205441,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04010,Chiller 10,2014-05-28 15:30:00, +WO202266,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-05-31 15:30:00, +WO203398,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-06-11 15:30:00, +WO205067,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-06-19 15:30:00, +WO205704,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2014-06-27 14:30:00, +WO206152,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-07-02 15:30:00, +WO208054,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-07-28 15:30:00, +WO209512,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-08-13 15:30:00, +WO212150,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-09-03 15:30:00, +WO211131,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2014-09-04 15:30:00, +WO211032,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-09-15 15:30:00, +WO213350,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-09-19 15:30:00, +WO214598,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-09-29 15:30:00, +WO214111,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2014-09-30 14:00:00, +WO216643,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-10-23 15:30:00, +WO218411,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2014-11-03 15:30:00, +WO218165,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-11-06 15:30:00, +WO219585,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-11-28 15:30:00, +WO220623,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-12-05 07:45:00, +WO222097,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2014-12-18 15:30:00, +WO223475,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-01-05 15:30:00, +WO222160,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-01-09 15:30:00, +WO224845,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-01-21 15:30:00, +WO226121,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-02-04 15:30:00, +WO222159,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-02-20 04:30:00, +WO227701,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-02-20 15:30:00, +WO226215,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-02-26 11:30:00, +WO226216,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-02-26 15:30:00, +WO228885,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-03-02 15:30:00, +WO226209,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-03-04 07:52:00, +WO230268,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-03-17 19:30:00, +WO230716,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2015-03-23 19:30:00, +WO232204,WORK_ORDER,CM,MT002,Cleaning,CWC04010,Chiller 10,2015-03-27 13:30:00, +WO231150,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-03-31 15:30:00, +WO233612,WORK_ORDER,CM,MT002,Cleaning,CWC04010,Chiller 10,2015-04-03 15:30:00, +WO222714,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-04-09 15:30:00, +WO232072,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2015-04-28 15:30:00, +WO232536,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-04-29 15:30:00, +WO233762,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-05-05 15:30:00, +WO234939,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-05-21 15:30:00, +WO235857,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-06-02 15:30:00, +WO238258,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04010,Chiller 10,2015-06-15 15:30:00, +WO238241,WORK_ORDER,CM,M013,Condenser Plugged,CWC04010,Chiller 10,2015-06-20 15:30:00, +WO236917,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-06-22 15:30:00, +WO237863,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-06-30 15:30:00, +WO237632,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2015-07-07 15:30:00, +WO239385,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-07-21 15:30:00, +WO240295,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-08-04 15:30:00, +WO241300,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-08-17 15:30:00, +WO241397,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2015-08-22 15:30:00, +WO242650,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-09-11 15:30:00, +WO243596,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-09-22 19:30:00, +WO245284,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-10-08 19:30:00, +WO244388,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2015-10-09 14:00:00, +WO246356,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-10-29 12:30:00, +WO247362,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-11-05 16:30:00, +WO247586,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2015-11-06 17:00:00, +WO248626,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-11-16 16:00:00, +WO249530,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-12-03 14:00:00, +WO250700,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-12-16 14:00:00, +WO250699,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2015-12-29 20:00:00, +WO251134,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-01-19 21:00:00, +WO252150,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-01-24 15:00:00, +WO253165,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-01-27 16:30:00, +WO257043,WORK_ORDER,CM,MT002,Cleaning,CWC04010,Chiller 10,2016-01-27 20:30:00, +WO254493,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-02-08 16:00:00, +WO255995,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-02-19 16:00:00, +WO254587,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-02-29 13:19:00, +WO254588,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-02-29 15:39:00, +WO254589,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-02-29 16:27:00, +WO257165,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-03-04 18:30:00, +WO259219,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-03-24 18:00:00, +WO259201,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2016-04-05 19:30:00, +WO263815,WORK_ORDER,CM,MT010,Oil Analysis,CWC04010,Chiller 10,2016-04-05 19:30:00, +WO260438,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-04-13 12:00:00, +WO261379,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2016-05-01 17:00:00, +WO261659,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-05-02 19:28:00, +WO262719,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-05-13 14:04:00, +WO264054,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-05-17 18:33:00, +WO265013,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-06-08 13:38:00, +WO266633,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-06-23 16:58:00, +WO267346,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-07-11 19:50:00, +WO267221,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2016-07-16 12:00:00, +WO268666,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-07-31 15:34:00, +WO269539,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-08-05 17:20:00, +WO270621,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-08-16 15:02:00, +WO270712,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2016-08-22 13:34:00, +WO272064,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-09-07 13:29:00, +WO273033,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-09-21 18:50:00, +WO274024,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-10-12 20:52:00, +WO273707,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2016-10-17 19:30:00, +WO275077,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-10-18 17:55:00, +WO275989,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-10-31 13:29:00, +WO276176,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2016-11-03 18:09:00, +WO277090,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-11-18 16:17:00, +WO278465,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-12-10 15:12:00, +WO279372,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-12-23 14:44:00, +WO280699,WORK_ORDER,CM,MT002,Cleaning,CWC04010,Chiller 10,2016-12-28 20:30:00, +WO279438,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2016-12-29 14:01:00, +WO280705,WORK_ORDER,CM,M020,Head Operations,CWC04010,Chiller 10,2017-01-04 14:00:00, +WO280140,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-01-04 18:20:00, +WO279437,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-01-14 13:27:00, +WO282100,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-02-03 17:31:00, +WO281207,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-02-09 18:02:00, +WO284130,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04010,Chiller 10,2017-02-16 20:30:00, +WO284197,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04010,Chiller 10,2017-02-16 20:30:00, +WO282861,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-02-21 18:56:00, +WO282862,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-02-21 19:08:00, +WO282860,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-02-21 19:21:00, +WO285205,WORK_ORDER,CM,MT008,Leak Detection,CWC04010,Chiller 10,2017-02-28 20:30:00, +WO283381,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-03-01 18:33:00, +WO284290,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-03-06 20:50:00, +WO285807,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2017-03-22 18:49:00, +WO285813,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-03-24 13:27:00, +WO286778,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-04-06 19:51:00, +WO288606,WORK_ORDER,CM,MT008,Leak Detection,CWC04010,Chiller 10,2017-04-18 19:30:00, +WO287801,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-04-18 21:03:00, +WO287548,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2017-04-27 20:00:00, +WO289527,WORK_ORDER,CM,MT003,Lubrication,CWC04010,Chiller 10,2017-05-02 21:30:00, +WO288756,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-05-04 18:57:00, +WO289659,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-05-22 14:24:00, +WO291139,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-06-07 17:55:00, +WO292051,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-06-19 17:08:00, +WO292867,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-07-05 14:20:00, +WO292636,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2017-07-14 14:00:00, +WO293861,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-07-17 14:41:00, +WO294757,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-08-21 16:47:00, +WO296196,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-08-30 12:55:00, +WO296276,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2017-09-11 18:25:00, +WO297226,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-09-22 18:46:00, +WO298235,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-10-04 12:51:00, +WO298880,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2017-10-12 18:36:00, +WO299188,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-10-26 14:53:00, +WO300253,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-11-06 12:45:00, +WO301213,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-11-21 15:05:00, +WO302082,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2017-11-28 19:06:00, +WO302917,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-12-04 18:19:00, +WO305459,WORK_ORDER,CM,M020,Head Operations,CWC04010,Chiller 10,2017-12-14 20:30:00, +WO304603,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-12-27 14:41:00, +WO304604,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2017-12-29 17:20:00, +WO307016,WORK_ORDER,CM,MT002,Cleaning,CWC04010,Chiller 10,2017-12-30 20:30:00, +WO306020,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-01-12 18:58:00, +WO306019,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-01-17 18:12:00, +WO307440,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04010,Chiller 10,2018-01-17 20:30:00, +WO308117,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-02-16 19:36:00, +WO309081,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-03-05 16:08:00, +WO308217,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-03-15 14:00:00, +WO308218,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-03-15 17:00:00, +WO308219,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-03-15 19:00:00, +WO310168,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-03-23 13:51:00, +WO311576,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2018-03-27 12:56:00, +WO311156,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-04-26 14:01:00, +WO313265,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-05-07 13:53:00, +WO312514,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2018-05-10 16:30:00, +WO314541,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-05-24 19:45:00, +WO312319,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-06-04 18:23:00, +WO315753,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-06-12 13:42:00, +WO318094,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-07-11 16:57:00, +WO317053,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-07-22 16:38:00, +WO317760,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2018-08-07 16:15:00, +WO319238,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-08-17 17:59:00, +WO320909,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2018-09-21 20:08:00, +WO320146,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-09-22 14:53:00, +WO322327,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-10-08 17:43:00, +WO321416,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-10-12 13:00:00, +WO323258,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2018-10-18 15:30:00, +WO325612,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-11-16 18:30:00, +WO323482,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-11-16 20:12:00, +WO326322,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-11-29 15:00:00, +WO327214,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2018-12-14 15:00:00, +WO327514,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2018-12-14 16:00:00, +WO328582,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-01-09 15:00:00, +WO329599,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-01-24 14:00:00, +WO330493,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-02-11 13:30:00, +WO329678,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-02-11 14:00:00, +WO332036,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-02-27 19:30:00, +WO325841,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04010,Chiller 10,2019-03-05 00:30:00, +WO333250,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-03-19 12:30:00, +WO333249,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-03-19 13:00:00, +WO333248,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-03-19 14:00:00, +WO324406,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-03-21 13:00:00, +WO333077,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-03-21 14:00:00, +WO334241,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-03-28 12:00:00, +WO336975,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-05-01 12:00:00, +WO337044,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2019-05-18 13:00:00, +WO339714,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-06-11 14:00:00, +WO340675,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-06-27 15:00:00, +WO341898,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-07-02 19:30:00, +WO343346,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2019-08-13 14:00:00, +WO344079,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-08-31 15:00:00, +WO346653,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-10-01 19:30:00, +WO347226,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2019-10-12 14:00:00, +WO348765,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-11-08 14:00:00, +WO350989,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2019-12-05 16:00:00, +WO351965,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2019-12-08 20:30:00, +WO352987,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-01-02 15:00:00, +WO353399,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-01-17 00:30:00, +WO353165,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-01-20 18:30:00, +WO354570,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-02-07 20:30:00, +WO356495,WORK_ORDER,CM,MT002,Cleaning,CWC04010,Chiller 10,2020-02-11 20:00:00, +WO351298,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04010,Chiller 10,2020-02-13 19:30:00, +WO351297,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04010,Chiller 10,2020-02-21 17:30:00, +WO355528,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-02-24 15:00:00, +WO358159,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-03-27 15:00:00, +WO358249,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-04-02 18:00:00, +WO358248,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-04-02 19:30:00, +WO358247,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-04-03 12:00:00, +WO360235,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-04-20 19:30:00, +WO360972,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-05-11 12:00:00, +WO349287,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2020-05-28 13:06:00, +WO363766,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2020-05-28 13:07:00, +WO363573,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-06-03 15:00:00, +al_8df9a6ee-5a5e-4a38-831c-a428576c19da,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04010,Chiller 10,2020-06-22 07:35:00, +al_884170c5-81d8-4a63-ae64-a44c78b3ec42,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04010,Chiller 10,2020-06-23 00:00:00, +al_aac63ae5-2bbc-442c-8fe4-79f6d85e8f32,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04010,Chiller 10,2020-06-24 00:00:00, +al_196bab70-7683-419f-8953-23ad1e274b42,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04010,Chiller 10,2020-06-26 11:12:00, +WO362083,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2020-06-26 15:00:00, +WO366054,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-07-02 15:00:00, +WO367295,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-07-07 17:00:00, +al_0419b714-e6bd-47a7-a757-2e29d1d5ddb8,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04010,Chiller 10,2020-07-16 08:00:00, +al_54bcc62e-e577-4a08-ad56-a1c946997ac5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04010,Chiller 10,2020-07-25 10:58:00, +WO368170,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-07-25 13:45:00, +al_70787c5a-d9a6-4ca4-85cd-22069b325486,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04010,Chiller 10,2020-07-25 19:03:00, +al_9061952f-e451-4091-99f3-f7de771382b1,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04010,Chiller 10,2020-07-27 08:59:00, +al_ec0567ab-d81d-4422-a2c9-576f6ca525dd,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04010,Chiller 10,2020-07-27 18:30:00, +al_bfd01cf6-06b9-4289-8c42-537dfb8a368d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04010,Chiller 10,2020-08-03 00:00:00, +WO370428,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-08-19 16:38:00, +al_7051ea6a-90d5-4294-8ff4-e5fd8e17361d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04010,Chiller 10,2020-08-20 12:15:00, +WO369089,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2020-09-25 19:00:00, +WO372362,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2020-09-29 17:30:00, +WO372741,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-10-06 13:00:00, +WO374040,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-10-12 14:00:00, +WO375434,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2020-10-21 19:00:00, +WO375249,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-11-13 14:00:00, +WO377799,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2020-12-13 16:00:00, +WO377672,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2020-12-23 15:00:00, +WO380059,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-01-26 13:00:00, +WO380657,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-02-05 20:00:00, +WO382653,WORK_ORDER,CM,MT002,Cleaning,CWC04010,Chiller 10,2021-02-10 14:00:00, +WO380936,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-02-11 20:00:00, +WO382262,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-03-01 14:00:00, +WO384716,WORK_ORDER,CM,CS004,Software Error,CWC04010,Chiller 10,2021-03-05 16:30:00, +WO384327,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-03-12 20:30:00, +WO384329,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-03-15 14:30:00, +WO384328,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-03-15 15:30:00, +WO386211,WORK_ORDER,CM,M016,Draining Operations,CWC04010,Chiller 10,2021-03-26 12:00:00, +WO384256,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-03-31 13:00:00, +WO386612,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04010,Chiller 10,2021-04-02 13:00:00, +WO377505,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04010,Chiller 10,2021-04-06 18:30:00, +WO386852,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-05-06 13:00:00, +WO387148,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-05-14 12:25:00, +WO387505,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2021-05-19 12:00:00, +WO389433,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-06-02 16:00:00, +al_c1a3a6b3-43b7-4e1d-bcbf-35a8f944ddc3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04010,Chiller 10,2021-06-09 16:15:00, +WO384007,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2021-06-21 19:00:00, +WO392062,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-07-13 15:00:00, +WO393573,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-08-05 19:00:00, +WO394208,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-08-18 16:21:00, +WO396595,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-09-22 21:30:00, +WO391365,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2021-09-30 18:00:00, +WO398971,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-10-07 19:19:00, +WO398254,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2021-10-07 19:19:00, +WO400065,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-11-10 14:00:00, +al_2c68122d-8f27-48cb-bd7a-49e8045ed441,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04010,Chiller 10,2021-11-11 11:00:00, +al_477b3325-7fb3-4cca-af83-b23d40e5e291,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04010,Chiller 10,2021-11-12 09:45:00, +al_d8e7ae82-2a66-49f1-b83c-26318f5d93e6,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04010,Chiller 10,2021-11-13 00:00:00, +al_20f35950-c872-4a2f-8974-096242a75766,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04010,Chiller 10,2021-11-15 12:15:00, +al_b12ef367-88b3-44ea-b978-093f15c423d5,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04010,Chiller 10,2021-11-16 00:00:00, +al_0143f4b2-22da-43ad-a53f-f919119e9fea,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04010,Chiller 10,2021-11-16 11:15:00, +al_7b0cc509-8246-4508-bc57-461cd6a3a8cc,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04010,Chiller 10,2021-11-17 00:00:00, +al_6e7b1161-9119-4a47-a921-77f6df54dcb5,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04010,Chiller 10,2021-11-17 11:45:00, +al_72ab5746-6b58-498d-9dfa-07e837e50957,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04010,Chiller 10,2021-11-18 00:00:00, +WO400955,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2021-11-22 14:30:00, +WO396922,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2021-12-28 14:00:00, +WO402643,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2021-12-28 19:30:00, +WO403092,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-01-06 14:00:00, +WO404933,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-02-07 18:30:00, +WO404984,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-02-15 18:00:00, +WO405422,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-02-22 16:00:00, +WO407803,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-03-15 14:00:00, +WO407804,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-03-15 15:30:00, +WO407805,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-03-15 19:30:00, +WO406831,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-03-24 13:00:00, +WO407997,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2022-03-30 19:00:00, +WO409948,WORK_ORDER,CM,M020,Head Operations,CWC04010,Chiller 10,2022-04-06 13:30:00, +WO408741,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-04-11 13:00:00, +WO410897,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-05-26 12:30:00, +WO410953,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2022-05-26 13:30:00, +al_ea26cf0f-983b-424c-aac6-d0d237e11932,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04010,Chiller 10,2022-06-01 06:45:00, +WO411128,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-06-01 13:00:00, +WO402354,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04010,Chiller 10,2022-06-09 18:30:00, +WO412943,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-06-23 15:30:00, +WO413480,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2022-06-30 18:00:00, +WO415056,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-07-25 16:00:00, +WO416149,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-08-16 13:00:00, +WO416627,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-08-18 14:00:00, +WO418335,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-09-26 15:30:00, +WO418184,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2022-09-29 14:00:00, +WO418761,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2022-10-13 18:00:00, +al_57ef5815-9720-4480-95e9-961342281acc,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04010,Chiller 10,2022-10-31 09:00:00, +al_bb54aea3-818e-482d-9b6a-538af915f7c4,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04010,Chiller 10,2022-11-01 02:30:00, +al_385d14cf-9644-435c-9dc6-0604c5542c23,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04010,Chiller 10,2022-11-02 00:00:00, +al_d7329ffa-0fb8-4683-84e8-fbea0a30f753,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04010,Chiller 10,2022-11-03 00:00:00, +WO421032,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-11-03 15:00:00, +WO420150,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-11-08 13:00:00, +WO422077,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2022-12-05 14:00:00, +WO422736,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2022-12-16 13:00:00, +WO424172,WORK_ORDER,CM,CS002,Sensor Failure,CWC04010,Chiller 10,2022-12-29 20:30:00, +WO423896,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2023-01-04 14:00:00, +WO424763,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2023-01-26 17:00:00, +WO425294,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2023-01-27 14:00:00, +WO425780,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2023-02-08 18:30:00, +WO427084,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2023-03-23 13:00:00, +WO427085,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2023-03-23 15:30:00, +WO427042,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2023-03-23 17:30:00, +WO427086,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2023-03-23 19:30:00, +WO127832,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2023-04-26 07:15:00, +WO130869,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2023-05-10 12:00:00, +WO132876,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2023-05-23 10:30:00, +WO135847,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2023-06-07 11:30:00, +WO422862,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04010,Chiller 10,2023-07-28 14:30:00, +WO138881,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2023-07-31 08:00:00, +WO153070,WORK_ORDER,CM,CS004,Software Error,CWC04010,Chiller 10,2023-08-02 15:00:00, +WO146295,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2023-08-17 09:00:00, +WO144492,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2023-08-18 15:00:00, +WO153820,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2023-09-01 15:00:00, +WO154406,WORK_ORDER,PM,MT010,Oil Analysis,CWC04010,Chiller 10,2023-09-13 14:30:00, +WO427272,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2023-09-20 10:00:00, +WO139502,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04010,Chiller 10,2023-09-21 12:00:00, +WO167258,WORK_ORDER,CM,MT003,Lubrication,CWC04010,Chiller 10,2023-09-25 13:00:00, +WO161564,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2023-09-28 08:00:00, +WO168191,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04010,Chiller 10,2023-10-12 14:30:00, +WO16130,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2010-06-22 14:12:00, +WO24704,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2010-10-25 19:53:00, +WO29650,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2010-10-25 19:53:00, +WO29648,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2010-10-25 19:53:00, +WO30468,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2010-10-25 19:53:00, +WO23150,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2010-10-25 20:38:00, +WO28881,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2010-10-25 20:38:00, +WO33578,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2010-11-04 15:30:00, +WO33682,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2010-11-05 15:30:00, +WO35436,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2010-11-08 16:30:00, +WO37276,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2010-11-18 15:30:00, +WO34531,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2010-11-19 15:30:00, +WO38439,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2010-11-23 15:30:00, +WO39028,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2010-11-30 15:30:00, +WO47666,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2010-12-07 15:30:00, +WO39317,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2010-12-07 15:30:00, +WO47680,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2010-12-08 15:30:00, +WO47664,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2010-12-08 15:30:00, +WO47660,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2010-12-09 15:30:00, +WO40103,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2010-12-10 15:30:00, +WO40945,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2010-12-17 15:30:00, +WO41916,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2010-12-20 07:15:00, +WO42672,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2010-12-27 15:30:00, +WO47693,WORK_ORDER,CM,M020,Head Operations,CWC04012,Chiller 12,2010-12-28 15:30:00, +WO43559,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-01-07 15:30:00, +WO44670,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-01-10 15:30:00, +WO43689,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-01-10 15:30:00, +WO45188,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-01-10 15:30:00, +WO49524,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-01-17 15:30:00, +WO45627,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-01-19 15:30:00, +WO41342,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-01-27 15:30:00, +WO47952,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-02-09 15:30:00, +WO49892,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-02-16 15:30:00, +WO51996,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-03-04 15:30:00, +WO55300,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-03-09 15:30:00, +WO55304,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-03-10 15:30:00, +WO50139,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-03-10 16:30:00, +WO50141,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-03-11 11:30:00, +WO55302,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-03-11 15:30:00, +WO50143,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-03-11 15:30:00, +WO56281,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-03-14 15:30:00, +WO56282,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-03-15 15:30:00, +WO41344,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-03-22 15:30:00, +WO54466,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2011-03-25 07:15:00, +WO54496,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-03-30 15:30:00, +WO56535,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-04-06 15:30:00, +WO59393,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-04-15 15:30:00, +WO62619,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-04-20 15:30:00, +WO59015,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-04-27 13:45:00, +WO58504,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-05-04 15:30:00, +WO60842,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-05-05 15:30:00, +WO62775,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-05-16 15:30:00, +WO64589,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-05-28 15:30:00, +WO67410,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-06-20 15:30:00, +WO69149,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-07-06 15:30:00, +WO71174,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-07-18 15:30:00, +WO73331,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-08-02 15:30:00, +WO75326,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-08-16 15:30:00, +WO75660,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2011-08-17 15:30:00, +WO77570,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-09-09 15:30:00, +WO79143,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-09-19 15:30:00, +WO80986,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-10-05 15:30:00, +WO83058,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-10-19 15:30:00, +WO84792,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-10-31 15:30:00, +WO85218,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2011-11-04 15:30:00, +WO86881,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-11-23 15:30:00, +WO93580,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2011-12-05 15:30:00, +WO93574,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2011-12-05 15:30:00, +WO89755,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-12-07 15:30:00, +WO93643,WORK_ORDER,CM,L002,Condenser Tube Leak,CWC04012,Chiller 12,2011-12-19 03:30:00, +WO91279,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2011-12-23 15:30:00, +WO92656,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-01-02 15:30:00, +WO91467,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-01-03 15:30:00, +WO97170,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-01-19 15:30:00, +WO91469,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-01-19 15:30:00, +WO94583,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-01-20 15:30:00, +WO100102,WORK_ORDER,CM,M020,Head Operations,CWC04012,Chiller 12,2012-01-27 15:30:00, +WO100088,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-01-28 03:30:00, +WO97333,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-02-03 15:30:00, +WO99750,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-02-23 15:30:00, +WO99930,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-03-08 16:00:00, +WO99934,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-03-08 16:00:00, +WO99932,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-03-08 16:00:00, +WO102089,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-03-15 08:00:00, +WO104447,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2012-03-26 15:30:00, +WO103979,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-03-26 15:30:00, +WO103617,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-03-30 09:00:00, +WO105424,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-04-02 15:30:00, +WO107294,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-04-19 15:30:00, +WO109031,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-05-01 15:30:00, +WO111301,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-05-21 15:30:00, +WO112808,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-06-14 15:30:00, +WO114324,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-06-22 15:30:00, +WO115677,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-07-02 15:30:00, +WO103219,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2012-07-16 14:15:00, +WO116928,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-07-20 09:30:00, +WO119025,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-08-13 08:00:00, +WO116668,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2012-08-16 07:00:00, +WO121974,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2012-08-20 15:30:00, +WO121729,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-08-24 15:30:00, +WO125507,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04012,Chiller 12,2012-08-25 12:00:00, +WO123150,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-09-06 15:30:00, +WO125669,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-09-26 15:30:00, +WO126733,WORK_ORDER,CM,MT013,Vibration Analysis,CWC04012,Chiller 12,2012-09-28 18:00:00, +WO126858,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-10-03 15:30:00, +WO128717,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-10-25 15:30:00, +WO131361,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-11-14 08:00:00, +WO133532,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-11-23 08:00:00, +WO137166,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-11-29 15:30:00, +WO131880,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2012-12-04 15:30:00, +WO135020,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-12-06 15:30:00, +WO136562,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-12-18 15:30:00, +WO138265,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-12-20 11:00:00, +WO136746,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-12-22 15:30:00, +WO141893,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-12-24 15:30:00, +WO136748,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2012-12-26 15:30:00, +WO144350,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-01-01 15:30:00, +WO137824,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-01-10 15:30:00, +WO138279,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-01-10 15:30:00, +WO145993,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-01-23 15:30:00, +WO145946,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-02-05 03:30:00, +WO129088,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2013-02-13 11:04:00, +WO142049,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-02-15 08:00:00, +WO140165,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-02-18 08:30:00, +WO148446,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-02-26 03:30:00, +WO143195,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-02-26 15:30:00, +WO143191,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-03-05 11:30:00, +WO143193,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-03-05 15:30:00, +WO143711,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-03-06 09:00:00, +WO147800,WORK_ORDER,CM,L003,Evaporator Leak,CWC04012,Chiller 12,2013-03-13 03:30:00, +WO149471,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-03-13 03:30:00, +WO145448,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-03-14 08:00:00, +WO146969,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-03-20 09:30:00, +WO147846,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2013-03-25 15:30:00, +WO148702,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-04-01 15:30:00, +WO150541,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-04-22 09:00:00, +WO146549,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2013-04-24 14:35:00, +WO152927,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2013-04-26 18:00:00, +WO153515,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2013-04-27 03:30:00, +WO153534,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2013-04-27 03:30:00, +WO147307,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-04-29 08:00:00, +WO152464,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-05-06 15:30:00, +WO155339,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-05-23 08:00:00, +WO156830,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-06-07 08:00:00, +WO158223,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-06-13 15:30:00, +WO160331,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-07-03 15:30:00, +WO159728,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2013-07-08 17:00:00, +WO162682,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-07-19 15:30:00, +WO165050,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-08-13 15:30:00, +WO174035,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-08-23 15:30:00, +WO168080,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-09-04 15:30:00, +WO166991,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2013-09-07 08:00:00, +WO166792,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-09-09 09:03:00, +WO169694,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-09-17 15:30:00, +WO171033,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2013-10-01 15:15:00, +WO171328,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-10-01 15:30:00, +WO174218,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-10-23 15:30:00, +WO176059,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-11-06 15:30:00, +WO178498,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-11-18 15:30:00, +WO180131,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-12-04 15:30:00, +WO181692,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-12-27 15:30:00, +WO181848,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2013-12-30 15:30:00, +WO183169,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-01-07 15:30:00, +WO186361,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-01-21 15:30:00, +WO188940,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-02-03 15:30:00, +WO190855,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-02-18 15:30:00, +WO192920,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-03-05 15:30:00, +WO190192,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-03-06 15:30:00, +WO190190,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-03-06 15:30:00, +WO190194,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-03-06 15:30:00, +WO195037,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-03-19 15:30:00, +WO196821,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-03-31 15:30:00, +WO199840,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-04-09 15:30:00, +WO198921,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-04-24 15:30:00, +WO203967,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-04-29 15:30:00, +WO195367,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-04-29 15:30:00, +WO201035,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-05-06 15:30:00, +WO198390,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2014-05-09 09:45:00, +WO202246,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-05-31 15:30:00, +WO203399,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-06-11 15:30:00, +WO205036,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-06-18 15:30:00, +WO206153,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-07-01 15:30:00, +WO208022,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-07-29 15:30:00, +WO209517,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-08-13 08:30:00, +WO211015,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-08-27 15:30:00, +WO212151,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-09-03 15:30:00, +WO211104,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2014-09-04 15:30:00, +WO213335,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-09-15 15:30:00, +WO215862,WORK_ORDER,CM,MT003,Lubrication,CWC04012,Chiller 12,2014-09-26 15:30:00, +WO214599,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-09-29 15:30:00, +WO216626,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-10-20 15:30:00, +WO218389,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2014-11-03 15:30:00, +WO218166,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-11-06 15:30:00, +WO219568,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-11-19 15:30:00, +WO221591,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2014-11-23 15:30:00, +WO220624,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-12-05 15:30:00, +WO222162,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-12-16 15:30:00, +WO222072,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-12-18 15:30:00, +WO222161,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2014-12-28 15:30:00, +WO223476,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-01-09 15:30:00, +WO224827,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-01-20 15:30:00, +WO226122,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-02-04 15:30:00, +WO227682,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-02-19 15:30:00, +WO228886,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-03-02 15:30:00, +WO227063,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-03-04 10:00:00, +WO227062,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-03-09 19:00:00, +WO227061,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-03-09 19:30:00, +WO230250,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-03-16 19:30:00, +WO230717,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2015-03-23 19:30:00, +WO231151,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-03-31 15:30:00, +WO230412,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-04-17 15:30:00, +WO234878,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2015-04-23 15:30:00, +WO232532,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-04-29 15:30:00, +WO233763,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-05-05 15:30:00, +WO234921,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-05-20 15:30:00, +WO235858,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-06-02 15:30:00, +WO236899,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-06-18 15:30:00, +WO237864,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-06-29 15:30:00, +WO239367,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-07-23 15:30:00, +WO240296,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-08-04 15:30:00, +WO241282,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-08-17 15:30:00, +WO241370,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2015-08-22 15:30:00, +WO242651,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-09-11 15:30:00, +WO243571,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-09-23 19:30:00, +WO245285,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-10-06 18:00:00, +WO246339,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-10-19 19:30:00, +WO247363,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-11-05 16:30:00, +WO247570,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2015-11-06 14:00:00, +WO248610,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-11-20 00:30:00, +WO249531,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-12-04 14:00:00, +WO250701,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-12-16 15:30:00, +WO251119,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2015-12-22 17:00:00, +WO250702,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-01-09 20:00:00, +WO252151,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-01-22 13:30:00, +WO253149,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-01-27 20:30:00, +WO254494,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-02-09 14:00:00, +WO255989,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-02-23 16:00:00, +WO257166,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-03-03 14:00:00, +WO256049,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-03-07 20:07:00, +WO256050,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-03-10 08:17:00, +WO256051,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-03-14 19:57:00, +WO259212,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-03-23 15:00:00, +WO259372,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-04-05 13:30:00, +WO259202,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2016-04-06 12:00:00, +WO260439,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-04-12 12:30:00, +WO261653,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-05-01 20:21:00, +WO262720,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-05-08 18:26:00, +WO264048,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-05-18 16:42:00, +WO265014,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-06-07 20:19:00, +WO266627,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-06-22 18:25:00, +WO267347,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-07-15 19:53:00, +WO268660,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-07-22 15:00:00, +WO269540,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-08-04 18:19:00, +WO270608,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-08-16 15:00:00, +WO270688,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2016-08-22 13:24:00, +WO272065,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-09-06 16:48:00, +WO273027,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-09-26 15:00:00, +WO273704,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2016-10-04 15:00:00, +WO274025,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-10-05 16:32:00, +WO275070,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-10-18 17:53:00, +WO276161,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2016-11-03 18:04:00, +WO275990,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-11-04 17:19:00, +WO277078,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-11-17 19:28:00, +WO279300,WORK_ORDER,CM,MT010,Oil Analysis,CWC04012,Chiller 12,2016-11-21 20:30:00, +WO278466,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-12-18 15:53:00, +WO279440,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-12-21 20:19:00, +WO279365,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2016-12-21 20:21:00, +WO280141,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-01-12 15:27:00, +WO282012,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2017-01-12 22:30:00, +WO281965,WORK_ORDER,CM,MT008,Leak Detection,CWC04012,Chiller 12,2017-01-12 22:30:00, +WO282574,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2017-01-24 20:30:00, +WO282577,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2017-01-25 20:30:00, +WO282101,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-02-03 17:28:00, +WO281201,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-02-08 16:48:00, +WO284127,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-02-16 20:30:00, +WO285177,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04012,Chiller 12,2017-02-17 20:30:00, +WO283377,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-02-20 19:45:00, +WO283422,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-02-25 19:33:00, +WO285176,WORK_ORDER,CM,MT008,Leak Detection,CWC04012,Chiller 12,2017-02-25 20:30:00, +WO285185,WORK_ORDER,CM,MT008,Leak Detection,CWC04012,Chiller 12,2017-02-26 20:30:00, +WO283423,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-02-28 15:40:00, +WO283424,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-03-01 20:02:00, +WO286298,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2017-03-03 20:30:00, +WO285711,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2017-03-04 20:30:00, +WO284291,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-03-06 20:53:00, +WO285809,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-03-22 17:03:00, +WO286346,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2017-03-31 13:55:00, +WO285956,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-03-31 15:24:00, +WO287685,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2017-04-01 19:30:00, +WO287688,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2017-04-02 19:30:00, +WO286779,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-04-06 19:43:00, +WO287789,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2017-04-06 21:30:00, +WO287791,WORK_ORDER,CM,M005,Misalignment,CWC04012,Chiller 12,2017-04-07 21:30:00, +WO288200,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2017-04-12 19:30:00, +WO287797,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-04-20 17:48:00, +WO289103,WORK_ORDER,CM,MT008,Leak Detection,CWC04012,Chiller 12,2017-04-20 19:30:00, +WO288757,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-05-04 19:01:00, +WO287545,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2017-05-05 18:00:00, +WO289648,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-05-24 13:08:00, +WO291140,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-06-13 13:11:00, +WO292047,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-06-21 15:10:00, +WO292868,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-07-06 12:20:00, +WO293856,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-07-25 15:18:00, +WO294758,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-08-25 18:46:00, +WO296191,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-09-03 13:46:00, +WO292634,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2017-09-05 19:09:00, +WO298051,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04012,Chiller 12,2017-09-07 19:30:00, +WO297227,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-09-08 15:13:00, +WO296250,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2017-09-11 18:27:00, +WO298877,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2017-10-02 15:00:00, +WO298229,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-10-03 18:25:00, +WO300559,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2017-10-06 19:30:00, +WO299189,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-10-26 14:56:00, +WO303208,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2017-11-02 19:30:00, +WO300248,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-11-07 20:48:00, +WO303307,WORK_ORDER,CM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2017-11-08 20:30:00, +WO301214,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-11-21 15:01:00, +WO304474,WORK_ORDER,CM,M016,Draining Operations,CWC04012,Chiller 12,2017-11-26 20:30:00, +WO302914,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-11-28 13:29:00, +WO302069,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2017-11-28 13:50:00, +WO303963,WORK_ORDER,CM,MT002,Cleaning,CWC04012,Chiller 12,2017-11-28 20:30:00, +WO304898,WORK_ORDER,CM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2017-11-29 00:00:00, +WO305385,WORK_ORDER,CM,MT015,Filling Operations,CWC04012,Chiller 12,2017-12-01 20:30:00, +WO304606,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-12-20 18:40:00, +WO304605,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2017-12-20 18:41:00, +WO306900,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2018-01-03 20:30:00, +WO305622,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2018-01-03 21:32:00, +WO306021,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2018-01-08 15:05:00, +WO305992,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2018-01-08 15:07:00, +WO306942,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2018-01-08 20:30:00, +WO306935,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2018-01-09 20:30:00, +WO306934,WORK_ORDER,CM,M018,Replacement,CWC04012,Chiller 12,2018-01-10 20:30:00, +WO307456,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04012,Chiller 12,2018-01-15 20:30:00, +WO308118,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2018-02-16 19:34:00, +WO305627,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2018-02-16 19:44:00, +WO309075,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2018-03-06 15:12:00, +WO308741,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2018-03-10 14:00:00, +WO308743,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2018-03-10 15:00:00, +WO308742,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2018-03-10 20:30:00, +WO333653,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2019-03-29 14:00:00, +WO333652,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2019-04-20 21:00:00, +WO337243,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2019-05-19 14:00:00, +WO338522,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2019-05-31 19:30:00, +WO339014,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2019-06-05 12:00:00, +WO340903,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2019-06-26 17:30:00, +WO338520,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2019-06-26 18:00:00, +WO343429,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2019-08-15 18:00:00, +WO346999,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2019-10-02 14:30:00, +WO347359,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2019-10-12 14:45:00, +WO352097,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2019-12-08 13:00:00, +WO353169,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2020-01-20 20:30:00, +WO351300,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2020-03-04 19:30:00, +al_dc4f7d5d-4525-4a99-809a-a72c83bb613a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-03-20 15:15:00, +al_d78090b6-d1f7-4d0e-b46d-d9f1d3830ace,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-03-21 00:00:00, +al_3d2f841b-2bc4-4c3d-b690-4a08159532ab,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-03-22 00:00:00, +al_539d34ed-5c74-4a99-a85e-0fc100993ae4,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-03-23 00:00:00, +al_a204d7ed-69b9-48c6-b779-710d7face33c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-03-23 11:45:00, +al_1f1115fc-4d1d-4826-bf83-5dba8109f75d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-03-23 17:53:00, +al_d990da4f-a708-42ab-917d-cf0a557cf277,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-03-24 00:00:00, +al_0cb0fbcf-245a-4da7-aded-c494a6b0b7b4,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-03-25 10:30:00, +al_d76b4dbc-a88a-4569-9675-db928475b6a2,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-03-26 00:00:00, +al_21dd711b-9a0e-48cf-bb64-db02ac1efd65,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-03-26 11:30:00, +al_ce2f81e4-13cc-4e83-ba18-393963372e06,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-03-27 00:00:00, +al_b430db67-119a-4917-9224-5e1e1a0e7f63,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-03-28 00:00:00, +al_ddfb4d68-0b59-4a44-8eac-69a19b2fc9ed,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-03-29 00:00:00, +al_27061969-dec1-4fcd-b345-d03ff4e3edc7,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-03-30 00:00:00, +al_40649480-0dac-40cf-95ca-0c00300f6eeb,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-03-30 10:09:00, +al_a345648f-1d07-4ec6-8caa-5aeae30296f7,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-03-31 00:00:00, +al_b5090a9d-2d36-4c46-9eb8-449e29a6488b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-03-31 05:21:00, +al_1d85239f-cd2a-43de-acd2-5906380502d7,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-01 00:00:00, +al_8dcca2cf-9d1f-49c1-b1cc-11b4de8e1876,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-01 09:00:00, +al_251ee5c3-0515-4448-9b0a-9a8b89cccc44,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-02 00:00:00, +al_48443e9a-665c-4adf-86d6-d378a9820424,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-02 15:50:00, +al_0a93bbe7-a807-482f-ba2c-fbde43a8eff1,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-03 00:00:00, +al_360f8345-ed5d-42b4-96cd-b41c6ec4cc57,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-04 00:00:00, +al_32f81151-cf92-4270-a40e-5db4a3cd7b63,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-05 00:00:00, +al_a8776b29-a93a-40d9-9943-c6527946fa49,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-06 00:00:00, +al_adbac566-c48f-4b10-af8b-bea13e4c0243,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-06 20:15:00, +al_7acc8e6e-3c4e-40b3-ba1b-9aaf7de2c698,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-07 00:00:00, +al_d2a98e49-1fe4-4aa9-b0d1-0f1de3dfe011,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-07 12:15:00, +al_4c1c8ac1-7032-4502-9009-96eda95045bc,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-08 00:00:00, +al_b2e135f6-c3a3-458f-80e5-345a31aeb313,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-09 00:00:00, +al_ef2d3322-f17c-45ee-b7b3-908420d620db,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-10 00:00:00, +al_386e085a-776a-48f7-abc8-3777758e8ca5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-11 00:00:00, +al_5b0d73d3-9a67-4a5b-a2d8-3a8dd3978cc3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-12 00:00:00, +al_3359c95f-a30b-43ea-b380-05fe454262a0,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-13 00:00:00, +al_fa62f818-3148-4d7b-8696-1bd8c825b8f1,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-14 00:00:00, +al_95a45a8e-b590-43b0-a3d4-8c722c4916c6,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-15 00:00:00, +al_f7fdc6a5-ed02-4673-84e7-caf6790141d8,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-16 00:00:00, +al_5f24a48c-793c-4182-b387-d13d9450ef48,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-17 00:00:00, +al_6bffc095-0261-46f8-9f56-7aef96c985ac,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-18 00:00:00, +al_dc42f28d-4262-43d9-92a2-eac0bec81206,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-19 00:00:00, +al_fe60db32-d266-4afe-9e40-ecc51a4a9d02,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-20 00:00:00, +al_93adeddc-9c2d-483f-a670-33c2942aa1ef,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-21 00:00:00, +al_8fcc0f8f-00df-4ff9-8207-a86f771f7a76,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-22 00:00:00, +al_cc0d2adf-5251-49ac-ae13-030ff69c4f3d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-23 00:00:00, +WO360239,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2020-04-23 13:00:00, +al_9d8b2042-c97b-4120-ae77-21b7d849ab08,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-24 00:00:00, +al_5b871c90-e8b4-4ec6-bbb2-c5a960fddea8,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-25 01:30:00, +al_3784e6f0-bf15-4c33-82fc-7c9035456a28,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-26 00:00:00, +al_f880b978-d3ec-48e3-8968-0937ca8c9722,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-27 00:00:00, +al_b7656e05-823e-4e0a-af61-c46dcf631bba,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-28 00:00:00, +al_c2cd9a81-4279-4c5c-98ec-21c4226b40b9,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-29 00:00:00, +al_531745fe-ebaf-4c98-b99d-3958d7dcf122,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-04-30 00:00:00, +al_b8853fb9-0eaf-4268-9262-37361936fc8b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-01 00:00:00, +al_930136ca-95ea-48f8-a982-4d148db1c648,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-02 00:00:00, +al_8d42a61d-2ab0-4699-9f5c-da1333f711eb,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-03 00:00:00, +al_fe7fbaa7-79ec-439e-bd15-3e3a9b77866c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-04 00:00:00, +al_9555450f-eb52-4b04-a755-e03466df7ad8,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-05 00:00:00, +al_66a9ae4a-f8a1-4522-ba4f-0cb6b8d90b54,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-06 00:00:00, +al_bda84568-da60-4b41-be5b-32749a6ae80c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-07 00:00:00, +al_95597820-0c1e-4745-8736-fef63ec77b6c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-08 00:00:00, +al_fa0f1d67-fa42-4598-8e2c-6a68ffb7c575,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-09 00:00:00, +al_f4fc89d9-d137-49fa-bcd7-d2e34afb698a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-09 10:37:00, +al_62a888d9-5b37-41d5-8dba-1b11653e6241,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-10 00:00:00, +al_9abde987-0010-4c2f-a9c1-35d493cb7313,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-15 17:45:00, +al_13ab9f53-4179-4b58-ac96-6d2136ca400b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-16 00:00:00, +al_a12f78de-94b4-400c-952a-22edd353ae19,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-17 00:00:00, +al_6c7ff612-c1b4-4129-a047-23499b5cad5d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-18 00:00:00, +al_3003ee83-4f11-437f-94b1-6792c2704d26,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-18 09:00:00, +al_03904edf-24d6-4c55-a2b2-03ab9dca958c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-19 00:00:00, +al_53a55015-00eb-46ab-a25d-a83c8ebb157f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-19 18:15:00, +al_dd0e59e1-0c88-4fdc-90ee-98d685a4a507,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-20 02:15:00, +al_576e53b6-ab56-4309-b4e5-0c2206364b90,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-20 14:30:00, +al_41f72091-3da2-4c74-a3af-fd5012a41b6a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-21 01:30:00, +al_24864b6c-4d8c-4eed-8dc9-a55b08ffbc1c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-21 12:45:00, +al_a11646e0-3a1b-4f11-8e38-3e1c52835760,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-22 00:00:00, +al_070b60d4-fd60-46e7-b924-6f76003d11d9,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-22 17:00:00, +al_9b7a3643-7fb0-4942-8aad-0ed21f312200,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-23 00:00:00, +al_816b10c3-4b20-43db-866e-3040d7f6dba6,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-24 00:45:00, +al_1ddef6ff-1f85-41b1-b762-3b525a92e32a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-25 00:00:00, +al_cd584041-912c-438c-8ac8-17c28e8e6284,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-26 00:00:00, +al_14cbf98f-eab3-436b-829c-660c6acc24f3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-26 19:15:00, +al_11b5c74a-80d3-4139-8897-774f0bfabb5f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-27 00:00:00, +al_95ed156a-e93e-4ffe-b70a-f2b0c900d603,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-28 00:00:00, +al_23df1422-6211-410c-9508-e67071939ef4,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-05-28 10:30:00, +WO351299,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2020-05-28 13:00:00, +WO364520,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2020-06-12 19:00:00, +WO362354,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2020-06-26 16:00:00, +WO349387,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2020-07-08 13:57:00, +WO367299,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2020-07-09 13:00:00, +WO369199,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2020-07-23 19:00:00, +WO371658,WORK_ORDER,CM,MT013,Vibration Analysis,CWC04012,Chiller 12,2020-08-24 19:00:00, +al_e1d3a77f-70d2-46ee-a158-080cd79eb9aa,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-09-25 09:30:00, +al_7af9b23a-dd73-46a2-b4ff-3419e3b3729a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-09-26 09:15:00, +al_e6636529-b5b5-4233-95da-601bb220ae75,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-09-27 09:15:00, +al_69160659-0e9a-4843-b389-7f9a29376275,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-09-28 00:00:00, +al_74c8124e-f1a1-4611-aafb-f7732b4f8a36,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-09-28 09:30:00, +al_be7d7ccd-8a74-4354-912b-9d9b29e59564,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-09-29 00:00:00, +WO372505,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2020-09-29 12:00:00, +al_71c4e6df-d6fe-4c4d-920c-e150e9d100b9,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-09-29 13:15:00, +WO372504,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2020-09-29 16:00:00, +al_c315dd8e-e98e-4d11-8de1-27c83f255ec1,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-09-30 12:45:00, +WO373677,WORK_ORDER,CM,MT002,Cleaning,CWC04012,Chiller 12,2020-10-01 19:30:00, +al_2571a18b-c4eb-4173-b1aa-b85900765f6f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-10-03 10:15:00, +al_ab6de90f-0cf8-4d96-8cf1-059c9b81ba3f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-10-03 14:00:00, +al_4d1c42ee-2bed-473a-a029-89483a584f87,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-10-04 10:45:00, +al_f0943c5a-985d-47b0-b2fd-d0dc55db2960,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-10-04 14:00:00, +al_22b9c7c6-6cf9-455f-8838-aacb8844c9c8,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-10-05 09:15:00, +al_1077159b-8be8-4bfb-85df-4e57e2c1fe74,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-10-06 07:45:00, +al_8170d0df-500b-4246-a778-ec7b8bb9db7b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-10-07 09:30:00, +al_1de419f5-936c-42d0-a444-6ab2b7756b0a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-10-08 06:15:00, +al_88cb11c6-0725-46a9-bad8-b51a551ec95d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-10-09 03:15:00, +al_b7831803-40c4-4dad-abdd-9a3834ea4601,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-10-10 03:45:00, +al_f3e169c2-8a6f-41f6-bb18-a6e803433f55,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-10-10 09:30:00, +al_c542a7a1-8b30-4db2-a2c4-e70eafe3702b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-10-11 00:00:00, +al_00fab481-f950-45c2-87c6-8a6d1f26f015,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-10-11 10:30:00, +al_3b2994ad-c54c-4849-868c-a12ae52d2a7f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-10-12 04:30:00, +al_56b93fa0-7805-421a-9c24-02e5f92e67c7,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-10-13 04:00:00, +al_27937475-d7f9-4a0e-97cb-04ef81c8f8a2,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-10-14 14:11:00, +WO374044,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2020-10-15 19:00:00, +al_d9bd0737-4f47-42a4-889e-61d565607c13,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-11-17 16:00:00, +al_c3b05924-8d8a-436c-9186-6a36e134ed16,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-11-18 00:00:00, +WO377533,WORK_ORDER,CM,MT011,Calibration,CWC04012,Chiller 12,2020-11-18 20:30:00, +al_1ca47166-65e7-4304-9805-2fc1e9ec61fe,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-11-19 00:00:00, +al_048e9b09-9e4d-489b-a3b6-862bed1958ec,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-11-19 14:30:00, +al_2190d1e2-279a-4989-bea4-60c5350b3ab7,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-11-20 00:00:00, +al_777a9883-33e7-4ca2-915d-8774bd9e1cc4,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-11-20 11:03:00, +al_2afd20eb-5143-4c58-8431-fbb6e05f8360,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-11-21 00:00:00, +al_779b7043-0d85-43a2-b488-d71fd813bac3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-11-22 00:00:00, +al_858ddaff-59c6-4ef8-957b-5fc3ca1927aa,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-11-22 20:00:00, +al_ce63ab36-7879-45fb-ab5c-e96aec54415e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-11-23 02:15:00, +al_2c1d6f88-f174-4f9a-98f5-4dc8124f927f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-11-24 00:00:00, +al_ecf68fb2-5d7b-4384-b37a-da8a3f820ac7,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-11-25 00:00:00, +al_cea225fe-cde3-4b0f-b4fe-e80fa0d638c8,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-11-26 00:00:00, +al_aac53d3f-f16d-42db-bfa2-50e717cc8be0,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-11-27 00:00:00, +al_29cf731c-3c77-47c6-be81-c1661961ef46,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-11-28 00:00:00, +al_34b2f14c-ad74-4851-85cf-868f8b762f5c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-11-29 00:00:00, +al_da701980-d6ff-4b30-92f6-1936012b1228,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2020-11-30 00:00:00, +WO377970,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2020-12-18 21:00:00, +WO382058,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2021-01-26 20:30:00, +WO380661,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2021-02-02 18:00:00, +WO377507,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2021-02-08 15:30:00, +WO383519,WORK_ORDER,CM,MT002,Cleaning,CWC04012,Chiller 12,2021-02-22 20:30:00, +WO383535,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2021-02-23 16:30:00, +WO383528,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04012,Chiller 12,2021-02-23 16:45:00, +WO384658,WORK_ORDER,CM,MT002,Cleaning,CWC04012,Chiller 12,2021-03-05 16:30:00, +WO377508,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2021-03-16 18:30:00, +al_35e06caf-494a-460e-9b90-fb5c6a840e58,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04012,Chiller 12,2021-04-15 16:25:00, +WO387152,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2021-05-11 13:30:00, +WO390303,WORK_ORDER,CM,MT002,Cleaning,CWC04012,Chiller 12,2021-05-19 19:00:00, +WO388298,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2021-05-21 17:30:00, +WO389853,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2021-06-14 19:00:00, +WO384009,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2021-06-21 20:00:00, +WO393577,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2021-08-04 13:00:00, +WO396009,WORK_ORDER,CM,MT002,Cleaning,CWC04012,Chiller 12,2021-08-16 18:14:00, +WO396099,WORK_ORDER,CM,MT002,Cleaning,CWC04012,Chiller 12,2021-08-18 18:16:00, +WO396538,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2021-08-24 15:16:00, +WO395423,WORK_ORDER,CM,MT002,Cleaning,CWC04012,Chiller 12,2021-08-26 18:49:00, +WO398078,WORK_ORDER,CM,MT002,Cleaning,CWC04012,Chiller 12,2021-09-14 19:39:00, +al_8da2b000-42e7-40e2-82ea-85492f6d7b9e,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-09-16 02:45:00, +WO398124,WORK_ORDER,CM,MT002,Cleaning,CWC04012,Chiller 12,2021-09-16 19:06:00, +WO398506,WORK_ORDER,CM,MT002,Cleaning,CWC04012,Chiller 12,2021-09-20 18:00:00, +WO398456,WORK_ORDER,CM,MT002,Cleaning,CWC04012,Chiller 12,2021-09-22 12:30:00, +al_a8ce221a-18a5-4e0f-8e5f-ce6f222b6f5a,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-09-23 06:00:00, +al_dc9c3d5c-562f-4b93-ade8-d3db6addca57,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-09-30 12:15:00, +al_5f7c198e-fd4f-4919-afeb-95e62dd33955,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-10-01 00:00:00, +WO391367,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2021-10-01 13:00:00, +al_e66624eb-0103-401c-b55e-c71cca163fe3,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-10-04 07:30:00, +al_54f32047-e7fa-4e83-842a-f925f27d7af3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-10-07 10:11:00, +WO398375,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2021-10-07 19:19:00, +WO397976,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2021-10-07 19:19:00, +WO400112,WORK_ORDER,CM,MT002,Cleaning,CWC04012,Chiller 12,2021-10-08 14:00:00, +al_7ffbab92-e174-44d1-947b-a8664e50c7f3,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-10-19 06:45:00, +al_6956aa4f-2acf-4f81-afe4-4cef30ddbafe,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-10-26 03:45:00, +WO400557,WORK_ORDER,CM,MT010,Oil Analysis,CWC04012,Chiller 12,2021-10-26 15:56:00, +al_9a43e0ed-8515-4585-b81a-4fbb2f5a59cc,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-10-27 00:00:00, +al_76ae8725-c2aa-48fc-adec-a20a6d440003,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-10-28 00:00:00, +al_cbf15aa4-354d-428d-a0bc-f8258e40dbae,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-10-29 00:00:00, +al_8a33893b-5be5-48bd-9b44-6cc8a4a7f848,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-10-30 00:00:00, +al_77b4ec1d-6b4e-42db-b055-a185144fb1c4,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-10-31 00:00:00, +al_3a2ffd37-8929-4f68-96a1-8cdf6d69084b,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-11-01 00:00:00, +al_d6dc1a9a-14c1-4bee-b6b3-be2ce474ab34,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-11-01 03:47:00, +al_0e78a9f7-7806-4794-b4bf-ac6ee483198e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-11-01 09:30:00, +al_48d8b44d-c930-4c38-adfc-7738a5012859,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-11-01 14:45:00, +al_b71394e1-e802-4ffc-a5a1-56b8694004e4,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-11-02 00:00:00, +al_0d3ba5f3-f997-416a-96df-f774a863657e,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-11-03 07:15:00, +al_58ea56af-2035-40ac-9bfa-5a1a03bec3f1,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-11-09 09:30:00, +al_6380ab32-95c4-4578-81db-8d38afc7dab9,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-11-10 00:00:00, +WO400069,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2021-11-11 19:30:00, +WO401673,WORK_ORDER,CM,MT002,Cleaning,CWC04012,Chiller 12,2021-11-15 20:30:00, +al_53cfb37f-d6be-4667-b71a-eccefdfa4b03,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-11-16 02:30:00, +al_bcaa4e49-3d01-4d05-a832-9e990de9bfeb,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-11-17 00:00:00, +al_c0a366e2-3d1c-440c-adcb-90337159e428,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-11-17 07:45:00, +al_1ed577a7-ebbe-48c4-8bf6-5ef7cee799e0,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-11-17 08:01:00, +al_2ca01564-9353-417b-8fae-f41a8737b32e,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2021-11-18 00:00:00, +al_1da324da-bc71-4b84-a7ea-8063d6fa17b7,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-11-18 07:45:00, +al_1949cd2d-3298-4e6c-bcdc-2fdc0a55dab5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-11-19 00:00:00, +al_5bd8057d-6cef-47c3-bd1d-5ffe61ba2247,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-11-20 00:00:00, +al_9e1ef489-bd01-4baa-bdf7-286560787ce4,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-11-21 00:00:00, +al_34787f7d-8a41-4e4d-8433-4f18644e92f4,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-11-22 00:00:00, +al_d649db92-dfa2-48b4-932e-a8217afc6fb1,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-11-22 18:04:00, +al_2d66df6f-c9bb-4b25-961c-72f8168683e5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-11-23 00:00:00, +al_c9dec245-f591-42d8-80c6-21df73435079,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-11-24 00:00:00, +al_e9d4d54c-f7f0-451c-8a87-6d3b04779ab3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-11-25 00:00:00, +al_77ae239f-aae2-4b48-ade0-098805918b10,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-11-26 00:00:00, +al_5823f98c-0b24-4a45-8cc3-2f2ed6e09ba3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-11-26 05:32:00, +al_b8937e9b-7b3b-449c-915e-58da14fcb146,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2021-11-27 00:00:00, +WO402406,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04012,Chiller 12,2021-12-01 20:30:00, +WO396924,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2021-12-28 16:00:00, +WO402780,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2021-12-29 20:30:00, +WO405426,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2022-02-22 18:30:00, +WO409048,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04012,Chiller 12,2022-03-18 18:30:00, +WO407999,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2022-03-31 13:00:00, +WO411939,WORK_ORDER,CM,MT003,Lubrication,CWC04012,Chiller 12,2022-05-06 14:00:00, +WO412889,WORK_ORDER,CM,MT002,Cleaning,CWC04012,Chiller 12,2022-05-25 18:30:00, +WO411132,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2022-06-01 17:00:00, +WO402356,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2022-06-10 18:30:00, +WO402355,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2022-06-14 19:00:00, +WO411124,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2022-06-21 16:00:00, +WO412374,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2022-06-21 19:00:00, +WO413482,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2022-07-01 13:00:00, +WO416153,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2022-08-18 18:30:00, +al_f03fbb1c-8911-41ee-bcba-914e99858a69,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-08-30 07:00:00, +al_d387f5f0-7e8b-4cd2-ac19-5f47a4d3f15a,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-08-31 05:45:00, +al_b1fcab41-5179-4392-82b2-6fd9ab2512fd,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-09-01 00:00:00, +al_84746640-15c2-4350-a0fe-8982e4af37a3,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-09-02 00:00:00, +WO418550,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2022-10-03 19:00:00, +al_23fcb248-d7ba-4259-b776-104ff6d21597,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-10-12 08:15:00, +al_b095150b-0e82-4a61-8ecf-8863ea959e90,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-10-13 00:00:00, +WO418865,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2022-10-13 19:00:00, +al_27d12cc2-7ccc-4d5b-b780-81684c8089f7,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-10-14 00:00:00, +WO418186,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2022-10-14 16:00:00, +al_0e817afd-a207-4d1a-b07d-038534110e4f,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-10-15 00:00:00, +al_b45502f9-92cc-45e9-8348-ea1ece07e419,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-10-16 00:00:00, +al_db401ea9-ad9c-4834-b4ac-371cd6510202,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-10-17 00:00:00, +al_5772a336-85af-428a-aa28-d63d97d3bd04,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2022-10-18 00:51:00, +al_82f7d867-0da7-4178-b8b4-6b331284022b,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-10-18 07:15:00, +al_bd0c4421-7147-45a2-9ca5-d163d307e432,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2022-10-18 10:30:00, +al_98ddec7b-a243-4be6-aa9e-c61a8790b3b8,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-10-19 00:00:00, +al_6b5ffea3-0b5e-426a-8a56-3156d555088a,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-10-25 03:00:00, +al_d211d663-eb6d-4401-a699-03c7706e933f,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-10-26 03:45:00, +al_5ca6e366-e9c4-442e-b0b7-9f4acde1378c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2022-10-27 14:18:00, +al_814d7c3c-bdf6-4e81-9373-49789f3a39a3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2022-10-28 00:00:00, +al_00fb6a3d-59ef-4b2b-997f-9f8724666cd5,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-03 04:45:00, +al_9dfd3797-b1c2-433f-bd84-c2229e92623d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-04 00:00:00, +al_4c7a96f5-5833-4f50-9b84-f7027b208354,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-05 04:45:00, +al_7fc28ae7-2184-494d-a14a-72ddc305ec1d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-06 00:00:00, +al_87f57978-75b4-4c46-b722-cf89afb7bd49,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-07 00:00:00, +WO421036,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2022-11-07 16:00:00, +al_d7266b45-7387-4021-83ea-06fbd8f0b793,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-08 00:00:00, +al_c056fa66-8e40-46a8-8483-691ec757c796,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-09 00:00:00, +al_7c6b7aa2-aad1-4975-bed6-f4913aaef185,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-10 00:00:00, +al_0ebadbfb-1be8-4f17-bfe3-2fd39d43cd51,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-11 00:00:00, +al_e6cb8143-41c0-4211-ad32-32689bfd0627,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-14 05:45:00, +al_1a4d224b-5dcc-448b-a2b3-70f4dd1b993c,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-15 00:00:00, +al_5f860c80-f05d-4e6d-ad3c-9015d04b0272,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-16 00:00:00, +al_32553325-7a0d-4803-b2f7-7962929d1ae9,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-17 00:00:00, +al_bc6db03a-d940-45bc-8a05-f0b4c729fb06,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-18 00:00:00, +al_ea948e07-1165-4bb5-b08a-d38775609f4a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2022-11-19 00:00:00, +al_e3e6bc19-2514-4d14-8feb-fc8d3c8d8389,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2022-11-20 00:00:00, +al_8493546e-843f-4768-bb37-0b3dbd85e081,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-20 03:45:00, +al_5dc05731-b9dc-4e40-a164-4b02a300752a,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-21 00:00:00, +al_e260ea60-ada1-4513-8087-4d9fb1e8b7aa,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-22 00:00:00, +al_8e27d12f-372b-4a38-98ce-5cfa15d22b58,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-23 00:00:00, +al_ab38ac3a-2256-4149-9a30-af1897490abb,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2022-11-24 00:00:00, +al_db7cb6ca-7e93-407a-9945-6160c61650ac,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-24 04:15:00, +al_2fdb2232-c520-4cc1-aa30-8b4313602c93,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-25 00:00:00, +al_1ade562e-428a-4e58-bf2b-2a9f275830a2,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2022-11-26 01:12:00, +al_6dacc446-b325-4bde-996e-6b2169136a82,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2022-11-27 00:00:00, +al_197a530b-08dd-49be-8192-5b884a538e27,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04012,Chiller 12,2022-11-28 00:00:00, +al_9309b188-19ee-4daf-99a2-6f90ccc2cfe6,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-29 00:00:00, +al_7c542c70-4187-47eb-b05a-bcdac0cd1f2b,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-11-30 00:00:00, +al_4e4cc593-b2c8-4fad-aeb3-eb4564b48716,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04012,Chiller 12,2022-12-01 00:00:00, +WO422857,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2022-12-16 13:30:00, +WO422863,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2022-12-21 20:30:00, +WO425784,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2023-02-16 23:00:00, +WO422864,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04012,Chiller 12,2023-03-13 18:30:00, +WO128441,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2023-04-26 09:00:00, +WO132880,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2023-05-23 15:00:00, +WO427274,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2023-06-02 09:00:00, +WO134307,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2023-06-05 14:30:00, +WO151333,WORK_ORDER,CM,MT002,Cleaning,CWC04012,Chiller 12,2023-07-24 10:30:00, +WO144496,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04012,Chiller 12,2023-08-21 12:30:00, +WO154681,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2023-09-13 13:30:00, +WO154682,WORK_ORDER,PM,MT010,Oil Analysis,CWC04012,Chiller 12,2023-09-15 08:00:00, +WO139504,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04012,Chiller 12,2023-09-21 13:00:00, +WO16132,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2010-06-22 14:12:00, +WO24706,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2010-10-25 19:53:00, +WO23152,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2010-10-25 20:38:00, +WO28883,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2010-10-25 20:38:00, +WO33684,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2010-11-05 15:30:00, +WO34533,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2010-11-19 15:30:00, +WO43399,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04013,Chiller 13,2010-12-05 15:30:00, +WO43370,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04013,Chiller 13,2010-12-05 15:30:00, +WO47671,WORK_ORDER,CM,MT002,Cleaning,CWC04013,Chiller 13,2010-12-06 15:30:00, +WO37892,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2010-12-07 15:30:00, +WO39319,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2010-12-07 15:30:00, +WO40399,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2010-12-13 15:30:00, +WO47730,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2010-12-17 15:30:00, +WO42026,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2010-12-20 15:30:00, +WO43691,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-01-10 15:30:00, +WO44196,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-01-17 15:30:00, +WO49527,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-01-20 15:30:00, +WO45731,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-01-20 15:30:00, +WO49715,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-01-24 15:30:00, +WO40404,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-01-27 15:30:00, +WO40402,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-01-28 15:30:00, +WO47954,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-02-09 15:30:00, +WO49966,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-02-16 15:30:00, +WO51998,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-03-10 15:30:00, +WO55298,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-03-13 15:00:00, +WO51309,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-03-22 08:00:00, +WO51311,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-03-22 09:00:00, +WO57192,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-03-22 15:30:00, +WO57195,WORK_ORDER,CM,MT002,Cleaning,CWC04013,Chiller 13,2011-03-23 15:30:00, +WO51307,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-03-24 16:30:00, +WO55177,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2011-03-25 07:15:00, +WO57241,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-03-25 10:30:00, +WO57245,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-03-29 15:30:00, +WO56283,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-03-30 11:01:00, +WO54574,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-03-30 15:30:00, +WO56537,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-04-06 15:30:00, +WO59392,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-04-14 15:30:00, +WO59385,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-04-14 15:30:00, +WO59394,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-04-15 15:30:00, +WO59017,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-04-27 12:45:00, +WO58580,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-05-04 15:30:00, +WO60844,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-05-05 15:30:00, +WO62851,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-05-16 15:30:00, +WO64645,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-05-28 15:30:00, +WO67484,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-06-21 15:30:00, +WO69151,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-07-06 15:30:00, +WO71248,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-07-18 15:30:00, +WO73333,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-08-02 15:30:00, +WO75750,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-08-16 15:30:00, +WO75662,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2011-08-17 15:30:00, +WO77572,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-09-06 15:30:00, +WO79159,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-09-19 15:30:00, +WO80988,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-10-05 15:30:00, +WO83132,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-10-19 15:30:00, +WO84794,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-10-31 15:30:00, +WO85252,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2011-11-04 15:30:00, +WO86965,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-11-23 15:30:00, +WO89757,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-12-07 15:30:00, +WO91355,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2011-12-27 15:30:00, +WO92658,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-01-02 15:30:00, +WO90779,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-01-03 08:00:00, +WO90777,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-01-13 15:30:00, +WO94641,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-01-20 15:30:00, +WO101961,WORK_ORDER,CM,MT002,Cleaning,CWC04013,Chiller 13,2012-02-03 15:30:00, +WO97335,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-02-03 15:30:00, +WO99820,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-02-20 15:30:00, +WO102091,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-03-15 15:00:00, +WO100644,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-03-16 14:00:00, +WO100642,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-03-16 14:00:00, +WO100646,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-03-16 14:00:00, +WO104449,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2012-03-26 15:30:00, +WO103981,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-03-26 15:30:00, +WO103677,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-03-30 09:00:00, +WO105426,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-04-02 15:30:00, +WO107354,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-04-19 15:30:00, +WO109033,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-05-01 15:30:00, +WO111359,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-05-22 15:30:00, +WO103221,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2012-05-23 16:30:00, +WO112810,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-06-14 15:30:00, +WO114380,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-06-22 15:30:00, +WO115679,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-07-02 15:30:00, +WO116988,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-07-26 15:30:00, +WO119027,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-08-13 08:00:00, +WO116670,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2012-08-16 07:00:00, +WO121976,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2012-08-20 15:30:00, +WO121775,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-08-23 15:30:00, +WO123152,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-09-06 15:30:00, +WO125735,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-09-26 09:00:00, +WO126860,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-10-03 15:30:00, +WO128777,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-10-26 15:30:00, +WO131363,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-11-14 08:00:00, +WO133590,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-11-23 08:00:00, +WO131918,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2012-12-04 15:30:00, +WO135022,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-12-06 15:30:00, +WO136075,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-12-10 15:30:00, +WO136073,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-12-14 16:00:00, +WO136616,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2012-12-18 15:30:00, +WO137826,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-01-10 15:30:00, +WO129023,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2013-02-13 11:04:00, +WO142051,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-02-15 08:00:00, +WO140211,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-02-18 08:30:00, +WO143911,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-02-25 11:30:00, +WO143907,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-03-06 15:30:00, +WO143909,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-03-06 15:30:00, +WO145450,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-03-08 15:30:00, +WO143755,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-03-08 15:30:00, +WO147013,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-03-22 10:00:00, +WO147848,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2013-03-25 15:30:00, +WO148704,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-04-01 15:30:00, +WO150585,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-04-22 09:00:00, +WO147309,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-04-23 10:00:00, +WO146551,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2013-04-24 14:35:00, +WO154874,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-05-03 15:30:00, +WO152466,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-05-06 15:30:00, +WO157651,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-05-08 15:30:00, +WO152929,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2013-05-13 18:00:00, +WO155379,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-05-21 15:30:00, +WO156832,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-06-10 15:30:00, +WO158288,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-06-14 15:30:00, +WO160333,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-07-03 15:30:00, +WO159726,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2013-07-18 19:00:00, +WO162719,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-07-22 15:30:00, +WO165052,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-08-13 15:30:00, +WO166830,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-08-21 15:30:00, +WO168082,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-09-04 15:30:00, +WO166993,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2013-09-07 08:00:00, +WO169732,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-09-17 15:30:00, +WO171322,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-10-01 15:30:00, +WO174258,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-10-23 15:30:00, +WO176061,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-11-06 15:30:00, +WO178536,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-11-19 15:30:00, +WO180133,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-12-04 15:30:00, +WO181030,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-12-09 15:30:00, +WO181032,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-12-09 15:30:00, +WO181730,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2013-12-27 15:30:00, +WO183171,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-01-07 15:30:00, +WO186401,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-01-21 07:30:00, +WO188942,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-02-04 15:30:00, +WO190891,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-02-17 15:30:00, +WO192914,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-03-05 15:30:00, +WO191937,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-03-14 15:30:00, +WO191935,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-03-14 15:30:00, +WO191933,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-03-14 15:30:00, +WO195077,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-03-19 15:30:00, +WO196823,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-04-01 09:00:00, +WO198392,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2014-04-14 11:30:00, +WO202148,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04013,Chiller 13,2014-04-27 15:30:00, +WO198946,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-04-28 15:30:00, +WO195369,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-04-29 15:30:00, +WO201032,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-05-06 15:30:00, +WO202267,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-05-29 15:30:00, +WO207316,WORK_ORDER,CM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2014-06-02 15:30:00, +WO203400,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-06-11 15:30:00, +WO205068,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-06-18 15:30:00, +WO206154,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-07-01 15:30:00, +WO208055,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-07-30 15:30:00, +WO209518,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-08-13 08:30:00, +WO211033,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-08-25 15:30:00, +WO212152,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-09-04 15:30:00, +WO211105,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2014-09-04 15:30:00, +WO213353,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-09-19 15:30:00, +WO214600,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-09-29 15:30:00, +WO216644,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-10-24 15:30:00, +WO218412,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2014-11-03 15:30:00, +WO218167,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-11-06 15:30:00, +WO221595,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04013,Chiller 13,2014-11-30 15:30:00, +WO219586,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-12-04 15:30:00, +WO220625,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-12-05 15:30:00, +WO221328,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-12-08 15:30:00, +WO222098,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-12-20 15:30:00, +WO221329,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2014-12-28 15:30:00, +WO223477,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-01-09 15:30:00, +WO224846,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-01-20 15:30:00, +WO226123,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-02-06 15:30:00, +WO227702,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-02-19 15:30:00, +WO228887,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-03-04 15:30:00, +WO230269,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-03-16 19:30:00, +WO228266,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-03-16 19:30:00, +WO228267,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-03-18 19:30:00, +WO228268,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-03-19 17:52:00, +WO230718,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2015-03-23 19:30:00, +WO231152,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-04-01 15:30:00, +WO230413,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-04-20 15:30:00, +WO232537,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-04-29 15:30:00, +WO233764,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-05-05 15:30:00, +WO234940,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-05-20 15:30:00, +WO236733,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-05-21 15:30:00, +WO235859,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-06-01 15:30:00, +WO236918,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-06-17 15:30:00, +WO238256,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04013,Chiller 13,2015-06-17 15:30:00, +WO237865,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-06-29 15:30:00, +WO239386,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-07-21 15:30:00, +WO240297,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-08-02 15:30:00, +WO241301,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-08-18 15:30:00, +WO241371,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2015-08-23 15:30:00, +WO242652,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-09-10 15:30:00, +WO243597,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-09-21 19:30:00, +WO245286,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-10-06 14:30:00, +WO246357,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-10-21 15:00:00, +WO247364,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-11-05 00:00:00, +WO247587,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2015-11-06 18:30:00, +WO248627,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-11-19 20:30:00, +WO249532,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-12-04 18:30:00, +WO250045,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-12-16 14:45:00, +WO250044,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-12-21 16:00:00, +WO251135,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2015-12-30 17:00:00, +WO252342,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-01-07 12:30:00, +WO252352,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-01-07 13:00:00, +WO252152,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-01-22 15:00:00, +WO253166,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-02-01 16:00:00, +WO254495,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-02-11 14:00:00, +WO255996,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-02-23 20:30:00, +WO257167,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-03-01 14:00:00, +WO256612,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-03-17 19:25:00, +WO256613,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-03-18 19:00:00, +WO256614,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-03-21 19:07:00, +WO259220,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-03-30 23:30:00, +WO259747,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2016-04-06 14:00:00, +WO260440,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-04-14 14:30:00, +WO259373,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-04-16 15:00:00, +WO261660,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-05-01 20:19:00, +WO262721,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-05-06 22:06:00, +WO264055,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-05-20 21:20:00, +WO265015,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-06-07 17:01:00, +WO266634,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-06-22 18:27:00, +WO267348,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-07-15 19:54:00, +WO268667,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-07-22 15:00:00, +WO269541,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-08-04 18:21:00, +WO270622,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-08-16 15:11:00, +WO270689,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2016-08-22 13:26:00, +WO272066,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-09-06 16:50:00, +WO273034,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-09-23 13:03:00, +WO274026,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-10-04 19:06:00, +WO275078,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-10-19 15:06:00, +WO275991,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-11-02 14:51:00, +WO276177,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2016-11-03 18:10:00, +WO277091,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-11-20 16:00:00, +WO278467,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-12-09 13:15:00, +WO279373,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-12-27 18:33:00, +WO281010,WORK_ORDER,CM,MT008,Leak Detection,CWC04013,Chiller 13,2016-12-27 20:30:00, +WO278992,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2016-12-30 13:20:00, +WO280142,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-01-12 15:28:00, +WO278993,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-01-27 18:00:00, +WO282102,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-02-02 20:27:00, +WO281208,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-02-08 16:46:00, +WO283382,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-02-20 19:46:00, +WO283818,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-02-27 15:12:00, +WO283819,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-02-27 18:23:00, +WO283820,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-02-27 19:40:00, +WO284292,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-03-07 19:26:00, +WO285814,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-03-24 15:25:00, +WO286347,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2017-03-31 13:59:00, +WO285957,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-04-03 17:05:00, +WO286780,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-04-06 19:44:00, +WO288758,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-05-02 18:32:00, +WO287802,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-05-02 18:33:00, +WO287546,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2017-05-11 14:00:00, +WO291095,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-05-11 19:30:00, +WO291098,WORK_ORDER,CM,MT002,Cleaning,CWC04013,Chiller 13,2017-05-12 19:30:00, +WO289660,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-05-25 17:53:00, +WO291141,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-06-13 13:10:00, +WO292052,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-06-27 14:22:00, +WO292869,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-07-06 12:23:00, +WO293862,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-07-20 16:49:00, +WO294759,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-08-25 18:47:00, +WO296197,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-08-29 18:28:00, +WO296251,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2017-09-11 18:29:00, +WO297228,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-10-02 17:32:00, +WO298236,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-10-07 14:11:00, +WO299190,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-10-29 12:16:00, +WO300254,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-11-07 20:49:00, +WO301215,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-11-20 18:41:00, +WO302083,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2017-11-28 19:08:00, +WO302918,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2017-12-02 17:08:00, +WO306023,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-01-16 16:05:00, +WO306022,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-01-19 18:42:00, +WO308119,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-02-13 16:00:00, +WO309082,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-03-09 18:03:00, +WO309162,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-03-16 19:30:00, +WO309161,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-03-19 15:30:00, +WO309163,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-03-19 19:30:00, +WO304150,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-03-25 14:45:00, +WO312190,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-03-25 19:00:00, +WO311577,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2018-03-27 13:03:00, +WO314470,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04013,Chiller 13,2018-04-05 19:30:00, +WO311157,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-04-17 17:00:00, +WO313266,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-05-09 17:04:00, +WO316044,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04013,Chiller 13,2018-05-13 19:30:00, +WO310169,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-05-22 13:36:00, +WO314542,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-06-01 12:54:00, +WO312320,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-06-03 15:34:00, +WO312512,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2018-06-06 13:14:00, +WO316569,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-06-07 15:30:00, +WO315754,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-06-13 18:32:00, +WO318062,WORK_ORDER,CM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2018-06-13 23:30:00, +WO311242,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-06-14 13:51:00, +WO318057,WORK_ORDER,CM,MT008,Leak Detection,CWC04013,Chiller 13,2018-06-15 19:30:00, +WO318056,WORK_ORDER,CM,MT008,Leak Detection,CWC04013,Chiller 13,2018-06-18 19:30:00, +WO319572,WORK_ORDER,CM,MT008,Leak Detection,CWC04013,Chiller 13,2018-06-27 19:30:00, +WO319579,WORK_ORDER,CM,MT008,Leak Detection,CWC04013,Chiller 13,2018-07-07 19:30:00, +WO319631,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04013,Chiller 13,2018-07-09 19:30:00, +WO317054,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-07-10 17:34:00, +WO321367,WORK_ORDER,CM,MT008,Leak Detection,CWC04013,Chiller 13,2018-07-18 19:30:00, +WO318095,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-07-24 13:37:00, +WO317477,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04013,Chiller 13,2018-07-25 17:47:00, +WO321358,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04013,Chiller 13,2018-07-26 19:30:00, +WO321353,WORK_ORDER,CM,M014,Condenser Tube Leak,CWC04013,Chiller 13,2018-07-27 19:30:00, +WO317758,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2018-08-09 15:10:00, +WO321896,WORK_ORDER,CM,MT008,Leak Detection,CWC04013,Chiller 13,2018-08-14 19:30:00, +WO321891,WORK_ORDER,CM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2018-08-16 19:30:00, +WO319239,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-08-18 14:25:00, +WO319586,WORK_ORDER,CM,L003,Evaporator Leak,CWC04013,Chiller 13,2018-08-31 13:00:00, +WO320886,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2018-09-20 12:03:00, +WO320147,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-09-24 18:51:00, +WO323256,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2018-09-26 16:00:00, +WO325164,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-09-26 19:30:00, +WO322328,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-10-10 15:00:00, +WO321417,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-10-12 15:15:00, +WO323483,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-10-30 15:30:00, +WO325613,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-11-27 19:30:00, +WO326323,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-11-30 20:00:00, +WO327215,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2018-12-14 15:15:00, +WO327515,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2018-12-14 19:30:00, +WO328583,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2019-01-09 19:30:00, +WO329600,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2019-01-24 15:00:00, +WO330494,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2019-02-08 16:00:00, +WO329271,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2019-02-14 15:30:00, +WO332037,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2019-02-27 20:30:00, +WO324407,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2019-03-21 14:00:00, +WO333078,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2019-03-21 15:30:00, +WO334242,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2019-03-28 18:30:00, +WO334887,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2019-04-11 19:30:00, +WO334885,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2019-04-12 19:30:00, +WO334886,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2019-04-12 19:30:00, +WO336500,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2019-04-19 14:00:00, +WO325838,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2019-04-22 19:00:00, +WO336976,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2019-05-01 16:00:00, +WO337045,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2019-05-19 15:30:00, +WO339715,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2019-06-11 17:30:00, +WO340676,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2019-06-27 23:30:00, +WO341899,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2019-07-26 15:00:00, +WO348766,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2019-08-30 19:30:00, +WO344080,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2019-08-31 19:30:00, +WO346654,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2019-08-31 19:30:00, +WO347196,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2019-10-11 20:30:00, +WO350682,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2019-12-03 14:00:00, +WO351966,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2019-12-08 14:00:00, +WO353166,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2020-01-20 16:00:00, +WO354133,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2020-02-01 16:00:00, +WO357317,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2020-02-26 18:00:00, +WO359951,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2020-04-10 19:30:00, +WO359949,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2020-04-14 15:30:00, +WO359950,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2020-04-14 19:30:00, +WO360236,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2020-04-22 15:00:00, +WO362063,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2020-05-14 12:30:00, +WO364522,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2020-06-05 13:00:00, +WO351295,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2020-06-15 18:30:00, +WO362355,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2020-06-26 17:30:00, +WO367296,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2020-07-09 18:30:00, +WO371141,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2020-09-17 16:30:00, +WO372327,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2020-09-29 15:00:00, +WO373678,WORK_ORDER,CM,MT008,Leak Detection,CWC04013,Chiller 13,2020-10-01 19:30:00, +WO374041,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2020-10-29 16:30:00, +WO377800,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2020-12-18 22:00:00, +WO377972,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2020-12-22 15:30:00, +WO380165,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2021-01-08 16:00:00, +WO380658,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2021-02-04 17:00:00, +WO380510,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2021-02-05 15:30:00, +WO384631,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2021-03-31 17:00:00, +WO386631,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04013,Chiller 13,2021-04-01 19:30:00, +WO385285,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2021-04-03 19:30:00, +WO385284,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2021-04-06 19:30:00, +WO385283,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2021-04-07 15:30:00, +WO380173,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2021-04-07 16:30:00, +WO377503,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2021-04-15 17:00:00, +WO387768,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2021-04-19 19:30:00, +WO387149,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2021-05-14 12:32:00, +WO387486,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2021-05-14 16:00:00, +WO387986,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2021-05-21 13:00:00, +WO384011,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2021-06-29 14:18:00, +WO391813,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2021-07-10 17:00:00, +WO393574,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2021-07-29 18:30:00, +WO397191,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04013,Chiller 13,2021-09-14 17:00:00, +WO398125,WORK_ORDER,CM,L005,Seepage,CWC04013,Chiller 13,2021-09-16 19:09:00, +WO398863,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04013,Chiller 13,2021-09-28 18:38:00, +WO391369,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2021-10-01 15:00:00, +WO398377,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2021-10-07 19:00:00, +WO398234,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2021-10-07 19:19:00, +WO400066,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2021-11-12 15:30:00, +WO402644,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2021-12-28 15:00:00, +WO396926,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2021-12-28 18:00:00, +WO403803,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2022-01-12 14:30:00, +WO404621,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2022-02-03 18:00:00, +WO405423,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2022-02-24 17:30:00, +WO408527,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04013,Chiller 13,2022-03-10 20:30:00, +WO408001,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2022-03-31 15:00:00, +WO409267,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2022-04-05 19:00:00, +WO409268,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2022-04-06 19:00:00, +WO409266,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2022-04-07 19:30:00, +WO408991,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2022-04-11 19:00:00, +WO411168,WORK_ORDER,CM,MT003,Lubrication,CWC04013,Chiller 13,2022-04-22 18:00:00, +WO410546,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2022-05-20 19:15:00, +WO411129,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2022-05-31 18:30:00, +al_0109be82-8139-4d5b-84e3-663d9866654a,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04013,Chiller 13,2022-06-01 05:45:00, +WO402352,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2022-06-13 18:30:00, +WO410954,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2022-06-15 13:00:00, +WO413484,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2022-07-01 15:00:00, +WO416203,WORK_ORDER,CM,MT003,Lubrication,CWC04013,Chiller 13,2022-07-25 13:30:00, +WO414862,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2022-07-26 14:00:00, +WO416150,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2022-08-12 18:30:00, +WO418188,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2022-09-29 18:00:00, +WO418743,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2022-10-13 13:30:00, +WO419607,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2022-10-25 18:30:00, +WO421033,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2022-11-14 19:30:00, +WO422737,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2022-12-16 13:15:00, +WO424310,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2023-01-10 17:30:00, +WO424472,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2023-01-25 15:00:00, +WO425781,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2023-02-10 17:30:00, +WO428681,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2023-04-06 09:00:00, +WO127292,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2023-04-17 08:00:00, +WO428204,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2023-04-18 15:00:00, +WO428205,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2023-04-19 15:00:00, +WO428206,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2023-04-21 15:00:00, +WO128424,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2023-04-26 07:45:00, +WO132877,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2023-05-22 10:30:00, +WO427276,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2023-06-02 10:00:00, +WO422860,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04013,Chiller 13,2023-06-30 14:30:00, +WO136387,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2023-07-31 11:30:00, +WO144493,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2023-08-18 10:30:00, +WO154347,WORK_ORDER,PM,MT010,Oil Analysis,CWC04013,Chiller 13,2023-09-13 09:00:00, +WO139506,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04013,Chiller 13,2023-09-21 15:00:00, +WO158687,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04013,Chiller 13,2023-09-26 15:00:00, +WO16134,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2010-06-22 14:12:00, +WO24708,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2010-10-25 19:53:00, +WO23154,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2010-10-25 20:38:00, +WO28885,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2010-10-25 20:38:00, +WO33686,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2010-11-05 15:30:00, +WO34535,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2010-11-19 15:30:00, +WO37894,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2010-12-02 09:00:00, +WO43395,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2010-12-02 15:30:00, +WO43373,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2010-12-02 15:30:00, +WO39321,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2010-12-02 15:30:00, +WO43372,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2010-12-03 15:30:00, +WO43397,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2010-12-03 15:30:00, +WO43400,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2010-12-04 15:30:00, +WO43371,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2010-12-04 15:30:00, +WO42028,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2010-12-20 15:30:00, +WO43104,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-01-01 15:30:00, +WO43102,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-01-01 15:30:00, +WO43693,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-01-10 15:30:00, +WO45733,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-01-20 15:30:00, +WO42160,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-01-24 15:30:00, +WO49717,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-01-26 15:30:00, +WO50721,WORK_ORDER,CM,MT002,Cleaning,CWC04014,Chiller 14,2011-01-31 15:30:00, +WO47956,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-02-09 15:30:00, +WO49968,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-02-16 15:30:00, +WO54102,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-02-28 15:30:00, +WO51946,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-03-04 15:30:00, +WO55297,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-03-12 15:30:00, +WO42158,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-03-18 15:30:00, +WO55175,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2011-03-25 15:30:00, +WO52297,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-03-28 11:00:00, +WO52299,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-03-29 08:00:00, +WO58457,WORK_ORDER,CM,MT002,Cleaning,CWC04014,Chiller 14,2011-03-30 15:30:00, +WO54576,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-03-30 15:30:00, +WO58460,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-03-31 15:30:00, +WO58459,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-04-01 15:30:00, +WO52295,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-04-01 16:30:00, +WO58445,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-04-03 15:30:00, +WO58454,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-04-04 15:30:00, +WO58458,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-04-05 15:30:00, +WO56539,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-04-06 15:30:00, +WO59391,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04014,Chiller 14,2011-04-13 13:30:00, +WO59386,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-04-13 15:30:00, +WO59019,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-04-22 15:30:00, +WO58582,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-05-04 15:30:00, +WO60846,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-05-05 15:30:00, +WO64016,WORK_ORDER,CM,MT003,Lubrication,CWC04014,Chiller 14,2011-05-10 15:30:00, +WO62853,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-05-16 15:30:00, +WO64647,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-05-28 15:30:00, +WO67486,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-06-20 15:30:00, +WO69153,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-07-06 15:30:00, +WO71250,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-07-22 15:30:00, +WO73335,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-08-02 15:30:00, +WO75752,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-08-16 15:30:00, +WO75658,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2011-08-17 15:30:00, +WO77574,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-09-06 15:30:00, +WO79217,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-09-19 15:30:00, +WO80990,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-10-05 15:30:00, +WO83134,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-10-17 15:30:00, +WO86631,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-10-27 19:30:00, +WO86638,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-10-28 19:30:00, +WO86637,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-10-29 15:30:00, +WO86636,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-10-30 15:30:00, +WO88683,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-10-31 15:30:00, +WO84796,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-10-31 15:30:00, +WO88688,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-11-03 15:30:00, +WO84668,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2011-11-04 15:30:00, +WO86967,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-11-22 07:30:00, +WO93582,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-12-05 15:30:00, +WO89759,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-12-08 15:30:00, +WO91357,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2011-12-26 15:30:00, +WO92660,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-01-02 15:30:00, +WO92232,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-01-03 08:00:00, +WO93070,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-01-15 15:30:00, +WO94643,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-01-20 15:30:00, +WO93068,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-01-23 16:00:00, +WO100093,WORK_ORDER,CM,M020,Head Operations,CWC04014,Chiller 14,2012-01-24 15:30:00, +WO99474,WORK_ORDER,CM,M020,Head Operations,CWC04014,Chiller 14,2012-01-24 15:30:00, +WO100094,WORK_ORDER,CM,M020,Head Operations,CWC04014,Chiller 14,2012-01-25 15:30:00, +WO97337,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-02-03 15:30:00, +WO99822,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-02-21 15:30:00, +WO110167,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-03-04 15:30:00, +WO106995,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-03-07 15:30:00, +WO106991,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2012-03-07 15:30:00, +WO102093,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-03-15 08:00:00, +WO106993,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-03-16 15:30:00, +WO104451,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2012-03-26 15:30:00, +WO103679,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-03-27 11:00:00, +WO101418,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-03-28 15:30:00, +WO101416,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-03-28 15:30:00, +WO101414,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-03-28 15:30:00, +WO108796,WORK_ORDER,CM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2012-03-30 15:30:00, +WO105428,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-04-02 15:30:00, +WO110174,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-04-03 15:30:00, +WO103983,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-04-03 15:30:00, +WO110193,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-04-09 15:30:00, +WO92230,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-04-09 15:30:00, +WO110163,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2012-04-10 15:30:00, +WO103223,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2012-04-10 18:30:00, +WO107356,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-04-19 15:30:00, +WO109035,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-05-01 15:30:00, +WO111361,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-05-22 15:30:00, +WO112812,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-06-14 15:30:00, +WO114382,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-06-22 15:30:00, +WO115681,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-07-02 15:30:00, +WO116672,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2012-07-13 23:00:00, +WO116990,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-07-26 15:30:00, +WO119029,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-08-13 09:00:00, +WO121972,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2012-08-20 08:30:00, +WO121785,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-08-23 15:30:00, +WO125497,WORK_ORDER,CM,MT003,Lubrication,CWC04014,Chiller 14,2012-09-05 15:30:00, +WO123154,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-09-06 15:30:00, +WO125747,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-09-26 15:30:00, +WO126862,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-10-03 15:30:00, +WO128785,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-10-26 15:30:00, +WO136431,WORK_ORDER,CM,MT002,Cleaning,CWC04014,Chiller 14,2012-11-06 15:30:00, +WO131365,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-11-14 08:00:00, +WO133592,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-11-26 17:00:00, +WO137167,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-11-28 15:30:00, +WO131263,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2012-12-04 15:30:00, +WO135024,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-12-06 15:30:00, +WO140794,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-12-14 15:30:00, +WO136618,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2012-12-18 10:00:00, +WO141896,WORK_ORDER,CM,MT002,Cleaning,CWC04014,Chiller 14,2012-12-19 15:30:00, +WO141866,WORK_ORDER,CM,MT010,Oil Analysis,CWC04014,Chiller 14,2013-01-03 15:30:00, +WO137828,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-01-10 15:30:00, +WO137412,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-01-28 10:00:00, +WO137410,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-02-06 15:30:00, +WO129090,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2013-02-13 11:04:00, +WO142053,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-02-15 07:30:00, +WO140213,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-02-18 09:30:00, +WO144786,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-02-25 15:30:00, +WO144784,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-03-07 15:30:00, +WO143757,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-03-08 15:30:00, +WO145452,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-03-08 15:30:00, +WO144782,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-03-11 15:30:00, +WO147015,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-03-22 11:00:00, +WO147850,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2013-03-25 15:30:00, +WO148706,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-04-01 15:30:00, +WO150587,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-04-22 09:00:00, +WO147311,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-04-24 10:00:00, +WO146553,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2013-04-24 14:36:00, +WO153516,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2013-04-25 03:30:00, +WO157653,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-05-06 15:30:00, +WO152468,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-05-06 15:30:00, +WO155381,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-05-21 15:30:00, +WO152931,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2013-05-24 09:37:00, +WO158583,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-05-30 15:30:00, +WO159366,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-06-05 07:30:00, +WO159365,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2013-06-06 03:30:00, +WO160835,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-06-07 20:00:00, +WO156822,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-06-10 15:30:00, +WO158290,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-06-12 15:30:00, +WO160335,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-07-03 15:30:00, +WO164707,WORK_ORDER,CM,M005,Misalignment,CWC04014,Chiller 14,2013-07-12 15:30:00, +WO164855,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-07-17 03:30:00, +WO164861,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2013-07-22 03:30:00, +WO162721,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-07-22 15:30:00, +WO164969,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-07-24 03:30:00, +WO165054,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-08-13 15:30:00, +WO166832,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-08-20 15:30:00, +WO168084,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-09-04 15:30:00, +WO166989,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2013-09-07 08:00:00, +WO169734,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-09-16 15:30:00, +WO171330,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-10-01 15:30:00, +WO178403,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-10-21 15:30:00, +WO174260,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-10-23 15:30:00, +WO171037,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2013-11-04 09:00:00, +WO176063,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-11-06 15:30:00, +WO178538,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-11-19 15:30:00, +WO180125,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-12-04 15:30:00, +WO181732,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-12-22 15:30:00, +WO182640,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2013-12-30 15:30:00, +WO183163,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-01-07 15:30:00, +WO186393,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-01-20 15:30:00, +WO188944,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-02-04 15:30:00, +WO190893,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-02-17 15:30:00, +WO192922,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-03-05 15:30:00, +WO193176,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-03-10 15:30:00, +WO193180,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-03-12 15:30:00, +WO193178,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-03-12 15:30:00, +WO195079,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-03-18 15:30:00, +WO196825,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-04-01 09:00:00, +WO195371,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-04-11 15:30:00, +WO202155,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-04-22 15:30:00, +WO198394,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2014-04-23 15:30:00, +WO198947,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-04-28 15:30:00, +WO201036,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-05-06 15:30:00, +WO202263,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-05-29 15:30:00, +WO203401,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-06-11 15:30:00, +WO205069,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-06-17 15:30:00, +WO205700,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2014-06-27 15:00:00, +WO206155,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-07-01 15:30:00, +WO208056,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-07-30 15:30:00, +WO209519,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-08-13 08:30:00, +WO211034,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-08-25 15:30:00, +WO211103,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2014-09-04 15:30:00, +WO212153,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-09-05 15:30:00, +WO213354,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-09-17 15:30:00, +WO215858,WORK_ORDER,CM,MT003,Lubrication,CWC04014,Chiller 14,2014-09-24 15:30:00, +WO214601,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-09-29 15:30:00, +WO214110,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2014-09-30 15:00:00, +WO221599,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2014-10-07 15:30:00, +WO216645,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-10-24 15:30:00, +WO218123,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2014-11-03 15:30:00, +WO218168,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-11-06 15:30:00, +WO222524,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-11-19 15:30:00, +WO219587,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-12-04 15:30:00, +WO220626,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-12-05 15:30:00, +WO222099,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-12-20 15:30:00, +WO222650,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2014-12-26 15:30:00, +WO226072,WORK_ORDER,CM,MT002,Cleaning,CWC04014,Chiller 14,2015-01-05 09:00:00, +WO226924,WORK_ORDER,CM,MT002,Cleaning,CWC04014,Chiller 14,2015-01-08 07:30:00, +WO223478,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-01-09 15:30:00, +WO224847,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-01-19 11:00:00, +WO228692,WORK_ORDER,CM,MT002,Cleaning,CWC04014,Chiller 14,2015-02-02 15:00:00, +WO226124,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-02-06 15:30:00, +WO227703,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-02-18 15:30:00, +WO228888,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-03-04 15:30:00, +WO230270,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-03-16 19:30:00, +WO230719,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2015-03-23 19:30:00, +WO231153,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-04-01 15:30:00, +WO230414,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-04-03 15:30:00, +WO229010,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-04-16 19:01:00, +WO229012,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-04-16 19:02:00, +WO229011,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-04-16 19:02:00, +WO232538,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-04-22 15:30:00, +WO234875,WORK_ORDER,CM,M017,Major Overhaul,CWC04014,Chiller 14,2015-04-23 15:30:00, +WO222649,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-04-24 15:30:00, +WO233765,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-05-05 15:30:00, +WO232071,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2015-05-08 08:00:00, +WO234941,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-05-19 15:30:00, +WO236734,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04014,Chiller 14,2015-05-22 15:30:00, +WO237310,WORK_ORDER,CM,MT003,Lubrication,CWC04014,Chiller 14,2015-05-27 15:30:00, +WO235860,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-06-01 15:30:00, +WO237291,WORK_ORDER,CM,MT003,Lubrication,CWC04014,Chiller 14,2015-06-05 15:30:00, +WO236919,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-06-16 15:30:00, +WO237866,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-06-29 15:30:00, +WO237628,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2015-06-30 14:00:00, +WO239387,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-07-20 15:30:00, +WO240298,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-08-05 15:30:00, +WO241302,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-08-19 15:30:00, +WO241369,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2015-08-23 15:30:00, +WO242653,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-09-10 15:30:00, +WO243598,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-09-18 19:30:00, +WO244387,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2015-09-25 16:00:00, +WO245287,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-10-07 14:00:00, +WO246358,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-11-03 13:00:00, +WO247365,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-11-04 22:15:00, +WO247324,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2015-11-06 13:00:00, +WO248628,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-11-18 20:00:00, +WO249533,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-12-04 20:30:00, +WO251136,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2015-12-23 20:00:00, +WO252153,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-01-22 17:00:00, +WO253167,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-02-02 18:00:00, +WO251198,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-02-07 20:30:00, +WO254496,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-02-11 16:00:00, +WO257045,WORK_ORDER,CM,M017,Major Overhaul,CWC04014,Chiller 14,2016-02-12 20:30:00, +WO255997,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-02-22 20:00:00, +WO257168,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-03-01 16:00:00, +WO257291,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-03-28 19:22:00, +WO257292,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-03-31 19:33:00, +WO257293,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-04-01 19:20:00, +WO259374,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-04-05 15:30:00, +WO259748,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2016-04-06 13:00:00, +WO259221,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-04-10 17:30:00, +WO260441,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-04-11 13:00:00, +WO263816,WORK_ORDER,CM,MT002,Cleaning,CWC04014,Chiller 14,2016-04-17 19:30:00, +WO263973,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2016-04-29 19:30:00, +WO261661,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-04-29 21:55:00, +WO262722,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-05-06 22:07:00, +WO264056,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-05-21 19:00:00, +WO265016,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-06-07 16:59:00, +WO266635,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-06-22 12:20:00, +WO267217,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2016-07-04 21:30:00, +WO267349,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-07-15 19:56:00, +WO268668,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-07-21 19:00:00, +WO251199,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-08-02 19:30:00, +WO269542,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-08-15 16:40:00, +WO270623,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-08-18 19:00:00, +WO270687,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2016-08-22 13:22:00, +WO272067,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-09-06 16:52:00, +WO273035,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-09-23 19:00:00, +WO274027,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-10-05 16:30:00, +WO273706,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2016-10-18 18:00:00, +WO277455,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2016-11-01 19:30:00, +WO275992,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-11-02 14:49:00, +WO275079,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-11-02 16:33:00, +WO275973,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2016-11-03 18:07:00, +WO277092,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-12-04 19:30:00, +WO278468,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-12-09 13:16:00, +WO279374,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2016-12-29 20:00:00, +WO280290,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-01-04 18:25:00, +WO280289,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-01-04 18:27:00, +WO280143,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-01-12 15:30:00, +WO279815,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-01-27 17:57:00, +WO284143,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2017-02-01 20:30:00, +WO282103,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-02-02 20:32:00, +WO281209,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-02-04 20:19:00, +WO286167,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2017-02-11 20:30:00, +WO285186,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-02-23 20:30:00, +WO285206,WORK_ORDER,CM,M020,Head Operations,CWC04014,Chiller 14,2017-02-23 20:30:00, +WO285180,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2017-03-01 20:30:00, +WO283383,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-03-02 18:26:00, +WO284293,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-03-07 19:28:00, +WO285686,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2017-03-09 21:30:00, +WO286188,WORK_ORDER,CM,CS002,Sensor Failure,CWC04014,Chiller 14,2017-03-10 20:30:00, +WO286166,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2017-03-12 19:30:00, +WO286189,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2017-03-12 19:30:00, +WO285701,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-03-13 16:52:00, +WO286177,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2017-03-15 16:30:00, +WO285815,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-03-26 19:30:00, +WO287259,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2017-03-26 19:30:00, +WO287166,WORK_ORDER,CM,M017,Major Overhaul,CWC04014,Chiller 14,2017-03-26 19:30:00, +WO287190,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-03-26 19:30:00, +WO287165,WORK_ORDER,CM,MT002,Cleaning,CWC04014,Chiller 14,2017-03-27 19:30:00, +WO287162,WORK_ORDER,CM,M020,Head Operations,CWC04014,Chiller 14,2017-03-28 19:30:00, +WO284414,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-03-28 22:45:00, +WO284415,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-03-29 13:02:00, +WO284416,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-03-29 22:48:00, +WO286348,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2017-03-31 14:01:00, +WO286781,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-04-06 19:46:00, +WO288608,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-04-23 19:30:00, +WO289105,WORK_ORDER,CM,M017,Major Overhaul,CWC04014,Chiller 14,2017-04-23 19:30:00, +WO289108,WORK_ORDER,CM,MT010,Oil Analysis,CWC04014,Chiller 14,2017-04-25 19:30:00, +WO289107,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2017-04-26 19:30:00, +WO289256,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2017-04-27 19:30:00, +WO287803,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-05-05 17:47:00, +WO288759,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-05-09 12:34:00, +WO287547,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2017-05-15 20:30:00, +WO291100,WORK_ORDER,CM,MT003,Lubrication,CWC04014,Chiller 14,2017-05-16 19:30:00, +WO289661,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-06-05 15:26:00, +WO291142,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-06-13 13:12:00, +WO293244,WORK_ORDER,CM,OP001,Process Upset,CWC04014,Chiller 14,2017-06-22 19:30:00, +WO292053,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-06-28 18:14:00, +WO293224,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2017-06-28 19:30:00, +WO292870,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-07-12 12:59:00, +WO292632,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2017-07-14 15:00:00, +WO296158,WORK_ORDER,CM,MT010,Oil Analysis,CWC04014,Chiller 14,2017-07-16 19:30:00, +WO293863,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-07-28 16:27:00, +WO294760,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-08-25 18:48:00, +WO296198,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-08-28 18:27:00, +WO296249,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2017-09-11 18:31:00, +WO297229,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-09-25 15:17:00, +WO298879,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2017-09-28 22:45:00, +WO298237,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-10-11 18:33:00, +WO300570,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2017-10-11 19:30:00, +WO299191,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-10-30 17:49:00, +WO303305,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2017-11-13 20:30:00, +WO300255,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-11-14 23:10:00, +WO301216,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-11-20 18:42:00, +WO301874,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2017-11-28 19:09:00, +WO302919,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2017-11-30 18:56:00, +WO303962,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2017-11-30 20:30:00, +WO306920,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2018-01-04 20:30:00, +WO306025,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-01-16 16:07:00, +WO306024,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-01-22 19:21:00, +WO307944,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2018-01-22 20:30:00, +WO308120,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-02-15 12:46:00, +WO310126,WORK_ORDER,CM,MT002,Cleaning,CWC04014,Chiller 14,2018-02-15 20:30:00, +WO310575,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2018-02-27 17:00:00, +WO311025,WORK_ORDER,CM,M020,Head Operations,CWC04014,Chiller 14,2018-03-01 20:30:00, +WO305005,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-03-05 13:30:00, +WO305006,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-03-05 16:11:00, +WO309083,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-03-06 15:14:00, +WO311532,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2018-03-08 20:30:00, +WO310170,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-03-14 15:37:00, +WO309619,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-03-15 18:30:00, +WO311530,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2018-03-15 19:30:00, +WO309617,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-03-16 18:30:00, +WO309618,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-03-16 19:30:00, +WO311578,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2018-03-27 13:05:00, +WO314464,WORK_ORDER,CM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2018-04-12 19:30:00, +WO311158,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-04-24 14:35:00, +WO313267,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-05-13 12:57:00, +WO310244,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-05-18 12:35:00, +WO315089,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-05-18 15:30:00, +WO315982,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2018-05-18 19:30:00, +WO312321,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-05-22 13:32:00, +WO314543,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-06-01 12:58:00, +WO316897,WORK_ORDER,CM,OP001,Process Upset,CWC04014,Chiller 14,2018-06-01 19:30:00, +WO312513,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2018-06-06 13:15:00, +WO317757,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2018-06-29 14:30:00, +WO315755,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-07-02 12:13:00, +WO317055,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-07-10 17:32:00, +WO319240,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-08-18 14:27:00, +WO320951,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04014,Chiller 14,2018-08-22 16:31:00, +WO318096,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-08-27 19:00:00, +WO320885,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2018-09-21 20:11:00, +WO320148,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-09-24 14:58:00, +WO323257,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2018-09-26 17:15:00, +WO322329,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-10-10 12:06:00, +WO321418,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-10-12 19:15:00, +WO323484,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-10-30 13:30:00, +WO325614,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-11-27 18:30:00, +WO326324,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-12-03 19:00:00, +WO327516,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2018-12-13 19:30:00, +WO327088,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2018-12-14 15:30:00, +WO328584,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2019-01-10 19:00:00, +WO329601,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2019-01-24 16:00:00, +WO330495,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2019-02-07 20:00:00, +WO330133,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2019-02-14 19:00:00, +WO332038,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2019-02-28 13:00:00, +WO333079,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2019-03-21 19:30:00, +WO324408,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2019-03-21 19:30:00, +WO334243,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2019-03-28 15:00:00, +WO336028,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2019-04-17 12:30:00, +WO335590,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2019-04-19 19:30:00, +WO335588,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2019-04-23 15:30:00, +WO335589,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2019-04-23 19:30:00, +WO336977,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2019-05-01 18:30:00, +WO337046,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2019-05-19 17:00:00, +WO339716,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2019-06-11 19:30:00, +WO325839,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2019-06-18 23:00:00, +WO340677,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2019-07-01 18:00:00, +WO341900,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2019-07-26 18:30:00, +WO343343,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2019-08-15 15:30:00, +WO346655,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2019-08-30 21:30:00, +WO348767,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2019-08-30 21:30:00, +WO344081,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2019-08-30 21:30:00, +WO347195,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2019-10-11 20:30:00, +WO350683,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2019-12-03 16:00:00, +WO351922,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2019-12-08 16:00:00, +WO353167,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2020-01-13 20:00:00, +WO356429,WORK_ORDER,CM,CS004,Software Error,CWC04014,Chiller 14,2020-01-31 20:30:00, +WO355095,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2020-02-17 14:00:00, +WO357318,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2020-02-26 20:00:00, +WO360467,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2020-04-15 19:30:00, +WO360468,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2020-04-16 19:30:00, +WO360469,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2020-04-21 13:00:00, +WO360237,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2020-04-22 19:30:00, +WO361028,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2020-05-14 14:00:00, +WO364523,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2020-06-05 15:00:00, +WO351296,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2020-06-08 18:30:00, +al_7c19fd47-c286-4cd6-979c-778a1a69b45b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-09 11:30:00, +al_b38f23fe-8513-4c3d-8579-bb919dc1d36a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-11 08:30:00, +al_85e7983b-a4c7-4e18-9136-f5c31086e8f5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-12 00:00:00, +al_e8af7d6f-575c-41ba-98d8-3767bdf80409,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-13 00:00:00, +al_fb088bee-fae3-4838-92e8-b86d4a12cbf3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-14 00:00:00, +al_4f836eb2-7a0e-4150-a828-bbacff996659,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-15 00:00:00, +al_4443606b-d3c8-4465-892b-5d3b611ba584,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-16 00:00:00, +al_95bbb91d-ff44-4812-a7f3-ad26b966c9d1,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-16 03:56:00, +al_ef120ce6-0adf-4414-b685-74ea9867acc3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-17 00:00:00, +al_f98f95b5-c59a-4c81-9485-22f842cebf9f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-18 00:00:00, +al_bf62cd87-f6dc-4f98-9540-7503b37baf77,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-19 00:00:00, +al_49f05401-6279-46f2-b621-2bad6b1c1618,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-20 00:00:00, +al_0281022f-a5d4-43f1-aa61-4aceb1426f1f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-21 00:00:00, +al_86fceddd-ffce-4ee7-93dc-389e9644f35d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-22 00:00:00, +al_69377dff-4fe6-4bfc-ba59-e0afedde98b6,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-22 03:09:00, +al_29dfbca8-8831-4556-a325-334ad21f06f4,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-23 00:00:00, +al_ff857e41-e889-4b0d-9c24-94e79dec7e55,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-24 00:00:00, +al_f7c174af-2ecd-4016-9f6e-0753c27503df,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-24 10:25:00, +al_f8d21566-c0a7-46c9-9f26-f01ebdac62bf,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-25 00:00:00, +al_ca704883-c873-4b1f-bce2-cc1601703b44,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-26 00:00:00, +WO362356,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2020-06-26 18:30:00, +al_e3d9d7b3-ac6b-4df6-9175-98b619bb6cc2,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-27 00:00:00, +al_b20afa61-5d0a-4613-938d-172d00a36225,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-28 00:00:00, +al_968fd9ce-0e82-46fd-90dd-a236d8a3f761,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-29 00:00:00, +al_b8914152-0e84-4b8b-a081-8cab151c5b04,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-06-30 00:00:00, +al_bfc98ffd-3885-4e0b-92e1-b5a5279b89d7,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-01 00:00:00, +al_1f03cff7-4624-4226-ad8c-bc8d7ab7bbb4,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-02 00:00:00, +al_469ffc98-d12f-40d7-b5f6-f26c8e2100b6,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-03 00:00:00, +al_23e98ad5-b173-4387-9c5d-d1fb25b1ee8f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-04 00:00:00, +al_d3bf2cd2-90e6-45e2-bcde-4350891a0f5e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-05 00:00:00, +al_c99e0aca-203d-432b-9624-acf756e5667f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-06 00:00:00, +al_c9ecbf39-dc68-4ced-a1a6-ed44ad5000fc,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-07 00:00:00, +al_d41b37fd-33b3-4d0c-a0fd-10c5fc09e4dd,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-08 00:00:00, +WO349286,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2020-07-08 13:56:00, +al_abbe78fa-d71a-469d-9bd5-1661d11c1c68,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-09 00:00:00, +al_3ed5a6f5-71e7-4b09-9d90-1ffe7c348925,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-10 00:00:00, +WO367297,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2020-07-10 18:30:00, +al_9472cd49-1c4a-4937-b009-7cedc84976c5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-11 00:00:00, +al_034a46a8-31db-44c7-88ae-31a9e2e34b00,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-12 00:00:00, +al_06f90e29-72f6-4eff-b6d4-3061d601ee57,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-13 00:00:00, +al_e0baa70b-99f0-4eb0-ac0d-6c35ed51896f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-14 00:00:00, +al_ca174fdf-8d39-463f-b190-38890e5060b6,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-15 00:00:00, +al_bf383d59-9c01-433e-9737-8c335a7fc59e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-15 05:00:00, +al_f2298b74-247c-4fd4-88e8-282a361fc8e9,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-16 01:40:00, +al_8d049dd9-0a8d-46e6-9904-9cd26e75b24d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-17 00:00:00, +al_dd6ee9df-0936-4eb7-80a6-c30e527c0ced,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-18 00:00:00, +al_fb08904d-f821-4824-9e04-3d5c756eae8f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-19 00:00:00, +al_b45a6b2b-155e-44fb-9419-8351d983d7cd,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-20 00:00:00, +al_ea1c6782-f0c5-4ee4-ac60-48a73117dbac,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-21 00:00:00, +al_d88935d6-b963-4bd0-8e40-58c607b37e33,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-22 00:00:00, +al_76dc0fa8-27cd-4924-abdd-0adb16caa20e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-23 00:00:00, +WO369086,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2020-07-23 19:00:00, +al_814ff1d8-32c3-49c0-8952-e2039f528a5f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-24 00:00:00, +al_c08cd282-f492-4f71-91d0-d3d3d799e120,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-25 00:00:00, +al_5923ecb3-a8a6-4e81-92d0-83d2137348aa,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-25 19:03:00, +al_5e386ec8-aae5-4a49-bc13-0e5687982d97,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-26 00:00:00, +al_1aa9dfd7-825f-49ed-9af0-314303944813,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-26 15:07:00, +al_0cc7782d-2f11-42f8-a1ad-86e48d9f87d9,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-27 00:00:00, +al_66dde050-0f31-4a6f-9220-b9cb6c65bd34,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-28 00:00:00, +al_b55299ac-b10a-40c0-8984-3d00e5968d61,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-28 09:15:00, +al_1d65f22c-3229-423a-aa75-a63be8729dbe,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-29 00:00:00, +al_224ed258-4851-4c80-b7bc-47bfcc34be09,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-30 00:00:00, +al_7d724363-4b2d-4a2e-8d47-bc39244bd08c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-07-31 00:36:00, +al_896ea924-6d66-4d98-a886-2f53237b2632,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-01 00:00:00, +al_7afb70bb-d1d4-481d-87c7-f573d06aa627,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-02 00:00:00, +al_464c7aba-74b1-4193-b919-4810486eeb55,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-03 00:00:00, +al_a41080aa-895b-4c87-935f-1b0660666dd7,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-04 00:00:00, +al_370e8abb-aaa7-4e4b-86cd-53f9432f1b56,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-10 13:30:00, +al_5430df02-636f-429e-b79f-75b6557c91c5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-11 00:00:00, +al_84447438-c95f-41e3-805c-027af1706278,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-11 19:30:00, +al_d85433bf-ea12-43e1-874a-2cdfd73f9c79,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-12 00:00:00, +al_64813d8e-a3ef-4aed-af96-892875e36d1c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-13 00:00:00, +al_2adffdc7-02be-48bd-ac33-5821e7c66c62,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-14 00:00:00, +al_e9633ff8-34c5-4bc6-b925-f7edfdd12691,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-15 00:00:00, +al_2c9a9341-1f33-4ee0-8b3a-6961783bfef3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-16 00:00:00, +al_500964be-0e0e-4c5b-91d4-a0299c5d30c2,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-17 00:00:00, +al_1daf0cb2-a875-4c00-8131-347e5b4997aa,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-17 03:03:00, +al_4b3d840d-11ef-47ed-a976-83650de5d490,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-18 00:00:00, +al_f0eb631c-1c77-4e7e-b172-f3d332fe9a06,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-19 13:00:00, +al_2a4f4343-cdb9-46e8-9be8-804a0445d3a3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-20 08:17:00, +al_6d7fd8c2-d1de-4ca8-9133-0239f4b8ed07,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-21 00:00:00, +al_e7d22a64-bfd6-4920-954a-cae1f0a6605c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-21 11:01:00, +al_e5dc02bc-bfe2-48bc-be7b-adfe11a3cbc5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-22 00:00:00, +al_c4150e15-aead-4a1e-be03-35b8fbebffdf,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-23 00:00:00, +al_eb4aa794-f821-4c5b-9b92-683434275f66,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-24 00:00:00, +WO371659,WORK_ORDER,CM,MT013,Vibration Analysis,CWC04014,Chiller 14,2020-08-24 19:00:00, +al_7693fa09-aaa7-45d2-9699-15a69fa08714,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-25 00:00:00, +al_e9aae4b6-8f68-48df-9b88-8648c22b4f41,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-26 00:00:00, +al_b64e54e4-c4d1-4b14-b4d6-728e0f3a93ef,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-27 00:00:00, +al_0adffc35-2aae-43b1-a273-fac490bae3ba,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-28 00:00:00, +al_e9286a36-21c7-4a01-aa88-2bdb9d2a364b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-29 00:00:00, +al_91c699a9-e86b-445e-aae8-f785c6bb16df,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-30 00:00:00, +al_a306eee3-4073-4921-9773-52c6e3d30ed0,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2020-08-31 00:00:00, +WO371142,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2020-09-17 19:00:00, +WO372326,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2020-09-29 13:30:00, +WO374042,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2020-10-30 18:30:00, +WO377737,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2020-12-18 23:00:00, +WO377973,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2020-12-22 14:00:00, +WO382048,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2021-01-29 17:30:00, +WO382061,WORK_ORDER,CM,MT002,Cleaning,CWC04014,Chiller 14,2021-01-29 19:00:00, +WO380659,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2021-02-03 19:00:00, +WO383536,WORK_ORDER,CM,M020,Head Operations,CWC04014,Chiller 14,2021-02-23 19:00:00, +WO381358,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2021-02-25 16:30:00, +WO384632,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2021-04-01 14:00:00, +WO385900,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2021-04-13 19:30:00, +WO385899,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2021-04-15 19:30:00, +WO385901,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2021-04-21 15:30:00, +WO387150,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2021-05-10 15:25:00, +WO387987,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2021-05-21 14:00:00, +WO386400,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2021-06-16 13:00:00, +WO392402,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2021-06-18 15:00:00, +WO384012,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2021-06-22 15:00:00, +WO392787,WORK_ORDER,CM,L003,Evaporator Leak,CWC04014,Chiller 14,2021-06-23 19:31:00, +WO377504,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2021-06-25 18:30:00, +WO392843,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2021-07-01 18:30:00, +WO391814,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2021-07-10 20:00:00, +WO393575,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2021-07-28 18:30:00, +WO397146,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04014,Chiller 14,2021-08-30 15:47:00, +WO397657,WORK_ORDER,CM,MT002,Cleaning,CWC04014,Chiller 14,2021-09-09 17:00:00, +WO398031,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04014,Chiller 14,2021-09-13 19:13:00, +al_86cf85e0-5cd0-4100-a924-fc484e418cc5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2021-09-15 10:45:00, +al_81728a4b-acbb-4e62-957f-413102037a11,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04014,Chiller 14,2021-09-16 00:00:00, +al_a3277314-c97b-48a5-830f-59318bd96f82,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04014,Chiller 14,2021-09-16 03:15:00, +al_ec0eb6ba-29d7-4ce7-84d4-153b9f1a3b90,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04014,Chiller 14,2021-09-22 09:45:00, +WO398824,WORK_ORDER,CM,L004,Piping Leak,CWC04014,Chiller 14,2021-09-27 18:44:00, +WO391370,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2021-10-01 17:00:00, +WO398378,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2021-10-07 15:00:00, +WO398233,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2021-10-07 19:19:00, +WO400106,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2021-10-13 19:30:00, +WO400067,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2021-11-12 19:30:00, +WO402604,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2021-12-28 13:30:00, +WO396927,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2021-12-28 19:00:00, +WO403804,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2022-01-12 17:30:00, +WO404045,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2022-01-19 17:00:00, +WO404046,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2022-01-24 12:15:00, +WO405304,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2022-02-21 15:30:00, +WO405424,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2022-02-23 19:30:00, +WO408549,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2022-03-14 16:30:00, +WO408575,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2022-03-15 18:30:00, +WO409018,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04014,Chiller 14,2022-03-17 15:00:00, +WO409476,WORK_ORDER,CM,MT002,Cleaning,CWC04014,Chiller 14,2022-03-21 19:30:00, +WO408002,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2022-03-31 17:00:00, +WO409947,WORK_ORDER,CM,M005,Misalignment,CWC04014,Chiller 14,2022-04-06 18:30:00, +WO408992,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2022-04-12 15:30:00, +WO409654,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2022-04-18 19:00:00, +WO409655,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2022-04-19 19:00:00, +WO409657,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2022-04-20 19:00:00, +WO409656,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2022-05-19 14:00:00, +WO413176,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2022-05-30 18:30:00, +WO411130,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2022-06-02 18:30:00, +WO413702,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04014,Chiller 14,2022-06-07 12:30:00, +WO410955,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2022-06-15 14:00:00, +WO402353,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2022-06-29 12:00:00, +WO413485,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2022-07-01 16:00:00, +WO414863,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2022-07-26 17:00:00, +WO416240,WORK_ORDER,CM,CS004,Software Error,CWC04014,Chiller 14,2022-07-26 19:30:00, +WO416458,WORK_ORDER,CM,CS004,Software Error,CWC04014,Chiller 14,2022-07-28 19:30:00, +WO416151,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2022-08-15 18:30:00, +al_06513c1f-bdbd-43ab-920a-2a9d3afeae8e,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04014,Chiller 14,2022-08-30 07:00:00, +al_29111b98-17aa-4f2d-8542-0332cbb7b58b,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04014,Chiller 14,2022-08-31 05:45:00, +al_4bc6ffee-032c-48de-9193-65af395365a8,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04014,Chiller 14,2022-09-01 00:00:00, +al_aa5d7f30-f809-42b7-b133-1c010f600170,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04014,Chiller 14,2022-09-02 00:00:00, +al_aed16b94-a780-4676-98e5-14f38f4eea96,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04014,Chiller 14,2022-09-03 00:00:00, +al_45224c68-12dc-425d-bd77-acba23fd5070,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04014,Chiller 14,2022-09-04 00:00:00, +WO418742,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2022-10-13 12:30:00, +WO418189,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2022-10-14 19:00:00, +WO419608,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2022-10-26 18:30:00, +WO421034,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2022-11-02 18:30:00, +WO422708,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2022-12-16 12:15:00, +WO424311,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2023-01-11 19:00:00, +WO425025,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2023-01-30 16:30:00, +WO425782,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2023-02-13 19:30:00, +WO428568,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2023-03-09 12:30:00, +WO427382,WORK_ORDER,CM,M005,Misalignment,CWC04014,Chiller 14,2023-03-09 19:00:00, +WO428682,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2023-04-06 12:00:00, +WO428567,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2023-04-12 15:00:00, +WO428566,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2023-04-14 15:00:00, +WO428569,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2023-04-17 15:00:00, +WO128425,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2023-04-26 08:00:00, +WO130589,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04014,Chiller 14,2023-04-27 12:00:00, +WO130575,WORK_ORDER,CM,MT008,Leak Detection,CWC04014,Chiller 14,2023-04-28 09:30:00, +WO132878,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2023-05-26 14:30:00, +WO427277,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2023-06-02 12:00:00, +WO422861,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04014,Chiller 14,2023-06-23 14:30:00, +WO136388,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2023-08-01 10:30:00, +WO144494,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2023-08-22 14:30:00, +WO154346,WORK_ORDER,PM,MT010,Oil Analysis,CWC04014,Chiller 14,2023-09-13 08:00:00, +WO139507,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04014,Chiller 14,2023-09-22 08:00:00, +WO158689,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04014,Chiller 14,2023-09-27 14:30:00, +WO16168,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2010-06-22 14:12:00, +WO16230,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2010-06-22 14:12:00, +WO27442,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2010-10-25 18:11:00, +WO24941,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2010-10-25 19:53:00, +WO22056,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2010-10-25 19:53:00, +WO26821,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2010-10-25 19:53:00, +WO19831,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2010-10-25 19:53:00, +WO30170,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2010-10-25 19:53:00, +WO24546,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2010-10-25 19:53:00, +WO23176,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2010-10-25 19:53:00, +WO23466,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2010-10-25 20:38:00, +WO29652,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2010-10-25 20:38:00, +WO37362,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2010-12-01 15:30:00, +WO42032,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2010-12-23 15:30:00, +WO43106,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-01-01 15:30:00, +WO46476,WORK_ORDER,CM,MT008,Leak Detection,CWC04702,Chiller 2,2011-01-06 15:30:00, +WO45737,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-01-20 15:30:00, +WO49229,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-02-10 11:00:00, +WO52594,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-02-14 15:30:00, +WO49972,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-02-14 15:30:00, +WO53232,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-02-20 15:30:00, +WO54100,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-02-21 15:30:00, +WO49478,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-02-22 15:30:00, +WO45192,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-02-24 15:30:00, +WO49471,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-03-01 15:30:00, +WO54580,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-03-25 15:30:00, +WO58586,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-04-26 17:30:00, +WO57477,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2011-04-28 13:30:00, +WO62801,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-05-18 15:30:00, +WO67981,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04702,Chiller 2,2011-06-09 15:30:00, +WO67490,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-06-23 08:00:00, +WO71254,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-08-05 15:30:00, +WO73870,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2011-08-13 15:30:00, +WO76090,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-08-25 15:30:00, +WO84141,WORK_ORDER,PM,MT011,Calibration,CWC04702,Chiller 2,2011-10-27 08:00:00, +WO83267,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2011-11-03 07:30:00, +WO83138,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-11-03 08:00:00, +WO79221,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-11-04 19:30:00, +WO88142,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2011-11-21 15:30:00, +WO91361,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-01-11 07:30:00, +WO98975,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-01-21 15:30:00, +WO94942,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-01-22 15:30:00, +WO100092,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-01-24 15:30:00, +WO85012,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-01-25 15:00:00, +WO94647,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-01-25 15:30:00, +WO100095,WORK_ORDER,CM,M020,Head Operations,CWC04702,Chiller 2,2012-01-26 15:30:00, +WO93072,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-01-26 15:30:00, +WO97169,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-01-31 14:12:00, +WO99524,WORK_ORDER,CM,MT013,Vibration Analysis,CWC04702,Chiller 2,2012-02-08 23:00:00, +WO98973,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-02-11 10:45:00, +WO101828,WORK_ORDER,CM,MT013,Vibration Analysis,CWC04702,Chiller 2,2012-02-22 23:00:00, +WO100488,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-02-23 07:30:00, +WO98977,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-03-03 15:00:00, +WO107360,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-04-17 15:30:00, +WO103683,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-04-17 19:30:00, +WO108715,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2012-05-24 17:00:00, +WO111365,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-07-05 19:30:00, +WO114386,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-07-14 08:00:00, +WO116994,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-07-22 15:30:00, +WO115878,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2012-07-22 15:30:00, +WO118314,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2012-08-10 22:00:00, +WO121789,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-09-03 15:30:00, +WO125751,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-10-10 07:30:00, +WO126281,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2012-10-18 05:30:00, +WO129491,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-10-26 04:00:00, +WO130150,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2012-11-14 22:00:00, +WO130769,WORK_ORDER,PM,MT011,Calibration,CWC04702,Chiller 2,2012-11-17 03:30:00, +WO133596,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2012-11-30 04:30:00, +WO136622,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-01-11 07:30:00, +WO145985,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-01-20 03:30:00, +WO139576,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-01-21 07:00:00, +WO140217,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-01-27 08:45:00, +WO145936,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04702,Chiller 2,2013-02-11 20:30:00, +WO142345,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-02-14 03:30:00, +WO145937,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-02-17 07:30:00, +WO142343,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-02-18 04:30:00, +WO143761,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-02-24 15:30:00, +WO147019,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-04-06 15:30:00, +WO150591,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-04-30 07:30:00, +WO151989,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2013-05-10 19:30:00, +WO155385,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-05-31 07:30:00, +WO158783,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-07-14 08:15:00, +WO160557,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2013-07-14 15:30:00, +WO163240,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-07-27 15:30:00, +WO169434,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-08-06 15:30:00, +WO163691,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2013-08-09 09:00:00, +WO166836,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-08-21 07:30:00, +WO170103,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2013-09-07 15:30:00, +WO169738,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-09-10 06:00:00, +WO174851,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2013-11-01 13:30:00, +WO174264,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-11-08 07:30:00, +WO175382,WORK_ORDER,PM,MT011,Calibration,CWC04702,Chiller 2,2013-11-23 15:00:00, +WO178542,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2013-11-25 07:30:00, +WO181736,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2014-01-04 15:30:00, +WO181036,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2014-01-08 07:30:00, +WO178720,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2014-01-17 15:30:00, +WO185218,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2014-02-02 15:30:00, +WO189982,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2014-02-11 07:30:00, +WO192244,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2014-04-04 09:00:00, +WO195083,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2014-04-06 08:30:00, +WO198949,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2014-04-25 07:30:00, +WO205447,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04702,Chiller 2,2014-05-21 15:30:00, +WO202269,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2014-05-28 07:30:00, +WO202870,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2014-06-24 13:00:00, +WO205071,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2014-07-11 04:30:00, +WO207557,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2014-07-22 07:30:00, +WO211036,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2014-08-19 07:30:00, +WO213628,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2014-10-10 07:30:00, +WO213356,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2014-10-12 15:30:00, +WO216092,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2014-10-29 07:30:00, +WO211681,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2014-11-10 13:30:00, +WO219589,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2014-11-18 07:30:00, +WO212297,WORK_ORDER,PM,MT011,Calibration,CWC04702,Chiller 2,2014-11-23 10:00:00, +WO222101,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2015-01-03 15:30:00, +WO224849,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2015-01-24 15:30:00, +WO222164,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2015-02-24 07:30:00, +WO227705,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2015-02-28 15:30:00, +WO230272,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2015-04-07 07:30:00, +WO234857,WORK_ORDER,CM,M016,Draining Operations,CWC04702,Chiller 2,2015-04-15 15:30:00, +WO234843,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04702,Chiller 2,2015-04-17 11:00:00, +WO219674,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2015-04-19 05:00:00, +WO232251,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2015-04-28 07:30:00, +WO228421,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2015-05-16 21:45:00, +WO234943,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2015-05-19 07:30:00, +WO236921,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2015-06-15 07:30:00, +WO237636,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2015-07-10 07:30:00, +WO238841,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2015-07-24 07:30:00, +WO235605,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2015-08-03 22:30:00, +WO241304,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2015-08-20 15:30:00, +WO243371,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2015-09-15 15:30:00, +WO243600,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2015-10-02 19:30:00, +WO242148,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2015-10-10 16:30:00, +WO242781,WORK_ORDER,PM,MT011,Calibration,CWC04702,Chiller 2,2015-10-17 14:05:00, +WO246360,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2015-11-03 20:30:00, +WO248630,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2015-11-19 16:00:00, +WO250648,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2016-01-07 15:00:00, +WO253169,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2016-01-17 16:00:00, +WO250704,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2016-01-20 15:45:00, +WO257048,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04702,Chiller 2,2016-02-12 20:30:00, +WO258506,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04702,Chiller 2,2016-02-17 12:30:00, +WO255999,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2016-02-19 16:30:00, +WO258701,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2016-03-15 13:00:00, +WO261663,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2016-05-03 15:26:00, +WO256716,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2016-05-13 19:30:00, +WO264058,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2016-05-26 12:29:00, +WO248713,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2016-05-26 12:40:00, +WO266188,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2016-06-13 16:59:00, +WO268670,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2016-07-19 21:16:00, +WO266742,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2016-08-02 19:30:00, +WO270625,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2016-08-17 18:56:00, +WO265199,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2016-08-19 21:30:00, +WO272260,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2016-09-12 17:01:00, +WO275081,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2016-10-25 18:39:00, +WO272576,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2016-10-28 13:00:00, +WO277094,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2016-11-22 17:58:00, +WO271638,WORK_ORDER,PM,MT011,Calibration,CWC04702,Chiller 2,2016-12-16 17:29:00, +WO279376,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2017-01-14 14:00:00, +WO278995,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2017-01-25 20:26:00, +WO277167,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2017-02-13 18:18:00, +WO281211,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2017-02-14 18:11:00, +WO283385,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2017-03-12 14:19:00, +WO285447,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2017-03-18 14:42:00, +WO287805,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2017-05-13 13:57:00, +WO289663,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2017-05-20 14:59:00, +WO291692,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2017-06-22 15:29:00, +WO290787,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2017-07-21 15:09:00, +WO283925,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2017-07-21 19:00:00, +WO292643,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2017-07-26 14:52:00, +WO293865,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2017-07-31 13:42:00, +WO295723,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2017-09-07 16:38:00, +WO296785,WORK_ORDER,PM,MT011,Calibration,CWC04702,Chiller 2,2017-09-21 19:30:00, +WO298239,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2017-10-16 13:03:00, +WO296299,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2017-10-20 16:30:00, +WO300257,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2017-11-14 23:00:00, +WO297542,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2017-11-29 20:16:00, +WO302398,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2017-12-06 18:21:00, +WO303525,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2018-02-01 19:41:00, +WO310091,WORK_ORDER,CM,M020,Head Operations,CWC04702,Chiller 2,2018-02-03 20:30:00, +WO303032,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2018-02-05 18:46:00, +WO306027,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2018-02-08 15:07:00, +WO304152,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2018-03-06 15:09:00, +WO309085,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2018-03-16 19:16:00, +WO311160,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2018-04-13 16:01:00, +WO309250,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2018-05-03 14:30:00, +WO313269,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2018-05-23 18:55:00, +WO315757,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2018-06-22 13:51:00, +WO315857,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2018-07-18 19:00:00, +WO318098,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2018-08-18 14:29:00, +WO320150,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2018-09-08 18:26:00, +WO319381,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2018-09-17 13:10:00, +WO322331,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2018-10-16 13:00:00, +WO322072,WORK_ORDER,PM,MT011,Calibration,CWC04702,Chiller 2,2018-10-24 18:30:00, +WO324410,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2018-11-01 15:00:00, +WO324166,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2018-11-27 14:00:00, +WO326326,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2018-12-07 18:00:00, +WO322840,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2018-12-10 14:00:00, +WO328586,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2019-01-19 18:30:00, +WO325833,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2019-03-07 19:00:00, +WO330497,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2019-03-25 21:30:00, +WO333081,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2019-03-25 21:30:00, +WO329680,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2019-03-31 15:00:00, +WO335521,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2019-04-27 15:00:00, +WO334371,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2019-05-15 16:00:00, +WO342834,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2019-08-02 15:00:00, +WO343350,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2019-08-29 13:00:00, +WO347516,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2019-09-05 15:00:00, +WO344948,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2019-09-05 15:00:00, +WO348444,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2019-11-06 14:00:00, +WO349561,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2019-11-20 16:00:00, +WO348016,WORK_ORDER,PM,MT011,Calibration,CWC04702,Chiller 2,2019-12-10 19:30:00, +WO351787,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2019-12-16 15:00:00, +WO354049,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2020-02-01 00:30:00, +al_43ca5f6f-ce24-431b-978e-b94ee54f2089,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-09 16:00:00, +al_ecaf86a5-a6a5-49b1-98bd-40126a333c4e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-09 20:15:00, +al_4f3cd204-216b-4c9d-9fd0-06632ea297a2,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-10 06:15:00, +al_3aca4fe3-be4e-456c-b47c-ee559369c2c5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-11 01:45:00, +al_1a9947d5-4047-465b-8b80-fbab8c24677e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-18 00:00:00, +al_eb51d8e5-f385-41e7-b4ef-b9b58f41cc12,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-18 04:28:00, +al_02f0e160-6014-4962-86d1-574181c1749e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-18 19:45:00, +al_095eac68-1d4a-474c-aead-fdfddab1bde6,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-19 00:30:00, +al_244fd3aa-5c39-4d8a-b2a0-b80da18b6bc0,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-19 11:30:00, +al_92092d71-f9c2-43c1-86f3-7c0901c2f8ed,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-20 10:30:00, +al_0857a048-e75c-45b6-ad44-b410ef1f4503,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-21 02:15:00, +al_a3411aca-bee8-4558-8bda-0cce6691a730,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-26 14:45:00, +al_9298e4d6-e537-4455-aaaa-558d6287cc84,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-27 11:30:00, +al_15309933-155f-414a-b134-401995c76831,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-28 02:30:00, +al_0c1f9852-6b0f-41de-9f32-1afc5a4ea7cf,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-28 14:30:00, +al_5324e84b-4229-428d-810d-9e7a79c30747,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-28 20:30:00, +al_6e9cc6d1-fceb-414e-b15c-bdd899c71d9f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-30 02:30:00, +al_b093509c-133a-49d6-840f-c46b3e471fc6,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-30 10:09:00, +al_f55804ce-9e4b-44f1-9ea4-b1448c710e5b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-31 00:30:00, +al_fd9d3a4a-29ac-450c-8952-b0010e23b71f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-03-31 07:15:00, +al_2843177e-0f64-4008-b1ae-b7e2a9ffbb17,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-04-01 00:00:00, +al_d25118e2-0173-47d9-9371-959db5823f52,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-04-01 09:00:00, +al_2ac29857-7bc5-49b9-bae0-464433c9efa3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-04-02 00:00:00, +al_77201399-8e74-4d63-a9ed-81b4a53d9766,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-04-02 19:45:00, +al_7365d8ba-bc68-44df-9c99-be4b1b7e123d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-04-03 00:00:00, +al_2e7774a6-e76a-4f7c-8016-e868fcf86123,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-04-04 07:45:00, +al_0978c44f-9190-4009-90d9-13473abbf983,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-04-06 06:45:00, +al_83395f2b-cdd5-4a81-aecf-d87a8522db52,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-04-06 13:45:00, +al_060a6a8b-c343-4ff1-bd5d-c63b4cbe6739,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-04-07 00:00:00, +WO356584,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2020-04-27 16:00:00, +WO359342,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2020-04-29 15:00:00, +WO361946,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2020-05-12 15:00:00, +WO364672,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2020-06-18 15:00:00, +WO354489,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2020-07-07 21:30:00, +WO341536,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2020-07-08 14:04:00, +WO366951,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2020-07-22 15:00:00, +WO350671,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2020-07-26 14:00:00, +WO369366,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2020-08-12 15:00:00, +al_0b1cc50d-221b-4578-9d7c-4ad63e0aa3e1,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-09-22 03:15:00, +WO371753,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2020-09-26 13:30:00, +WO367153,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2020-10-20 19:00:00, +WO372365,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2020-10-20 19:00:00, +WO373355,WORK_ORDER,PM,MT011,Calibration,CWC04702,Chiller 2,2020-10-26 17:00:00, +WO374219,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2020-11-05 04:00:00, +al_0417f4bc-3806-4cec-aeff-b565d871307c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-11-05 04:30:00, +al_17d23584-93f5-45b5-bcef-a960c2bee5ee,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04702,Chiller 2,2020-11-09 01:30:00, +WO376659,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2020-12-10 16:28:00, +WO379171,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2021-01-12 20:00:00, +WO381217,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2021-02-17 16:00:00, +WO383582,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2021-03-24 17:52:00, +WO380443,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2021-03-30 15:30:00, +WO385706,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2021-04-27 13:00:00, +WO376515,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2021-05-24 18:30:00, +WO388411,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2021-05-26 15:00:00, +WO386599,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2021-06-21 22:00:00, +WO391037,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2021-07-02 15:00:00, +WO393306,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2021-08-03 15:00:00, +WO393588,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2021-08-18 12:00:00, +WO395526,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2021-09-10 15:00:00, +WO398135,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2021-10-05 15:00:00, +WO398630,WORK_ORDER,PM,MT011,Calibration,CWC04702,Chiller 2,2021-10-05 15:30:00, +WO400170,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2021-11-17 18:30:00, +WO402109,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2021-12-11 16:00:00, +WO404245,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2022-01-19 16:00:00, +WO405934,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2022-03-03 16:00:00, +WO405430,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2022-03-28 12:00:00, +WO407708,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2022-03-31 13:00:00, +WO404564,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2022-04-04 13:00:00, +WO410001,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2022-04-29 16:30:00, +WO412068,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2022-06-14 15:00:00, +WO410324,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2022-07-06 13:00:00, +WO414236,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2022-07-13 23:30:00, +WO415934,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2022-08-11 15:00:00, +WO416069,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2022-08-17 17:30:00, +WO401256,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2022-09-14 18:30:00, +WO417695,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2022-09-22 17:30:00, +WO415518,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2022-09-29 13:00:00, +WO419480,WORK_ORDER,PM,MT011,Calibration,CWC04702,Chiller 2,2022-10-06 19:30:00, +WO419390,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2022-10-12 15:00:00, +al_b49fe464-139e-4898-8552-60604db4e012,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04702,Chiller 2,2022-10-14 06:45:00, +al_ec7fc6de-80f4-454b-9801-c513c709433c,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04702,Chiller 2,2022-10-15 00:00:00, +al_e9aee2d4-ff17-4b1f-94fe-5d0c24efb1a8,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04702,Chiller 2,2022-10-16 00:00:00, +al_71b99713-b8d3-49e6-abc1-69f913d3cad2,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04702,Chiller 2,2022-10-17 00:00:00, +al_4a9bdf4e-998d-4c5a-a2df-41f13ad0fe45,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04702,Chiller 2,2022-10-18 07:15:00, +al_2db07643-d369-4232-8fde-1b7339bc7d0c,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04702,Chiller 2,2022-10-19 00:00:00, +WO419882,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2022-11-15 14:00:00, +al_e5304ad1-a031-4128-9b4d-5c968cb027db,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04702,Chiller 2,2022-11-16 04:30:00, +al_8112b0f1-18ca-4cee-b11c-23108954e6dc,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04702,Chiller 2,2022-11-17 00:00:00, +al_4c999493-d46c-4f8f-a11f-49d13521b829,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04702,Chiller 2,2022-11-18 00:00:00, +al_875d3900-bbd8-4a38-80e6-0a493627687d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04702,Chiller 2,2022-11-20 03:45:00, +al_d6c244ce-eb25-4503-8e7b-598e0c215b38,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04702,Chiller 2,2022-11-21 00:00:00, +al_5413495a-53bb-4226-8e37-b80d6263e8ad,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04702,Chiller 2,2022-11-22 00:00:00, +al_dd6e36a6-cb91-4c99-8b17-79f72fd9bfec,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04702,Chiller 2,2022-11-22 04:30:00, +al_824e528d-51a5-4857-b379-2f335da1662e,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04702,Chiller 2,2022-11-23 00:00:00, +WO421195,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2022-11-28 16:00:00, +WO423027,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2022-12-19 16:00:00, +WO424685,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2023-01-23 19:30:00, +al_abbc592b-31ab-4e2a-b9dd-c85e8e8d1b54,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04702,Chiller 2,2023-02-15 03:30:00, +al_f3f7c36f-de8c-4497-9704-dee5f4a5e502,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04702,Chiller 2,2023-02-16 00:00:00, +WO426337,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2023-02-20 17:00:00, +WO424425,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2023-03-29 15:00:00, +WO424567,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2023-03-30 17:00:00, +WO427782,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2023-04-11 11:00:00, +WO127078,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2023-04-11 11:00:00, +WO124904,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04702,Chiller 2,2023-05-03 12:00:00, +WO421494,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2023-05-31 15:00:00, +WO134122,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2023-06-02 11:00:00, +WO135849,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2023-06-02 11:00:00, +WO142688,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2023-08-11 09:00:00, +WO148909,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2023-08-30 11:00:00, +WO150323,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2023-09-05 10:30:00, +WO155722,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2023-09-19 11:00:00, +WO164772,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04702,Chiller 2,2023-10-04 09:00:00, +WO166914,WORK_ORDER,PM,MT010,Oil Analysis,CWC04702,Chiller 2,2023-10-10 09:00:00, +WO16172,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2010-06-22 14:12:00, +WO16236,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2010-06-22 14:12:00, +WO27444,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2010-10-25 18:11:00, +WO24943,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2010-10-25 19:53:00, +WO19833,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2010-10-25 19:53:00, +WO24548,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2010-10-25 19:53:00, +WO26823,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2010-10-25 19:53:00, +WO30172,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2010-10-25 19:53:00, +WO23178,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2010-10-25 19:53:00, +WO22058,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2010-10-25 19:53:00, +WO29656,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2010-10-25 20:38:00, +WO23470,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2010-10-25 20:38:00, +WO37364,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2010-12-01 15:30:00, +WO42034,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2010-12-23 15:30:00, +WO45739,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-01-20 15:30:00, +WO49231,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-02-10 12:30:00, +WO49974,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-02-14 15:30:00, +WO54101,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-02-22 15:30:00, +WO49480,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-02-25 15:30:00, +WO49473,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-03-01 15:30:00, +WO54104,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-03-02 15:30:00, +WO54117,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-03-03 15:30:00, +WO45194,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-03-03 15:30:00, +WO54582,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-03-25 15:30:00, +WO57481,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2011-04-18 12:00:00, +WO58588,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-04-26 17:30:00, +WO62859,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-05-18 15:30:00, +WO67492,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-06-23 15:30:00, +WO71256,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-08-05 15:30:00, +WO73872,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2011-08-13 15:30:00, +WO76092,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-08-25 15:30:00, +WO84143,WORK_ORDER,PM,MT011,Calibration,CWC04703,Chiller 3,2011-10-27 09:30:00, +WO83269,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2011-11-03 07:30:00, +WO83140,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-11-03 08:15:00, +WO79223,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-11-04 19:30:00, +WO88144,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-11-21 15:30:00, +WO93586,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-12-03 15:30:00, +WO93644,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04703,Chiller 3,2011-12-20 03:30:00, +WO93640,WORK_ORDER,CM,MT008,Leak Detection,CWC04703,Chiller 3,2011-12-20 03:30:00, +WO93639,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-12-21 03:30:00, +WO93637,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-12-22 03:30:00, +WO93641,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04703,Chiller 3,2011-12-22 03:30:00, +WO94944,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2011-12-22 15:30:00, +WO93577,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04703,Chiller 3,2012-01-04 15:40:00, +WO91363,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-01-11 07:45:00, +WO94593,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-01-25 15:30:00, +WO100086,WORK_ORDER,CM,MT004,Refrigerant Addition,CWC04703,Chiller 3,2012-01-27 15:30:00, +WO98981,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-02-06 15:30:00, +WO98979,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-02-11 08:00:00, +WO101829,WORK_ORDER,CM,MT013,Vibration Analysis,CWC04703,Chiller 3,2012-02-22 23:00:00, +WO100490,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-02-23 07:30:00, +WO98983,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-03-03 15:00:00, +WO107362,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-04-17 07:30:00, +WO103685,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-04-17 19:30:00, +WO108717,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2012-05-04 17:00:00, +WO111367,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-07-06 19:30:00, +WO114388,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-07-14 07:15:00, +WO116996,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-07-22 15:30:00, +WO115880,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2012-07-22 15:30:00, +WO121791,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-09-03 15:30:00, +WO125753,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-10-10 07:30:00, +WO142349,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-10-12 03:30:00, +WO126283,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2012-10-18 06:30:00, +WO130359,WORK_ORDER,CM,MT013,Vibration Analysis,CWC04703,Chiller 3,2012-10-24 21:00:00, +WO129493,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-10-31 05:00:00, +WO130154,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2012-11-14 23:00:00, +WO130771,WORK_ORDER,PM,MT011,Calibration,CWC04703,Chiller 3,2012-11-16 15:00:00, +WO136443,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-11-19 15:30:00, +WO136444,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-11-20 15:30:00, +WO133598,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2012-11-30 04:30:00, +WO139578,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2013-01-15 15:30:00, +WO136624,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2013-01-19 08:00:00, +WO140219,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2013-01-27 08:30:00, +WO142347,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2013-02-18 07:30:00, +WO143763,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2013-02-24 15:30:00, +WO147021,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2013-04-06 15:30:00, +WO150593,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2013-04-30 07:30:00, +WO151991,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2013-05-03 22:00:00, +WO155387,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2013-05-31 07:30:00, +WO158781,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2013-07-09 05:45:00, +WO160559,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2013-07-13 15:30:00, +WO163242,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2013-07-27 15:30:00, +WO166838,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2013-08-24 15:30:00, +WO170105,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2013-09-07 15:30:00, +WO169740,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2013-09-11 07:30:00, +WO174853,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2013-11-01 14:00:00, +WO174266,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2013-11-12 07:30:00, +WO175384,WORK_ORDER,PM,MT011,Calibration,CWC04703,Chiller 3,2013-11-24 11:00:00, +WO178544,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2013-11-25 07:30:00, +WO181738,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-01-04 15:30:00, +WO181038,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-01-08 07:30:00, +WO178722,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-01-20 15:30:00, +WO185220,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-02-02 15:30:00, +WO189984,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-02-11 07:30:00, +WO195085,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-04-06 08:30:00, +WO192246,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2014-04-15 15:30:00, +WO198950,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-04-16 07:30:00, +WO204412,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-05-09 15:30:00, +WO202270,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-05-27 07:30:00, +WO205072,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-07-11 05:30:00, +WO207558,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-07-22 07:30:00, +WO211037,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-08-19 07:30:00, +WO211682,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2014-09-03 14:30:00, +WO212967,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2014-09-07 15:30:00, +WO213357,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-10-12 15:30:00, +WO221885,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-10-17 15:30:00, +WO216093,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-10-29 07:30:00, +WO219944,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-10-31 15:30:00, +WO219675,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-11-04 15:30:00, +WO221609,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04703,Chiller 3,2014-11-04 15:30:00, +WO232186,WORK_ORDER,CM,M017,Major Overhaul,CWC04703,Chiller 3,2014-11-05 15:30:00, +WO219590,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2014-11-21 07:30:00, +WO212293,WORK_ORDER,PM,MT011,Calibration,CWC04703,Chiller 3,2014-11-23 12:00:00, +WO220289,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2014-11-29 15:30:00, +WO222102,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2015-01-03 15:30:00, +WO224850,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2015-02-10 07:30:00, +WO222165,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2015-02-24 07:30:00, +WO227706,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2015-02-28 15:30:00, +WO230273,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2015-04-10 07:30:00, +WO228422,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2015-05-01 15:30:00, +WO232252,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2015-05-03 15:30:00, +WO234944,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2015-05-22 07:30:00, +WO236922,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2015-07-06 07:30:00, +WO237637,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2015-07-10 07:30:00, +WO238842,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2015-07-24 07:30:00, +WO241305,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2015-08-20 15:30:00, +WO243372,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2015-09-15 15:30:00, +WO243601,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2015-10-02 19:30:00, +WO242149,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2015-10-12 16:30:00, +WO242782,WORK_ORDER,PM,MT011,Calibration,CWC04703,Chiller 3,2015-10-17 14:30:00, +WO246361,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2015-10-30 15:00:00, +WO248631,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2015-11-20 14:00:00, +WO250649,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2016-01-17 14:00:00, +WO253170,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2016-01-18 12:30:00, +WO250705,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2016-01-20 16:30:00, +WO256000,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2016-02-19 20:30:00, +WO258702,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2016-03-14 13:00:00, +WO261664,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2016-05-03 15:28:00, +WO256717,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2016-05-11 11:30:00, +WO248714,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2016-05-16 12:44:00, +WO264059,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2016-05-26 12:32:00, +WO266189,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2016-06-13 16:57:00, +WO268671,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2016-07-20 14:12:00, +WO270626,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2016-08-17 18:57:00, +WO266743,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2016-08-24 13:29:00, +WO272261,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2016-09-12 17:03:00, +WO272577,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2016-09-15 18:37:00, +WO271165,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2016-09-29 14:30:00, +WO275082,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2016-10-26 16:27:00, +WO277095,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2016-11-22 17:59:00, +WO271639,WORK_ORDER,PM,MT011,Calibration,CWC04703,Chiller 3,2016-11-28 19:24:00, +WO279377,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2017-01-10 15:53:00, +WO281959,WORK_ORDER,CM,MT003,Lubrication,CWC04703,Chiller 3,2017-01-20 20:30:00, +WO281964,WORK_ORDER,CM,MT002,Cleaning,CWC04703,Chiller 3,2017-01-20 20:30:00, +WO278996,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2017-01-25 20:22:00, +WO281212,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2017-02-14 18:12:00, +WO277168,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2017-02-19 13:29:00, +WO283386,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2017-03-13 16:42:00, +WO285448,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2017-03-18 14:43:00, +WO283926,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2017-04-25 21:00:00, +WO287806,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2017-05-13 13:59:00, +WO289664,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2017-05-20 15:00:00, +WO291693,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2017-06-23 15:06:00, +WO292644,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2017-07-26 14:53:00, +WO293866,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2017-07-31 13:44:00, +WO295724,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2017-09-08 15:16:00, +WO299752,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04703,Chiller 3,2017-09-30 19:30:00, +WO296786,WORK_ORDER,PM,MT011,Calibration,CWC04703,Chiller 3,2017-10-03 17:00:00, +WO298240,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2017-10-16 13:05:00, +WO300971,WORK_ORDER,CM,MT008,Leak Detection,CWC04703,Chiller 3,2017-10-17 19:30:00, +WO300970,WORK_ORDER,CM,M017,Major Overhaul,CWC04703,Chiller 3,2017-10-18 19:30:00, +WO301163,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04703,Chiller 3,2017-10-19 19:30:00, +WO301188,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04703,Chiller 3,2017-10-23 19:30:00, +WO300258,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2017-11-14 23:02:00, +WO296300,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2017-11-29 17:00:00, +WO297543,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2017-11-29 20:14:00, +WO302399,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2017-12-06 18:23:00, +WO303033,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2018-01-13 15:46:00, +WO303526,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2018-02-01 19:42:00, +WO306028,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2018-02-08 15:09:00, +WO304153,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2018-03-06 15:05:00, +WO309086,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2018-03-16 19:17:00, +WO309251,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2018-03-28 12:00:00, +WO311161,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2018-04-13 16:03:00, +WO313270,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2018-05-23 18:56:00, +WO315758,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2018-06-24 16:02:00, +WO318099,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2018-08-18 13:00:00, +WO319382,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2018-09-17 13:11:00, +WO320151,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2018-09-18 12:11:00, +WO322841,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2018-09-26 15:00:00, +WO322332,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2018-10-17 13:00:00, +WO322073,WORK_ORDER,PM,MT011,Calibration,CWC04703,Chiller 3,2018-10-23 19:30:00, +WO324411,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2018-11-02 13:00:00, +WO324167,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2018-11-27 15:00:00, +WO326327,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2018-12-07 20:00:00, +WO328587,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2019-01-19 20:30:00, +WO325834,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2019-02-25 20:00:00, +WO333082,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2019-03-25 23:30:00, +WO330498,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2019-03-26 21:45:00, +WO329681,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2019-03-31 17:30:00, +WO334372,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2019-04-17 15:45:00, +WO335522,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2019-04-27 17:00:00, +WO342835,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2019-08-02 17:30:00, +WO343351,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2019-08-29 14:00:00, +WO344949,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2019-09-04 07:00:00, +WO347517,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2019-09-04 19:00:00, +WO348445,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2019-11-06 15:00:00, +WO349562,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2019-11-20 18:30:00, +WO348017,WORK_ORDER,PM,MT011,Calibration,CWC04703,Chiller 3,2019-12-11 16:00:00, +WO351788,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2019-12-16 17:00:00, +WO354050,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2020-01-30 22:30:00, +WO356585,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2020-04-27 18:30:00, +WO359343,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2020-04-29 17:30:00, +WO361947,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2020-05-13 05:30:00, +WO350672,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2020-05-18 19:30:00, +WO359522,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2020-05-28 13:54:00, +WO347230,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2020-05-28 13:54:00, +al_58d36231-a55b-4a4b-bbb2-ae50edb7b607,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04703,Chiller 3,2020-06-04 03:15:00, +al_92a02bc4-7272-469a-90e3-68e02f6b791a,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04703,Chiller 3,2020-06-04 03:15:00, +al_23c79456-0e69-4ff9-b842-564ac6ea264b,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04703,Chiller 3,2020-06-06 11:42:00, +al_301e5e1c-60d2-4dc9-964b-ad64c0871868,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04703,Chiller 3,2020-06-07 00:00:00, +al_94786f6f-2922-4805-82f1-39d1ac5149e5,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04703,Chiller 3,2020-06-08 00:00:00, +WO364673,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2020-06-18 17:00:00, +WO354490,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2020-07-07 22:30:00, +WO366952,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2020-07-22 17:30:00, +WO369367,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2020-08-12 17:00:00, +WO371754,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2020-09-25 17:30:00, +WO372366,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2020-09-25 19:00:00, +al_3816b63b-9442-43f0-8a1e-ea036724f815,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04703,Chiller 3,2020-09-29 09:17:00, +WO373356,WORK_ORDER,PM,MT011,Calibration,CWC04703,Chiller 3,2020-10-22 19:30:00, +WO374220,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2020-11-04 18:00:00, +WO376660,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2020-12-10 18:30:00, +WO379172,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2021-01-13 18:30:00, +WO381218,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2021-02-17 18:00:00, +WO383583,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2021-03-24 17:54:00, +WO380444,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2021-03-30 15:30:00, +WO385707,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2021-04-16 14:00:00, +WO376516,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2021-05-04 18:30:00, +WO388412,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2021-05-27 13:00:00, +WO386601,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2021-06-21 23:00:00, +WO391038,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2021-07-02 17:00:00, +WO393307,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2021-08-03 17:15:00, +WO395831,WORK_ORDER,CM,M008,Vibration Issues,CWC04703,Chiller 3,2021-08-12 19:30:00, +WO393589,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2021-08-18 13:00:00, +WO395527,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2021-09-10 17:30:00, +al_d3dc9579-b198-475b-a769-2419964e261d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04703,Chiller 3,2021-09-22 09:45:00, +al_6668bc78-3cd6-4d4b-b9a1-a7d4818e3c1f,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04703,Chiller 3,2021-09-24 05:45:00, +WO398136,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2021-10-04 17:30:00, +WO398631,WORK_ORDER,PM,MT011,Calibration,CWC04703,Chiller 3,2021-10-05 18:00:00, +WO399764,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04703,Chiller 3,2021-10-14 16:00:00, +WO400171,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2021-11-17 20:30:00, +WO402110,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2021-12-11 18:00:00, +WO404246,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2022-01-18 18:30:00, +WO406692,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04703,Chiller 3,2022-02-11 20:30:00, +WO405935,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2022-03-03 20:00:00, +WO405431,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2022-03-28 14:00:00, +WO407709,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2022-03-31 15:00:00, +WO404565,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2022-04-04 15:00:00, +WO410002,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2022-04-28 13:00:00, +WO412069,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2022-06-16 17:30:00, +WO410325,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2022-07-06 14:00:00, +WO414237,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2022-07-13 21:30:00, +WO415935,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2022-08-11 17:00:00, +WO416070,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2022-08-17 18:30:00, +WO401257,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2022-09-16 18:30:00, +WO417696,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2022-09-22 19:00:00, +WO415519,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2022-09-29 12:00:00, +WO419481,WORK_ORDER,PM,MT011,Calibration,CWC04703,Chiller 3,2022-10-06 15:30:00, +WO420437,WORK_ORDER,CM,CS002,Sensor Failure,CWC04703,Chiller 3,2022-10-13 13:00:00, +WO419391,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2022-10-21 18:30:00, +WO419883,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2022-11-15 15:00:00, +WO421196,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2022-11-29 14:00:00, +WO423028,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2022-12-20 14:00:00, +WO424686,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2023-01-23 17:00:00, +WO426338,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2023-02-20 20:00:00, +WO424426,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2023-03-29 13:00:00, +WO424568,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2023-03-30 18:00:00, +WO127079,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2023-04-10 09:00:00, +WO427783,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2023-04-10 12:00:00, +WO124905,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04703,Chiller 3,2023-05-04 14:00:00, +WO135850,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2023-06-02 11:00:00, +WO134123,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2023-06-02 13:00:00, +WO421495,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2023-08-10 14:30:00, +WO142689,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2023-08-11 11:00:00, +WO160218,WORK_ORDER,CM,MT002,Cleaning,CWC04703,Chiller 3,2023-08-28 14:30:00, +WO148910,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2023-08-30 13:30:00, +WO150324,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2023-09-05 11:30:00, +WO155723,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2023-09-21 15:00:00, +WO164773,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04703,Chiller 3,2023-10-04 11:00:00, +WO166916,WORK_ORDER,PM,MT010,Oil Analysis,CWC04703,Chiller 3,2023-10-10 11:00:00, +WO33617,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04704,Chiller 4,2010-10-15 15:30:00, +WO41564,WORK_ORDER,CM,MT008,Leak Detection,CWC04704,Chiller 4,2010-10-20 15:30:00, +WO64011,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04704,Chiller 4,2011-04-29 15:30:00, +WO64012,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04704,Chiller 4,2011-05-03 15:30:00, +WO62745,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2011-05-18 15:30:00, +WO67368,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2011-06-23 15:30:00, +WO71050,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2011-08-05 15:30:00, +WO73874,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2011-08-13 15:30:00, +WO76184,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2011-08-25 15:30:00, +WO83325,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2011-11-03 07:30:00, +WO83323,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2011-11-03 08:00:00, +WO79655,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2011-11-04 15:45:00, +WO88374,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2011-11-21 15:30:00, +WO91541,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-01-11 07:30:00, +WO96080,WORK_ORDER,CM,MT013,Vibration Analysis,CWC04704,Chiller 4,2012-01-24 18:30:00, +WO95048,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-01-25 15:30:00, +WO101957,WORK_ORDER,CM,M017,Major Overhaul,CWC04704,Chiller 4,2012-02-08 15:30:00, +WO101965,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04704,Chiller 4,2012-02-10 15:30:00, +WO99137,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-02-11 09:00:00, +WO99141,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-02-14 13:00:00, +WO99139,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-02-16 15:30:00, +WO95050,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-02-20 15:30:00, +WO100800,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-02-23 07:30:00, +WO102646,WORK_ORDER,CM,M013,Condenser Plugged,CWC04704,Chiller 4,2012-02-26 15:30:00, +WO101938,WORK_ORDER,CM,MT013,Vibration Analysis,CWC04704,Chiller 4,2012-02-29 22:00:00, +WO102710,WORK_ORDER,CM,L004,Piping Leak,CWC04704,Chiller 4,2012-03-01 15:30:00, +WO107660,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-04-17 07:30:00, +WO104193,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-04-17 19:30:00, +WO108719,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2012-05-04 17:00:00, +WO114853,WORK_ORDER,CM,M013,Condenser Plugged,CWC04704,Chiller 4,2012-05-30 15:30:00, +WO111679,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-07-06 19:30:00, +WO114684,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-07-14 08:00:00, +WO115932,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2012-07-22 15:30:00, +WO117464,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-07-22 15:30:00, +WO118310,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2012-08-07 23:00:00, +WO123902,WORK_ORDER,CM,MT003,Lubrication,CWC04704,Chiller 4,2012-08-08 15:30:00, +WO124486,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-08-16 17:30:00, +WO121986,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-09-03 15:30:00, +WO126378,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-10-10 07:30:00, +WO142618,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-10-12 03:30:00, +WO126380,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2012-10-18 07:30:00, +WO130038,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-11-03 15:30:00, +WO130156,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2012-11-13 20:00:00, +WO136442,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-11-14 15:30:00, +WO137169,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-11-26 15:30:00, +WO134022,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2012-11-28 05:00:00, +WO139691,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2013-01-15 14:00:00, +WO136861,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2013-01-19 08:00:00, +WO140662,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2013-01-27 08:15:00, +WO142616,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2013-02-18 04:30:00, +WO144056,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2013-02-24 15:30:00, +WO147777,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04704,Chiller 4,2013-03-09 10:30:00, +WO147490,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2013-04-07 15:30:00, +WO152380,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04704,Chiller 4,2013-04-17 15:30:00, +WO150808,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2013-04-30 07:30:00, +WO151993,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2013-05-03 23:00:00, +WO155630,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2013-06-03 07:30:00, +WO160595,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2013-07-13 15:30:00, +WO158999,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2013-07-14 09:00:00, +WO163693,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2013-07-22 19:00:00, +WO163597,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2013-07-27 15:30:00, +WO167001,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2013-08-24 15:30:00, +WO170173,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2013-09-07 07:45:00, +WO170171,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2013-09-11 07:30:00, +WO174855,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2013-10-29 15:30:00, +WO174763,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2013-11-12 07:30:00, +WO178847,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2013-11-22 07:30:00, +WO175640,WORK_ORDER,PM,MT011,Calibration,CWC04704,Chiller 4,2013-11-24 15:00:00, +WO178849,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2013-11-24 15:30:00, +WO185816,WORK_ORDER,CM,MT008,Leak Detection,CWC04704,Chiller 4,2013-12-23 15:30:00, +WO181953,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2014-01-04 15:30:00, +WO181143,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2014-01-08 07:30:00, +WO185577,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2014-01-30 07:30:00, +WO190357,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2014-02-18 07:30:00, +WO196349,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04704,Chiller 4,2014-02-26 15:30:00, +WO195504,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2014-04-06 08:30:00, +WO192248,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2014-04-11 11:00:00, +WO199057,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2014-04-16 07:30:00, +WO202368,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2014-05-27 07:30:00, +WO202871,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2014-06-04 14:00:00, +WO205168,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2014-07-11 07:30:00, +WO207735,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2014-07-20 15:30:00, +WO212535,WORK_ORDER,CM,MT002,Cleaning,CWC04704,Chiller 4,2014-08-15 03:30:00, +WO211109,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2014-08-19 07:30:00, +WO211683,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2014-09-03 15:30:00, +WO212968,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2014-09-07 15:30:00, +WO213562,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2014-10-12 15:30:00, +WO219969,WORK_ORDER,CM,MT003,Lubrication,CWC04704,Chiller 4,2014-10-22 15:30:00, +WO216217,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2014-10-30 07:30:00, +WO219735,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2014-11-21 07:30:00, +WO217509,WORK_ORDER,PM,MT011,Calibration,CWC04704,Chiller 4,2014-11-22 10:00:00, +WO219552,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2014-11-22 15:30:00, +WO219736,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2014-11-26 15:30:00, +WO220290,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2014-11-29 15:30:00, +WO222212,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2015-01-03 15:30:00, +WO225030,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2015-02-09 07:30:00, +WO222213,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2015-02-24 07:30:00, +WO227807,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2015-02-28 15:30:00, +WO230470,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2015-04-10 07:30:00, +WO228423,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2015-04-30 15:30:00, +WO232328,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2015-05-03 15:30:00, +WO235038,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2015-05-22 07:30:00, +WO235606,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2015-07-02 14:30:00, +WO237013,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2015-07-06 07:30:00, +WO237638,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2015-07-10 07:30:00, +WO238998,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2015-07-25 15:30:00, +WO241375,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2015-08-20 15:30:00, +WO243373,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2015-09-15 15:30:00, +WO243749,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2015-10-02 19:30:00, +WO242150,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2015-10-10 17:00:00, +WO242858,WORK_ORDER,PM,MT011,Calibration,CWC04704,Chiller 4,2015-10-17 15:05:00, +WO246560,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2015-11-04 20:30:00, +WO248772,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2015-11-20 16:00:00, +WO241089,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2015-11-24 15:30:00, +WO248773,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2015-11-25 20:30:00, +WO248595,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2015-11-27 20:00:00, +WO253343,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2016-01-18 14:30:00, +WO250750,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2016-01-20 19:00:00, +WO250751,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2016-01-20 20:00:00, +WO256102,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2016-02-25 15:30:00, +WO258831,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2016-03-14 18:00:00, +WO263831,WORK_ORDER,CM,MT003,Lubrication,CWC04704,Chiller 4,2016-04-20 19:30:00, +WO261895,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2016-05-03 15:29:00, +WO256718,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2016-05-11 12:30:00, +WO264145,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2016-05-26 11:56:00, +WO267483,WORK_ORDER,CM,MT003,Lubrication,CWC04704,Chiller 4,2016-06-10 19:30:00, +WO266269,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2016-06-13 17:00:00, +WO265200,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2016-07-06 10:30:00, +WO268813,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2016-07-20 14:15:00, +WO266744,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2016-08-02 19:30:00, +WO270693,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2016-08-17 18:59:00, +WO272262,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2016-09-12 17:05:00, +WO271166,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2016-09-29 14:45:00, +WO275213,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2016-10-25 18:41:00, +WO272715,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2016-10-28 13:00:00, +WO277421,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04704,Chiller 4,2016-10-31 19:30:00, +WO277572,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2016-11-23 19:30:00, +WO277240,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2016-11-25 20:30:00, +WO270342,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2016-11-29 15:30:00, +WO279272,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04704,Chiller 4,2016-11-30 18:00:00, +WO271693,WORK_ORDER,PM,MT011,Calibration,CWC04704,Chiller 4,2016-11-30 19:50:00, +WO279468,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-01-14 14:39:00, +WO283200,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04704,Chiller 4,2017-01-21 20:30:00, +WO283199,WORK_ORDER,CM,MT002,Cleaning,CWC04704,Chiller 4,2017-01-23 20:30:00, +WO279026,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-01-25 20:25:00, +WO277241,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-01-30 12:14:00, +WO281386,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-02-14 18:13:00, +WO283438,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-03-13 16:48:00, +WO285584,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-03-21 12:57:00, +WO283927,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2017-04-25 21:30:00, +WO289526,WORK_ORDER,CM,MT003,Lubrication,CWC04704,Chiller 4,2017-05-02 21:30:00, +WO288040,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-05-13 15:34:00, +WO289743,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-05-20 15:05:00, +WO291778,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-06-23 15:08:00, +WO293239,WORK_ORDER,CM,MT003,Lubrication,CWC04704,Chiller 4,2017-06-27 19:30:00, +WO292645,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2017-07-26 14:54:00, +WO290788,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2017-07-27 11:48:00, +WO294058,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-07-31 19:30:00, +WO296135,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04704,Chiller 4,2017-08-01 19:30:00, +WO297031,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04704,Chiller 4,2017-08-07 19:30:00, +WO296517,WORK_ORDER,CM,M017,Major Overhaul,CWC04704,Chiller 4,2017-08-07 19:30:00, +WO295852,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-09-08 15:18:00, +WO296845,WORK_ORDER,PM,MT011,Calibration,CWC04704,Chiller 4,2017-10-03 19:30:00, +WO296301,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2017-10-10 19:00:00, +WO298377,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-10-16 13:06:00, +WO301866,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04704,Chiller 4,2017-10-30 19:30:00, +WO303210,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04704,Chiller 4,2017-11-07 20:30:00, +WO303242,WORK_ORDER,CM,M017,Major Overhaul,CWC04704,Chiller 4,2017-11-08 20:30:00, +WO303306,WORK_ORDER,CM,M017,Major Overhaul,CWC04704,Chiller 4,2017-11-08 20:30:00, +WO303206,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-11-14 20:30:00, +WO300394,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-11-14 23:03:00, +WO295436,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-11-17 00:27:00, +WO304392,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04704,Chiller 4,2017-11-17 20:30:00, +WO303109,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-11-24 18:45:00, +WO303070,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-11-29 18:55:00, +WO297544,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2017-11-29 20:12:00, +WO302555,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2017-12-06 18:25:00, +WO303527,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2018-02-01 19:47:00, +WO306187,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2018-02-06 17:28:00, +WO304180,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2018-03-06 15:03:00, +WO309230,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2018-03-16 19:18:00, +WO309252,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2018-03-28 13:00:00, +WO311269,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2018-04-13 16:04:00, +WO313422,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2018-05-23 18:53:00, +WO315858,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2018-06-18 17:30:00, +WO315822,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2018-06-24 16:04:00, +WO318165,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2018-08-18 15:00:00, +WO319383,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2018-09-17 13:13:00, +WO320229,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2018-09-18 12:13:00, +WO322842,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2018-09-26 17:00:00, +WO322415,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2018-10-17 15:00:00, +WO322117,WORK_ORDER,PM,MT011,Calibration,CWC04704,Chiller 4,2018-11-06 20:30:00, +WO324168,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2018-11-27 16:00:00, +WO326468,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2018-12-10 22:30:00, +WO328732,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2019-01-19 22:30:00, +WO325835,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2019-01-23 20:00:00, +WO328246,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2019-01-25 15:30:00, +WO320287,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2019-01-25 16:00:00, +WO324543,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2019-02-18 18:18:00, +WO330637,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2019-03-01 14:00:00, +WO333096,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2019-03-25 19:15:00, +WO329706,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2019-03-31 19:30:00, +WO334373,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2019-04-17 17:15:00, +WO335624,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2019-04-27 19:00:00, +WO338653,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04704,Chiller 4,2019-05-09 16:00:00, +WO342908,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2019-08-02 19:30:00, +WO343352,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2019-08-29 15:00:00, +WO345046,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2019-09-04 16:00:00, +WO347600,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2019-09-04 16:00:00, +WO348054,WORK_ORDER,PM,MT011,Calibration,CWC04704,Chiller 4,2019-10-31 15:30:00, +WO348446,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2019-11-06 16:00:00, +WO343608,WORK_ORDER,CM,CS002,Sensor Failure,CWC04704,Chiller 4,2019-11-07 21:11:00, +WO349654,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2019-11-20 20:30:00, +WO346886,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2019-11-26 19:15:00, +WO353010,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2019-12-13 17:00:00, +WO351955,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2019-12-16 19:00:00, +WO354148,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2020-01-31 00:30:00, +al_8e51e2ba-402c-4b8d-8eea-2d91edee19e5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-02-05 04:00:00, +al_8fa440f9-64f4-48b0-afa6-c1fed68b2070,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-02-24 20:15:00, +al_634995d9-deb1-469d-9701-1e4df4f4bc97,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-02-26 07:00:00, +al_5980f4a4-609a-4c3e-9887-b23f25b31315,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-03-12 01:45:00, +al_f4a88b4a-aa9c-4c2b-83fa-6cb61f151622,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-03-12 08:30:00, +al_ef7cf5ec-de2d-4da9-b644-83980d71c550,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-03-14 10:00:00, +al_1d5388dd-47e4-4734-ac54-4ba956226615,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-03-15 00:00:00, +al_52fc5e60-d0d7-4a2e-8c66-8889d0f7f425,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-03-16 00:00:00, +al_4b67ef18-54e7-4f38-89ce-a31b16eefa5f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-03-16 15:45:00, +WO350673,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2020-04-08 19:30:00, +al_9271c9fc-8c3b-4b1a-8ac9-51f3d0f21020,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-10 00:30:00, +al_9be57ac6-2e1b-49b2-bf62-95470a632606,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-10 07:45:00, +al_04eba4b5-9036-4ffb-8071-4b653035e582,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-11 02:00:00, +al_9496ad5e-c1d5-4315-9dea-13b9201bf20c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-11 09:45:00, +al_07ff2276-a2ae-4e9e-8197-8750004a294b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-12 01:45:00, +al_e92810e8-c688-4dcb-9aac-043ae0fad79f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-14 01:30:00, +al_92eb55a6-4e96-4592-977a-b5f8b4bcaa6c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-14 09:00:00, +al_f1636424-c53a-4603-9dc2-20bda3e56d55,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-14 17:30:00, +al_c070bd27-ce33-41fc-a60c-4107b58ba948,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-15 05:45:00, +al_f4ff3b0f-50d4-4c81-9938-a6a06877ede9,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-15 16:45:00, +al_5ca10965-8505-47d2-ae84-3b549c187b3a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-16 05:00:00, +al_f60268ee-c011-4b15-bf88-85f0b4a2db7a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-16 09:15:00, +al_8c0c0999-90e9-4593-a6de-dfb788e238a9,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-16 16:00:00, +al_989720c4-9fda-4262-8810-c733859639a7,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-17 00:15:00, +al_ed29af7d-59e1-4c09-a295-bf90beff8bfa,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-17 14:30:00, +al_3df5bd43-5851-4a42-ba82-c4973258f6e1,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-17 21:00:00, +al_3b413411-da7c-4fb3-b30a-2ab3773dd5e0,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-18 00:00:00, +al_9475bca8-8c95-47f8-9107-792e1d6e01c2,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-19 02:45:00, +al_c1c1cb4b-22ef-4b49-9861-6f4af283bd5a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-20 18:15:00, +al_0959276b-8b4f-4e1a-899d-117932300200,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-21 00:00:00, +al_3d2e99ab-744e-4dc8-bf96-bfbf9f30fa5d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-22 14:15:00, +al_ec2868be-c7a4-4daf-951e-be39b5248761,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-04-28 00:15:00, +WO356697,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2020-04-28 13:00:00, +WO359502,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2020-04-29 19:30:00, +al_98c48e6e-fcfb-4e6c-95bb-7652605b2204,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-05-05 08:15:00, +al_8d4c575b-de8c-4b75-a83f-dbd2a427b45b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-05-06 00:00:00, +al_bd10c6d1-2c96-4787-969e-80e0507bf5b3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-05-12 08:45:00, +al_21783975-1793-4559-9aed-e17a9d66766e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-05-12 16:00:00, +WO362108,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2020-05-12 19:30:00, +al_d38b019c-e99d-4204-bc42-a348bccefa8b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-05-12 20:15:00, +al_874b6177-2807-4cc3-948b-dca7194aaddd,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-05-13 04:15:00, +al_6ae76209-86ea-40be-b1e2-e7f3c83ed493,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-05-14 04:15:00, +al_9a1e1a20-e2dd-4c74-aabc-e63b54ccfff6,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-05-20 20:15:00, +al_5163507e-a1d0-41e3-b592-c147566a2d80,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-05-21 00:00:00, +al_8e90b22b-fe7f-4df3-a7c0-59ff5a13b16f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-05-23 20:45:00, +al_ed7b6f71-968f-45ec-bb89-423a70f267f9,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-05-24 00:00:00, +WO347231,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2020-05-28 13:55:00, +WO359523,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2020-05-28 13:56:00, +WO341537,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2020-05-28 13:56:00, +al_45c71438-43e7-4540-851c-4866e71f5438,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04704,Chiller 4,2020-06-06 11:42:00, +al_0d9e56a6-c079-40eb-b5bc-85bcd4741228,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04704,Chiller 4,2020-06-07 00:00:00, +al_bdbf72bf-e4af-4264-9b83-ad0fa0909ad9,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04704,Chiller 4,2020-06-08 00:00:00, +WO364812,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2020-06-17 17:30:00, +WO354598,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2020-07-07 23:30:00, +WO367119,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2020-07-22 19:30:00, +WO367154,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2020-07-23 19:00:00, +WO369517,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2020-08-13 14:00:00, +al_0621ed89-9495-4056-87b1-9a6719663362,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04704,Chiller 4,2020-08-19 00:00:00, +al_51e6498c-71c6-4ea5-9744-09cbd7fa2e17,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04704,Chiller 4,2020-08-19 17:41:00, +al_50127892-5392-4899-ba86-3c6f58b46939,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04704,Chiller 4,2020-08-20 00:00:00, +WO372367,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2020-09-22 19:00:00, +al_6b7e8412-4d29-4205-ac74-548a99bbf026,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-09-23 02:30:00, +WO371928,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2020-09-25 19:30:00, +al_47fdf566-fd50-466d-89ab-939842f3b2f2,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04704,Chiller 4,2020-09-29 09:17:00, +al_ab2ad8f6-fca0-44e2-9300-85df5e97d6c5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-03 03:15:00, +al_0ecf328c-1ab4-4903-803d-ff1399f687a0,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-04 05:00:00, +al_32a5715d-b159-49b8-b6b7-a1fee77dc37c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-08 18:30:00, +al_149ba65b-b996-4aea-a09c-1b04d985335b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-09 03:00:00, +al_c40e7284-ada4-48d0-aeef-ec171f28bb47,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-12 11:45:00, +al_b05f670c-0ad4-48b7-8240-08e0d0dae4ac,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04704,Chiller 4,2020-10-13 13:25:00, +al_f26d05c3-0817-4891-9fb9-4d8bb8d49829,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04704,Chiller 4,2020-10-14 00:00:00, +al_0d777de7-91b0-495d-a27a-aaa8a32cd028,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-14 20:15:00, +al_90ca1e61-72b2-42b7-96c9-8f58b2ea00eb,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-17 00:45:00, +al_278a3b58-8eea-40bd-8c61-16b1899bd35c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-17 06:30:00, +al_5b112be0-0c06-4b88-a40c-667c5cba1593,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-17 14:15:00, +al_1bfea97e-e355-4b5f-8cdb-56a2e93c2933,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-17 20:15:00, +al_79c218ee-3b3b-48dc-81b1-b9dfccdc27e5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-18 00:00:00, +al_c92bc5b1-0b23-4ba5-ab5e-6da5fecc8253,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-18 04:30:00, +al_c567e576-a43f-4209-b507-69eba9a5a0bc,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04704,Chiller 4,2020-10-21 16:11:00, +al_79c3ec46-42ea-4b2a-90b1-a1af879b97bd,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04704,Chiller 4,2020-10-22 00:00:00, +al_ed990652-691a-4398-bd8e-286698077f75,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-24 17:45:00, +al_2855d7b5-aa54-4a91-9ee9-31b951c0f238,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-25 00:00:00, +al_45442dd5-1c6f-48ca-8026-70cd997a4d47,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04704,Chiller 4,2020-10-26 00:00:00, +WO373419,WORK_ORDER,PM,MT011,Calibration,CWC04704,Chiller 4,2020-10-26 19:30:00, +al_5d1576e9-9d96-4f4a-9529-a6536f56e855,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-27 15:45:00, +al_e5b1b206-d4ee-4323-83e5-bc4a6b8154b0,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-28 00:00:00, +al_0b7a5e2e-a2d0-4a7e-a3e5-ddb87e906463,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-28 06:00:00, +al_7b1a0ebf-2923-4784-aff7-3c9a43576d11,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-29 14:45:00, +al_7bdf36f1-7181-46a7-b1d1-54f610aa684b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-29 19:45:00, +al_f0c09cc6-c114-4bce-93a5-9331e684c4f4,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-30 00:15:00, +al_5f31b5a9-ca2a-4d44-858f-c3ea3205e661,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-10-30 12:45:00, +al_c1a2d204-3652-4d2f-ace1-9ea919f1553e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-11-01 12:48:00, +al_2c1bb25b-96eb-456f-9c35-35ca26d08be0,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-11-01 20:00:00, +al_6c3fb20f-0d2a-48fe-8c39-b2e6458e98f7,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2020-11-02 00:00:00, +WO374393,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2020-11-04 20:00:00, +WO378537,WORK_ORDER,CM,M003,Deformation,CWC04704,Chiller 4,2020-12-07 20:30:00, +WO372007,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2020-12-08 20:00:00, +WO376826,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2020-12-10 20:30:00, +WO379443,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2020-12-21 14:00:00, +WO379362,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2021-01-14 17:43:00, +al_7adfc535-1f98-4181-a77c-be7ced5b37d3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-01-16 12:30:00, +al_b40eee11-40b7-4716-9875-f7922a8b6eb5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-01-17 00:00:00, +WO376517,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2021-01-17 19:00:00, +al_b56a4485-2a21-441e-9e56-5d7467b0c0fe,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-01-18 00:00:00, +al_aa1e1ccf-981d-465f-aec6-97899c455902,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-02-16 13:15:00, +WO381391,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2021-02-16 14:00:00, +al_065f740d-f326-4292-ad9c-c1396d15f49b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-02-24 14:30:00, +al_7daeb673-3483-48ee-b2ef-ad167d642882,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2021-02-25 01:30:00, +al_c7227a1c-c529-41e8-a7aa-21156c0c412d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-02-25 12:45:00, +al_fbc08491-2442-48d2-a1a6-36f409f3ff06,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04704,Chiller 4,2021-03-09 10:26:00, +al_711337c3-2897-4af2-9dc7-6e85f02a3bfb,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2021-03-09 10:26:00, +al_23e93f3b-2d48-4130-8587-2874ec5a505c,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04704,Chiller 4,2021-03-10 13:43:00, +al_8777856c-f559-4d1a-8b7f-c91e17ba80fb,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2021-03-10 13:43:00, +al_469e073e-6de9-4095-b9b8-58bd7227870a,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04704,Chiller 4,2021-03-11 00:00:00, +al_8eeb0c97-3965-4096-87a3-2fa0256ef990,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2021-03-11 00:00:00, +al_86a45904-1c47-4d6a-9669-92af10374b77,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04704,Chiller 4,2021-03-12 00:00:00, +al_c0dfe38f-d292-4084-9681-9bcd6bda27d5,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2021-03-12 00:00:00, +al_dd373d22-a187-48ba-80a4-4804ce13c761,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-03-18 11:04:00, +al_dfa672ea-8b2a-4b09-b178-d4c72e2ae5e5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-03-19 00:00:00, +al_d5cbe853-b80d-49d4-888b-704e89e18f7c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-03-20 06:37:00, +al_24ef8fc8-5cf7-4f25-9565-fc02516acb7a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-03-22 09:03:00, +al_a1e992cc-df6b-4a97-83bb-ab6f7e811b8e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-03-23 00:00:00, +al_cfab9d9d-b8d2-4a46-a7ea-28d3f1609bb2,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-03-23 16:00:00, +al_8e8677cb-8e3b-4a75-aa9b-f594b9931a08,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-03-24 00:00:00, +al_91adaa34-9adb-4313-ba6c-718aa3f38210,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-03-24 18:15:00, +WO383719,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2021-03-24 19:30:00, +al_0f26552c-bbc9-49be-85c6-52a72f042392,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-03-25 00:00:00, +al_d29c49c6-1dbe-4af9-a285-bad59a7c61f2,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-03-26 00:00:00, +al_4efc7b4f-b992-4757-afdd-b76765b14b19,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-03-26 14:30:00, +al_1809d4be-3a17-43ba-8b88-5026ca52fa47,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-03-27 00:00:00, +al_7295b446-6e07-4bb6-986d-507de42e8d8a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-03-28 00:00:00, +al_5d54f3ca-5f71-41a5-83b9-9911200913eb,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-03-29 00:00:00, +al_1d5a681c-1659-4300-b121-620600383242,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-03-30 12:30:00, +WO380539,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2021-03-30 17:30:00, +al_f7d20f74-ed4e-4ed9-9ae6-358ed9952926,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-03-31 00:00:00, +al_c6962fd4-96a0-443e-bd32-b03f7e8f86e5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-04-01 00:00:00, +al_8d107ae7-81ef-4b16-a81d-bc47da69565b,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04704,Chiller 4,2021-04-15 16:25:00, +al_14741217-a437-4e67-a5ad-5f984480c1aa,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2021-04-15 16:25:00, +al_653c7bdc-7c34-4a96-b524-9d1bf9764c85,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-04-15 16:25:00, +WO385984,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2021-04-26 13:00:00, +WO388555,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2021-05-27 16:52:00, +WO386600,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2021-06-18 19:30:00, +WO391190,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2021-07-02 19:30:00, +WO394592,WORK_ORDER,CM,MT003,Lubrication,CWC04704,Chiller 4,2021-07-27 19:30:00, +WO393447,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2021-08-03 19:00:00, +WO393590,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2021-08-18 14:00:00, +WO395689,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2021-09-09 19:00:00, +WO398081,WORK_ORDER,CM,MT003,Lubrication,CWC04704,Chiller 4,2021-09-14 19:43:00, +al_a284ec0b-fda2-48eb-88c3-b9fe1b89b7d8,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-09-15 10:45:00, +al_9d77536a-b1db-4e14-8cae-d2f582f7650b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-09-16 00:00:00, +al_4b314686-e7e7-40ae-8b23-a8ef531e18c2,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-09-22 09:00:00, +al_34a17c95-8fbc-433d-b51f-c388f965339d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-09-23 05:45:00, +al_c43c3fbf-9066-41c7-8495-956349970a30,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-09-24 04:00:00, +al_7133cd5b-064f-488b-a5e2-b79a5c131b7c,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-09-25 05:30:00, +al_629ec951-4adb-417c-a9ae-5b27c101f852,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-09-26 00:00:00, +al_1ebb9515-e224-459f-8dba-65bd063aaf78,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-09-26 15:57:00, +al_9f54878c-9d81-45f2-9102-a00372e6a072,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-09-27 00:00:00, +al_c58603fe-a98c-4da2-b73c-818fa037a5f0,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-09-27 05:00:00, +al_225f3850-3dbd-4b14-bd2c-6543fc621bd8,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-09-28 07:30:00, +al_420e3667-7f54-49b1-ad43-4c14fcec18e1,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-09-29 00:00:00, +al_10818c61-8842-47b5-b6b3-7f5f51b3a81e,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-09-30 00:00:00, +al_8152efc6-8dc5-4064-b953-0b199685f016,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-10-01 00:00:00, +al_06a20e96-a642-4797-aee2-e09eeaf23ae8,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-10-04 07:30:00, +WO398237,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2021-10-05 17:30:00, +WO398683,WORK_ORDER,PM,MT011,Calibration,CWC04704,Chiller 4,2021-10-05 19:30:00, +al_e0890959-4126-429f-a6ea-f6736af97d12,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-10-07 11:45:00, +al_8b653e0d-49d6-46ff-83ee-c533bba030e1,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-10-19 06:45:00, +al_a9b03f61-7e47-424d-addb-63ddd87bc081,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-10-26 03:45:00, +al_c52053d0-f757-4a5c-a186-39425480569c,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-10-27 00:00:00, +al_04b02d43-cb46-447f-9f28-ac90d8d1b6d0,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-10-28 00:00:00, +al_99769ba1-339b-4215-ba67-6deb5f188aa4,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-10-29 00:00:00, +al_44cfe4e8-657d-4d0b-af1b-ddfa5ae6df46,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-10-30 00:00:00, +al_0ab6208a-4189-4634-9b52-b565ab4c5ac2,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-10-31 00:00:00, +al_e9ec6341-fdaf-4094-bd9e-c75758e324d9,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-11-01 00:00:00, +al_5ee75a68-e603-4ff6-9ac2-da92001e21d6,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-01 03:47:00, +al_f562ef73-afe1-48e9-bd7b-c20d8b8516b0,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-01 14:45:00, +al_0e2c09b4-4e33-46a4-92de-92b0785d9697,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-02 00:00:00, +al_31752367-b72d-4a8c-853d-8dd066b0ee1e,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-11-03 06:45:00, +al_6e0ab6f0-01e5-477c-a4ef-f8fb197f8fb6,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-11-09 09:30:00, +al_e7e60769-ebae-4239-b09e-ea16ad0a6d82,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-11-10 00:00:00, +al_3fa2b9d4-df0b-4567-a99b-e0d9ac17eb0b,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-11-11 10:15:00, +al_2132c7b5-5d7c-4819-ba64-b7b7d70c4ba5,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-11-12 10:15:00, +al_e7e849af-72df-4d1e-92a6-025580de38d8,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-11-12 12:00:00, +al_4f7d6bf4-1736-4ec2-ad96-5f89857904c7,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-11-13 00:00:00, +al_1b2d8d9c-e555-4830-b0d3-db414933b50d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-13 10:14:00, +al_6b58f551-4fe8-474f-965e-8cecb158a922,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-14 00:00:00, +al_adabc023-23d9-44c8-928e-8bb9f6c92cf2,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-15 00:00:00, +al_2a9874c7-b5a1-4241-af13-696caf6cc73f,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-11-15 10:00:00, +al_1a3aa5a2-5863-4e59-b4ed-c9a3f3e116e2,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-11-16 00:00:00, +al_ffee0922-da44-46b8-90d5-5dcf122c8dab,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-11-17 11:45:00, +al_b82ae0d0-8c5b-4ec6-9aa5-a03d24fb6216,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-11-18 00:00:00, +al_95500fa0-fe07-4a99-81d2-18b14fe079ca,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-18 07:45:00, +WO400320,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2021-11-18 14:00:00, +al_eaa39f33-ac7c-47b5-a652-4c15abbfa8d7,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-19 00:00:00, +al_a27311f0-9a16-40ea-8eda-c330c071bfc3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-20 00:00:00, +al_a324a35f-3b6c-4e82-94c0-e8aecf34a9e5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-21 00:00:00, +al_bdf61c03-fc44-43b8-ae54-3cc39cdc8a55,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-22 00:00:00, +al_ae154132-9890-4e76-bf6a-a3ff26894cb5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-22 18:04:00, +al_2f6a4e4c-3f3b-43d7-8a7e-7850726395b3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-23 00:00:00, +WO397373,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2021-11-23 20:00:00, +al_8ad0909c-04ef-47d9-9022-7b973f56094f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-24 00:00:00, +al_5ef0244e-0fa7-4b17-ae69-97873afa2d12,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-25 00:00:00, +al_bdba031e-bab7-4033-bb67-9d39a16c33df,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-26 00:00:00, +al_f42ed464-f361-40f5-ae93-da0ba471966a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-26 05:32:00, +al_d95c4866-3255-40b5-abfb-1fd3fbd70ade,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-11-27 00:00:00, +al_a5da238b-2322-4e95-a45f-c16bd337e527,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-12-02 06:15:00, +al_3dcc2f08-26de-4c86-8f1d-9e87d5280529,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-12-03 00:00:00, +WO402225,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2021-12-11 20:30:00, +al_2691bda9-cda9-4e13-b505-337995e61da0,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-12-13 13:45:00, +al_ece766bf-30ed-478e-b5ce-04c4c3cbad09,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2021-12-14 00:00:00, +al_6ad9be8e-ca6f-48b0-9f47-fabd45ca1b21,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2021-12-14 16:00:00, +WO404338,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2022-01-18 16:00:00, +WO406106,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2022-03-03 18:30:00, +WO403726,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2022-03-14 13:00:00, +WO405432,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2022-03-28 13:00:00, +WO407849,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2022-03-31 17:00:00, +WO404650,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2022-04-04 17:00:00, +WO410204,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2022-04-28 15:00:00, +WO412214,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2022-06-15 18:30:00, +WO414180,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04704,Chiller 4,2022-06-15 18:31:00, +WO414203,WORK_ORDER,CM,M013,Condenser Plugged,CWC04704,Chiller 4,2022-06-17 14:00:00, +WO401258,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2022-06-28 18:30:00, +WO410326,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2022-07-01 16:00:00, +WO414377,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2022-07-14 21:30:00, +WO416036,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2022-08-12 13:00:00, +al_b6e48ed0-de95-4f2c-a456-2ffc97a8da8d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-08-30 07:00:00, +al_2959688c-ef66-482b-b5a1-d4ded54db012,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-08-31 06:00:00, +al_0d546876-4519-48e8-8b80-3acce5e6c167,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-09-01 00:00:00, +al_5e5f6a6c-39a5-45d4-84a9-25acc7db543d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-09-02 00:00:00, +al_4c1831cf-b01b-4269-8a5d-91f261af548e,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-09-03 00:00:00, +al_f3bf2746-efb6-4a21-9fd0-ca0130f3b186,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-09-04 00:00:00, +WO417763,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2022-09-23 13:00:00, +WO416071,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2022-09-26 12:30:00, +WO415520,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2022-09-29 13:00:00, +al_da5a5b50-c683-48fe-a4e0-d5124f474c88,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-10-12 08:15:00, +al_ab6c2e45-80ed-4e91-ae70-cda0b495544b,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-10-13 00:00:00, +al_3b770649-d7de-48ce-a8f9-4c5aaea9edb5,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-10-14 00:00:00, +WO419521,WORK_ORDER,PM,MT011,Calibration,CWC04704,Chiller 4,2022-10-17 15:30:00, +WO419485,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2022-10-24 15:00:00, +al_e93da4c3-baf3-43ac-8f19-94a605a6c376,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-10-25 04:00:00, +al_fcecce51-6d81-44be-91b7-1819c19c5349,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-10-26 03:15:00, +al_40d69dab-7957-4c0e-962a-35a55b521112,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2022-10-27 14:30:00, +al_ff7e332f-914c-492e-a6ff-0f22b4574b67,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2022-10-28 00:00:00, +al_2c47efa0-6350-4b01-af1b-868ae98e6796,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-10-28 10:15:00, +al_530626e0-98dc-4f26-bd50-31f95d02eaa4,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-10-31 02:30:00, +al_e113950c-491f-40f7-a713-0d1358084aa9,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-01 02:45:00, +al_d2560492-597d-4a7a-ac37-850ed9375af2,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-02 00:00:00, +al_b7402365-745d-4dd7-875c-6003344fbd9a,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-03 00:00:00, +al_c49e67c3-b9a5-4fa6-acfc-f5218fe87455,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-04 00:00:00, +al_4e568979-a9a1-454d-b459-98ec2f0652ed,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-05 00:00:00, +al_275ae3c1-42e0-450c-b9ed-c75be5711837,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-06 00:00:00, +al_868c2683-3b1c-44cf-b863-e8f7e54ae2c6,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-07 00:00:00, +al_905f13be-87d4-4c4d-ae59-76d262773148,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-08 00:00:00, +al_2577aeb6-ec4c-4a44-9de9-76ec20f7a508,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-09 00:00:00, +al_be1fdc46-5e40-4ed3-bd3d-6d0ecc812331,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-10 00:00:00, +al_2922390f-0c2f-4735-81eb-4e1f1373ce68,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-11 00:00:00, +al_1124b4be-c6c9-4239-b87b-07484f6f2d25,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-14 05:45:00, +al_eee183ef-7a6b-4eaa-97ec-4cc44a0d7dcf,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-15 00:00:00, +WO419884,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2022-11-15 16:00:00, +al_2555bf80-fddb-4f66-843d-74d94bdbcab6,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-16 00:00:00, +al_305b60eb-5bf0-4124-991d-e7de8bf0b600,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-23 03:15:00, +al_91d71504-78f7-4460-86ef-684765877f3c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2022-11-24 00:00:00, +al_be444af7-596f-4000-835f-827e284e948b,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-24 04:30:00, +al_4cd5edf7-896f-49ca-a25d-e98fbc8170cb,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-25 00:00:00, +al_5ec7b5b9-f07c-4fa2-ae72-350425c8052d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2022-11-26 01:12:00, +al_94749e13-5c89-49a5-9d50-d830e031f829,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2022-11-27 00:00:00, +al_0ad6027b-3992-4c56-a6df-e21fc6c76d2f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2022-11-28 00:00:00, +al_d9bd8813-d34c-45f5-9f32-a8c8d20701f5,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-29 00:00:00, +WO421315,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2022-11-29 16:00:00, +al_ee3fe771-935b-48cf-8455-c1bda0d3d071,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-11-30 00:00:00, +al_f13aa160-d5b3-43ba-8343-13a7bc10bf5d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-12-01 00:00:00, +al_fa7a434d-28dc-468e-8cba-100c8bfd2c77,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-12-02 00:00:00, +al_bd95564f-efd1-4cf6-8878-b43de6db6ad0,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-12-03 00:00:00, +al_43a98273-bdbc-400a-a97f-2f4326af7887,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-12-04 00:00:00, +al_34ae95e5-6071-4d85-8783-f7b1e9d957a9,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-12-05 00:00:00, +al_b3bdf54f-008e-4e48-8a14-e290d10e9563,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-12-06 00:00:00, +al_4399ec8c-a42e-4ac7-88a6-0a97d5a943c4,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2022-12-07 02:45:00, +al_0438aad6-fd92-411e-abe9-bd4e41b4a71c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2022-12-07 09:30:00, +al_cfd03409-a56a-44fc-89cc-aa41ba0d4d49,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2022-12-08 00:00:00, +al_97bec1bd-2753-4cd0-befb-3d5df6fa5c09,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2022-12-09 00:00:00, +al_2db7eccf-82d2-4b9b-b5eb-c55b2c8e3c65,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-12-10 00:00:00, +al_8a1001b1-7641-4ea2-ab64-c7e6aa2ad981,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2022-12-11 00:00:00, +al_affcbb0e-9681-4d7b-852c-d795d7983a04,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2022-12-12 00:00:00, +al_0a8f26e6-6d2c-4887-9d05-be5f574e82cf,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-12-12 07:45:00, +al_5bce9811-8e29-4f1c-b387-76deda06c8cb,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2022-12-13 00:00:00, +al_3bbb2ce8-54e7-4c1a-a766-a52a010595b9,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-13 19:15:00, +al_e57a6641-38d2-4ace-ae19-7a2f01684cba,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-14 00:00:00, +al_b175bd6f-7b6b-4771-9dc7-eb7cb36a856a,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-15 00:00:00, +al_48d10b09-38bc-4238-be9e-db4dd4f8734c,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-16 00:00:00, +al_a59b04ee-8a15-41c8-a57a-ee718e6c6023,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-17 00:00:00, +al_18aa43e0-2f05-446b-836f-3c42577e7424,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-18 00:00:00, +al_6981fd1b-0c6b-4b4f-8c43-8ecd43d3a269,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-19 00:00:00, +al_26fed812-9f28-43b2-8b26-56a7c058115c,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-20 00:00:00, +WO423181,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2022-12-20 16:00:00, +al_0ef344d3-bf31-4abc-968e-a127f493c5a3,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-21 00:00:00, +al_7a907f50-45cf-43d9-b956-eac28d3e3cb9,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-22 00:00:00, +al_cfb7af64-4a0a-49ef-b554-c9fba25eef54,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-23 00:00:00, +al_b590f8a1-7bcc-4756-ac2e-338880b041c7,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-24 00:00:00, +al_bd468cec-2e1c-4059-b273-3ca859b948f0,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-25 00:00:00, +al_3188df05-673e-49bd-89dd-0a91130c4c76,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-26 00:00:00, +al_94536928-5052-435f-9aa9-094efbb96c5d,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-27 00:00:00, +al_fd933964-7777-4797-8f40-f9f5ae166d2c,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-28 00:00:00, +al_c62583b1-2309-4bd2-a53a-4a3913d36c8e,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-29 00:00:00, +al_662737b9-3460-449f-a78c-8564ddac6d7f,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-30 00:00:00, +al_818c6fc1-aaeb-4212-8877-476fe738e8b6,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2022-12-31 00:00:00, +al_c279c622-1a9e-41b7-b166-4d04e6e62a62,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2023-01-01 00:00:00, +al_e3794a1c-23e9-4340-be2a-6325543eb60b,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2023-01-02 00:00:00, +al_fbc212f2-1253-445c-8777-25a9397979ab,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2023-01-03 00:00:00, +al_32d2f196-8f0a-4ffa-9a79-be6c7fe4bea5,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2023-01-04 00:00:00, +al_6c98da10-3812-4f71-bab3-b83503afa7be,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2023-01-05 00:00:00, +al_aac397a7-abf3-44a8-9596-1d7b9b07521c,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2023-01-06 00:00:00, +al_c0d4ceec-9ae7-4c4e-b2f8-7de3c2a4ec31,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2023-01-07 00:00:00, +al_c6c4f49c-0415-4921-bd99-396cf28b5397,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2023-01-08 00:00:00, +al_3836ba50-d3f5-4ae9-accf-ab7862ff655b,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2023-01-09 00:00:00, +al_dd8357a5-f9ff-47e1-a122-1fbb2a5fac3e,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2023-01-10 00:00:00, +al_3b7c8283-1901-4992-b0aa-a0c8e5c82400,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2023-01-11 00:00:00, +al_1d1798d4-9b82-4a33-bdea-3b2892c24513,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04704,Chiller 4,2023-01-11 12:45:00, +al_ce5aaac5-feff-47b1-a62a-f4e2bf2ded79,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2023-01-11 12:45:00, +al_f146eb69-067e-41d5-a785-7dc35d74cdae,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04704,Chiller 4,2023-01-12 00:00:00, +al_468b3143-bf89-4058-b113-400a23008b42,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04704,Chiller 4,2023-01-12 00:00:00, +al_b6175a6a-81c7-420c-92b8-e158ca52e8fa,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2023-01-12 00:00:00, +al_98d4f7ed-11d4-487f-b062-4bccba49f636,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04704,Chiller 4,2023-01-12 11:45:00, +al_80daaed0-a135-4f06-853f-ffa45a762194,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2023-01-12 11:45:00, +al_d89bb656-e7d5-4cf2-833f-4058d1680785,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-01-13 00:00:00, +al_d0438147-8a36-4bc5-ac64-0508ae448539,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-01-18 06:15:00, +al_0e9c65b2-08ca-4f95-987a-72a2155ea1b7,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-01-19 00:00:00, +al_e8b5d983-5043-4b83-bb3a-ed6c0c6ae7c3,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-01-20 00:00:00, +WO424777,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2023-01-24 16:00:00, +WO423667,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2023-02-02 19:30:00, +WO418088,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2023-02-02 19:30:00, +al_71003ad0-a4fc-4dd0-83cb-1f6c2839acb2,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2023-02-10 08:30:00, +al_26337aac-ccc6-4785-b268-9ea24ff6fa2f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2023-02-11 00:00:00, +al_2c147c9b-c9ba-4b4f-965a-a91138fdfe8a,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-02-14 04:15:00, +al_a560c40b-b36b-4b30-8ec9-8d013bb80f47,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-02-16 08:45:00, +al_191decfa-d972-4fa9-89e4-a15bdbec72f8,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-02-17 00:00:00, +al_cfae6d44-7cc0-46ef-8079-f0faad408649,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-02-20 04:00:00, +al_38d512d8-ea9f-47c7-aa4e-35dbf54da64f,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-02-21 00:00:00, +al_d3572404-830b-4014-92f1-e85fe3b625de,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2023-02-21 11:24:00, +WO426467,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2023-02-21 14:30:00, +al_f5df2726-b7c9-4292-b71b-bc0cf2af93ef,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2023-02-22 00:00:00, +al_af29d6cc-ff8e-44bd-ab32-8552cb20a099,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-03-02 07:30:00, +al_199840fc-e42a-4deb-95bc-f1d68c26e97a,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-03-03 00:00:00, +al_7db0c945-ca4a-474d-9afe-9f94341ea93d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-03-13 09:45:00, +al_8eef045d-d135-4469-aa8b-39ab02576a6b,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-03-14 00:00:00, +al_ee1c9282-2650-460c-93c0-a63ae50db3e4,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-03-15 00:00:00, +al_b9bbf2ad-16c7-49cc-addb-397af47ae7de,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-03-21 07:15:00, +al_3aaba0c3-f39d-4999-8489-217cd92d16dc,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-03-22 00:00:00, +al_094c7fda-b514-4467-8f9c-fbe025e76ee1,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-03-23 00:00:00, +al_523495b5-6992-4e1c-bd0e-210199e9b8ee,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-03-24 00:00:00, +al_6ecbfb87-f37c-4c75-9f8d-07993bfabcf8,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-03-29 03:45:00, +al_61cef358-5baa-4ff4-b008-3143e988cc5b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2023-03-29 13:54:00, +al_9812d526-83b1-4c6e-bafe-8436a515c942,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04704,Chiller 4,2023-03-30 00:00:00, +WO424483,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2023-03-30 15:00:00, +al_99cb961f-893a-4ff9-9ea1-3c3b8a337b6d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-03-30 15:00:00, +WO424569,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2023-03-30 19:00:00, +al_1657c6e7-980f-4455-9fc1-2b43cf084191,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04704,Chiller 4,2023-03-31 00:00:00, +WO427859,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2023-04-10 10:00:00, +WO127096,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2023-04-10 11:00:00, +WO130601,WORK_ORDER,CM,MT003,Lubrication,CWC04704,Chiller 4,2023-04-27 15:00:00, +WO124906,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04704,Chiller 4,2023-05-04 15:00:00, +WO136257,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2023-06-02 11:00:00, +WO134226,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2023-06-02 15:00:00, +WO153758,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04704,Chiller 4,2023-08-04 15:00:00, +WO142776,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2023-08-16 09:00:00, +WO421496,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2023-08-24 14:30:00, +WO149024,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2023-08-31 09:00:00, +WO150325,WORK_ORDER,PM,MT010,Oil Analysis,CWC04704,Chiller 4,2023-09-05 12:30:00, +WO155949,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2023-09-21 13:00:00, +WO164853,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04704,Chiller 4,2023-10-04 13:00:00, +WO39876,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04006,Chiller 6,2010-10-10 15:30:00, +WO41380,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04006,Chiller 6,2010-11-08 15:30:00, +WO37884,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2010-12-07 15:30:00, +WO41914,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2010-12-20 15:30:00, +WO49532,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-01-12 15:30:00, +WO45625,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-01-19 15:30:00, +WO46328,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-02-04 10:00:00, +WO48264,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-02-08 11:30:00, +WO48266,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-02-09 15:30:00, +WO48268,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-02-10 15:30:00, +WO49890,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-02-16 15:30:00, +WO54494,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-03-30 15:30:00, +WO55254,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2011-04-01 11:11:00, +WO58502,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-05-03 15:30:00, +WO62773,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-05-17 15:30:00, +WO67408,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-06-20 15:30:00, +WO71172,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-07-22 15:30:00, +WO75739,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-08-16 15:30:00, +WO75668,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2011-08-17 15:30:00, +WO77355,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2011-08-18 15:30:00, +WO79141,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-09-19 15:30:00, +WO82817,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2011-09-21 15:30:00, +WO83056,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-10-17 15:30:00, +WO81318,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-10-31 12:00:00, +WO85220,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2011-11-04 15:30:00, +WO86879,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-11-23 15:30:00, +WO91277,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2011-12-23 15:30:00, +WO95204,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04006,Chiller 6,2012-01-04 15:30:00, +WO95244,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04006,Chiller 6,2012-01-06 15:30:00, +WO97193,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-01-17 15:30:00, +WO129175,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2012-01-17 19:30:00, +WO94581,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-01-23 09:00:00, +WO98109,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-02-06 07:30:00, +WO98165,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-02-06 08:00:00, +WO98167,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-02-06 08:30:00, +WO99575,WORK_ORDER,CM,MT013,Vibration Analysis,CWC04006,Chiller 6,2012-02-08 22:00:00, +WO99928,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-02-16 15:30:00, +WO102648,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-02-17 03:30:00, +WO99748,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-02-17 15:30:00, +WO102701,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2012-03-01 15:30:00, +WO104981,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2012-03-26 15:30:00, +WO103615,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-03-30 08:00:00, +WO110153,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-04-11 15:30:00, +WO107035,WORK_ORDER,CM,MT013,Vibration Analysis,CWC04006,Chiller 6,2012-04-11 16:00:00, +WO107292,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-04-23 15:30:00, +WO114836,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2012-05-26 15:00:00, +WO111299,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-06-04 15:30:00, +WO114322,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-06-19 15:30:00, +WO116750,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2012-07-13 20:00:00, +WO116926,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-07-20 08:00:00, +WO123903,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2012-08-08 15:30:00, +WO123918,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04006,Chiller 6,2012-08-15 15:30:00, +WO121982,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2012-08-20 15:30:00, +WO121727,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-08-27 15:30:00, +WO125667,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-09-29 15:30:00, +WO128715,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-10-25 15:30:00, +WO133530,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-11-23 08:00:00, +WO131882,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2012-12-04 15:30:00, +WO136560,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2012-12-20 15:30:00, +WO140921,WORK_ORDER,CM,M016,Draining Operations,CWC04006,Chiller 6,2012-12-22 05:30:00, +WO140163,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-02-14 15:30:00, +WO142319,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-02-15 08:00:00, +WO142317,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-02-15 09:00:00, +WO142321,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-02-18 12:30:00, +WO148449,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-02-22 03:30:00, +WO143189,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-02-22 15:30:00, +WO143709,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-03-05 15:30:00, +WO146967,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-03-18 09:00:00, +WO148291,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2013-03-25 15:30:00, +WO152151,WORK_ORDER,CM,MT013,Vibration Analysis,CWC04006,Chiller 6,2013-04-19 19:30:00, +WO150539,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-04-22 08:00:00, +WO146621,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2013-04-24 14:36:00, +WO152923,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2013-05-13 17:00:00, +WO155337,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-05-23 08:00:00, +WO158221,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-06-12 15:30:00, +WO159732,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2013-06-28 09:30:00, +WO164965,WORK_ORDER,CM,M016,Draining Operations,CWC04006,Chiller 6,2013-07-18 07:00:00, +WO162680,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-07-19 15:30:00, +WO169456,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-08-07 15:30:00, +WO167196,WORK_ORDER,CM,MT013,Vibration Analysis,CWC04006,Chiller 6,2013-08-22 14:30:00, +WO166790,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-08-23 15:30:00, +WO174049,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04006,Chiller 6,2013-09-01 15:30:00, +WO168621,WORK_ORDER,PM,MT014,Filter Replacement,CWC04006,Chiller 6,2013-09-03 15:30:00, +WO166997,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2013-09-07 07:30:00, +WO169692,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-09-16 15:30:00, +WO171029,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2013-09-27 13:00:00, +WO171877,WORK_ORDER,PM,MT014,Filter Replacement,CWC04006,Chiller 6,2013-10-02 15:30:00, +WO174216,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-10-22 15:30:00, +WO176720,WORK_ORDER,PM,MT014,Filter Replacement,CWC04006,Chiller 6,2013-11-05 15:30:00, +WO178496,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-11-18 15:30:00, +WO181690,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2013-12-21 15:30:00, +WO188806,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-01-15 15:30:00, +WO186359,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-01-21 15:30:00, +WO190188,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-02-11 15:30:00, +WO190827,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-02-19 15:30:00, +WO189130,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-02-21 09:00:00, +WO189128,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-02-22 15:30:00, +WO189126,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-02-26 15:30:00, +WO193443,WORK_ORDER,PM,MT014,Filter Replacement,CWC04006,Chiller 6,2014-03-04 15:30:00, +WO198549,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2014-03-18 15:30:00, +WO195035,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-03-18 15:30:00, +WO198546,WORK_ORDER,CM,M017,Major Overhaul,CWC04006,Chiller 6,2014-03-24 15:30:00, +WO197294,WORK_ORDER,PM,MT014,Filter Replacement,CWC04006,Chiller 6,2014-03-31 15:30:00, +WO200810,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-04-17 15:30:00, +WO198920,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-04-24 15:30:00, +WO198386,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2014-05-12 15:30:00, +WO202245,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-05-23 15:30:00, +WO205443,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-05-28 15:30:00, +WO207259,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2014-06-04 15:30:00, +WO207361,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-06-13 15:30:00, +WO205049,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-06-19 15:30:00, +WO207336,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2014-06-19 15:30:00, +WO205740,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2014-06-27 13:30:00, +WO209438,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-07-10 15:30:00, +WO212532,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-07-25 03:30:00, +WO208035,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-07-29 15:30:00, +WO211001,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-08-27 09:00:00, +WO211107,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2014-09-04 15:30:00, +WO213334,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-09-16 15:30:00, +WO214127,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2014-09-30 13:30:00, +WO216625,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-10-21 15:30:00, +WO218390,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2014-11-03 15:30:00, +WO219567,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-11-19 15:30:00, +WO225992,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04006,Chiller 6,2014-12-17 15:30:00, +WO222071,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2014-12-18 15:30:00, +WO224826,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2015-01-21 15:30:00, +WO227060,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2015-02-16 15:30:00, +WO226210,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2015-02-17 13:29:00, +WO226211,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2015-02-18 09:36:00, +WO227681,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2015-02-20 15:30:00, +WO229846,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2015-02-25 15:30:00, +WO231489,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2015-03-12 18:30:00, +WO230249,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2015-03-17 19:30:00, +WO230889,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2015-03-23 19:30:00, +WO232203,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2015-03-24 10:30:00, +WO234858,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2015-04-16 09:00:00, +WO232531,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2015-04-28 15:30:00, +WO232004,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2015-04-28 15:30:00, +WO234920,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2015-05-21 15:30:00, +WO237315,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2015-05-26 15:30:00, +WO236898,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2015-06-15 15:30:00, +WO238257,WORK_ORDER,CM,M013,Condenser Plugged,CWC04006,Chiller 6,2015-06-19 15:30:00, +WO237651,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2015-06-30 12:00:00, +WO239366,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2015-07-23 15:30:00, +WO241281,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2015-08-18 15:30:00, +WO241373,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2015-08-22 15:30:00, +WO243570,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2015-09-19 19:30:00, +WO244406,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2015-09-28 10:00:00, +WO246338,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2015-10-22 18:30:00, +WO247571,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2015-11-06 15:00:00, +WO248609,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2015-11-17 14:00:00, +WO251118,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-01-05 15:00:00, +WO253148,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-01-21 00:00:00, +WO245628,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-01-29 15:00:00, +WO254582,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-02-09 17:49:00, +WO256048,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-02-17 20:00:00, +WO255988,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-02-18 14:00:00, +WO254583,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-02-18 15:42:00, +WO259211,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-03-21 13:00:00, +WO259852,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2016-04-05 16:45:00, +WO263818,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04006,Chiller 6,2016-04-17 19:30:00, +WO261652,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-04-27 21:27:00, +WO261311,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2016-05-01 13:00:00, +WO264047,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-05-18 16:40:00, +WO267462,WORK_ORDER,CM,MT003,Lubrication,CWC04006,Chiller 6,2016-06-09 19:30:00, +WO266626,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-06-23 16:52:00, +WO267236,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2016-07-04 06:45:00, +WO268659,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-07-31 15:25:00, +WO270607,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-08-15 17:52:00, +WO270691,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2016-08-22 13:30:00, +WO273026,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-09-20 18:06:00, +WO273722,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2016-10-04 16:00:00, +WO275069,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-10-20 13:00:00, +WO276162,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2016-11-03 18:05:00, +WO277077,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-11-16 18:00:00, +WO279270,WORK_ORDER,CM,M013,Condenser Plugged,CWC04006,Chiller 6,2016-12-01 20:30:00, +WO274285,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-12-21 15:30:00, +WO279364,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2016-12-23 14:45:00, +WO280708,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04006,Chiller 6,2017-01-04 17:00:00, +WO281029,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04006,Chiller 6,2017-01-04 20:30:00, +WO282024,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04006,Chiller 6,2017-01-05 20:30:00, +WO281200,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2017-01-27 18:03:00, +WO284140,WORK_ORDER,CM,M013,Condenser Plugged,CWC04006,Chiller 6,2017-02-10 20:30:00, +WO284139,WORK_ORDER,CM,MT008,Leak Detection,CWC04006,Chiller 6,2017-02-11 20:30:00, +WO284135,WORK_ORDER,CM,MT008,Leak Detection,CWC04006,Chiller 6,2017-02-12 20:30:00, +WO283421,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2017-02-15 18:26:00, +WO284195,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04006,Chiller 6,2017-02-15 20:30:00, +WO282855,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2017-02-20 16:01:00, +WO282856,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2017-02-20 19:17:00, +WO283376,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2017-02-27 18:16:00, +WO285808,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2017-03-23 18:12:00, +WO286432,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2017-03-31 14:02:00, +WO287779,WORK_ORDER,CM,OP001,Process Upset,CWC04006,Chiller 6,2017-04-08 19:30:00, +WO287796,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2017-04-21 16:46:00, +WO287507,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2017-04-27 19:30:00, +WO289536,WORK_ORDER,CM,MT003,Lubrication,CWC04006,Chiller 6,2017-05-02 21:30:00, +WO290049,WORK_ORDER,CM,MT008,Leak Detection,CWC04006,Chiller 6,2017-05-04 19:30:00, +WO289647,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2017-05-22 14:32:00, +WO291120,WORK_ORDER,CM,CS002,Sensor Failure,CWC04006,Chiller 6,2017-05-27 19:30:00, +WO291121,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2017-05-30 19:30:00, +WO291438,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2017-05-31 19:30:00, +WO293288,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04006,Chiller 6,2017-06-12 19:30:00, +WO293280,WORK_ORDER,CM,M013,Condenser Plugged,CWC04006,Chiller 6,2017-06-14 19:30:00, +WO292046,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2017-06-23 15:11:00, +WO292653,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2017-07-14 12:00:00, +WO296150,WORK_ORDER,CM,M013,Condenser Plugged,CWC04006,Chiller 6,2017-07-15 19:30:00, +WO293855,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2017-07-24 16:46:00, +WO297033,WORK_ORDER,CM,MT003,Lubrication,CWC04006,Chiller 6,2017-08-16 19:30:00, +WO296190,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2017-09-01 15:55:00, +WO299060,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2017-09-15 19:30:00, +WO299743,WORK_ORDER,CM,M005,Misalignment,CWC04006,Chiller 6,2017-09-25 19:30:00, +WO299779,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2017-09-25 19:30:00, +WO299760,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04006,Chiller 6,2017-09-27 19:30:00, +WO298228,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2017-10-03 18:26:00, +WO301165,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04006,Chiller 6,2017-10-10 19:30:00, +WO301175,WORK_ORDER,CM,MT003,Lubrication,CWC04006,Chiller 6,2017-10-25 19:30:00, +WO300247,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2017-11-10 01:00:00, +WO302070,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2017-11-28 19:02:00, +WO296253,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2017-11-29 20:26:00, +WO302913,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2017-12-02 17:09:00, +WO305991,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2018-01-24 18:36:00, +WO309074,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2018-03-09 18:02:00, +WO308213,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2018-03-10 19:30:00, +WO308212,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2018-03-10 20:30:00, +WO308740,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2018-03-12 12:17:00, +WO299379,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2018-03-13 15:30:00, +WO311659,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2018-03-27 13:07:00, +WO311151,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2018-04-09 14:52:00, +WO314466,WORK_ORDER,CM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2018-04-09 19:30:00, +WO312522,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2018-04-17 19:00:00, +WO313261,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2018-05-11 20:43:00, +WO315748,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2018-06-25 20:08:00, +WO319574,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04006,Chiller 6,2018-06-26 19:30:00, +WO319618,WORK_ORDER,CM,M013,Condenser Plugged,CWC04006,Chiller 6,2018-07-12 19:30:00, +WO317766,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2018-07-16 19:00:00, +WO321359,WORK_ORDER,CM,MT003,Lubrication,CWC04006,Chiller 6,2018-07-26 19:30:00, +WO321899,WORK_ORDER,CM,M013,Condenser Plugged,CWC04006,Chiller 6,2018-08-13 19:30:00, +WO318091,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2018-08-27 19:06:00, +WO322677,WORK_ORDER,CM,M013,Condenser Plugged,CWC04006,Chiller 6,2018-09-05 19:30:00, +WO320888,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2018-09-20 12:04:00, +WO320140,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2018-09-22 14:49:00, +WO323269,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2018-09-26 19:00:00, +WO324401,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2018-11-16 16:30:00, +WO326318,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2018-11-28 19:00:00, +WO322324,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2018-12-05 14:00:00, +WO327206,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2018-12-14 14:15:00, +al_6427851d-cb16-4cb2-9dc0-229e89f92fb9,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-04 00:00:00, +al_ac3f1903-2e8e-4c8b-8de0-5dcaca0d120e,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-04 00:00:00, +al_7057f3bf-c713-444b-a95b-94a9c01a2d83,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-05 00:00:00, +al_f2f82314-701f-46fb-997f-27d3e88448f0,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-05 00:00:00, +al_3c54eb86-32ee-44ad-92eb-d7978fe34236,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-06 00:00:00, +al_534d221c-ffe5-436b-8737-ffa3b5535614,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-06 00:00:00, +al_f8a9e612-acd4-4f54-a688-477b274a829a,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-07 00:00:00, +al_d7384d33-2946-42d1-8ad3-e9770626911d,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-07 00:00:00, +al_0ff09ef6-4e5a-42ae-8cc8-93b19ff1b56a,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-08 00:00:00, +al_10ae48a2-0e75-4873-945e-47597c84e88e,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-08 00:00:00, +WO328577,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2019-01-08 18:30:00, +al_1cc8ac8e-70f1-404a-aabb-903c3162e301,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-09 00:00:00, +al_8a687462-1886-4bac-8a75-3c731bff9a12,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-09 12:00:00, +al_e39fdcf1-f343-4866-8b2e-bb02cef04dcc,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-10 00:00:00, +al_5a6e2b61-87e2-41fd-91a8-82e2244b3a9e,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-10 00:00:00, +al_b940d046-dc8d-468e-b6da-f7776b8b1f52,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-11 00:00:00, +al_6e871e6e-4699-4ef6-8e7c-c33a1593ee7d,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-11 00:00:00, +al_43ac7947-3c64-41e0-b0c9-ef944f3a5902,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-12 00:00:00, +al_4b5dfb21-b8b6-4cae-8c76-a998d7ff3df0,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-12 00:00:00, +al_0735bfee-cfe9-434f-ab82-33ac9031bd3f,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-13 00:00:00, +al_f095ad7c-dca8-4c72-8649-baed65cfc6c5,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-13 00:00:00, +al_75384aba-f32d-4c33-ae39-b2287cee269b,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-14 00:00:00, +al_de24e5fe-4f58-4d3f-a653-f137fbcb90c2,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-14 00:00:00, +al_ab804600-bfef-4543-9ea6-515c0615863a,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-15 00:00:00, +al_82023804-4412-4fa6-b3be-249d8a329f57,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-15 00:00:00, +al_776009c8-78c5-4373-8f40-39ad18048dbd,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-16 00:00:00, +al_9b365c27-e60d-4948-97ea-68bb64449913,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-16 00:00:00, +al_909de86d-0c35-47a9-97d9-05022dc1a5de,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-17 00:00:00, +al_3b48d201-278b-46cd-8271-7979b5cab429,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-17 00:00:00, +al_8c00d912-890d-418e-885a-137c0131f129,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-18 00:00:00, +al_432f815a-75c8-4471-8530-c7c7bd36386d,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-18 00:00:00, +al_8bd4f75b-8c80-4ab9-aabd-24e06b6f10ff,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-19 00:00:00, +al_1c1e189d-4e36-4276-bf87-3c15a8cbf43f,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-19 00:00:00, +al_f1e74696-804a-48a7-84e7-8263ffa79241,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-20 00:00:00, +al_52efd2ee-494f-4b13-bcc7-2834da404805,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-20 00:00:00, +al_540eb212-aad5-482b-94b6-06a6dd5ae3a3,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-21 00:00:00, +al_94a204a8-7fcb-498e-b376-32e78031052e,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-21 00:00:00, +WO325836,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2019-01-21 20:00:00, +al_073bdfff-8452-448b-9417-3b795adcc230,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-22 00:00:00, +al_9f84e75b-d8ab-4a86-a217-b9a340aeb988,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-22 00:00:00, +al_df9e2624-2658-4b1d-84e5-0014b7ff80eb,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-22 15:00:00, +al_e4c4f87d-739d-4506-add8-2c0d9e7efeab,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-23 00:00:00, +al_18a02f21-7bb0-41f7-9dbd-a53512ac7795,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-23 00:00:00, +al_7110c10e-2b92-4ba1-98a5-ebeb6fcb6182,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-24 00:00:00, +al_b722d5ee-7ed1-44d9-aa1c-d297ae31ce70,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-24 00:00:00, +al_4fcd2882-28cf-488e-afc0-9ce21895351c,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-25 00:00:00, +al_6eab4c79-8367-4d2e-b2a4-1d657c26d234,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-25 00:00:00, +al_c838ba1a-4d24-431c-bd08-44a369a973cb,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-26 00:00:00, +al_e0a2cdd4-22fc-47dd-9890-9f4074138df1,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-26 00:00:00, +al_96516e6c-9bc8-4a13-b2a0-03a33fca11fb,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-27 00:00:00, +al_cbe021d2-7eb3-404a-bc9a-3ad1687a5909,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-27 00:00:00, +al_580ce193-d75f-4a5e-9601-1e099a2c8b40,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-28 00:00:00, +al_5c8ef8e4-b6bf-4a9a-865a-662bfc68f0c3,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-28 00:00:00, +al_68e5bcf9-b1e3-42c0-b8b6-9228e10e4a9f,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-29 00:00:00, +al_ee85411d-e9d6-4ce6-8808-276050e75161,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-29 00:00:00, +al_9323a310-3fa6-40bc-8dae-52338c5d7b60,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-30 00:00:00, +al_6230afd2-b109-4571-b396-a7eb773f122e,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-30 00:00:00, +al_4767630e-5eb3-4001-b53e-b83c5f9d9b7e,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-01-31 00:00:00, +al_9d854087-b7fe-4564-b22e-bc9b8a0a4f32,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-01-31 00:00:00, +al_f2878436-35c6-410a-b954-da10939b4d15,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-01 00:00:00, +al_8c9eb78d-5b3f-47e0-8a17-9c279f7a3c29,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-01 00:00:00, +al_425d9da2-7420-4ecc-a0d7-b8ce1255c2dd,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-02 00:00:00, +al_5ee166e9-a487-4965-9ce1-857ebe12b649,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-02 00:00:00, +al_39122d1c-ef26-4c19-bee4-3847f8a4174e,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-03 00:00:00, +al_dfc971f2-3374-4fe5-9f5b-1c991f7330fd,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-03 00:00:00, +al_200fa271-21ae-45d8-9217-587d1822cd0d,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-04 00:00:00, +al_60adcc28-be2a-45ef-a748-f5f319dea789,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-04 00:00:00, +al_d68feefb-9718-4c70-b2c3-569653c861ad,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-05 00:00:00, +al_5ece5229-979b-4657-89e0-f5d7b5dc0e07,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-05 00:00:00, +al_2b3ccaa0-db7f-48cb-9511-69252601e541,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-06 00:00:00, +al_613d7d82-d291-49ab-b9b9-98457d3748a3,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-06 00:00:00, +al_951ead04-e987-4a9f-8778-90d6083fd8e1,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-07 00:00:00, +al_89604a93-a08d-4ac5-a35d-d3206e07eee5,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-07 00:00:00, +al_b9a67c4b-e6a0-4668-b04b-f27abb36b579,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-07 11:00:00, +al_1123794c-4ddb-4491-b239-5caa10e23fae,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-07 13:30:00, +al_0c1b872e-8076-4433-aa1d-ed8b2a5e4c60,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-08 00:00:00, +al_cc4d8f15-d411-4645-b2ee-3a6564ffb548,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-08 00:00:00, +al_5bda4baa-11e5-4306-8b36-058531a9e757,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-08 13:30:00, +al_ae4e8371-4bba-4368-872f-56b31b6924b0,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-09 00:00:00, +al_f5c836e9-9e46-48c1-ac0f-189b458f5279,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-10 00:00:00, +al_e7506c25-eec2-4711-9fb4-483a31437439,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-11 00:00:00, +WO330490,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2019-02-11 16:00:00, +al_495054b6-eb31-47a8-8a0f-64cea94a86b9,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-12 00:00:00, +al_79539bf0-415d-4bdf-81b2-4846b702713c,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-12 10:45:00, +al_ff14b858-ea9b-424f-9324-32993dc368d9,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-13 00:00:00, +al_109f362f-8c7f-4c7c-b9bc-6794c4b17b14,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-13 00:00:00, +al_7e4841f1-c469-4feb-a911-c0b9a59b3135,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-14 00:00:00, +al_5ef230ba-d692-44cf-8949-54ec83a164d7,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-14 00:00:00, +al_6a92a083-3814-412e-9cdb-9c96eff09f49,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-15 00:00:00, +al_e05e6fcc-c362-4f2a-bc14-b24bdf3497b5,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-15 00:00:00, +al_b4d08d06-fa73-44ad-bc18-33d1a84c55e2,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-16 00:00:00, +al_5bf16528-bb5b-462a-ae55-5668fa2fff4d,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-16 00:00:00, +al_52b39154-8dfe-46b5-bbe5-06e1764a570a,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-17 00:00:00, +al_50e5d7f6-c63f-4710-accd-8b12960635c7,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-17 00:00:00, +al_55d49acf-b867-4e15-a0d8-d934704a1f5a,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-18 00:00:00, +al_64f61cd6-2d0d-4882-8894-19326c9e10a1,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-18 00:00:00, +al_3e2c0845-464c-42ef-a950-6400eaf5bff3,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-18 12:00:00, +al_c333fd08-5ac3-47dc-b0f1-6aea9f83d615,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-19 00:00:00, +al_6e52fb26-7aba-4e80-ab43-9127312650e6,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-19 00:00:00, +al_703167c4-ee59-4468-93fe-2e3d56459f22,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-20 00:00:00, +al_1c4d9d31-e6e2-47db-8afe-d1231973ca15,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-20 00:00:00, +al_6ccc0b11-cab6-4b45-9184-ac4d975741b9,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-21 00:00:00, +al_76b9922a-e6a7-48b0-83c8-f42882ac5827,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-21 00:00:00, +al_52d3d8a5-d8ed-4599-a333-f62ea0ba951e,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-22 00:00:00, +al_ee656515-328a-4f24-a048-a3615d830d67,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-22 00:00:00, +al_66f48a0d-f134-44f6-93c4-6d6a6748d321,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-23 00:00:00, +al_da40e2d6-3095-4055-b9d7-285a250baf70,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-23 00:00:00, +al_7f192c16-85f4-4939-8f62-c5eb6a0ab24f,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-24 00:00:00, +al_a7ac9623-c4ae-49e5-b62a-50d12a0fbeec,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-24 00:00:00, +al_3368721a-34a2-483f-a69b-23cea4f4cd30,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-25 00:00:00, +al_fbb55e7a-b2b4-4a0b-8609-64a60c2620df,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-25 00:00:00, +al_0a971f05-4650-4b8b-8d94-54fa8ca4dfaa,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-26 00:00:00, +al_4ed35e0d-52e3-4c5d-bcdf-27cdd4a0e227,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-26 00:00:00, +al_d6231908-b1a2-4996-9c52-062b72b915e3,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-27 00:00:00, +al_a3bbf226-5912-4eae-8daa-c6063089bb65,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-27 00:00:00, +al_0e74c69e-fe8e-44d4-bdb7-9f0d7ca71ad7,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-02-28 00:00:00, +al_5253c0f1-15d8-4ab8-94e1-eb1a3af7e759,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-02-28 00:00:00, +al_4b001ca5-f0a2-4776-b9f6-38603a0ce5da,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-03-01 00:00:00, +al_0417464c-2dea-4af4-8288-99c56ba61dca,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-01 00:00:00, +al_3175752a-c817-421e-99f1-eebe6508d729,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-03-02 00:00:00, +al_c720c91f-01ec-4138-be3b-fca52e68bcc1,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-02 00:00:00, +al_13c2b555-c713-4c0e-a22c-3ede86b700cc,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-03-03 00:00:00, +al_7b653a0c-d947-40ed-b549-fd22f22712f5,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-03 00:00:00, +al_ff9e927b-9787-4fee-8380-dcaa5369236f,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04006,Chiller 6,2019-03-04 00:00:00, +al_79d83e1b-a997-4a9b-8a21-32764502b079,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-04 00:00:00, +al_4f9b24fa-e48d-46e0-898d-cba734e115d1,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-05 00:00:00, +al_768cbaf9-d9a5-49f0-92e9-3ab8071bbaff,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-06 00:00:00, +al_9beb6e07-9601-457f-bf63-cbc661e48d69,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-07 00:00:00, +WO333244,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2019-03-07 18:30:00, +WO333243,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2019-03-07 20:30:00, +al_cfbee291-8edd-437a-a005-62496182ed3e,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-08 00:00:00, +al_efe3030d-d1da-44a6-bdfb-6596bdd8f578,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-09 00:00:00, +al_7c327cde-7c52-4700-bf91-38b0310bf735,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-10 00:00:00, +al_197ad78c-66f2-4ebb-948b-d3f205a1576b,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-11 00:00:00, +al_76483bab-2b29-4a3b-8f5f-1de949dfaa84,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-12 00:00:00, +al_7d22a3e4-5550-4e3d-a813-37c399217883,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-13 00:00:00, +al_2dd1d40d-5b64-4e3c-91b8-6d8227353dc2,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-14 00:00:00, +al_4f035f47-d636-49e4-9adb-e0a93f6d2d56,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-15 00:00:00, +al_aa44a04e-0c32-470e-a2a9-f8084d7bc835,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-16 00:00:00, +al_be724ca7-122f-477c-adcf-e5978f5d4d73,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-17 00:00:00, +al_ce464113-53d3-4ac2-81df-99b2c37fbbe3,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-18 00:00:00, +al_0631031e-22ab-43bf-a8d5-831931ad051d,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-19 00:00:00, +al_d27a7d80-f732-4af9-9e2a-47c4eb77fadf,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-20 00:00:00, +al_1cfe38c5-e346-433b-b64b-9e88f7e8047f,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-21 00:00:00, +WO333074,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2019-03-21 13:00:00, +WO323707,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2019-03-21 15:30:00, +al_b9cd9d32-522a-4f32-95aa-9c9d24b61783,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-22 00:00:00, +al_84e4d651-d517-458c-8039-2ab873452b5e,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-23 00:00:00, +al_8431de1d-0599-4231-8d07-3e8f914d252a,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-24 00:00:00, +al_00b55c78-bf18-4226-a6c5-463db05fc772,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-25 00:00:00, +al_298292a8-6747-450a-aa45-fc1109415a7f,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-26 00:00:00, +al_5ba8ae2d-e7a7-4778-b8b7-28b335ba3068,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-27 00:00:00, +al_0539b1dc-e560-4fd9-960e-7225631cf0d8,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-28 00:00:00, +al_ed21bb81-ad87-4078-8808-7dec45102c3b,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-29 00:00:00, +al_4089496f-ca60-4799-9f52-0f2b7bb9e66b,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-30 00:00:00, +al_ffede648-2c06-4a4d-be6f-ed9fa9d59d55,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-03-31 00:00:00, +al_ddf50b64-e468-4c5f-832e-e4e8ee695164,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-01 00:00:00, +al_726b0c12-f9fa-445b-81dc-c4ac0c40b4bf,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-02 00:00:00, +al_a8eeec3f-3d9c-4983-8a9a-c3ecb9872fe2,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-03 00:00:00, +al_74922187-124d-4057-8f6d-4f665c8ff044,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-04 00:00:00, +al_09d98892-0180-4fd5-b806-4aa50ac349a8,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-05 00:00:00, +al_c217e616-ef53-4e5c-8522-4107677cecea,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-06 00:00:00, +al_40e86dab-4622-47c1-9123-ebd13a4c0e64,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-07 00:00:00, +al_04ce95f5-6d9f-4506-bb0a-fb19f0dbbabd,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-08 00:00:00, +al_9f4fa5a0-f364-489b-94e5-bb2f22e8681a,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-09 00:00:00, +al_c91d1f7c-d47f-45bf-8f00-e8d61df5600a,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-10 00:00:00, +al_c18fabd7-3d70-457f-b11c-e6417501e4e1,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-11 00:00:00, +al_399173eb-0c12-401f-af79-bed1de95bda0,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-12 00:00:00, +al_e185e762-d3f0-43d9-b6ad-5bb4a5894f90,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-13 00:00:00, +al_e9a3fea3-6e4d-4ba5-a79b-3832017a97a6,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-14 00:00:00, +al_190f5cf8-9420-4b31-baf7-5a7f559e1251,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-15 00:00:00, +al_6074759e-282a-43a9-8008-fbc078eddb44,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-16 00:00:00, +al_f4f27fab-34c2-432e-b3c6-87262b3acad5,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-17 00:00:00, +al_d39b47d5-9e90-4f22-9bb3-d4da1537c7e4,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-18 00:00:00, +al_dfb244f2-d2cc-464d-8a66-5da609841f41,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-19 00:00:00, +al_cff6d2c7-65ef-4c73-bc2a-5fd271f1185c,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-21 00:00:00, +al_938a8d0e-53fc-4b40-b63a-9441946e8b0a,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04006,Chiller 6,2019-04-22 00:00:00, +WO337070,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2019-05-19 12:00:00, +WO338419,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2019-05-31 19:30:00, +WO340688,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2019-06-26 13:00:00, +WO338323,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2019-06-26 17:45:00, +WO343353,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2019-08-08 14:45:00, +WO347198,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2019-10-12 12:30:00, +WO351953,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2019-12-08 16:00:00, +WO353163,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2020-01-14 14:00:00, +WO351293,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2020-02-07 18:00:00, +al_34510c09-5453-426f-a7bb-234f000784e0,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04006,Chiller 6,2020-03-24 10:15:00, +WO358242,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2020-04-03 14:00:00, +WO358243,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2020-04-03 15:30:00, +WO360233,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2020-04-20 17:44:00, +al_8ca9cb57-7d7d-4b6a-bf31-f8778763acf3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04006,Chiller 6,2020-05-15 12:00:00, +al_70d92273-53c9-4df5-b970-27ee69903ed7,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04006,Chiller 6,2020-05-22 12:15:00, +al_2cfc78e0-8e74-421b-adbb-2e9fc8d19913,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04006,Chiller 6,2020-05-26 11:15:00, +WO349293,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2020-05-28 13:03:00, +WO363788,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2020-05-28 13:04:00, +al_bd7aed86-b7ee-4b04-ba00-1bb98a1b9abd,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04006,Chiller 6,2020-05-29 14:30:00, +WO365424,WORK_ORDER,CM,CS002,Sensor Failure,CWC04006,Chiller 6,2020-06-03 19:00:00, +al_29088695-90ac-4b3e-9347-fa7facff6d85,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2020-06-06 11:42:00, +al_89fe2127-d68d-462e-b966-79e1337842a0,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2020-06-07 00:00:00, +al_8774de18-b0ac-4ca1-8851-eac2d5a80738,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2020-06-08 00:00:00, +WO358650,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2020-06-23 19:00:00, +WO362352,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2020-06-26 12:00:00, +WO367293,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2020-07-08 17:00:00, +WO369108,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2020-07-23 19:00:00, +WO372329,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2020-09-30 12:00:00, +al_423f836b-83a1-4035-b165-eb8c649e764f,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2020-10-13 13:25:00, +al_247b1cf6-fd1a-4e36-a74f-24a9b3f49eab,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2020-10-14 00:00:00, +WO374038,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2020-10-16 14:00:00, +al_e631562c-e130-461b-9a94-23d295e06723,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2020-10-21 16:11:00, +WO375461,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2020-10-21 19:00:00, +al_97e77ec4-ab82-4078-b00e-e7ed0c9a1a47,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2020-10-22 00:00:00, +al_34950a58-7495-438d-aa5f-7b21de2855e3,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2020-10-26 00:00:00, +WO366933,WORK_ORDER,CM,E006,VFD (Variable Frequency Drive) Failure,CWC04006,Chiller 6,2020-11-20 19:00:00, +al_742b76fe-082e-46b9-8cd2-be4a7419df8a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04006,Chiller 6,2020-11-30 12:15:00, +WO377768,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2020-12-13 13:00:00, +WO380655,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2021-02-02 14:00:00, +WO383080,WORK_ORDER,CM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2021-02-16 16:15:00, +WO384322,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2021-03-10 20:30:00, +WO384323,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2021-03-12 13:00:00, +WO385053,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2021-03-12 16:00:00, +WO386274,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2021-03-29 13:00:00, +WO386643,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04006,Chiller 6,2021-04-03 19:30:00, +WO377501,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2021-04-21 16:30:00, +WO387146,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2021-05-10 13:00:00, +al_2e9f8860-8f4e-4437-824e-ed54bb376777,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-05-20 16:17:00, +WO390305,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2021-05-20 19:00:00, +al_82af219f-dcca-43ad-899e-318ed82ca3f1,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-05-21 00:00:00, +WO388005,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2021-05-22 13:37:00, +WO384006,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2021-06-21 17:00:00, +WO393571,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2021-08-06 19:00:00, +WO397658,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2021-09-09 17:02:00, +WO398127,WORK_ORDER,CM,MT002,Cleaning,CWC04006,Chiller 6,2021-09-16 19:16:00, +al_f8550d26-689a-43f2-9186-9fe61b4c6bbc,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-09-17 14:04:00, +al_23186ebf-b7e2-4768-8aae-14dff8039f46,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-09-18 00:00:00, +al_618854a9-a09f-4c04-8b5b-6dee37a71d00,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-09-19 00:00:00, +al_094d26af-6631-4d8f-b90b-0a42406cbcc3,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-09-20 00:00:00, +al_523b0ed2-2a0a-4e84-b783-895f92347e3b,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-09-21 16:21:00, +al_c7e7ebc8-e8d2-4f50-bb9f-9bb521a9da36,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-09-22 00:00:00, +al_2b7fc085-65c7-4493-979a-03fa9560485a,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-09-22 09:00:00, +al_c832d49c-1db7-48d9-994c-f22c0ff6c6c6,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-09-23 05:45:00, +al_452d07ac-eea4-4706-8e2f-9eac8c50efa6,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-09-23 15:27:00, +al_d0683d48-ef9c-46de-9da4-8307879bf9bc,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-09-24 00:00:00, +al_08cfaedc-9cd6-4ee1-8b06-a824d0bbd4c3,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-09-24 04:00:00, +al_6e47a955-29e5-41d1-b043-7fdcecb840ce,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-09-25 05:30:00, +al_b2654cc6-3948-436d-9c1b-954352f63906,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-09-26 00:00:00, +al_bf0fa523-650a-4ed2-9cdb-d6b55c0381f8,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-09-27 05:00:00, +al_e5ae239b-c98c-45eb-9a6b-624030a0c275,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-09-27 15:33:00, +al_63b60297-9182-4afe-9c13-aa26950c8eee,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-09-28 00:00:00, +al_625a23cc-d157-415c-831c-1d0cbaa2dc94,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-09-28 09:45:00, +al_657ddff5-da52-45cb-bbcd-1e757414fc71,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-09-29 00:00:00, +al_90c7ba26-d203-4588-aad0-b18bbf6fe783,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-09-30 00:00:00, +WO391364,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2021-09-30 17:00:00, +al_b15d26cc-c5a1-4cd5-b396-30b4b58da63b,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-10-01 00:00:00, +al_f43130cc-484d-4062-b41a-2a1b481c2f09,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-10-01 15:30:00, +al_569c295c-d2f5-49dd-9520-ee87b0289a06,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-10-02 00:00:00, +al_d9a741f4-18e9-4d5c-96ae-4ea22a7cc559,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-10-03 00:00:00, +al_4eeac15d-6377-49f9-b634-4725bfbddec3,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-10-04 00:00:00, +al_dd4c7557-6a56-443d-be06-c0345c960dc3,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-10-04 07:30:00, +al_6e01d99f-77eb-423b-939b-2faddb5a2c5b,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-10-04 15:30:00, +al_e387504c-6315-4c07-8b5e-00dda80fb08d,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-10-05 00:00:00, +al_08a21e2d-3cff-4f9d-bf7d-aeb9b091c447,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-10-06 00:00:00, +al_4ff6b993-06c8-469a-b8d1-ff65cb8bd50d,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-10-06 15:33:00, +al_d14cd033-af3a-4a0d-87e4-51e7a069f708,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-10-07 00:00:00, +WO398236,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2021-10-07 19:19:00, +al_e7a6df3e-2e1e-4d0d-a051-308b7622a0cc,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-10-19 06:45:00, +al_8d3668e7-e864-4e1d-8246-100ba1f90892,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-10-19 15:30:00, +al_cec07cde-30b2-4ce5-adb0-8377aac1014b,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-10-20 00:00:00, +al_6f92f088-7b22-47ff-93e4-2851eac7b396,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-10-21 00:00:00, +al_42cdbe94-27e9-43f7-a472-d7f39b90723e,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-10-22 00:00:00, +al_cc7bf581-649b-4063-8753-ff0d4a6b54b8,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-10-23 00:00:00, +al_5d5ac858-8a66-49a6-b681-5f9477c49cfa,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-10-24 00:00:00, +al_225a5111-81f5-4372-9020-5ccffe9cbc29,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-10-25 00:00:00, +al_38fe5d0b-6bed-4e35-be86-69e4fd96e862,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-10-26 00:00:00, +al_5fadbf06-71b9-4ae8-a011-36d39134facd,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-10-26 02:30:00, +WO400558,WORK_ORDER,CM,MT003,Lubrication,CWC04006,Chiller 6,2021-10-26 15:59:00, +al_e5c9de8d-fa7e-4518-934e-23c3f0dbecaf,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-10-27 00:00:00, +al_9ea0d5e6-03b1-401f-8703-9f42109436e5,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-10-28 00:00:00, +al_b4d68aa8-26b8-456a-b28c-5464aa7f25eb,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-10-29 00:00:00, +al_92285e7a-6213-45b8-b264-3f6d2b7cd9e2,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-10-30 00:00:00, +al_ae862dd4-8112-4294-9f4d-57d11bcb0094,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-10-31 00:00:00, +al_3d41a467-1ed1-4dcd-83fe-a9df0cf1227d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-11-01 00:00:00, +al_a90ab136-41ac-4056-ad6e-3ac58f0ad5c8,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-02 15:22:00, +al_93c4b92e-82e8-4f11-bfb5-6d8de9355beb,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-03 00:00:00, +al_e67be0be-ab7a-4708-9e4c-6de310adbd63,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-03 15:36:00, +al_9d4f8b56-a7c7-47fb-9857-20efde52d4ef,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-04 00:00:00, +al_29094a1e-d403-4a93-9647-1d4bee7ec835,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-04 08:47:00, +al_45f1aba6-8add-467a-8975-8e13eb197d88,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-04 15:36:00, +al_87707021-82d1-4770-b893-ff7d0c621c09,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-05 00:00:00, +al_66c04e8a-42c4-4499-94e2-e3a8a5ffb424,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-05 15:55:00, +al_59cfb73d-4922-425a-b380-d68e8cc0f491,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-06 00:00:00, +al_414d6c10-368f-4ea8-bf2a-0bffc51ccda6,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-07 00:00:00, +al_6ac70106-b406-4661-a797-a6fc8c1605b6,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-08 00:00:00, +al_0701e01a-24fb-4fab-9e3e-b7106cbf0d95,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-09 00:00:00, +al_076ee6a8-08fc-49c9-b80f-107a264c954a,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-11-09 09:30:00, +WO400063,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2021-11-09 20:00:00, +al_c532b3ef-a9b8-4bef-bc58-125b82b7e6f1,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-11-10 00:00:00, +al_edd8e9d4-54b7-4530-877f-443f53f4d8ec,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-11-11 09:45:00, +al_1c4ffea3-010c-43a2-a3b7-2be1ce47028c,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-12 00:00:00, +al_8f3693a6-e2af-4328-814d-4eb27d86748f,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-11-12 10:15:00, +al_6779978c-10f3-459d-aea6-9008101626ae,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-11-12 12:00:00, +al_ee6aa3ff-33cd-42b1-be51-0da36e11297c,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-11-13 00:00:00, +al_a3e43390-f208-4180-90a2-8c033024da39,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-11-15 10:00:00, +al_2e5c5668-9bf3-466b-b983-645db9aefbe5,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-11-16 00:00:00, +al_990f1c3d-5d62-4649-a57f-743a4116df51,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-11-17 09:30:00, +WO399660,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2021-11-17 20:00:00, +al_c4e3d038-4dba-4cc6-931a-7b72f991c722,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-11-18 00:00:00, +al_cec5307f-e73b-492d-a8ed-e8009e8065fa,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-27 12:20:00, +al_0d51b207-cd42-4ca1-8a2f-68f74ced0e3b,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-28 00:00:00, +al_78b70db9-e034-4bc1-b681-2ad3f6ecc79f,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-29 00:00:00, +al_c17f6a5c-0b4b-4c2a-85d7-a56e6ebcf590,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-29 12:15:00, +al_ddfdcdcb-35ca-4b03-a99a-fffce4b0bc1a,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2021-11-30 00:00:00, +al_c4a1e9e9-4d91-45e9-82ff-194ca8f84f17,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-11-30 05:30:00, +al_72cf6f19-7fa5-434e-ad3d-b409e7de2a8f,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2021-12-01 00:00:00, +al_b826a96c-fb98-407e-9246-119ef697904e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04006,Chiller 6,2021-12-02 09:30:00, +WO396921,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2021-12-28 13:00:00, +WO402640,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2021-12-28 17:00:00, +WO405420,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2022-02-21 17:30:00, +WO407167,WORK_ORDER,CM,MT008,Leak Detection,CWC04006,Chiller 6,2022-02-22 20:30:00, +WO408524,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04006,Chiller 6,2022-03-09 20:30:00, +WO408529,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04006,Chiller 6,2022-03-11 20:30:00, +WO407798,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2022-03-23 14:30:00, +WO407799,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2022-03-23 18:30:00, +WO407194,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04006,Chiller 6,2022-03-25 16:30:00, +WO407996,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2022-03-30 18:00:00, +WO402350,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2022-04-11 12:00:00, +WO411651,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04006,Chiller 6,2022-05-04 16:00:00, +WO411126,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2022-05-31 13:00:00, +WO410977,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2022-06-15 15:00:00, +WO413479,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2022-06-30 17:00:00, +WO415816,WORK_ORDER,CM,CS002,Sensor Failure,CWC04006,Chiller 6,2022-07-14 19:30:00, +WO416147,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2022-07-25 13:00:00, +al_e55203f7-78c4-49f6-917f-30363484f55a,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-09-02 05:30:00, +al_b27f2b05-ef15-4845-af31-2dc6b0275cfb,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-09-03 00:00:00, +al_c97a8083-cd10-4e74-9ca9-6b40b136f81d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-09-04 00:00:00, +al_74b4d6e9-6828-41a2-a6e5-a839dbadae7d,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-05 00:00:00, +al_a16cc935-32fe-4aba-9e7c-e34ddba1e3de,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-06 00:00:00, +al_717eebd3-363f-41df-a55e-166c2107656d,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-07 00:00:00, +al_879644f3-05c9-44d7-a973-16e782e280f3,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-08 00:00:00, +al_57173742-0d9c-4bef-82d2-00b7fc34867e,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-09 00:00:00, +al_8bb45422-ef99-444a-97b2-584119873012,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-10 00:00:00, +al_9ae895a9-9ea4-47fe-ba6a-a909152c48f3,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-11 00:00:00, +al_e8d77f14-ef7f-476b-afec-4455e78d4f31,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-12 00:00:00, +al_015e8d5e-16ba-473b-8092-4a10a2aea825,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-13 00:00:00, +al_74e76821-be95-4c75-8b4a-c8f5474a94e9,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-14 00:00:00, +al_3c935ad2-3796-455c-bd05-0098bf4cd640,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-15 00:00:00, +al_dd88d8f2-6165-40e7-ac26-f91fb513ad5d,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-16 00:00:00, +al_c509f16a-9a6f-44a3-bdc2-c90472ed8d55,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-17 00:00:00, +al_e6a4be62-d711-45c4-a552-4dc9fad1e6e3,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-18 00:00:00, +al_cbda297d-0f6a-4bed-b0ea-b940f0926891,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-19 00:00:00, +al_7500d528-d3b3-4dd6-bb2e-ed8244d2a112,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-20 00:00:00, +al_3c912319-f8ac-4ee9-a089-b37aec636d7e,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-21 00:00:00, +al_627f612c-1ab9-4007-b9b6-5450a5ad1a68,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-22 00:00:00, +al_bdc6fcc3-ca8f-4040-94bc-7973d8cb4e40,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-23 00:00:00, +al_730aa0aa-31d0-4ed2-9e32-31e359abc0eb,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-24 00:00:00, +al_b463f513-b679-4096-b6c0-2753384bf21a,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-25 00:00:00, +al_0042f098-4831-4aef-b195-211c1706d64e,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-09-26 00:00:00, +WO418183,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2022-09-29 14:00:00, +al_72822192-ebe5-4a17-8d2e-fc5d81815403,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-10-12 08:15:00, +al_249ace7e-1579-4626-98f8-560d239b376b,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-10-13 00:00:00, +WO418745,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2022-10-13 15:30:00, +al_07ffd08e-592a-46ff-83a6-28d9734fcdc8,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-10-14 00:00:00, +al_bd9b0cdf-7a72-4406-8a4a-95ddcbec3917,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-10-15 00:00:00, +al_3ced32b9-6b20-4325-9f0b-6f5872b478dd,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-10-16 00:00:00, +al_1d97e9f0-f395-4279-8390-6410a05355f8,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-10-17 00:00:00, +al_14d1e902-9a18-4aca-b967-7a4852dcb6fe,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-10-18 07:00:00, +al_fa77d5cf-6590-4f3a-a38f-3971e9a3ac61,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-10-19 00:00:00, +al_d983a3e1-720e-4472-bf66-23b9416fbac6,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-10-19 14:59:00, +al_e393acdc-21cc-44b6-a33e-834324ff5ed6,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-10-20 00:00:00, +al_f2b5dad1-eb12-43d0-bbdb-35991d7908f4,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-10-21 00:00:00, +al_e7d74db1-cd19-40ec-ab5a-b6eb64246eb4,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-10-22 00:00:00, +al_b79b9512-6169-4af6-bf12-a0729e585f9b,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-10-23 00:00:00, +al_331ed680-5e04-40f8-87b9-d1b40142ee5d,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-10-24 00:00:00, +al_79c9ac82-bb4c-4295-a41e-748858f876ac,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-10-25 00:00:00, +al_1518f5f2-a089-4896-aec7-785b5d4909d3,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-10-25 04:00:00, +al_7ed42d61-d41c-48d2-bfed-2d5e352c9922,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-10-25 15:26:00, +al_0b740fc0-718e-4cf7-a5de-de3aa4f1b636,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-10-26 00:00:00, +al_265e1480-9aac-4127-b05c-d927d6c1b6b1,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-10-26 03:45:00, +al_2e058696-eb17-4bde-819c-e894e691eab9,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-10-26 12:07:00, +al_46578c73-f4a0-4dab-af56-e5ca0632d7d8,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-10-27 00:00:00, +al_48753b4a-adae-439b-88e5-f9250f91b98b,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-10-28 18:28:00, +al_9db0f665-23af-43d6-aa38-692a59957e79,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-10-29 00:00:00, +al_18c94e83-6578-46ef-a6c6-b62710c05e00,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-10-30 00:00:00, +al_35e54137-c201-4337-a8dc-7d42abceb962,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-10-31 00:00:00, +al_7c386fa9-0549-4d4f-a083-83f9a1c051ff,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-10-31 02:30:00, +al_46f14401-6bb5-46a3-8502-944f93f35516,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-10-31 19:14:00, +al_ae32c46b-b6a1-4092-8ac1-4ecfa7ca0a83,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-11-01 00:00:00, +al_f0f8fa9a-d47d-4dfd-aa98-a1556ae6f3cf,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-01 02:30:00, +al_82702764-e52f-4de5-8877-8d3e12af8f1a,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-03 03:30:00, +al_a3b03d61-ab2b-482c-8a91-1002f7581294,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-04 00:00:00, +al_b7db54f0-1478-4a0f-910e-764a4f1d1a15,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-05 00:00:00, +al_75b7effe-fe80-46f9-ae2c-cf696a29045f,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-06 00:00:00, +al_fb9ac2f8-e62c-416e-99e9-cd8b533e8236,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-07 00:00:00, +WO421030,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2022-11-07 14:00:00, +al_63fbedc6-959a-4a58-bab7-eb746e4ee263,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-08 00:00:00, +al_59ed6ff4-ef4b-4721-85e3-55fb2a9fab25,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-09 04:15:00, +al_9434a539-2820-4a25-83f2-ecd3267fba0a,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-10 00:00:00, +al_caf69aaa-2d53-4856-ac15-9b874472bad5,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-11 00:00:00, +al_1b5a4a42-603a-412b-9b8a-a34159709a91,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-11-11 10:08:00, +al_99001923-0e6e-471f-99d9-d1943856c7bb,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-11-12 00:00:00, +al_e0dea9e6-1a56-417a-bbce-6face777c468,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-11-13 00:00:00, +al_2213a9df-f140-472f-b8d9-373b148d3cee,ALERT,ALERT,RUL0021,Chiller - Excessive Power use in chiller that is off,CWC04006,Chiller 6,2022-11-14 00:00:00, +al_82934519-73b4-45eb-89e5-579cf602f843,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-14 05:45:00, +al_d976f106-11cc-4c8d-8659-c4cc37be23f8,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-15 00:00:00, +al_3681e4a0-3d11-42a3-8c9c-497fde45c77f,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-16 00:00:00, +al_9afa9fc7-77b0-47d4-8c6d-d8937bf5601d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-17 00:00:00, +al_233ddeee-a7d7-4251-bbb8-bc3e1ffccd68,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-18 00:00:00, +al_9d6b53d1-5447-4102-8f45-1e3e02f2757b,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-20 03:00:00, +al_a7f2f82f-1b78-4020-b596-103cbb8f616a,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-21 00:00:00, +al_d69ab02f-c81a-4974-9c79-0a54555dd291,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-22 00:00:00, +al_f80a5705-d336-4110-a3e8-36e9acd4c6f3,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-23 00:00:00, +al_4b67ab42-c6b7-4ff4-80f8-5dd656985089,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-24 04:15:00, +al_d98bb2da-59dd-49ce-9375-126afefff439,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-25 00:00:00, +al_263b6a39-4709-4b01-886a-737ba609e4cb,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-29 00:00:00, +al_67e7502d-e919-4ab9-b19d-c0053c913783,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-11-30 00:00:00, +al_277539af-88f9-4124-9f36-9f1fd96e8a39,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-12-01 00:00:00, +al_769fdd30-512d-464b-9614-c961dfe79f88,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-12-02 00:00:00, +al_f5629152-673e-4ba8-bac0-b8dc1fc36b5f,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-12-03 00:00:00, +al_5a710063-7f31-472a-a5e5-e1adc20b3edb,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-12-04 00:00:00, +al_e3e35aea-ab8c-421b-a70e-0c78289aa451,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-12-04 06:15:00, +al_f9fca290-f702-4fd5-bccd-9022d42a3755,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-12-05 00:00:00, +al_12e9327f-5c3c-4ecd-8c0e-719a6d800178,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-12-06 00:00:00, +al_f005670f-ed1e-43d7-9e2c-43f276d76fcb,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04006,Chiller 6,2022-12-09 17:00:00, +al_4e184c00-5b8f-4277-b002-b5b07cdd1989,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04006,Chiller 6,2022-12-10 00:00:00, +WO422733,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2022-12-16 12:30:00, +WO419957,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2023-01-19 20:00:00, +WO426652,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04006,Chiller 6,2023-02-12 05:00:00, +WO425778,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2023-02-17 14:30:00, +WO422858,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2023-03-08 19:30:00, +WO426653,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04006,Chiller 6,2023-03-08 20:40:00, +WO427079,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2023-03-21 15:30:00, +WO427080,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04006,Chiller 6,2023-03-21 19:30:00, +WO128431,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2023-04-26 08:15:00, +WO132874,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2023-05-22 12:30:00, +WO427271,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2023-06-02 08:00:00, +WO151567,WORK_ORDER,CM,MT003,Lubrication,CWC04006,Chiller 6,2023-07-25 11:00:00, +WO144490,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04006,Chiller 6,2023-08-17 08:00:00, +WO154349,WORK_ORDER,PM,MT010,Oil Analysis,CWC04006,Chiller 6,2023-09-13 11:00:00, +WO139500,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04006,Chiller 6,2023-09-21 11:00:00, +WO169992,WORK_ORDER,CM,MT003,Lubrication,CWC04006,Chiller 6,2023-10-06 11:00:00, +WO16126,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2010-06-22 14:12:00, +WO39815,WORK_ORDER,CM,M016,Draining Operations,CWC04007,Chiller 7,2010-10-02 15:00:00, +WO37687,WORK_ORDER,CM,MT002,Cleaning,CWC04007,Chiller 7,2010-10-02 19:30:00, +WO23144,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2010-10-25 20:38:00, +WO28877,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2010-10-25 20:38:00, +WO33780,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2010-11-04 15:30:00, +WO47674,WORK_ORDER,CM,MT002,Cleaning,CWC04007,Chiller 7,2010-12-06 15:30:00, +WO43369,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04007,Chiller 7,2010-12-06 15:30:00, +WO37886,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2010-12-07 15:30:00, +WO39301,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2010-12-07 15:30:00, +WO47682,WORK_ORDER,CM,MT002,Cleaning,CWC04007,Chiller 7,2010-12-13 15:30:00, +WO47676,WORK_ORDER,CM,MT002,Cleaning,CWC04007,Chiller 7,2010-12-13 15:30:00, +WO42020,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2010-12-20 15:30:00, +WO43683,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-01-10 15:30:00, +WO45725,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-01-19 15:30:00, +WO40395,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-01-22 15:30:00, +WO40397,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-01-27 09:00:00, +WO47946,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-02-09 15:30:00, +WO48270,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-02-15 16:30:00, +WO48272,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-02-16 11:30:00, +WO48275,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-02-16 16:30:00, +WO49960,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-02-17 15:30:00, +WO51990,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-03-04 15:30:00, +WO54462,WORK_ORDER,PM,MT010,Oil Analysis,CWC04007,Chiller 7,2011-03-25 15:30:00, +WO54568,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-03-30 15:30:00, +WO56529,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-04-06 15:30:00, +WO58574,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-05-03 08:00:00, +WO60836,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-05-05 15:30:00, +WO62845,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-05-17 15:30:00, +WO64637,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-05-28 15:30:00, +WO67478,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-06-20 15:30:00, +WO69143,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-07-06 15:30:00, +WO71242,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-07-18 15:30:00, +WO73325,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-08-02 15:30:00, +WO76561,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-08-11 15:30:00, +WO75741,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-08-16 15:30:00, +WO77564,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-09-09 15:30:00, +WO79209,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-09-19 15:30:00, +WO80980,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-10-05 15:30:00, +WO83126,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-10-18 15:30:00, +WO84786,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-10-31 15:30:00, +WO86959,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-11-23 15:30:00, +WO90771,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-11-29 15:30:00, +WO89749,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-12-07 15:30:00, +WO91349,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2011-12-23 08:30:00, +WO92596,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-01-02 15:30:00, +WO90773,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-01-03 07:30:00, +WO94635,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-01-23 15:30:00, +WO97327,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-02-03 15:30:00, +WO98171,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-02-07 15:30:00, +WO98173,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-02-08 15:30:00, +WO98169,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-02-08 15:30:00, +WO99814,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-02-17 15:30:00, +WO102083,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-03-15 15:30:00, +WO103215,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2012-03-21 21:00:00, +WO104443,WORK_ORDER,PM,MT010,Oil Analysis,CWC04007,Chiller 7,2012-03-26 15:30:00, +WO108851,WORK_ORDER,CM,MT002,Cleaning,CWC04007,Chiller 7,2012-03-29 15:30:00, +WO108840,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04007,Chiller 7,2012-03-29 15:30:00, +WO103671,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-03-30 08:00:00, +WO105418,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-04-02 15:30:00, +WO107348,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-04-23 15:30:00, +WO109025,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-05-01 15:30:00, +WO111353,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-06-04 08:30:00, +WO112802,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-06-14 15:30:00, +WO114374,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-06-19 15:30:00, +WO115671,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-07-03 15:30:00, +WO116982,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-07-20 08:00:00, +WO116664,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2012-07-23 19:00:00, +WO121405,WORK_ORDER,CM,MT002,Cleaning,CWC04007,Chiller 7,2012-07-24 15:30:00, +WO121394,WORK_ORDER,CM,MT002,Cleaning,CWC04007,Chiller 7,2012-07-25 15:30:00, +WO119017,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-08-01 15:30:00, +WO121779,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-08-23 15:30:00, +WO125505,WORK_ORDER,CM,MT002,Cleaning,CWC04007,Chiller 7,2012-08-29 15:30:00, +WO123144,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-09-06 15:30:00, +WO125741,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-09-27 15:30:00, +WO126852,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-10-03 15:30:00, +WO128779,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-10-25 15:30:00, +WO129084,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2012-10-28 09:30:00, +WO131355,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-11-14 07:30:00, +WO133584,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-11-23 08:00:00, +WO135014,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-12-03 07:30:00, +WO136610,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2012-12-20 15:30:00, +WO135492,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-01-07 15:30:00, +WO137818,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-01-16 07:30:00, +WO145991,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-01-23 03:30:00, +WO145986,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-01-25 03:30:00, +WO136069,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-01-25 03:30:00, +WO136071,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-01-28 08:00:00, +WO144344,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-01-28 15:30:00, +WO140205,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-02-14 15:30:00, +WO142325,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-02-15 10:30:00, +WO142327,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-02-15 11:30:00, +WO142323,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-02-18 16:30:00, +WO142043,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-02-21 03:30:00, +WO143749,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-03-06 15:30:00, +WO145442,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-03-11 15:30:00, +WO147007,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-03-20 08:30:00, +WO147842,WORK_ORDER,PM,MT010,Oil Analysis,CWC04007,Chiller 7,2013-03-25 15:30:00, +WO148696,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-04-03 15:30:00, +WO150579,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-04-15 08:30:00, +WO146545,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2013-04-24 14:34:00, +WO152458,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-05-06 15:30:00, +WO152935,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2013-05-22 20:30:00, +WO155371,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-05-23 08:00:00, +WO158581,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-05-29 15:30:00, +WO158564,WORK_ORDER,CM,MT002,Cleaning,CWC04007,Chiller 7,2013-05-31 15:30:00, +WO156824,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-06-07 07:30:00, +WO158280,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-06-13 15:30:00, +WO159736,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2013-06-28 08:30:00, +WO160327,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-07-03 15:30:00, +WO162715,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-07-19 15:30:00, +WO169460,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-08-07 15:30:00, +WO165046,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-08-13 15:30:00, +WO166826,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-08-23 15:30:00, +WO168076,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-09-12 15:30:00, +WO169728,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-09-18 15:30:00, +WO171324,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-10-01 15:30:00, +WO171041,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2013-10-02 09:15:00, +WO178424,WORK_ORDER,CM,MT002,Cleaning,CWC04007,Chiller 7,2013-10-17 15:30:00, +WO174254,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-10-22 15:30:00, +WO178420,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-10-31 15:30:00, +WO176055,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-11-06 15:30:00, +WO178532,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-11-18 15:30:00, +WO180127,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-12-04 15:30:00, +WO181026,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-12-09 15:30:00, +WO181726,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-12-21 15:30:00, +WO181028,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2013-12-21 15:30:00, +WO183165,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-01-06 15:30:00, +WO186397,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-01-21 15:30:00, +WO188936,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-02-03 15:30:00, +WO190887,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-02-19 15:30:00, +WO189136,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-02-28 11:30:00, +WO189134,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-02-28 11:30:00, +WO189132,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-02-28 11:30:00, +WO196335,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-02-28 15:30:00, +WO192916,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-03-04 15:30:00, +WO197536,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-03-10 15:30:00, +WO195073,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-03-20 15:30:00, +WO196817,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-03-31 15:30:00, +WO198398,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2014-04-11 12:30:00, +WO198944,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-04-24 15:30:00, +WO201033,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-05-07 15:30:00, +WO202265,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-05-23 15:30:00, +WO203397,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-06-11 15:30:00, +WO205066,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-06-19 15:30:00, +WO206151,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-07-02 15:30:00, +WO208053,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-08-07 15:30:00, +WO209515,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-08-13 08:00:00, +WO211031,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-08-27 15:30:00, +WO212149,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-09-03 15:30:00, +WO213352,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-09-16 15:30:00, +WO214597,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-09-29 15:30:00, +WO221883,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-10-20 15:30:00, +WO216642,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-10-21 15:30:00, +WO219946,WORK_ORDER,CM,MT008,Leak Detection,CWC04007,Chiller 7,2014-10-31 15:30:00, +WO218160,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-11-05 15:30:00, +WO221582,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-11-23 16:00:00, +WO219584,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-11-28 15:30:00, +WO220618,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-12-04 15:30:00, +WO221326,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-12-08 15:30:00, +WO222096,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2014-12-18 15:30:00, +WO223474,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-01-05 15:30:00, +WO224844,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-01-21 15:30:00, +WO226120,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-02-04 15:30:00, +WO226213,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-02-19 11:00:00, +WO226212,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-02-19 11:01:00, +WO227700,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-02-20 15:30:00, +WO226214,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-02-23 11:30:00, +WO229848,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04007,Chiller 7,2015-02-27 15:30:00, +WO221327,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-03-02 15:30:00, +WO228884,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-03-02 15:30:00, +WO230267,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-03-17 19:30:00, +WO230715,WORK_ORDER,PM,MT010,Oil Analysis,CWC04007,Chiller 7,2015-03-23 19:30:00, +WO231149,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-03-31 15:30:00, +WO233552,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-04-06 15:30:00, +WO233615,WORK_ORDER,CM,MT008,Leak Detection,CWC04007,Chiller 7,2015-04-07 15:30:00, +WO234868,WORK_ORDER,CM,MT008,Leak Detection,CWC04007,Chiller 7,2015-04-08 15:30:00, +WO234863,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04007,Chiller 7,2015-04-10 16:30:00, +WO234842,WORK_ORDER,CM,M013,Condenser Plugged,CWC04007,Chiller 7,2015-04-22 18:30:00, +WO232535,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-04-29 15:30:00, +WO232073,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2015-04-30 15:30:00, +WO233761,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-05-05 15:30:00, +WO236759,WORK_ORDER,CM,M013,Condenser Plugged,CWC04007,Chiller 7,2015-05-13 15:30:00, +WO234938,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-05-21 15:30:00, +WO237319,WORK_ORDER,CM,MT002,Cleaning,CWC04007,Chiller 7,2015-05-26 15:00:00, +WO235856,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-06-02 15:30:00, +WO238252,WORK_ORDER,CM,M013,Condenser Plugged,CWC04007,Chiller 7,2015-06-21 15:30:00, +WO236916,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-06-22 15:30:00, +WO237862,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-06-30 15:30:00, +WO237633,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2015-07-01 11:00:00, +WO239384,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-07-23 15:30:00, +WO240294,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-08-04 15:30:00, +WO241299,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-08-17 15:30:00, +WO242649,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-09-11 08:00:00, +WO243595,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-09-19 19:30:00, +WO245705,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04007,Chiller 7,2015-09-21 15:30:00, +WO245283,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-10-06 11:45:00, +WO246355,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-10-22 18:30:00, +WO247361,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-11-05 15:45:00, +WO248625,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-11-17 20:00:00, +WO249529,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-12-03 13:00:00, +WO250043,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-12-17 14:00:00, +WO250042,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-12-17 17:00:00, +WO251133,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2015-12-22 19:30:00, +WO252149,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-01-25 19:30:00, +WO253164,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-01-26 14:00:00, +WO254492,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-02-08 14:00:00, +WO255994,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-02-18 16:00:00, +WO254584,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-02-24 18:30:00, +WO254585,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-02-24 20:26:00, +WO254586,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-02-25 14:25:00, +WO257164,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-03-04 16:00:00, +WO259218,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-03-24 13:00:00, +WO259200,WORK_ORDER,PM,MT010,Oil Analysis,CWC04007,Chiller 7,2016-04-05 17:30:00, +WO260437,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-04-13 13:00:00, +WO261658,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-05-02 19:27:00, +WO262718,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-05-13 14:00:00, +WO264053,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-05-17 18:31:00, +WO265012,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-06-08 13:35:00, +WO266632,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-06-23 16:54:00, +WO267345,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-07-15 19:50:00, +WO267222,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2016-07-16 15:00:00, +WO268665,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-07-31 15:29:00, +WO269538,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-08-05 17:16:00, +WO270620,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-08-15 17:54:00, +WO273354,WORK_ORDER,CM,CS002,Sensor Failure,CWC04007,Chiller 7,2016-08-25 19:30:00, +WO273352,WORK_ORDER,CM,CS002,Sensor Failure,CWC04007,Chiller 7,2016-08-25 19:30:00, +WO272063,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-09-13 15:13:00, +WO273032,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-09-20 18:08:00, +WO274023,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-10-12 20:51:00, +WO273708,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2016-10-18 18:00:00, +WO275076,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-10-20 13:00:00, +WO275988,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-11-02 16:26:00, +WO277089,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-11-16 17:57:00, +WO279339,WORK_ORDER,CM,MT003,Lubrication,CWC04007,Chiller 7,2016-11-21 20:30:00, +WO279296,WORK_ORDER,CM,MT003,Lubrication,CWC04007,Chiller 7,2016-11-21 20:30:00, +WO279268,WORK_ORDER,CM,MT002,Cleaning,CWC04007,Chiller 7,2016-12-02 20:30:00, +WO278464,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-12-10 15:09:00, +WO278990,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-12-15 14:39:00, +WO279996,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04007,Chiller 7,2016-12-19 20:30:00, +WO279371,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-12-23 14:47:00, +WO278991,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-12-27 18:35:00, +WO281012,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04007,Chiller 7,2016-12-27 20:30:00, +WO280139,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-01-04 18:19:00, +WO282099,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-01-31 14:40:00, +WO281206,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-02-09 18:04:00, +WO282857,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-02-21 18:20:00, +WO282859,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-02-21 18:20:00, +WO282858,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-02-21 18:20:00, +WO283380,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-02-27 18:18:00, +WO284289,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-03-06 20:47:00, +WO285812,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-03-23 18:10:00, +WO286345,WORK_ORDER,PM,MT010,Oil Analysis,CWC04007,Chiller 7,2017-03-31 13:35:00, +WO286777,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-04-06 19:49:00, +WO287800,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-04-21 16:42:00, +WO287549,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2017-04-27 20:30:00, +WO288755,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-05-02 18:42:00, +WO289658,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-05-22 14:28:00, +WO291089,WORK_ORDER,CM,M013,Condenser Plugged,CWC04007,Chiller 7,2017-05-22 19:30:00, +WO291138,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-06-13 13:09:00, +WO292050,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-06-21 15:08:00, +WO292866,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-07-05 14:17:00, +WO292637,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2017-07-19 20:00:00, +WO293860,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-07-24 16:48:00, +WO296161,WORK_ORDER,CM,M013,Condenser Plugged,CWC04007,Chiller 7,2017-08-02 19:30:00, +WO294756,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-08-03 14:40:00, +WO296195,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-08-31 13:31:00, +WO297225,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-09-22 18:35:00, +WO299742,WORK_ORDER,CM,MT003,Lubrication,CWC04007,Chiller 7,2017-09-25 19:30:00, +WO298881,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2017-09-28 20:30:00, +WO298234,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-10-07 14:09:00, +WO299187,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-10-26 14:50:00, +WO300252,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-10-31 16:57:00, +WO301212,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-11-20 18:45:00, +WO302916,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-12-04 18:00:00, +WO303786,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2017-12-05 14:55:00, +WO306018,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-01-12 18:55:00, +WO306017,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-01-24 18:35:00, +WO304147,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-01-29 14:26:00, +WO304148,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-01-29 14:29:00, +WO310129,WORK_ORDER,CM,MT002,Cleaning,CWC04007,Chiller 7,2018-02-15 20:30:00, +WO308116,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-02-16 19:37:00, +WO309889,WORK_ORDER,CM,M013,Condenser Plugged,CWC04007,Chiller 7,2018-02-21 20:30:00, +WO309080,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-03-09 17:58:00, +WO308214,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-03-10 16:00:00, +WO308215,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-03-10 17:30:00, +WO308216,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-03-10 19:00:00, +WO310167,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-03-13 15:14:00, +WO311575,WORK_ORDER,PM,MT010,Oil Analysis,CWC04007,Chiller 7,2018-03-27 12:51:00, +WO314469,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04007,Chiller 7,2018-04-06 19:30:00, +WO311155,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-04-26 13:42:00, +WO312515,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2018-05-10 15:00:00, +WO313264,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-05-14 17:48:00, +WO314540,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-05-24 19:46:00, +WO312318,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-06-03 15:32:00, +WO318052,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04007,Chiller 7,2018-06-19 23:30:00, +WO315752,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-06-25 20:11:00, +WO319607,WORK_ORDER,CM,MT008,Leak Detection,CWC04007,Chiller 7,2018-07-02 14:30:00, +WO319605,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04007,Chiller 7,2018-07-06 19:30:00, +WO318733,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04007,Chiller 7,2018-07-10 11:28:00, +WO320004,WORK_ORDER,CM,MT002,Cleaning,CWC04007,Chiller 7,2018-07-10 23:30:00, +WO317052,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-07-22 16:36:00, +WO317407,WORK_ORDER,CM,CS002,Sensor Failure,CWC04007,Chiller 7,2018-07-25 17:44:00, +WO319062,WORK_ORDER,CM,CS002,Sensor Failure,CWC04007,Chiller 7,2018-08-01 16:26:00, +WO317761,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2018-08-08 12:10:00, +WO319237,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-08-17 17:56:00, +WO318093,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-08-27 19:05:00, +WO320145,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-09-22 14:51:00, +WO321415,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-10-02 12:08:00, +WO322326,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-10-02 19:25:00, +WO323259,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2018-10-18 13:15:00, +WO323481,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-10-29 13:00:00, +WO325611,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-11-16 19:30:00, +WO326321,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-11-29 13:30:00, +WO327513,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2018-12-14 15:00:00, +WO328581,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2019-01-09 14:00:00, +WO329598,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2019-01-24 13:00:00, +WO330492,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2019-02-11 19:00:00, +WO329270,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2019-02-14 13:30:00, +WO332035,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2019-02-27 18:30:00, +WO325840,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2019-03-06 00:30:00, +WO333245,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2019-03-08 13:00:00, +WO333246,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2019-03-08 15:00:00, +WO333247,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2019-03-08 20:30:00, +WO324405,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2019-03-21 11:00:00, +WO333076,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2019-03-21 12:00:00, +WO334240,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2019-03-27 16:00:00, +WO336974,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2019-04-30 15:30:00, +WO337043,WORK_ORDER,PM,MT010,Oil Analysis,CWC04007,Chiller 7,2019-05-18 12:00:00, +WO338403,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2019-06-04 18:30:00, +WO339713,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2019-06-11 12:30:00, +WO340674,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2019-06-26 15:00:00, +WO338272,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2019-06-26 18:15:00, +WO341897,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2019-07-02 17:30:00, +WO344078,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2019-08-31 13:00:00, +WO346652,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2019-10-01 17:30:00, +WO348764,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2019-11-08 13:00:00, +WO350988,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2019-12-05 14:00:00, +WO353164,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2020-01-14 16:00:00, +WO353398,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2020-01-16 23:30:00, +WO354132,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2020-02-01 14:00:00, +WO355527,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2020-02-24 14:00:00, +WO358158,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2020-03-27 13:00:00, +WO358245,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2020-04-01 15:30:00, +WO358246,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2020-04-01 19:30:00, +WO358244,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2020-04-02 15:30:00, +WO360234,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2020-04-20 15:00:00, +WO360971,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2020-05-08 19:00:00, +WO363572,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2020-06-03 13:00:00, +al_48a6dc79-13d0-4888-827f-3073310faabd,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2020-06-10 09:45:00, +al_c0b61073-c728-4ce3-8add-3a9ad732b250,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2020-06-11 00:00:00, +WO362082,WORK_ORDER,PM,MT010,Oil Analysis,CWC04007,Chiller 7,2020-06-26 13:00:00, +WO366053,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2020-07-02 13:00:00, +WO367294,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2020-07-08 19:00:00, +WO343347,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2020-07-23 19:00:00, +WO369090,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2020-07-23 19:00:00, +WO368169,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2020-07-28 13:00:00, +WO370427,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2020-08-20 13:00:00, +WO372740,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2020-10-06 12:00:00, +WO374039,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2020-10-13 13:00:00, +WO374180,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04007,Chiller 7,2020-10-14 19:30:00, +WO375248,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2020-11-13 13:00:00, +WO374595,WORK_ORDER,CM,CS002,Sensor Failure,CWC04007,Chiller 7,2020-11-19 15:00:00, +WO377671,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2020-12-23 14:00:00, +WO381160,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04007,Chiller 7,2021-01-15 20:30:00, +WO380058,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2021-01-25 14:00:00, +WO380656,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2021-02-04 19:30:00, +WO382630,WORK_ORDER,CM,MT003,Lubrication,CWC04007,Chiller 7,2021-02-05 15:00:00, +WO380509,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2021-02-05 17:30:00, +WO380384,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2021-02-10 19:30:00, +WO382261,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2021-03-01 13:00:00, +WO384326,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2021-03-01 16:30:00, +WO384324,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2021-03-12 15:30:00, +WO384325,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2021-03-12 18:00:00, +WO384255,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2021-03-30 18:30:00, +WO386644,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04007,Chiller 7,2021-04-02 19:30:00, +WO386851,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2021-05-06 12:00:00, +WO387147,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2021-05-13 15:00:00, +WO390302,WORK_ORDER,CM,MT002,Cleaning,CWC04007,Chiller 7,2021-05-19 15:00:00, +al_88b27099-5ea4-491f-9d23-8d11862b3c3f,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2021-05-20 14:45:00, +al_3a5f6a90-1fed-43f6-a3ab-6da43acd6542,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2021-05-21 00:00:00, +WO387985,WORK_ORDER,PM,MT010,Oil Analysis,CWC04007,Chiller 7,2021-05-21 12:00:00, +WO389432,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2021-06-02 15:00:00, +al_927a1fb0-a433-406e-a45f-b6d2a687d94a,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2021-06-09 16:15:00, +WO384008,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2021-06-25 20:00:00, +WO392061,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2021-07-13 12:00:00, +WO393572,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2021-08-06 15:00:00, +WO394207,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2021-08-18 15:30:00, +al_c22e13ab-1fa0-4452-98b1-ce317ab6b0dd,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2021-09-14 18:45:00, +al_867b0181-22af-42fb-878d-7b7a33184e39,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2021-09-15 10:45:00, +al_d57a23f1-5e28-4cee-bd36-db66c1145f23,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2021-09-16 00:00:00, +al_7e3502aa-6a96-4bb1-bd19-aae9affbf52b,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2021-09-16 09:00:00, +al_ce31bf85-db06-49e2-be79-cdaa0bfbbdbe,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2021-09-16 12:30:00, +al_e40b00a1-8fe3-4433-9553-1fc70b624ca2,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2021-09-17 00:00:00, +al_d5a33002-0dde-42fe-9b14-9c0358026cfa,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2021-09-18 00:00:00, +al_4b3f96ba-4724-4c49-bc22-2422960e6f91,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2021-09-19 00:00:00, +al_85bb1fd5-c29f-4341-8cce-4f5e7cbeab55,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2021-09-20 00:00:00, +al_3ea36b7d-2033-4b84-82b3-f25b4980fffc,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2021-09-21 11:00:00, +al_5dda20cc-09c4-40e9-bede-aec44df408c1,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2021-09-22 00:00:00, +al_95a85308-90e2-4a6d-ac0b-d1da956cfb17,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2021-09-22 15:45:00, +WO396594,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2021-09-22 20:30:00, +al_6f87a0e5-2b08-48c3-bebb-26527e6128ea,ALERT,ALERT,RUL0012,Chiller - Cooling Substance Temperature Setpoint Attainment,CWC04007,Chiller 7,2021-09-23 00:00:00, +al_7e3a9a0b-e682-472b-9cc7-f069d353eab3,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04007,Chiller 7,2021-09-23 06:00:00, +WO398794,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04007,Chiller 7,2021-09-24 13:36:00, +WO391366,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2021-10-01 12:00:00, +WO399372,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04007,Chiller 7,2021-10-04 19:39:00, +WO398970,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2021-10-07 19:19:00, +WO400122,WORK_ORDER,CM,M020,Head Operations,CWC04007,Chiller 7,2021-10-22 19:30:00, +WO400857,WORK_ORDER,CM,MT010,Oil Analysis,CWC04007,Chiller 7,2021-11-02 16:41:00, +WO400064,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2021-11-10 17:30:00, +WO400954,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2021-11-22 13:15:00, +WO396923,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2021-12-28 15:00:00, +WO403091,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2022-01-06 13:00:00, +WO404620,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2022-02-02 17:00:00, +WO404932,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2022-02-08 14:00:00, +WO405421,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2022-02-21 20:00:00, +WO402360,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2022-03-02 19:30:00, +WO406830,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2022-03-24 12:00:00, +WO407800,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2022-03-24 14:00:00, +WO407801,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2022-03-24 15:30:00, +WO407802,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2022-03-24 19:30:00, +WO407998,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2022-03-31 12:00:00, +WO408740,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2022-04-11 12:00:00, +WO410896,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2022-05-23 17:30:00, +WO411127,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2022-05-31 15:00:00, +al_72117c25-507a-4e8c-9ffd-0759478d5a49,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04007,Chiller 7,2022-06-01 06:45:00, +WO410952,WORK_ORDER,PM,MT010,Oil Analysis,CWC04007,Chiller 7,2022-06-15 12:00:00, +WO412942,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2022-06-22 16:00:00, +WO413481,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2022-07-01 12:00:00, +WO415055,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2022-07-25 15:00:00, +WO416626,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2022-08-18 12:00:00, +WO416148,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2022-08-18 16:00:00, +WO418041,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2022-09-27 12:00:00, +WO418185,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2022-09-29 15:00:00, +al_80e4fe23-456a-4981-b021-04009f8a21d8,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04007,Chiller 7,2022-10-31 02:30:00, +al_2d4d580b-c23f-4fb4-a3a0-c3da02e1f874,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04007,Chiller 7,2022-11-01 07:30:00, +al_070957fa-6de0-421b-9ffc-abf850ca9c82,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04007,Chiller 7,2022-11-02 00:00:00, +al_dce4dbe5-14da-435e-8a23-2d4f333ef28b,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04007,Chiller 7,2022-11-03 00:00:00, +WO421031,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2022-11-03 13:00:00, +al_0cd8ea33-1c2d-4715-990c-8aee82882513,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04007,Chiller 7,2022-11-04 03:15:00, +al_c80ade48-0bed-4301-8b71-9a1bbdb33f54,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04007,Chiller 7,2022-11-05 00:00:00, +al_995f2133-011e-4d86-a1e4-cb0d6d23c325,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04007,Chiller 7,2022-11-06 00:00:00, +al_1dc3effa-6e32-4c47-ad6b-cc34cafb09b6,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04007,Chiller 7,2022-11-07 00:00:00, +WO419788,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2022-11-07 17:00:00, +al_9ca0af1d-69da-4c30-806f-3d84aa9332ae,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04007,Chiller 7,2022-11-08 00:00:00, +al_35e8c776-6a66-42f7-b48a-9dba88e0005d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04007,Chiller 7,2022-11-09 00:00:00, +al_a0b27731-46fe-4ad2-895d-51a15febba21,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04007,Chiller 7,2022-11-22 04:15:00, +al_5c87c496-cb69-4cbf-b679-6f9bd8092f97,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04007,Chiller 7,2022-11-23 00:00:00, +WO421677,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2022-12-05 13:00:00, +WO423545,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2023-01-04 13:00:00, +WO424471,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2023-01-23 15:00:00, +WO425012,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2023-01-27 13:00:00, +WO425779,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2023-02-17 17:00:00, +WO422871,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2023-02-28 19:30:00, +WO426965,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04007,Chiller 7,2023-03-01 13:18:00, +WO426744,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2023-03-20 17:30:00, +WO427081,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2023-03-22 14:00:00, +WO427082,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2023-03-22 15:30:00, +WO427083,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2023-03-22 19:30:00, +WO428172,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2023-04-19 10:00:00, +WO128427,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04007,Chiller 7,2023-04-19 10:00:00, +WO128423,WORK_ORDER,PM,MT010,Oil Analysis,CWC04007,Chiller 7,2023-04-26 07:30:00, +WO132875,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2023-05-22 15:00:00, +WO427273,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2023-06-02 15:00:00, +WO135846,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2023-06-06 08:00:00, +WO137579,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2023-07-26 08:00:00, +WO144362,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2023-08-16 10:00:00, +WO144491,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2023-08-18 12:30:00, +WO150233,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2023-09-01 13:30:00, +WO162599,WORK_ORDER,CM,MT002,Cleaning,CWC04007,Chiller 7,2023-09-07 18:30:00, +WO164008,WORK_ORDER,CM,MT002,Cleaning,CWC04007,Chiller 7,2023-09-12 15:00:00, +WO139503,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04007,Chiller 7,2023-09-21 13:00:00, +WO159763,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2023-09-26 08:00:00, +WO166789,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04007,Chiller 7,2023-10-05 15:00:00, +WO37896,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2010-12-07 15:30:00, +WO42224,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2010-12-20 15:30:00, +WO46255,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2011-01-19 15:30:00, +WO50080,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2011-02-16 15:30:00, +WO55303,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04009,Chiller 9,2011-03-10 15:30:00, +WO55256,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2011-03-25 15:30:00, +WO54838,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2011-03-30 15:30:00, +WO58864,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2011-05-03 15:30:00, +WO63089,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2011-05-17 15:30:00, +WO67662,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2011-06-20 15:30:00, +WO71590,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2011-07-22 15:30:00, +WO75743,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2011-08-16 15:30:00, +WO75666,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2011-08-17 15:30:00, +WO77356,WORK_ORDER,CM,MT002,Cleaning,CWC04009,Chiller 9,2011-08-18 15:30:00, +WO79569,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2011-09-19 15:30:00, +WO83259,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2011-10-19 15:30:00, +WO85222,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2011-11-04 15:30:00, +WO93512,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04009,Chiller 9,2011-11-09 09:00:00, +WO87371,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2011-11-23 15:30:00, +WO91481,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2011-12-27 15:30:00, +WO95202,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04009,Chiller 9,2011-12-30 15:30:00, +WO97031,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04009,Chiller 9,2012-01-03 16:00:00, +WO95203,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04009,Chiller 9,2012-01-04 15:30:00, +WO94984,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2012-01-23 15:30:00, +WO99944,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2012-02-17 15:30:00, +WO102709,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04009,Chiller 9,2012-03-01 15:30:00, +WO102707,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04009,Chiller 9,2012-03-02 15:30:00, +WO104983,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2012-03-26 15:30:00, +WO108853,WORK_ORDER,CM,MT002,Cleaning,CWC04009,Chiller 9,2012-03-29 15:30:00, +WO104087,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2012-03-30 08:00:00, +WO107572,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2012-04-23 15:30:00, +WO111597,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2012-06-04 08:30:00, +WO114552,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2012-06-19 15:30:00, +WO116748,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2012-07-13 21:00:00, +WO121399,WORK_ORDER,CM,MT002,Cleaning,CWC04009,Chiller 9,2012-07-26 15:30:00, +WO117404,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2012-07-26 15:30:00, +WO123907,WORK_ORDER,CM,MT002,Cleaning,CWC04009,Chiller 9,2012-08-13 15:30:00, +WO121980,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2012-08-20 15:30:00, +WO121922,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2012-08-27 15:30:00, +WO128635,WORK_ORDER,CM,M017,Major Overhaul,CWC04009,Chiller 9,2012-09-11 15:30:00, +WO126269,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2012-09-28 15:30:00, +WO129177,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2012-10-17 21:00:00, +WO128973,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2012-10-25 15:30:00, +WO133903,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2012-11-23 08:00:00, +WO137173,WORK_ORDER,CM,MT003,Lubrication,CWC04009,Chiller 9,2012-12-03 15:30:00, +WO131884,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2012-12-04 15:30:00, +WO136809,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2012-12-20 15:30:00, +WO140920,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04009,Chiller 9,2012-12-21 15:30:00, +WO145984,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04009,Chiller 9,2013-01-16 03:30:00, +WO140524,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2013-02-14 15:30:00, +WO148447,WORK_ORDER,CM,M020,Head Operations,CWC04009,Chiller 9,2013-02-21 03:30:00, +WO143948,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2013-03-06 15:30:00, +WO147398,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2013-03-21 09:00:00, +WO148293,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2013-03-25 15:30:00, +WO148406,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2013-03-27 15:30:00, +WO148410,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2013-03-27 15:30:00, +WO148408,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2013-03-27 15:30:00, +WO146623,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2013-04-11 22:00:00, +WO150724,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2013-04-15 09:00:00, +WO152925,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2013-05-13 16:00:00, +WO155586,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2013-05-23 07:30:00, +WO158595,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2013-06-12 15:30:00, +WO159730,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2013-06-28 10:30:00, +WO164860,WORK_ORDER,CM,M013,Condenser Plugged,CWC04009,Chiller 9,2013-07-19 03:30:00, +WO162797,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2013-07-19 15:30:00, +WO167198,WORK_ORDER,CM,MT013,Vibration Analysis,CWC04009,Chiller 9,2013-08-22 13:30:00, +WO166943,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2013-08-22 15:30:00, +WO168623,WORK_ORDER,PM,MT014,Filter Replacement,CWC04009,Chiller 9,2013-09-03 15:30:00, +WO166995,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2013-09-07 07:30:00, +WO170095,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2013-09-18 15:30:00, +WO171031,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2013-09-27 14:00:00, +WO174041,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04009,Chiller 9,2013-10-02 15:30:00, +WO171879,WORK_ORDER,PM,MT014,Filter Replacement,CWC04009,Chiller 9,2013-10-02 15:30:00, +WO174068,WORK_ORDER,CM,L001,Refrigerant Leak,CWC04009,Chiller 9,2013-10-04 15:30:00, +WO178397,WORK_ORDER,CM,MT003,Lubrication,CWC04009,Chiller 9,2013-10-21 15:30:00, +WO174609,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2013-10-22 15:30:00, +WO176722,WORK_ORDER,PM,MT014,Filter Replacement,CWC04009,Chiller 9,2013-11-05 15:30:00, +WO178777,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2013-11-18 15:30:00, +WO181903,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2013-12-21 15:30:00, +WO188802,WORK_ORDER,CM,M017,Major Overhaul,CWC04009,Chiller 9,2014-01-17 15:30:00, +WO186652,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2014-01-21 15:30:00, +WO191030,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2014-02-19 08:30:00, +WO193445,WORK_ORDER,PM,MT014,Filter Replacement,CWC04009,Chiller 9,2014-03-04 15:30:00, +WO197542,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04009,Chiller 9,2014-03-14 15:30:00, +WO195416,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2014-03-20 15:30:00, +WO196294,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2014-03-29 15:00:00, +WO196296,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2014-03-29 15:00:00, +WO196292,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2014-03-29 15:00:00, +WO197296,WORK_ORDER,PM,MT014,Filter Replacement,CWC04009,Chiller 9,2014-03-31 15:30:00, +WO199836,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04009,Chiller 9,2014-04-07 15:30:00, +WO199838,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04009,Chiller 9,2014-04-08 15:30:00, +WO199751,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04009,Chiller 9,2014-04-15 10:30:00, +WO200796,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04009,Chiller 9,2014-04-18 15:30:00, +WO199024,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2014-04-24 15:30:00, +WO205437,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04009,Chiller 9,2014-05-27 15:30:00, +WO202348,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2014-05-31 15:30:00, +WO205147,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2014-06-19 15:30:00, +WO206825,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04009,Chiller 9,2014-06-24 15:30:00, +WO209434,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04009,Chiller 9,2014-06-24 15:30:00, +WO209414,WORK_ORDER,CM,M013,Condenser Plugged,CWC04009,Chiller 9,2014-07-03 15:30:00, +WO209418,WORK_ORDER,CM,OP004,Flow Sensor Failure,CWC04009,Chiller 9,2014-07-08 16:30:00, +WO205703,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2014-07-14 15:00:00, +WO212531,WORK_ORDER,CM,M013,Condenser Plugged,CWC04009,Chiller 9,2014-07-18 03:30:00, +WO212530,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04009,Chiller 9,2014-07-24 03:30:00, +WO208160,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2014-08-07 15:30:00, +WO213851,WORK_ORDER,CM,MT002,Cleaning,CWC04009,Chiller 9,2014-08-15 15:30:00, +WO211085,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2014-08-27 09:00:00, +WO211106,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2014-09-04 15:30:00, +WO213530,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2014-09-16 15:30:00, +WO221880,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04009,Chiller 9,2014-10-10 15:30:00, +WO214107,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2014-10-14 15:00:00, +WO219963,WORK_ORDER,CM,M017,Major Overhaul,CWC04009,Chiller 9,2014-10-22 15:30:00, +WO216786,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2014-10-23 15:30:00, +WO218388,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2014-11-03 15:30:00, +WO219703,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2014-11-28 15:30:00, +WO222192,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2014-12-19 15:30:00, +WO224974,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2015-01-21 15:30:00, +WO226764,WORK_ORDER,CM,MT002,Cleaning,CWC04009,Chiller 9,2015-01-30 15:30:00, +WO229248,WORK_ORDER,CM,MT002,Cleaning,CWC04009,Chiller 9,2015-02-19 11:30:00, +WO227768,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2015-02-20 15:30:00, +WO230430,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2015-03-17 19:30:00, +WO230890,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2015-03-23 19:30:00, +WO234852,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04009,Chiller 9,2015-04-13 10:00:00, +WO230927,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2015-04-17 17:30:00, +WO230929,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2015-04-17 18:30:00, +WO230928,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2015-04-20 13:21:00, +WO232642,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2015-04-28 15:30:00, +WO232068,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2015-04-28 15:30:00, +WO236738,WORK_ORDER,CM,MT008,Leak Detection,CWC04009,Chiller 9,2015-05-15 15:30:00, +WO235018,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2015-05-21 15:30:00, +WO237313,WORK_ORDER,CM,MT003,Lubrication,CWC04009,Chiller 9,2015-05-31 15:30:00, +WO236992,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2015-06-22 15:30:00, +WO237631,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2015-06-30 13:00:00, +WO239489,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2015-07-30 15:30:00, +WO241351,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2015-08-18 15:30:00, +WO241372,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2015-08-22 15:30:00, +WO243722,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2015-09-22 15:30:00, +WO244384,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2015-09-25 15:30:00, +WO246493,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2015-10-29 18:30:00, +WO247572,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2015-11-06 16:00:00, +WO248742,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2015-11-16 14:00:00, +WO245629,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04009,Chiller 9,2016-01-13 20:00:00, +WO251221,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2016-01-20 22:00:00, +WO257044,WORK_ORDER,CM,M016,Draining Operations,CWC04009,Chiller 9,2016-02-10 20:30:00, +WO253289,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2016-02-18 14:00:00, +WO256068,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2016-02-19 14:00:00, +WO259388,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2016-03-24 15:00:00, +WO259853,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2016-04-05 18:30:00, +WO261794,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2016-04-27 21:29:00, +WO261375,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2016-05-01 15:00:00, +WO259917,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2016-05-16 16:38:00, +WO259918,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2016-05-16 16:42:00, +WO259916,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2016-05-16 17:21:00, +WO264135,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2016-05-17 15:02:00, +WO266700,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2016-06-23 17:01:00, +WO267220,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2016-07-04 20:00:00, +WO268777,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2016-07-31 15:33:00, +WO270680,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2016-08-17 19:00:00, +WO270690,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2016-08-22 13:28:00, +WO273228,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2016-09-21 18:48:00, +WO273703,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2016-10-05 14:00:00, +WO276953,WORK_ORDER,CM,M020,Head Operations,CWC04009,Chiller 9,2016-10-06 19:30:00, +WO276951,WORK_ORDER,CM,MT008,Leak Detection,CWC04009,Chiller 9,2016-10-09 19:30:00, +WO276964,WORK_ORDER,CM,M013,Condenser Plugged,CWC04009,Chiller 9,2016-10-12 19:30:00, +WO276535,WORK_ORDER,CM,M013,Condenser Plugged,CWC04009,Chiller 9,2016-10-17 19:30:00, +WO275167,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2016-10-18 17:57:00, +WO276518,WORK_ORDER,CM,M013,Condenser Plugged,CWC04009,Chiller 9,2016-10-18 19:30:00, +WO276163,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2016-11-03 18:06:00, +WO277420,WORK_ORDER,CM,MT007,Eddy Current Test,CWC04009,Chiller 9,2016-11-07 20:30:00, +WO277419,WORK_ORDER,CM,MT007,Eddy Current Test,CWC04009,Chiller 9,2016-11-08 20:30:00, +WO277232,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2016-11-16 18:01:00, +WO279269,WORK_ORDER,CM,M013,Condenser Plugged,CWC04009,Chiller 9,2016-12-01 20:30:00, +WO279457,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2016-12-21 20:24:00, +WO274286,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04009,Chiller 9,2016-12-29 17:00:00, +WO281348,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2017-01-27 18:49:00, +WO283429,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2017-02-27 18:19:00, +WO285976,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2017-03-23 18:14:00, +WO286487,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2017-03-29 17:05:00, +WO286488,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2017-03-30 17:19:00, +WO287389,WORK_ORDER,CM,MT008,Leak Detection,CWC04009,Chiller 9,2017-03-30 19:30:00, +WO286433,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2017-03-31 14:04:00, +WO286489,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2017-03-31 16:08:00, +WO287940,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2017-04-18 20:28:00, +WO290043,WORK_ORDER,CM,MT001,Routine Maintenance,CWC04009,Chiller 9,2017-05-08 19:30:00, +WO290041,WORK_ORDER,CM,M020,Head Operations,CWC04009,Chiller 9,2017-05-09 22:30:00, +WO291123,WORK_ORDER,CM,MT008,Leak Detection,CWC04009,Chiller 9,2017-05-15 19:30:00, +WO291424,WORK_ORDER,CM,MT008,Leak Detection,CWC04009,Chiller 9,2017-05-16 19:30:00, +WO291023,WORK_ORDER,CM,MT008,Leak Detection,CWC04009,Chiller 9,2017-05-17 19:30:00, +WO289737,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2017-05-22 14:30:00, +WO291425,WORK_ORDER,CM,MT002,Cleaning,CWC04009,Chiller 9,2017-05-26 19:30:00, +WO291430,WORK_ORDER,CM,M003,Deformation,CWC04009,Chiller 9,2017-05-30 19:30:00, +WO293262,WORK_ORDER,CM,M017,Major Overhaul,CWC04009,Chiller 9,2017-06-12 19:30:00, +WO292321,WORK_ORDER,CM,M017,Major Overhaul,CWC04009,Chiller 9,2017-06-14 09:30:00, +WO293261,WORK_ORDER,CM,M017,Major Overhaul,CWC04009,Chiller 9,2017-06-14 19:30:00, +WO293260,WORK_ORDER,CM,M017,Major Overhaul,CWC04009,Chiller 9,2017-06-16 19:30:00, +WO292727,WORK_ORDER,CM,M013,Condenser Plugged,CWC04009,Chiller 9,2017-06-19 09:30:00, +WO292118,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2017-06-19 17:06:00, +WO293246,WORK_ORDER,CM,M013,Condenser Plugged,CWC04009,Chiller 9,2017-06-19 21:30:00, +WO292473,WORK_ORDER,CM,M013,Condenser Plugged,CWC04009,Chiller 9,2017-06-20 11:00:00, +WO293245,WORK_ORDER,CM,M013,Condenser Plugged,CWC04009,Chiller 9,2017-06-20 21:30:00, +WO292635,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2017-07-14 13:00:00, +WO294018,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2017-07-17 14:42:00, +WO296116,WORK_ORDER,CM,M013,Condenser Plugged,CWC04009,Chiller 9,2017-07-25 19:30:00, +WO296238,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2017-08-31 13:33:00, +WO298053,WORK_ORDER,CM,MT003,Lubrication,CWC04009,Chiller 9,2017-09-06 19:30:00, +WO296252,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2017-09-11 18:16:00, +WO298876,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2017-09-28 19:30:00, +WO298369,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2017-10-04 12:52:00, +WO300556,WORK_ORDER,CM,MT008,Leak Detection,CWC04009,Chiller 9,2017-10-09 19:30:00, +WO300348,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2017-11-06 12:49:00, +WO302071,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2017-11-28 19:05:00, +WO305430,WORK_ORDER,CM,M009,Actuator Failure,CWC04009,Chiller 9,2017-12-02 20:30:00, +WO303059,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2017-12-04 18:02:00, +WO306167,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2018-02-13 15:58:00, +WO311027,WORK_ORDER,CM,MT008,Leak Detection,CWC04009,Chiller 9,2018-02-23 20:30:00, +WO310492,WORK_ORDER,CM,L003,Evaporator Leak,CWC04009,Chiller 9,2018-02-23 20:30:00, +WO311026,WORK_ORDER,CM,MT008,Leak Detection,CWC04009,Chiller 9,2018-02-26 20:30:00, +WO310520,WORK_ORDER,CM,MT008,Leak Detection,CWC04009,Chiller 9,2018-02-26 20:30:00, +WO311028,WORK_ORDER,CM,M014,Condenser Tube Leak,CWC04009,Chiller 9,2018-02-27 20:30:00, +WO309181,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2018-03-06 15:13:00, +WO311516,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04009,Chiller 9,2018-03-07 20:30:00, +WO299380,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04009,Chiller 9,2018-03-15 15:30:00, +WO311660,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2018-03-27 13:08:00, +WO314479,WORK_ORDER,CM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2018-03-27 19:30:00, +WO312511,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2018-04-06 14:45:00, +WO311253,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2018-04-26 13:43:00, +WO313361,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2018-05-08 14:33:00, +WO316016,WORK_ORDER,CM,M013,Condenser Plugged,CWC04009,Chiller 9,2018-05-17 19:30:00, +WO317467,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04009,Chiller 9,2018-06-09 19:30:00, +WO318055,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04009,Chiller 9,2018-06-19 23:30:00, +WO312038,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2018-06-21 13:30:00, +WO312039,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2018-06-21 14:00:00, +WO312040,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2018-06-21 15:30:00, +WO315813,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2018-06-25 20:13:00, +WO317759,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2018-08-07 16:45:00, +WO318161,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2018-08-27 19:02:00, +WO320887,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2018-09-21 20:06:00, +WO320223,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2018-09-22 14:52:00, +WO323255,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2018-09-24 16:00:00, +WO322404,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2018-10-08 17:45:00, +WO324524,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2018-11-15 12:45:00, +WO326420,WORK_ORDER,PM,MT012,Freon Management,CWC04009,Chiller 9,2018-11-28 16:30:00, +WO327207,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2018-12-14 14:45:00, +WO325837,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04009,Chiller 9,2019-01-04 20:00:00, +WO328722,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2019-01-08 16:00:00, +WO330616,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2019-02-11 20:30:00, +WO333093,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2019-03-21 12:00:00, +WO323708,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04009,Chiller 9,2019-04-01 10:00:00, +WO337119,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2019-05-14 15:00:00, +WO337118,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2019-05-14 17:30:00, +WO337117,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2019-05-14 19:30:00, +WO337071,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2019-05-19 13:00:00, +WO338399,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2019-05-31 19:30:00, +WO340699,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2019-06-27 13:00:00, +WO343345,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2019-08-15 14:00:00, +WO347197,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2019-10-12 11:45:00, +WO351954,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2019-12-08 19:30:00, +WO353168,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2020-01-14 18:30:00, +WO351294,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04009,Chiller 9,2020-03-16 16:00:00, +al_824c73fe-83bf-4721-87ce-ea38e030747b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-07 09:09:00, +al_f188363e-fa5c-4b3e-b432-7fbcd72d3778,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-07 15:30:00, +al_0a81d92a-bec2-4be1-ae79-0144733b0a8f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-08 00:00:00, +al_7502526c-e08d-4252-aad6-cdc193cfcef8,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-09 00:00:00, +al_dcc6e9d0-3471-4e80-aeb7-f5b149457417,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-10 00:00:00, +al_8542f190-6bf4-4806-b3eb-7ee9296881a5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-11 00:00:00, +al_22efa781-13d8-4046-b06d-6c8a2d175d89,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-12 00:00:00, +al_09bcae1c-6a1a-4e9d-9010-49bf56ea9c05,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-13 00:00:00, +al_dcfc6816-8356-4198-9232-e428e4f09d81,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-13 12:30:00, +al_6fb55642-0872-42ad-a22c-5ebbeed0cbc0,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-14 00:00:00, +al_985161b2-8d19-418d-8499-7aa008e9a650,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-14 16:45:00, +al_e8f51c3b-20e6-4e6b-9bfb-49f3e7c5567f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-15 00:00:00, +al_5c8a0b62-8a98-4de8-84a7-f354fe0db27c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-16 00:00:00, +al_0fe615f1-1b94-437f-8fc7-d7eeae7d99b7,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-17 00:00:00, +al_2aad796a-27aa-4c8a-891d-37f6064f92eb,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-18 00:00:00, +al_33f75807-8903-4750-b9d0-976c8e7ca1ff,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-19 00:00:00, +al_b1fb1b93-6ea4-4174-9f9f-781923889694,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-20 00:00:00, +WO360238,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2020-04-20 17:00:00, +al_0e3c6893-1057-4d6b-a7c9-c51c323893b0,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-21 00:00:00, +al_26466fae-25ca-4987-8d48-8fcbfa92aeae,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-22 00:00:00, +al_ba6d63fb-c4bd-451c-b38a-70114760ec52,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-23 00:00:00, +al_92672467-466f-46cb-8b3a-a4cac42f53be,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-24 00:00:00, +an_cb8b93d8-f7d4-48e6-8fec-b40166ed0a7a,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.2915995977818966).,CWC04009,Chiller 9,2020-04-24 20:14:00, +al_10472660-d7a7-40bd-b94a-7ef15c4f6e9e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-25 00:00:00, +al_06c9e50f-cbe5-4897-b54f-d60f5052a342,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-26 00:00:00, +an_b16b02eb-cbd3-4fa1-bfb6-bccb014fd39a,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.23480093479156494).,CWC04009,Chiller 9,2020-04-26 13:59:00, +an_5cf84f99-6132-4709-911b-cbf910ec1745,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (25609582).,CWC04009,Chiller 9,2020-04-26 14:14:00, +an_2e70f5dd-f8a4-455c-9352-c4b1185524e0,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.666015625).,CWC04009,Chiller 9,2020-04-26 14:14:00, +an_dc0f33af-0a29-42b8-ac9c-1cb95caad79f,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.2484901249408722).,CWC04009,Chiller 9,2020-04-26 14:14:00, +an_8d7328dc-7367-4889-b69a-dbb5a4ce573a,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (24759792).,CWC04009,Chiller 9,2020-04-26 15:14:00, +an_67d496fe-8ae9-4711-a45a-86481bba9bc4,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.24614741280674934).,CWC04009,Chiller 9,2020-04-26 15:14:00, +an_10f80260-6a4b-4332-8e45-c826eba77096,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.386471748).,CWC04009,Chiller 9,2020-04-26 15:14:00, +al_a8e8fc2d-d059-4f73-bb38-0927ac9921cf,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-27 00:00:00, +al_2f1e9406-9a6e-43bf-b394-082736ff5db7,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-28 00:00:00, +an_d9bf6331-d4d3-4ab4-acb4-9ae554cd4c73,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.3418588973581791).,CWC04009,Chiller 9,2020-04-28 01:44:00, +an_d3014aa6-3c7a-4fcf-81e4-cfeac23165d3,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.2823072150349617).,CWC04009,Chiller 9,2020-04-28 15:44:00, +al_9a638924-8bfe-4718-a17b-17370dd46edb,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-29 00:00:00, +an_b76b419d-63c6-4a4b-8088-5f9225042062,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.2567388117313385).,CWC04009,Chiller 9,2020-04-29 13:59:00, +al_d8f9ea8e-6e68-40ca-a631-b52b531a4575,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-04-30 00:00:00, +an_e6670911-71f0-4c90-be8e-2d82ec845d91,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (26986864).,CWC04009,Chiller 9,2020-04-30 05:29:00, +an_2216512b-0939-4aac-b7bf-db4339635ea6,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (9.008467674255371).,CWC04009,Chiller 9,2020-04-30 05:29:00, +an_5d020593-2349-48ab-9999-a6fec894db0e,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (26343678).,CWC04009,Chiller 9,2020-04-30 13:44:00, +an_a586a54d-2e2a-43dd-975d-2ecd6e345675,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.749077796936035).,CWC04009,Chiller 9,2020-04-30 13:44:00, +an_41b0a188-b167-4f4a-bf04-4b4551afdf1c,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.25798738).,CWC04009,Chiller 9,2020-04-30 13:44:00, +al_299178a0-a73b-431d-918d-732679390c9e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-01 00:00:00, +an_935f6e08-8b88-4eaa-91cf-73f1cafab13d,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.2505691349506378).,CWC04009,Chiller 9,2020-05-01 04:14:00, +an_79f1794f-1e40-4f06-beef-eeb6e2af6ed8,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (26184276).,CWC04009,Chiller 9,2020-05-01 16:14:00, +an_39b139e3-678b-4327-9c88-51d412f7057c,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.26680154353380203).,CWC04009,Chiller 9,2020-05-01 16:14:00, +an_ef8f141f-b2b9-45bc-93b2-4d837b66565d,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.613322257995605).,CWC04009,Chiller 9,2020-05-01 16:14:00, +an_9385925d-172c-44d6-a4b9-365583f46911,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.3841455392539501).,CWC04009,Chiller 9,2020-05-01 17:44:00, +an_72d0d436-cac5-4f7b-97d3-0e77a6f55dd6,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (27206866).,CWC04009,Chiller 9,2020-05-01 17:59:00, +an_663ae274-d999-4864-a118-292ee251e983,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.990607261657715).,CWC04009,Chiller 9,2020-05-01 17:59:00, +an_3501f16a-c411-488c-8adf-75bd1566580d,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.26623453199863434).,CWC04009,Chiller 9,2020-05-01 17:59:00, +an_a18049f3-9b18-4e54-87a8-ad7dffe48387,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (25523994).,CWC04009,Chiller 9,2020-05-01 22:59:00, +an_dcb9a628-fd8c-4c10-a659-57664300f399,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.3788827955722809).,CWC04009,Chiller 9,2020-05-01 22:59:00, +an_8f3d0a29-0913-42ba-a789-6de63af8ddc0,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.388970375061035).,CWC04009,Chiller 9,2020-05-01 22:59:00, +an_5f13e848-90be-4e76-adec-e48902637a28,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.24064978957176208).,CWC04009,Chiller 9,2020-05-01 22:59:00, +an_6fb4c34e-4d52-4655-a17f-10ab0262efa4,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (25213224).,CWC04009,Chiller 9,2020-05-01 23:14:00, +an_ba35faff-66a4-4d01-a22e-4c862d7356d8,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.795825958251953).,CWC04009,Chiller 9,2020-05-01 23:14:00, +an_459b3c64-4d7d-4180-8b27-dc9d2ef80362,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.2479192167520523).,CWC04009,Chiller 9,2020-05-01 23:14:00, +an_d1e46329-7c19-46b4-8fef-fbfe95a4db7b,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.361295700073242).,CWC04009,Chiller 9,2020-05-01 23:29:00, +an_ddd32a44-4992-4235-8235-0f2feba92f44,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.28661516308784485).,CWC04009,Chiller 9,2020-05-01 23:29:00, +an_ccef7169-e192-42c5-ac20-7b8bb3fa6963,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.2956170439720154).,CWC04009,Chiller 9,2020-05-01 23:44:00, +an_79de1fd3-a0a4-4293-ada0-440aded6c1ba,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.3029327392578125).,CWC04009,Chiller 9,2020-05-01 23:59:00, +al_42960e60-0d3f-4d56-9717-52e0a70f852b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-02 00:00:00, +an_f668d23a-40b6-4a86-abcc-85b9158fcb1e,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.651866912841797).,CWC04009,Chiller 9,2020-05-02 00:14:00, +an_7fead4a6-27fc-409b-80da-6feb7791c636,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.3053814172744751).,CWC04009,Chiller 9,2020-05-02 00:14:00, +an_656f77e0-bd4d-4d51-8996-1c24c69287da,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (28952722).,CWC04009,Chiller 9,2020-05-02 00:29:00, +an_0e70d28f-6125-42e1-8993-8513f98b8c5e,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.762736320495605).,CWC04009,Chiller 9,2020-05-02 00:29:00, +an_587621d6-9365-405a-96a2-2f96bdee6e55,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.30886349081993103).,CWC04009,Chiller 9,2020-05-02 00:29:00, +an_abf1ea46-1090-4499-b9f7-a78fcfc95103,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.864946365356445).,CWC04009,Chiller 9,2020-05-02 00:59:00, +an_9c17c497-f1cf-4824-abba-b3ba3ada206c,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.31671494245529175).,CWC04009,Chiller 9,2020-05-02 00:59:00, +an_e5666b9d-a108-4a98-b03f-a0898029c9d2,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.327890545).,CWC04009,Chiller 9,2020-05-02 01:14:00, +an_e09a970e-051a-4905-b776-8c427ba8b98f,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.3354075849056244).,CWC04009,Chiller 9,2020-05-02 01:29:00, +an_b125eb34-d9ef-4314-bc46-feed9857be41,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.289277076721191).,CWC04009,Chiller 9,2020-05-02 01:59:00, +an_30ab4fd0-0c82-4de8-8f60-7866288b6c27,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.33813241124153137).,CWC04009,Chiller 9,2020-05-02 01:59:00, +an_7c6d682a-cb78-4403-9a1d-0bf34e90471f,ANOMALY,ANOMALY,KPI Delta Setpoint below lower bound,The monitored KPI 'Delta Setpoint' is lower than the lower bound (0.17320317029953003).,CWC04009,Chiller 9,2020-05-02 06:59:00, +an_6187e03d-6539-4473-9f11-c68d34214b8a,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.3372596502304077).,CWC04009,Chiller 9,2020-05-02 06:59:00, +an_c5ef8ab9-aac2-46fe-a984-6c5aa188434f,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (31046340).,CWC04009,Chiller 9,2020-05-02 07:29:00, +an_bd69cb51-3b8a-47ea-920a-41a1bf08a667,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (10.83617115020752).,CWC04009,Chiller 9,2020-05-02 07:29:00, +an_bee6f405-80b2-40d7-98e5-dbe6bf99c5d3,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (29188642).,CWC04009,Chiller 9,2020-05-02 08:00:00, +an_388ddcbb-ea87-4318-a531-18efa6585ee3,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (10.328872680664062).,CWC04009,Chiller 9,2020-05-02 08:00:00, +an_d4d1897c-fe05-4fb7-8b0d-fe436497c37d,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (26025318).,CWC04009,Chiller 9,2020-05-02 11:44:00, +an_8a997345-2e32-4412-bb29-8f759d94cb03,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.362053871154785).,CWC04009,Chiller 9,2020-05-02 11:44:00, +an_91f15dbf-048b-44fd-aad2-8fb15103fde7,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.673554420471191).,CWC04009,Chiller 9,2020-05-02 11:59:00, +an_661816e6-da0c-44c9-84c1-7238197b327d,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (25439582).,CWC04009,Chiller 9,2020-05-02 12:44:00, +an_191b7b68-833a-4648-a021-7d37f9b90ee5,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.34384776651859283).,CWC04009,Chiller 9,2020-05-02 12:44:00, +an_bb400a3a-e29f-4cc3-8b74-11b89f7ee444,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.143808364868164).,CWC04009,Chiller 9,2020-05-02 12:44:00, +an_0c1107d1-f2cc-4f56-960a-e0f94cd251e0,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.28232619166374207).,CWC04009,Chiller 9,2020-05-02 12:59:00, +al_db56d955-6c7d-43cb-84ae-f12116071013,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-03 00:00:00, +an_7ce9805a-124e-42bd-a564-a88c3f1fabdc,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (26712444).,CWC04009,Chiller 9,2020-05-03 01:59:00, +al_5c348552-8270-4984-839b-6f9246e73ad9,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-04 00:00:00, +al_f94f1faf-e321-44ef-929f-18ba4b331d48,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-05 00:00:00, +an_e7362207-e21d-4390-b179-3f90648d6fba,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.34495358914136887).,CWC04009,Chiller 9,2020-05-05 00:14:00, +an_ba0788ae-db7e-41a0-9c5b-8a076f4b897b,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.308586120605469).,CWC04009,Chiller 9,2020-05-05 00:14:00, +an_2446a64c-93ff-412e-973f-062474f429aa,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (24705084).,CWC04009,Chiller 9,2020-05-05 23:44:00, +an_5ab22232-9ee6-4cbd-b8ab-16444fab26b5,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.2970965951681137).,CWC04009,Chiller 9,2020-05-05 23:44:00, +an_c2f10e84-716a-4941-a255-9d05ad771421,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.163310050964355).,CWC04009,Chiller 9,2020-05-05 23:44:00, +al_760a0b15-ceed-4876-851b-e6cd7d7e093d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-06 00:00:00, +an_5d345a0b-ef9b-4bb5-930c-7d62dda350bd,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.30229946970939636).,CWC04009,Chiller 9,2020-05-06 04:44:00, +an_79946e2c-1189-4d0f-9ead-b85205f69ae2,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (27816244).,CWC04009,Chiller 9,2020-05-06 05:29:00, +an_5bae0aa1-659a-4d0e-8aee-7b0b1bf937bd,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.120887756347656).,CWC04009,Chiller 9,2020-05-06 05:29:00, +an_5c66f7c3-18d6-45e4-bc7a-e45cdd1d0694,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.283704549).,CWC04009,Chiller 9,2020-05-06 05:29:00, +an_becfa4c2-4620-4f20-97f4-5dbae9166689,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (27554252).,CWC04009,Chiller 9,2020-05-06 11:59:00, +an_988d76df-df17-4603-9865-cc4817169ca3,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.2703551985323429).,CWC04009,Chiller 9,2020-05-06 11:59:00, +an_d7621a01-65ae-4c26-bf35-0138d145eccb,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.078166007995605).,CWC04009,Chiller 9,2020-05-06 11:59:00, +an_be3d62d2-847b-4a40-84a1-8f773811de90,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.272592157).,CWC04009,Chiller 9,2020-05-06 11:59:00, +al_376efbde-61a0-43f5-922b-c262b80bba63,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-07 00:00:00, +an_3d028136-38da-4247-93d6-d29a6fa61e3d,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.3674754500389099).,CWC04009,Chiller 9,2020-05-07 19:44:00, +al_4ce6b012-0651-4075-8918-e54818b8d1f7,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-08 00:00:00, +an_f6fe19a9-395b-4259-8973-fb16e84ccb66,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (25694884).,CWC04009,Chiller 9,2020-05-08 12:29:00, +an_8f5d3d6c-7d05-420b-aea9-4ec5ce62addf,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.33422381803393364).,CWC04009,Chiller 9,2020-05-08 12:29:00, +al_604b429a-4516-448c-a556-29d50a795029,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-09 00:00:00, +al_a86be818-c58d-41b4-83ee-afce030cbada,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-09 10:37:00, +al_730a7cec-5123-4a0a-8da9-99642d2c645e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-10 00:00:00, +an_e74cb029-359b-4c89-8004-f80a85c732af,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (29485446).,CWC04009,Chiller 9,2020-05-10 14:44:00, +an_49a89ed0-da8b-47d2-aee8-1fcf14c9d93e,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.452538401).,CWC04009,Chiller 9,2020-05-10 14:44:00, +an_377d2383-af57-48f5-a46c-89e94ceaf6f1,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.675392150878906).,CWC04009,Chiller 9,2020-05-10 14:44:00, +an_83e0e3be-06ef-4d13-93dd-faba9ea22815,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (28401700).,CWC04009,Chiller 9,2020-05-10 14:59:00, +an_b9b044b5-c133-4fb0-bf8f-975d5c0aad57,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.194479942321777).,CWC04009,Chiller 9,2020-05-10 14:59:00, +al_98ba31c3-b51d-4556-b96c-1eedb18f0849,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-11 00:00:00, +al_2c972fc7-ccac-423e-a0b8-3c18e7ef9594,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-11 12:30:00, +al_7f654841-4353-449b-bfb3-510b6b024a01,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-12 00:00:00, +al_b5a82f2e-1e5f-4ec9-adb2-070c80c20bec,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-13 00:00:00, +al_6299c633-ce1d-4dd5-81dc-4f00a6ca7bce,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-14 00:00:00, +al_8bbe4594-5d62-4bdc-b1c1-afc63dd24703,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-15 00:00:00, +an_d2b62516-f323-4292-9c38-0f026c901a62,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (27941182).,CWC04009,Chiller 9,2020-05-19 14:29:00, +an_8db620e6-e962-4b39-b759-5f3033e275f2,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.198699951171875).,CWC04009,Chiller 9,2020-05-19 14:29:00, +an_f6039816-6f16-4ac5-bc9d-cbcd49a5a07f,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.3077695071697235).,CWC04009,Chiller 9,2020-05-19 14:29:00, +an_607b493a-852e-4c41-b2d2-f93e13e26205,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.150748252868652).,CWC04009,Chiller 9,2020-05-19 14:59:00, +an_05e878b3-a584-4b76-924a-b169c6529214,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.32970085740089417).,CWC04009,Chiller 9,2020-05-19 14:59:00, +an_b98a46b1-e23d-43f9-9652-2b8b13bf32c1,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.259531595).,CWC04009,Chiller 9,2020-05-19 17:14:00, +an_f56a0848-64db-4fc4-b479-f203ebce2a88,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (26491348).,CWC04009,Chiller 9,2020-05-19 18:44:00, +an_9d8acede-9c40-4127-bafd-7ea202469bec,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.601350784301758).,CWC04009,Chiller 9,2020-05-19 18:44:00, +an_8fb94b55-eb4b-4002-aac7-ff5dacf97e8c,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.3119375705718994).,CWC04009,Chiller 9,2020-05-19 18:44:00, +WO362631,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2020-05-20 14:30:00, +an_d5e732f3-d018-4711-bd70-6214286b6b5a,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (29050848).,CWC04009,Chiller 9,2020-05-20 14:59:00, +an_dd0b1edc-093c-46ed-8948-639cbdca29aa,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.158183686, Upper: 0.3741431012749672).",CWC04009,Chiller 9,2020-05-20 14:59:00, +an_858a9593-a86c-4c06-80b0-33cceb1f59bd,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.3010932505130768).,CWC04009,Chiller 9,2020-05-20 14:59:00, +an_84f08855-65b2-4e33-89d3-8a7bb4d18011,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.558037757873535).,CWC04009,Chiller 9,2020-05-20 15:14:00, +WO362629,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2020-05-20 17:00:00, +WO362630,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2020-05-20 19:30:00, +al_ea2d4a18-c7fc-4fbe-b5c3-666cd5385625,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-21 05:45:00, +an_a666be27-2f19-49f6-be1e-d863e57b45aa,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (25313998).,CWC04009,Chiller 9,2020-05-21 08:59:00, +an_0bc4176a-b312-44bf-82d0-3dffa32c43c4,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.560880661010742).,CWC04009,Chiller 9,2020-05-21 08:59:00, +an_0b5bf06c-c61e-4e02-b766-518ba6621c3b,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.2705863267183304).,CWC04009,Chiller 9,2020-05-23 07:59:00, +an_a3a080f8-9f9c-4116-a0b8-8bc386f219ac,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (27225076).,CWC04009,Chiller 9,2020-05-23 08:29:00, +an_d61475a0-3fe5-4e05-9e76-322ac3435eed,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.431725502).,CWC04009,Chiller 9,2020-05-23 08:29:00, +an_92a45f0f-64e6-4b82-a335-1d6daf74ea41,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.2835146188735962).,CWC04009,Chiller 9,2020-05-23 08:29:00, +an_360a4f93-781a-4c74-a403-efc4efd9174e,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.891921043395996).,CWC04009,Chiller 9,2020-05-23 08:59:00, +an_433ea463-8d43-408b-8b5e-a43ef27688a7,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.32641491293907166).,CWC04009,Chiller 9,2020-05-23 09:59:00, +an_95e1b201-bcfc-4ba4-a635-48884d85fcf7,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (28329972).,CWC04009,Chiller 9,2020-05-23 10:29:00, +an_f339d1ce-48c1-4269-af85-9d75431c1bbf,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.28759766).,CWC04009,Chiller 9,2020-05-23 10:29:00, +an_7bbe90dd-cecb-451d-a4c3-53d3f9ffbc37,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.3336140215396881).,CWC04009,Chiller 9,2020-05-23 10:29:00, +an_e3c2b4ce-5b50-451d-a786-8848c9879e86,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (28328884).,CWC04009,Chiller 9,2020-05-23 13:44:00, +an_e56d4fe9-585e-41db-825f-b06b4204d69b,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.30538466572761536).,CWC04009,Chiller 9,2020-05-23 13:44:00, +an_4cba0316-9473-46ce-86ad-46226817174e,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.2926982194185257).,CWC04009,Chiller 9,2020-05-23 18:29:00, +an_59f6b958-ff51-4769-8668-ec51378ca49f,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (26457696).,CWC04009,Chiller 9,2020-05-25 16:59:00, +an_528a24c8-1dca-4f35-b0e8-cbd2fe271ffd,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.136828422546387).,CWC04009,Chiller 9,2020-05-25 16:59:00, +an_22f9a91a-60a0-4cd4-a71d-e207aec4cddf,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (24858620).,CWC04009,Chiller 9,2020-05-26 01:44:00, +an_71fbbee5-277a-4535-b292-2e3ce32dc066,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.27700600028038025).,CWC04009,Chiller 9,2020-05-26 01:44:00, +an_b18db340-6aba-4b56-9ce2-3e5a9408c842,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (24445744).,CWC04009,Chiller 9,2020-05-26 01:59:00, +an_f9f8a13f-fffa-4e4e-9c3c-8ba5b87c4114,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (27525226).,CWC04009,Chiller 9,2020-05-26 02:14:00, +an_cc579a2b-8184-478a-a282-eac77a0a86cf,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.3493107408285141).,CWC04009,Chiller 9,2020-05-26 06:44:00, +al_07581d58-78d7-4d54-ba95-c102527d108d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-27 14:35:00, +al_dfb89459-bc6e-456d-bc03-124ecf9eeed9,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-27 17:56:00, +an_17bd0eee-5b1c-41fb-80c8-8c874d18883d,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (26930200).,CWC04009,Chiller 9,2020-05-27 18:59:00, +an_fa0aebfa-3ac8-4a64-9d23-3328ce012a62,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.2976177930831909).,CWC04009,Chiller 9,2020-05-27 22:29:00, +al_e2093138-bc7f-42ed-9fd0-4bbfeabd4341,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-28 00:00:00, +WO349284,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2020-05-28 13:05:00, +WO363763,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2020-05-28 13:05:00, +al_8948e5dc-8848-415e-af91-0bbf9b202b37,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-29 00:00:00, +an_58e78a98-ee9c-499b-9c54-314794576c60,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (24255248).,CWC04009,Chiller 9,2020-05-29 11:59:00, +an_941574f9-a003-40bf-8219-699031082f8a,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.167130768, Upper: 0.35969609022140503).",CWC04009,Chiller 9,2020-05-29 11:59:00, +an_5fa8200a-c599-4b92-a840-1ac0c319a021,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.092836380004883).,CWC04009,Chiller 9,2020-05-29 11:59:00, +an_ee288db0-1a38-458f-810d-7766f11fb9e3,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.2619055509567261).,CWC04009,Chiller 9,2020-05-29 11:59:00, +an_e771c8aa-285e-4e9e-991b-d12f5fa6485c,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.18182366341352463).,CWC04009,Chiller 9,2020-05-29 12:14:00, +an_e32b5b6a-2b77-4f9b-938e-f7e5f137bc6e,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.511178016662598).,CWC04009,Chiller 9,2020-05-29 12:14:00, +an_504f6d4c-e4f8-43e2-b572-4b06387d86bc,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.27391260862350464).,CWC04009,Chiller 9,2020-05-29 12:29:00, +al_0ee3ec18-0ccf-4bb5-9c8f-0b551c29d81a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-30 00:00:00, +al_e7de9f03-64a4-4c2c-98d0-5d166fe4e11a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-05-31 00:00:00, +al_d460a5db-bfde-420c-9309-0a6d8bffb1b4,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-01 00:00:00, +al_6c7a9e83-9434-4f2d-890f-87c056f0a2e8,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-02 00:00:00, +al_d01ecec9-b076-4f36-85f6-77e7e5220e3f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-03 00:00:00, +al_c6deb4a0-b1ff-4a0d-acb6-12a19a5cc404,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-04 00:00:00, +al_c6cfd6e9-c0a3-4ff0-8f54-43bd6da7cc84,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-05 00:00:00, +al_6cb1208a-1f2b-4316-81c6-29ba567913ea,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-06 00:00:00, +an_08e41f0f-e51f-472a-a4da-adea82f4effb,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (24582916).,CWC04009,Chiller 9,2020-06-08 00:29:00, +al_a10ca20d-c0a2-4a17-b3bb-026ce98e0234,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-08 08:15:00, +an_b77fdd52-21b5-432f-8eb3-76afdd91756a,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (24765052).,CWC04009,Chiller 9,2020-06-08 09:59:00, +an_e34dacdb-5034-4d91-b7c7-179c8a8383a2,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.257404089).,CWC04009,Chiller 9,2020-06-08 09:59:00, +al_2312e306-10e6-4230-a0ff-5d8b3f858cf2,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-08 13:45:00, +an_55518111-cc8d-42ae-a8d2-ea63e1593c5d,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (28811854).,CWC04009,Chiller 9,2020-06-08 14:59:00, +an_7bc1f1fd-a0b8-44c4-85d6-5188bd5a9e7a,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (27259806).,CWC04009,Chiller 9,2020-06-08 15:29:00, +an_5576fc7d-9513-42c9-b291-930f0858415f,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.3634105548262596).,CWC04009,Chiller 9,2020-06-08 15:29:00, +an_7170bf7b-1869-4e88-98d2-e600065d2257,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.816737174987793).,CWC04009,Chiller 9,2020-06-08 15:29:00, +an_49602999-a450-4b4d-806b-e2d2e3f2a5a3,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.272397518).,CWC04009,Chiller 9,2020-06-08 15:29:00, +an_1c974fd5-e1e0-46f1-a01a-e5196d10d3d3,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (22321002).,CWC04009,Chiller 9,2020-06-08 15:44:00, +an_a8238650-258b-4f3c-9b48-04ecda94781f,ANOMALY,ANOMALY,KPI Delta Setpoint below lower bound,The monitored KPI 'Delta Setpoint' is lower than the lower bound (0.17329126596450806).,CWC04009,Chiller 9,2020-06-08 15:44:00, +an_0c2f32d4-b9bf-4d50-b7fa-32109925f82d,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.801408767700195).,CWC04009,Chiller 9,2020-06-08 15:44:00, +an_3a9be311-c71d-494c-a90c-add064485791,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (27024804).,CWC04009,Chiller 9,2020-06-08 15:59:00, +an_792d03ba-f9e1-44b6-8d25-80306ce24e83,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (25845228).,CWC04009,Chiller 9,2020-06-08 19:29:00, +al_501c3e85-6d60-4890-ad99-73a43c9e2ed4,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-09 00:00:00, +an_66d28da8-2676-4d7d-8d0a-b683e67711f6,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (22182772).,CWC04009,Chiller 9,2020-06-09 00:29:00, +an_35f43eb2-0b9d-40e3-bfeb-243fe6cf30c7,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (19945410).,CWC04009,Chiller 9,2020-06-09 02:29:00, +an_7ae9d910-085d-4efe-9d8e-3e2b3f8fca9c,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.3152320086956024).,CWC04009,Chiller 9,2020-06-09 02:29:00, +al_143e7184-aaf0-4e0d-bd00-d426ee92e404,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-09 14:15:00, +al_228713e1-b1ef-418a-897d-017a19775b06,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-10 00:00:00, +an_93d283d0-1ae4-40aa-9c9f-cd8beba02eeb,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (24090990).,CWC04009,Chiller 9,2020-06-10 03:14:00, +al_52bc95d4-7251-4039-812b-027d816a4fa5,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-10 19:30:00, +al_770071a2-4af8-4a11-8f8b-44b64678c975,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-11 00:00:00, +an_af0c2006-639b-43f0-ad06-fd95fb5ae8ea,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (18507862).,CWC04009,Chiller 9,2020-06-11 19:14:00, +an_8beb78de-8ac6-4e81-a3e4-255231ff8e6c,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.3257896900177002).,CWC04009,Chiller 9,2020-06-11 19:14:00, +an_0e77c6be-a675-4aff-8bbb-f28c8d52f47c,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.31426624208688736).,CWC04009,Chiller 9,2020-06-12 07:59:00, +an_b75fb8db-d76f-43ab-b62f-4876be4a0e71,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.35935115814208984).,CWC04009,Chiller 9,2020-06-13 14:59:00, +al_9bef0a82-5456-4376-aaf1-24a99d08574f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-15 21:00:00, +al_1e0eb53c-db81-4d42-9164-2ea600f9f8fb,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-16 00:00:00, +an_5527fc9a-be41-49fa-8e84-a0209b3ebdae,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.3744043707847595).,CWC04009,Chiller 9,2020-06-16 01:59:00, +an_9294404c-ac60-45be-94fd-0d3eb794495b,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.29962556809186935).,CWC04009,Chiller 9,2020-06-16 03:14:00, +an_524d038e-6d7a-485a-a52e-96abc70cfbef,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (15721396).,CWC04009,Chiller 9,2020-06-16 07:59:00, +an_20d71230-decb-43c7-b8a7-883f38dfc68b,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.29698485881090164).,CWC04009,Chiller 9,2020-06-16 07:59:00, +an_19e97c0a-8aca-4c1b-b4ae-655f7cd95651,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.748099327087402).,CWC04009,Chiller 9,2020-06-16 07:59:00, +an_dffade5c-8eb8-4513-aa62-df496eacd220,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.4087427258491516).,CWC04009,Chiller 9,2020-06-16 08:14:00, +al_8a89b20f-5835-41eb-bc0f-64addaaf8a5f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-16 14:00:00, +an_a8632b47-6500-431d-a550-45f3e80bad95,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.31527480110526085).,CWC04009,Chiller 9,2020-06-16 16:59:00, +WO367822,WORK_ORDER,CM,MT013,Vibration Analysis,CWC04009,Chiller 9,2020-06-16 19:30:00, +al_ff020a90-9ca2-4a79-8d4f-20aa9593cc67,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-17 13:45:00, +al_0e09892a-b17e-4204-9e70-eae8fa7527d9,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-18 12:00:00, +an_c8c1176e-4464-4c85-bda9-5dd891494222,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.4917546808719635).,CWC04009,Chiller 9,2020-06-18 15:59:00, +an_e83c9bc0-2046-4a0c-a3f8-bc1c72f0d19b,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.4993162155151367).,CWC04009,Chiller 9,2020-06-18 16:14:00, +al_6c86d0aa-4ee9-4c7d-8fbf-67063276fb9d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-19 12:30:00, +al_6b05fb2d-df7c-45f3-8a79-624a8e5ec1c2,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-19 18:00:00, +al_7604222e-40fd-4179-a599-ae43bb900ccb,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-21 12:00:00, +al_5084f88d-1b6b-444c-8916-4ddc9a068e4f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-22 00:00:00, +al_bab13443-7491-460b-aa8c-658a20841e07,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-22 08:00:00, +al_da8b7254-7667-4427-9cda-99db49539609,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-23 00:00:00, +WO358651,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04009,Chiller 9,2020-06-23 20:00:00, +al_a6e0c0be-4be9-4992-84d9-16e3b4d09e0b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-24 12:00:00, +al_30893d5e-b310-496c-ac0f-ecfb5cd9cac8,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-25 14:15:00, +al_03593528-a54f-4949-bcf2-2ea9c234f2e6,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-26 08:45:00, +WO362353,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2020-06-26 14:00:00, +al_d727d3be-328f-49cd-920b-1480af580974,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-27 00:00:00, +al_2fdb9593-208b-42ae-9eea-734ecad2f8ef,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-27 12:45:00, +al_7f73e0a4-60ec-4e13-b26f-96907b480f4b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-06-29 09:45:00, +al_40aceecf-bd3d-4cb3-9121-68926a739bdb,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-01 15:45:00, +al_21c927ca-5066-4d60-bf58-f53b5012a2c1,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-02 13:00:00, +al_02ece185-949d-42e4-9b6b-01292fa4a59b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-02 16:30:00, +al_7e04c369-49b4-4c8d-a90c-f85493415194,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-03 13:30:00, +al_38fcfbdb-3425-4e4a-897b-baa0ee4fa3c0,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-04 12:30:00, +al_c2f03edf-6857-4d5a-9776-8371a61373de,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-05 11:15:00, +al_0c559a1c-4ea9-435d-b3f9-40eb34f893d0,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-06 05:30:00, +al_53160281-b4e3-4afb-9d3e-5ec4b5f89ec2,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-07 00:00:00, +WO367298,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2020-07-07 19:00:00, +al_9d29e82a-fd3a-49f3-8b0e-b36415a96cd2,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-08 00:00:00, +al_a3806a5f-e5c6-43ad-a4f4-9b46fed5636e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-09 00:00:00, +al_7ed3f81f-2f5a-4eff-955d-a21a566423bb,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-09 06:30:00, +al_9886836c-b6be-4370-b532-d2347dd900bd,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-09 17:15:00, +al_e45cc4df-08de-46c5-ab74-7539b5cc1b52,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-10 00:00:00, +al_8075e1f6-7c56-4abc-9702-03db02ae0790,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-10 06:45:00, +al_2c50130b-822b-41e0-95aa-396e8328dded,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-10 16:45:00, +al_67e33359-92e7-4869-9e53-71262258fc35,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-11 03:45:00, +al_9b407a88-7ffc-4116-851c-20484ffde01d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-11 07:00:00, +al_ce32f859-5670-49ec-922f-477b8ebdc81a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-11 17:30:00, +al_82905e5f-b1a2-4629-b5c6-0ba8af9f1cbb,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-12 00:00:00, +al_f46beb2e-b3cc-4437-a162-7be9358a3e40,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-12 16:15:00, +al_a2a4f8b8-e600-48ec-86d2-0ef892348852,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-12 20:30:00, +al_8c986c09-b955-499b-a94b-802ae3fb5f62,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-13 00:00:00, +al_c77a1579-aa62-4803-a45d-c921cb0201e8,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-14 19:30:00, +al_a143c2fc-aa2f-4bc7-9121-9dbaac91595e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-15 00:00:00, +al_c235f0cc-b09f-412d-9c60-b739237adcac,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-15 11:30:00, +al_48749f2e-dc57-4626-b64d-7be4593efd6c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-19 08:00:00, +al_aba2938c-100c-466a-b3b8-b513680cee89,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-19 17:30:00, +al_e4df24c8-666c-43ba-8c91-347d827713a3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-20 20:15:00, +al_6e9f305b-835d-4e9a-8561-44637288bb2f,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-21 00:00:00, +al_fa3de0ef-1964-42bb-b1b5-26ec0a88fe47,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-21 20:30:00, +al_44275f04-83ea-49fe-9860-e4d37f23affb,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-22 00:00:00, +al_8716f807-aa68-4932-bc52-de95a31ed1b1,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-22 07:00:00, +al_d1519e10-1326-448f-8712-97eba306cdfa,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-22 19:00:00, +al_c3defecb-86f5-4840-9b14-23191ebdf540,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-23 00:00:00, +WO369088,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2020-07-23 19:00:00, +al_e2f4099d-a68b-4f18-9211-8968513cd177,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-23 20:30:00, +al_00eb1e51-6eec-417a-8c7e-9a5a60286cf1,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-24 18:45:00, +al_3a2b2285-c320-4ccf-966b-342271af9318,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-25 00:30:00, +al_787c19c3-4756-427c-bac7-5f1649b20eb4,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-26 02:00:00, +al_4b9d0617-1394-4c0c-8942-e2f6aba3993c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-26 11:00:00, +al_ec6a85a7-7fc8-4117-bd91-fc814f066693,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-26 15:07:00, +al_6017e29a-7ae9-4c5f-b116-6540aec779cb,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-27 00:00:00, +al_e00eb376-25d3-4f13-ac08-903850286575,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-29 20:30:00, +al_0a19ab7e-9cae-4a6b-a1f8-d27dc1fd197b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-30 00:45:00, +al_45174e33-1a30-49b0-881a-2cd5a26889c8,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-30 20:15:00, +al_2188845c-c9bd-47f2-bc09-cc21d2866964,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-31 09:00:00, +al_844ba829-845a-4908-b00f-9621988eaea7,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-07-31 12:30:00, +al_649d8150-f597-4a45-b00c-53dd7ae8edd4,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-08-01 11:15:00, +al_3afad255-2e08-4900-83c0-c948163f9207,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-08-01 15:45:00, +al_0d0c19a2-13f0-4133-bdb6-aefa9563ae5b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-08-02 20:30:00, +al_5dbc0474-83a8-4c6d-b81c-deaed3fb3329,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-08-04 03:00:00, +al_766f6099-d523-4bdb-a33f-de85d20d6690,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-08-05 14:30:00, +al_5285d680-0238-4ae6-98ab-fb53ef98ccd1,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-08-06 00:00:00, +WO371657,WORK_ORDER,CM,MT013,Vibration Analysis,CWC04009,Chiller 9,2020-08-24 19:00:00, +al_3ba07bfc-d40e-4d15-b2ae-180cb6b7a230,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-09-28 14:00:00, +WO372328,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2020-09-29 18:30:00, +WO374043,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2020-10-13 15:00:00, +WO375431,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2020-10-21 19:00:00, +al_a0fdb5bc-c554-4253-a763-2fd9cb99b81c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-11-10 16:15:00, +an_c5501452-97f7-48a8-b151-b1a9ec5580b3,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.7685109972953796).,CWC04009,Chiller 9,2020-11-17 22:29:00, +an_616ec61f-20a8-4c55-bf5c-29da256baf55,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.23302818462252617).,CWC04009,Chiller 9,2020-11-17 23:30:00, +an_c6046316-7a4b-43f7-98a6-2b370449fc9d,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.797592044).,CWC04009,Chiller 9,2020-11-17 23:30:00, +an_e33481df-620e-4557-b650-43b4660ca156,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8529794216156006).,CWC04009,Chiller 9,2020-11-17 23:44:00, +an_86e6e9ef-8206-46c0-8eec-cd2daac6ff09,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8753101229667664).,CWC04009,Chiller 9,2020-11-18 00:14:00, +an_736cc98d-d493-4615-92f2-c3aa3faec013,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8814727962017059).,CWC04009,Chiller 9,2020-11-18 00:44:00, +an_f7f7f394-b3e2-4927-8b84-135e4771dedd,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8811672031879425).,CWC04009,Chiller 9,2020-11-18 01:44:00, +an_25e65c83-6f37-4d32-b615-ee0d5fb247a3,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8831228315830231).,CWC04009,Chiller 9,2020-11-18 02:14:00, +an_0ac68179-59d2-4685-8adb-33e7f0551932,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.8151467144489288).,CWC04009,Chiller 9,2020-11-18 04:59:00, +an_6d0bf6db-a376-411a-8fbd-0ea0c4c5afca,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8455929756164551).,CWC04009,Chiller 9,2020-11-18 06:59:00, +an_815ad3cf-437b-4a79-9177-f52c4cd57afe,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.861528218).,CWC04009,Chiller 9,2020-11-18 11:59:00, +an_a9327224-23a4-4064-a3d5-44b9d8585803,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.8302440643310547).,CWC04009,Chiller 9,2020-11-18 12:14:00, +an_c4698724-63c2-4377-ac6c-1195a637224a,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.8248903155326843).,CWC04009,Chiller 9,2020-11-18 12:44:00, +an_e90dcb3b-aec8-4290-b588-ff044059abc9,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8521978259086609).,CWC04009,Chiller 9,2020-11-18 13:14:00, +an_f37e7325-2c08-4724-b371-d2f1c46be272,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8681018352508545).,CWC04009,Chiller 9,2020-11-18 14:14:00, +an_ecbdc286-ee2d-49da-93b8-11e5f1aca82b,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (5889073).,CWC04009,Chiller 9,2020-11-18 15:44:00, +an_8a37e5aa-6338-44fb-8cf8-ddded444bb89,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8829301595687866).,CWC04009,Chiller 9,2020-11-18 15:44:00, +an_ceaa940c-721b-4a3b-8696-dca47cf3f0ea,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.3836710825562477).,CWC04009,Chiller 9,2020-11-18 15:59:00, +an_5a8e7619-81ce-45d5-b74a-5818d5865683,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.042573928833008).,CWC04009,Chiller 9,2020-11-18 15:59:00, +an_1c84df62-bcc7-475f-af8e-fcb9c264d7c3,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.8799158930778503).,CWC04009,Chiller 9,2020-11-18 15:59:00, +an_f6edf427-bc19-4417-9450-0d0debeaac97,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.528981209).,CWC04009,Chiller 9,2020-11-18 16:14:00, +an_07759ef0-8c4d-4daa-85eb-10a82ff186dd,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.879347563).,CWC04009,Chiller 9,2020-11-18 17:14:00, +an_c4000b1f-fe01-41e4-8740-8ebb007a3c7f,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8566463589668274).,CWC04009,Chiller 9,2020-11-18 18:44:00, +an_008c629a-cb00-4f1e-bf55-cdb7cc44412b,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.146099448, Upper: 0.3854902982711792).",CWC04009,Chiller 9,2020-11-18 20:29:00, +an_ee726cdc-26cf-4933-947d-54b05ee98c5c,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8533803820610046).,CWC04009,Chiller 9,2020-11-18 20:59:00, +an_74b7f600-82f5-42ac-9776-ebf7259f98fa,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8619569540023804).,CWC04009,Chiller 9,2020-11-18 22:14:00, +an_e810e8d0-0298-4a45-ba79-fa348ca69c95,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8715621829032898).,CWC04009,Chiller 9,2020-11-18 22:44:00, +an_184e335c-0dab-4624-8239-26420aa46da4,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.182038739, Upper: 0.3502880483865738).",CWC04009,Chiller 9,2020-11-18 23:14:00, +an_9bc73d22-74cf-489d-b9c8-afbf58b62cfc,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.8412886261940002).,CWC04009,Chiller 9,2020-11-19 03:44:00, +WO366934,WORK_ORDER,CM,E006,VFD (Variable Frequency Drive) Failure,CWC04009,Chiller 9,2020-11-19 20:00:00, +an_7a168dff-0993-4c2d-b5f1-f1f9fb945440,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8048742413520813).,CWC04009,Chiller 9,2020-11-20 21:59:00, +an_54b6b891-7a15-4648-8fc6-a3cc3127dcba,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.3241910859942436).,CWC04009,Chiller 9,2020-11-20 22:44:00, +an_0361db38-1b6b-41a8-9d20-26dc42dfe810,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.212513924).,CWC04009,Chiller 9,2020-11-20 22:44:00, +an_a74faae2-f355-40fc-9ec1-746b945ac19f,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.71046257).,CWC04009,Chiller 9,2020-11-20 22:59:00, +an_48636316-a5ac-4d3f-b69e-6133e9a6a9c0,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.3117862120270729).,CWC04009,Chiller 9,2020-11-21 00:29:00, +an_b0c550e8-774a-4c1e-bbf6-60e770b20bae,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.232521057128906).,CWC04009,Chiller 9,2020-11-21 00:29:00, +an_0bb3e69f-dc14-433f-9898-18ad1563930a,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.7797959446907043).,CWC04009,Chiller 9,2020-11-21 00:29:00, +an_f134480a-30a6-46be-9d0b-d0646c6b8496,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.803676963).,CWC04009,Chiller 9,2020-11-21 00:44:00, +an_53ff7ff3-7b85-4622-a938-68f3363d702c,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8243755102157593).,CWC04009,Chiller 9,2020-11-21 01:29:00, +an_f5507159-67f8-4380-a526-084849ce20a9,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.7690122723579407).,CWC04009,Chiller 9,2020-11-21 06:44:00, +an_53749e88-ebf8-486a-b321-390ef3181332,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8027895092964172).,CWC04009,Chiller 9,2020-11-21 07:29:00, +an_ce6b9c88-41a6-4aba-ad79-ae54d5bf29aa,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.39270835369825363).,CWC04009,Chiller 9,2020-11-21 15:44:00, +an_84431286-e377-4a82-8089-37384a19784e,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.819817066).,CWC04009,Chiller 9,2020-11-21 16:44:00, +an_b5c00799-0d35-488c-97ec-0a8c6b4dc697,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8066146373748779).,CWC04009,Chiller 9,2020-11-21 18:29:00, +an_acb5022a-f92f-4fd6-a1e3-d518d2450fb6,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.7289589643478394).,CWC04009,Chiller 9,2020-11-26 11:44:00, +an_c61789b6-1935-44c7-a05c-0960dfd8b709,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.7350941896438599).,CWC04009,Chiller 9,2020-11-26 13:29:00, +al_3e028385-7514-42ba-a70c-07b55cfc2b16,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-11-26 16:15:00, +al_21c4a01d-aca0-4ecf-bc82-d03a110bd3bd,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-11-27 00:00:00, +al_5185f58b-3519-4e9c-b6be-c4cd2a57d4de,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-11-28 00:00:00, +an_6b5d6c26-9dc3-486a-aa25-47fdfe6bb9c2,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8107330203056335).,CWC04009,Chiller 9,2020-11-28 00:29:00, +an_7cbf7041-8ec3-4369-b007-4c2362994bbf,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.38285310566425323).,CWC04009,Chiller 9,2020-11-28 00:44:00, +an_6895aea2-676b-441b-ad2b-90c753a42012,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.829057515).,CWC04009,Chiller 9,2020-11-28 00:44:00, +an_cf4db82d-c062-4fa4-a747-37690ddc6d1e,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.051139787, Upper: 0.49609969556331635).",CWC04009,Chiller 9,2020-11-28 00:59:00, +an_1207ddbf-a881-4e73-9850-ec8f407e4fc4,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.894966125488281).,CWC04009,Chiller 9,2020-11-28 00:59:00, +an_91c7cdc3-fc7a-4751-8793-05cff33bbbe0,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.33467064797878265).,CWC04009,Chiller 9,2020-11-28 09:44:00, +an_e92cc8be-2228-4182-91c1-783383ec6d3c,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.7668351233005524).,CWC04009,Chiller 9,2020-11-28 09:44:00, +an_948e9767-0793-4c24-8758-23957a57f1bf,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.3374244049191475).,CWC04009,Chiller 9,2020-11-28 12:14:00, +an_33df6935-1933-4258-ab68-463891570abc,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.7447361946105957).,CWC04009,Chiller 9,2020-11-28 12:44:00, +an_267d251f-2807-4130-9748-aedcc5a1a5ae,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.674010276794434).,CWC04009,Chiller 9,2020-11-28 14:14:00, +an_49673e19-649c-419b-bb3d-46201637d027,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (11146722).,CWC04009,Chiller 9,2020-11-29 08:59:00, +an_e70be034-ae8d-456d-b64e-179316ec1cdc,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.731027365).,CWC04009,Chiller 9,2020-11-29 08:59:00, +an_db05ff12-037a-43be-9ce9-5a7c5cf88fa7,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.7049258351325989).,CWC04009,Chiller 9,2020-11-29 09:29:00, +an_257450a8-aee8-4a32-b3e9-bf616c2c89ce,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (12100916).,CWC04009,Chiller 9,2020-11-29 09:44:00, +an_99591213-ccff-403a-b3d4-d67c299cea0d,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.175248079, Upper: 0.3862670883536339).",CWC04009,Chiller 9,2020-11-29 09:44:00, +an_f1a8e18f-525f-489e-bc03-20890bbee6d9,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.588307381).,CWC04009,Chiller 9,2020-11-29 09:44:00, +an_9a8ea3bf-df96-4d96-900a-16f60b0f3c6a,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.7521300315856934).,CWC04009,Chiller 9,2020-11-29 09:44:00, +an_ad9f7d0f-5215-40a9-bcf7-9edf813096ff,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.22632329165935516).,CWC04009,Chiller 9,2020-11-29 09:59:00, +an_64d98044-c91e-43a9-a559-e6924f663336,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.7933523058891296).,CWC04009,Chiller 9,2020-11-29 09:59:00, +an_20c4cfb7-7618-494c-9d6a-0f41772f08ce,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (10883985).,CWC04009,Chiller 9,2020-11-29 10:14:00, +an_37b4747f-6f14-40dd-b62c-122691ade761,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.263857841).,CWC04009,Chiller 9,2020-11-29 10:14:00, +an_4becaf82-b755-4b8e-8b18-9113ceefb1d6,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8034685254096985).,CWC04009,Chiller 9,2020-11-29 10:29:00, +an_7079a050-a131-4ca3-bb38-6c69cb0faf68,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8158968091011047).,CWC04009,Chiller 9,2020-11-29 10:59:00, +an_f76c1c8b-1753-412e-b873-f555b7ce06eb,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.760185957).,CWC04009,Chiller 9,2020-11-29 16:59:00, +an_cc7f71fe-7fa4-4d97-a91f-9d58e26a8dcc,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.748836339).,CWC04009,Chiller 9,2020-11-29 17:44:00, +an_ed2352f4-5f43-462d-8ca5-d72c97f58029,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.7918838858604431).,CWC04009,Chiller 9,2020-11-29 18:29:00, +an_c287dec0-b803-44f2-9932-68f367242a8f,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8216917514801025).,CWC04009,Chiller 9,2020-11-29 19:44:00, +an_16ab9dc5-7f18-4a1e-a881-9fb738c837a5,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.836334229).,CWC04009,Chiller 9,2020-11-29 20:14:00, +an_04ea6319-d8fe-4f5e-acfb-b4f7e44d02c6,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8471230268478394).,CWC04009,Chiller 9,2020-11-29 22:14:00, +an_20c865d0-6241-41b4-ac0f-5684f51cb408,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.7969488501548767).,CWC04009,Chiller 9,2020-11-30 02:59:00, +an_ecf4154e-cf8b-404e-af33-78b5339049b2,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8487563729286194).,CWC04009,Chiller 9,2020-11-30 03:59:00, +an_662d6034-c0e7-4f53-a5ea-03d712b5bdb4,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8584352135658264).,CWC04009,Chiller 9,2020-11-30 04:44:00, +an_58555985-bc94-49b0-a930-4164ba33f753,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8743112683296204).,CWC04009,Chiller 9,2020-11-30 05:14:00, +al_629413e9-0104-4424-aae1-84d3c13728c3,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-11-30 11:30:00, +an_31fdaa6d-172f-4e62-854a-d32c88c1ff09,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8989979028701782).,CWC04009,Chiller 9,2020-11-30 22:44:00, +al_47a694d5-6ae3-4848-b392-a770be0c3f18,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-12-01 00:00:00, +an_d1156b11-5125-4960-bf2c-754d4fb3d953,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.3399643339216709).,CWC04009,Chiller 9,2020-12-01 01:59:00, +an_f123f07c-e345-4218-bffd-c21a17f290e2,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.8212332427501678).,CWC04009,Chiller 9,2020-12-01 01:59:00, +an_5c6af4f8-f837-4b70-9749-5dfe8f68b3f3,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8816623985767365).,CWC04009,Chiller 9,2020-12-01 02:14:00, +al_3482f508-eb90-4b99-aaff-def6f890828b,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-12-01 05:45:00, +al_b7edb89f-5238-4db4-908f-5bbf81583e7e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2020-12-01 14:30:00, +an_6bfa1960-699c-44b8-9f4b-2592ca3a4af4,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8936795592308044).,CWC04009,Chiller 9,2020-12-01 20:29:00, +an_82687a95-2c41-492d-a3c0-7586113448f9,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.9097445607185364).,CWC04009,Chiller 9,2020-12-01 23:44:00, +an_16ce3587-b59e-4e66-b75a-202f7cfebe74,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (8924163).,CWC04009,Chiller 9,2020-12-01 23:59:00, +an_1b1f08ae-0e11-4eef-be6f-4b0a766e4448,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.130673915, Upper: 0.43757691979408264).",CWC04009,Chiller 9,2020-12-01 23:59:00, +an_5e6d1055-4467-4039-8355-a0c4468e09b4,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.793753623962402).,CWC04009,Chiller 9,2020-12-01 23:59:00, +an_12891e3c-69bf-424b-97f5-535ac0c193b2,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.8513055443763733).,CWC04009,Chiller 9,2020-12-01 23:59:00, +an_7885d7fb-b6c1-42bd-9091-ac2162bb88ec,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (10225355).,CWC04009,Chiller 9,2020-12-02 00:14:00, +an_e3931588-c7bb-4a39-9bfd-4c7dee6a84d0,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.9003119468688965).,CWC04009,Chiller 9,2020-12-02 00:14:00, +an_621cddfc-c5cf-4038-ae42-c1fc64846a18,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8856629133224487).,CWC04009,Chiller 9,2020-12-03 11:59:00, +an_17452867-90b0-4118-86c7-d7b36bb831bf,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.8223460912704468).,CWC04009,Chiller 9,2020-12-03 12:59:00, +an_706e5574-03a5-4a2d-83a0-2444ace070c9,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.2631860040128231).,CWC04009,Chiller 9,2020-12-03 17:14:00, +an_bbc83200-2353-4213-b728-48d7156debcf,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8802279829978943).,CWC04009,Chiller 9,2020-12-03 17:14:00, +an_5a7a36ad-bd04-481a-b610-e3777fa65a7c,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.26670127362012863).,CWC04009,Chiller 9,2020-12-03 19:59:00, +an_4c93e327-a549-491d-b646-2ee0a90a2b71,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (9439214).,CWC04009,Chiller 9,2020-12-03 23:29:00, +an_da4346fc-0bf0-4f3e-a555-769cdda83c88,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.256680228, Upper: 0.35658184438943863).",CWC04009,Chiller 9,2020-12-03 23:29:00, +an_65b8a1cd-a5f0-4c65-bdb7-b21d6cfdee19,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.88542366).,CWC04009,Chiller 9,2020-12-03 23:29:00, +an_7002209d-bdcc-4b63-b003-ce44ef3cbcb2,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.8328902721405029).,CWC04009,Chiller 9,2020-12-03 23:29:00, +an_f31fd6eb-af29-47f4-b73d-8e8dc84e6cf4,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (10355751).,CWC04009,Chiller 9,2020-12-03 23:44:00, +an_016a0013-9d81-4fb1-9499-0eb00fd605b3,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (-0.042174183).,CWC04009,Chiller 9,2020-12-03 23:44:00, +an_53f7faee-048d-4cf8-83bd-0146ba0ac9a0,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.278842926).,CWC04009,Chiller 9,2020-12-03 23:44:00, +an_f2d426fe-1d44-4fe4-8d9c-ed33cd2bd83f,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (5920501).,CWC04009,Chiller 9,2020-12-03 23:59:00, +an_e700ae04-9420-447b-8634-7df53723d63c,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.44093023985624313).,CWC04009,Chiller 9,2020-12-03 23:59:00, +an_a9f2b443-1ebe-4081-a693-eb7db2b2e7e2,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (7.817032814025879).,CWC04009,Chiller 9,2020-12-03 23:59:00, +an_cb06d8ec-bb03-4816-92a3-7b24ba7d32ea,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.9227543473243713).,CWC04009,Chiller 9,2020-12-03 23:59:00, +an_1e088ebf-c99f-45b2-8b32-5cbba1b37026,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.9279932975769043).,CWC04009,Chiller 9,2020-12-04 00:29:00, +an_2f26d1c1-3b26-4e30-838a-31222eef29ea,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (8998283).,CWC04009,Chiller 9,2020-12-04 00:44:00, +an_98e60f21-0acf-4750-94c2-58912a7d337a,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.17553968, Upper: 0.4377223923802376).",CWC04009,Chiller 9,2020-12-04 00:44:00, +an_575c414a-af17-42e9-b22f-6eb1de924fc2,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.822513580322266).,CWC04009,Chiller 9,2020-12-04 00:44:00, +an_23c630c5-30df-4a06-a9af-387d89ebf1e2,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.8536236882209778).,CWC04009,Chiller 9,2020-12-04 00:44:00, +an_cdfb3be0-961b-4270-9ea7-148690539f1e,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (10407091).,CWC04009,Chiller 9,2020-12-04 00:59:00, +an_30a714fd-07a9-45d9-b69c-71c090bd3fa7,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.16613278537988663).,CWC04009,Chiller 9,2020-12-04 00:59:00, +an_7999781e-d5fa-4b6d-b129-8ae405cf9b40,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.262933731079102).,CWC04009,Chiller 9,2020-12-04 00:59:00, +an_a2137e8f-fbb6-4c39-908a-32e4be676c87,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8966575264930725).,CWC04009,Chiller 9,2020-12-04 00:59:00, +an_be76f5cc-93da-4237-94d5-e13f19b8c4f2,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.174589105, Upper: 0.4386729672551155).",CWC04009,Chiller 9,2020-12-04 01:29:00, +an_71bc05c2-799d-431a-8a14-144b61898d53,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.23647624254226685).,CWC04009,Chiller 9,2020-12-04 01:44:00, +an_0348c7f6-c92b-43bf-9125-0bf919379307,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.162203439, Upper: 0.45105863362550735).",CWC04009,Chiller 9,2020-12-04 01:59:00, +an_d804d5b7-b263-4778-b5b2-be9d382ba4c7,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.294037864).,CWC04009,Chiller 9,2020-12-04 02:14:00, +an_d4b90990-9161-4ba2-8a82-8af2e3ae2c43,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (7.997210502624512).,CWC04009,Chiller 9,2020-12-04 02:14:00, +an_5b7512b1-c4a6-4e75-a455-f0f361e06ede,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.4972323998808861).,CWC04009,Chiller 9,2020-12-04 02:29:00, +an_609dcdf6-8a73-42b2-9e9f-fe19f661c63e,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.47047100961208344).,CWC04009,Chiller 9,2020-12-04 02:59:00, +an_9c5a68f2-832f-418c-a2eb-d7e65748264b,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (7.66145134).,CWC04009,Chiller 9,2020-12-04 02:59:00, +an_a61aab21-226f-4403-97a7-4e107bcffef1,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.9411786198616028).,CWC04009,Chiller 9,2020-12-04 03:14:00, +an_4465f5cc-8c7e-4315-acb6-dadfda9ac17e,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (4932561.5).,CWC04009,Chiller 9,2020-12-04 03:29:00, +an_29eaea9c-65b8-478d-bd9e-4423ad939027,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.5916875004768372).,CWC04009,Chiller 9,2020-12-04 03:29:00, +an_ffc06c2d-2527-47c3-978c-a58c69ae84ec,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (7.550950050354004).,CWC04009,Chiller 9,2020-12-04 03:29:00, +an_9cd299a0-927b-4530-bd10-bcd8bb3dacee,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.957470179).,CWC04009,Chiller 9,2020-12-04 03:29:00, +an_c0dffe5a-3d97-4892-bb47-dee7b6acbcbd,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.8898550868034363).,CWC04009,Chiller 9,2020-12-04 03:44:00, +an_38a8f6b5-a9f4-4fec-97e6-a60809da0e60,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.017234355, Upper: 0.6561780869960785).",CWC04009,Chiller 9,2020-12-04 03:59:00, +an_82fa795b-3c1e-4e33-a81c-c589960e3639,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.492981433868408).,CWC04009,Chiller 9,2020-12-04 03:59:00, +an_4cca7d99-8d9e-4c41-97be-9c13d441356d,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.29850515723228455).,CWC04009,Chiller 9,2020-12-04 04:14:00, +an_02bca88a-ee5e-40b3-ac06-3b6856e763c5,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.045678139).,CWC04009,Chiller 9,2020-12-04 04:14:00, +an_371f8a64-298e-44a0-96e8-6d87e8cf1af5,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (5315250).,CWC04009,Chiller 9,2020-12-04 04:29:00, +an_41fb87dc-06eb-4293-93ce-0f7f823013c7,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.016879976, Upper: 0.6565324664115906).",CWC04009,Chiller 9,2020-12-04 04:29:00, +an_5066a5c6-d045-4c6e-913e-948f1ac001ba,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.601327896118164).,CWC04009,Chiller 9,2020-12-04 04:29:00, +an_dc931828-75a2-4551-9650-5724c721c573,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.8400148749351501).,CWC04009,Chiller 9,2020-12-04 04:29:00, +an_3c1e7c03-1cb7-4e1a-bb24-0fec50d247b3,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (10679646.5).,CWC04009,Chiller 9,2020-12-04 04:44:00, +an_05ea11ec-8936-4743-aec7-7767a139166b,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.17645806074142456).,CWC04009,Chiller 9,2020-12-04 04:44:00, +an_32cf20df-1ab2-432d-bfad-b0bc83bdbb95,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.264338493347168).,CWC04009,Chiller 9,2020-12-04 04:44:00, +an_c3fddc59-edf0-4c53-929f-762c1fb26e85,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.9058839082717896).,CWC04009,Chiller 9,2020-12-04 04:44:00, +an_7cb1ecc5-cd90-4e0c-990c-324fe7d39e2f,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.6249875128269196).,CWC04009,Chiller 9,2020-12-04 04:59:00, +an_5e5c2341-d6dc-4821-95c5-d4db28ff34c2,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (7.739099502563477).,CWC04009,Chiller 9,2020-12-04 04:59:00, +an_74b0e6cb-f8e2-4e56-9185-6271568af1a1,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (8890591.5).,CWC04009,Chiller 9,2020-12-04 05:14:00, +an_753b62bf-f7ab-4f77-b1f2-bbdcdf5606d0,ANOMALY,ANOMALY,KPI Delta Setpoint below lower bound,The monitored KPI 'Delta Setpoint' is lower than the lower bound (0.061738223).,CWC04009,Chiller 9,2020-12-04 05:14:00, +an_cfc69ced-adfe-4ea3-b388-90156168fbc3,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.502833366394043).,CWC04009,Chiller 9,2020-12-04 05:14:00, +an_7ceae17c-fea6-435c-ae0f-0f1eeeda2fd8,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (10437972.5).,CWC04009,Chiller 9,2020-12-04 05:29:00, +an_5a474fbb-73b9-44c9-a32d-3087f08a74f9,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.23509128391742706).,CWC04009,Chiller 9,2020-12-04 05:29:00, +an_2eb19e4d-544f-4ccd-9a3e-7916447a7a7d,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.246419906616211).,CWC04009,Chiller 9,2020-12-04 05:29:00, +an_4e461dbe-6eed-4ca6-8347-b0791bbe1ef2,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.6132345497608185).,CWC04009,Chiller 9,2020-12-04 05:44:00, +an_33d2de83-1ada-4832-aad9-4e4d4523f15a,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (7.684661865234375).,CWC04009,Chiller 9,2020-12-04 05:44:00, +an_79d7d3fd-2d31-4e1b-bd03-2ec79d84e399,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.9367032051086426).,CWC04009,Chiller 9,2020-12-04 05:44:00, +an_ee6f373f-2b05-4157-acf8-7245b3df24a1,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (8334154).,CWC04009,Chiller 9,2020-12-04 05:59:00, +an_f3e702b5-6fe6-4cd2-a9d0-751a51b32549,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.8671514987945557).,CWC04009,Chiller 9,2020-12-04 05:59:00, +an_f0e5781a-f7ff-45fb-a396-0da0937f7db1,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.9120714664459229).,CWC04009,Chiller 9,2020-12-04 22:29:00, +an_89ad3feb-6c55-42b5-b829-2b1bb2432688,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.8230082392692566).,CWC04009,Chiller 9,2020-12-05 22:29:00, +an_c72a2c99-7e13-4f68-b88d-9280ecf8129f,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8889783024787903).,CWC04009,Chiller 9,2020-12-05 22:44:00, +an_7dc1cba3-58f5-4734-8bc9-f518717945d8,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.3407805934548378).,CWC04009,Chiller 9,2020-12-05 23:29:00, +an_0466ef31-6f3e-4f35-bb42-ff2bb0e6fb5d,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.076322555541992).,CWC04009,Chiller 9,2020-12-05 23:29:00, +an_a2c23573-cb83-4275-8691-29d38ef0c959,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.8280943036079407).,CWC04009,Chiller 9,2020-12-05 23:44:00, +an_659427ab-2920-4d16-be89-1eb144f65a29,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (5861468.5).,CWC04009,Chiller 9,2020-12-05 23:59:00, +an_a1b17bca-d49f-4078-bd9c-f99e13cded69,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.223063819, Upper: 0.517244242).",CWC04009,Chiller 9,2020-12-05 23:59:00, +an_2ea118ce-b80c-41fd-bf00-e92c56f6f66a,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.985639572143555).,CWC04009,Chiller 9,2020-12-05 23:59:00, +an_6d12d255-7a1f-4f9d-a40a-50f533d0a4ff,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.1487448737025261).,CWC04009,Chiller 9,2020-12-06 00:14:00, +an_febfa29e-997c-47cc-9ba3-52b35136a70e,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.135762214660645).,CWC04009,Chiller 9,2020-12-06 00:14:00, +an_6d3aedbb-88dd-4dbc-8a15-7d6013206780,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.90083009).,CWC04009,Chiller 9,2020-12-06 00:14:00, +an_34e0f013-f0c5-4895-9136-79e0af9c2355,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.194519408, Upper: 0.5457886531949043).",CWC04009,Chiller 9,2020-12-06 00:29:00, +an_865d7ddc-3568-42db-92a4-cb8649688224,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.002139091).,CWC04009,Chiller 9,2020-12-06 00:29:00, +an_7a21f625-d8d5-4f96-b498-ab47406e1fc5,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.3089726008474827).,CWC04009,Chiller 9,2020-12-06 00:44:00, +an_29940190-9708-4dd4-ad92-637ae0b58bae,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.9194293022155762).,CWC04009,Chiller 9,2020-12-06 00:44:00, +an_6143c9a1-76b1-4053-be84-6e7b099644c0,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.48802386969327927).,CWC04009,Chiller 9,2020-12-06 01:29:00, +an_6be92dc8-bae7-40b5-98a2-054d5511d534,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.5483256056904793).,CWC04009,Chiller 9,2020-12-06 01:44:00, +an_411b3969-386f-44b7-8e98-ed7d0587612d,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (5408792).,CWC04009,Chiller 9,2020-12-06 01:59:00, +an_98baf58e-f7d5-40f5-bf94-a7c11faf75f9,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.19304321, Upper: 0.547264852).",CWC04009,Chiller 9,2020-12-06 01:59:00, +an_e71c28af-c23e-41be-aa9a-6b0e7d7d935a,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.812045097351074).,CWC04009,Chiller 9,2020-12-06 01:59:00, +an_8c2f5d26-592c-4cfb-adb6-2aea8cd5d802,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.8276956081390381).,CWC04009,Chiller 9,2020-12-06 01:59:00, +an_a65a2453-2a4a-42d7-9a7d-a4455c46df9c,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.8850464820861816).,CWC04009,Chiller 9,2020-12-06 02:14:00, +an_ae750063-44ab-43fb-a2e9-c2d5dc128118,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.9310978055000305).,CWC04009,Chiller 9,2020-12-06 02:29:00, +an_c96719e1-7d62-45b7-9f72-4909e819c03f,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.9174360632896423).,CWC04009,Chiller 9,2020-12-07 21:14:00, +an_a7c394e4-3f54-4af7-9201-7202292e4c59,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (10147130).,CWC04009,Chiller 9,2020-12-08 01:29:00, +an_5e3df444-149e-4106-848a-dfdaa31661d9,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.40481697767972946).,CWC04009,Chiller 9,2020-12-08 01:29:00, +an_093212b8-b930-4b10-8bd9-14d9d620b7d9,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.058415412902832).,CWC04009,Chiller 9,2020-12-08 01:29:00, +an_cd4ce3ea-711f-465a-80c5-18f1806819ba,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.9370584487915039).,CWC04009,Chiller 9,2020-12-08 01:29:00, +an_69676f4e-087d-43e0-b03d-4beb4e5dfb3f,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.9430328607559204).,CWC04009,Chiller 9,2020-12-08 22:29:00, +an_6f2639fb-34b3-4d8b-a039-b8ccc5d96f2c,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.9143936634063721).,CWC04009,Chiller 9,2020-12-09 11:14:00, +an_ce3d66a7-75f3-475b-ae0b-ddea920bd556,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.9318547248840332).,CWC04009,Chiller 9,2020-12-09 23:59:00, +an_c2de61df-fc45-47af-919c-6bdb26355bdf,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.320024636, Upper: 0.44315337017178535).",CWC04009,Chiller 9,2020-12-14 04:29:00, +an_165ddfaf-3a0b-4001-8f6d-7f5f2f217cbc,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.6746437549591064).,CWC04009,Chiller 9,2020-12-14 10:29:00, +an_8ed67bad-cc55-4c5d-96c0-88a9f19b2938,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.48001718521118164).,CWC04009,Chiller 9,2020-12-14 11:14:00, +WO377769,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2020-12-15 17:57:00, +an_31242212-cfdd-4a54-88d0-e17ffe5fc73d,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.7731176614761353).,CWC04009,Chiller 9,2020-12-15 23:44:00, +an_10fffe0d-1caa-4e86-91ba-d6632110b3b8,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.39454357).,CWC04009,Chiller 9,2020-12-16 23:59:00, +an_8de5f6e8-fb9c-440c-a7cb-e0bbfd498fb0,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (13596775).,CWC04009,Chiller 9,2020-12-20 02:14:00, +an_37d75ddc-faf0-4e79-a7cf-57c5359924db,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.481115341186523).,CWC04009,Chiller 9,2020-12-20 02:14:00, +an_0dd44dd8-721f-47ea-a717-26f4ccf947fa,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.318127096, Upper: 0.44505091).",CWC04009,Chiller 9,2020-12-20 12:14:00, +an_72eae8b1-da62-400f-8204-0d0c79ecc779,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.737349510192871).,CWC04009,Chiller 9,2020-12-20 12:14:00, +an_4b19574a-60b6-4e62-b636-3de23c0e0439,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (11706650).,CWC04009,Chiller 9,2020-12-20 12:29:00, +an_8e67cd48-8bf0-4e5e-b976-e721813328a3,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.17041625827550888).,CWC04009,Chiller 9,2020-12-20 12:29:00, +an_6d6307ce-58a4-4d74-a377-3029a30505a6,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.808541297912598).,CWC04009,Chiller 9,2020-12-20 12:29:00, +an_f840d641-afd6-41f8-92d4-c16863da7020,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.300603755, Upper: 0.4625742509961128).",CWC04009,Chiller 9,2020-12-20 12:59:00, +an_eac469c5-faa1-4625-a7b6-8aaa0c08f4cd,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.756899834).,CWC04009,Chiller 9,2020-12-20 12:59:00, +an_90151134-d539-4a06-9f30-a3b915f8a9a8,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.601038396).,CWC04009,Chiller 9,2020-12-20 13:14:00, +an_edfc965f-a308-4448-8526-bd91548c16a8,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (11724386).,CWC04009,Chiller 9,2020-12-20 13:29:00, +an_3f5b0997-1a39-4985-bb39-5ed460c0c3b2,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.3807966969907284).,CWC04009,Chiller 9,2020-12-20 13:29:00, +an_01afc351-f319-44f6-8fa0-b73e6e31c062,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (13557886).,CWC04009,Chiller 9,2020-12-20 13:44:00, +an_5effc1af-7ecf-4ce4-a9ed-e7058c80203e,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.5381737127900124).,CWC04009,Chiller 9,2020-12-20 13:44:00, +an_15b3a29b-8d9c-4658-9d6c-085f3d9cf3a7,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.609521865844727).,CWC04009,Chiller 9,2020-12-20 13:44:00, +an_f171cdb4-1527-4ed3-9d47-3cb19b3b1d77,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.833351135253906).,CWC04009,Chiller 9,2020-12-20 14:14:00, +an_bf5f547d-8a72-4edc-b206-09e691432b3c,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.44688576459884644).,CWC04009,Chiller 9,2020-12-20 20:59:00, +an_0b7ecc06-3fab-4e1b-a71a-9efd3d76d78f,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.5890370607376099).,CWC04009,Chiller 9,2020-12-21 13:44:00, +WO381657,WORK_ORDER,CM,MT009,Refrigerant Transfer,CWC04009,Chiller 9,2021-01-20 20:00:00, +WO380660,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2021-02-02 16:00:00, +an_ee2e04b3-7a2c-407e-ae67-e12bcc2d5f90,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (28070534).,CWC04009,Chiller 9,2021-02-05 04:44:00, +an_f80afa70-b2e9-4f36-a4ae-85ebebb4074c,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (29974832.5).,CWC04009,Chiller 9,2021-02-05 04:59:00, +an_078dd3c5-09b2-4ac2-bb0d-7685f2c49d05,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.829195022583008).,CWC04009,Chiller 9,2021-02-05 06:44:00, +an_c402cfdc-f2ba-4892-aad0-fd69ece08ba6,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.30543267726898193).,CWC04009,Chiller 9,2021-02-05 14:59:00, +WO377502,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04009,Chiller 9,2021-02-12 19:30:00, +WO383059,WORK_ORDER,CM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2021-02-15 20:00:00, +WO383119,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04009,Chiller 9,2021-02-17 18:00:00, +an_bac71a15-69f9-4344-9235-f65ada5eea10,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.3906732611358166).,CWC04009,Chiller 9,2021-02-19 00:59:00, +an_57fa8184-614c-4504-8be0-4c083d0d5316,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (26399953).,CWC04009,Chiller 9,2021-02-21 05:44:00, +an_0df50301-31d0-4056-8551-09a25ee6afbb,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.4626224413514137).,CWC04009,Chiller 9,2021-02-21 05:44:00, +an_b51cffaf-e03f-4397-b825-ed2234e9be4b,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.037823677062988).,CWC04009,Chiller 9,2021-02-21 05:44:00, +an_3a97fcac-e6c4-429f-a380-f76c86783f0f,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (28853143).,CWC04009,Chiller 9,2021-02-21 05:59:00, +an_bf59a765-b713-45a7-845d-5853b0f8cb48,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.695158004760742).,CWC04009,Chiller 9,2021-02-21 05:59:00, +an_8a6b51d5-09b5-4b29-b37a-9edea4ab3c63,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.39385129138827324).,CWC04009,Chiller 9,2021-02-21 11:14:00, +an_511cbdf9-47c5-445c-b760-d6bf27c9e35c,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.229941789, Upper: 0.5209743417799473).",CWC04009,Chiller 9,2021-02-21 11:44:00, +an_4f989a68-af19-4880-ae85-b9dca1f245d5,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.49951548129320145).,CWC04009,Chiller 9,2021-02-21 13:29:00, +an_ca97f1a8-d4b6-46fe-898b-44c411448f8f,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.263184652, Upper: 0.48986469209194183).",CWC04009,Chiller 9,2021-02-21 17:29:00, +an_b1bfb8b8-0301-489a-ad50-bf8779e83cfd,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.22448751, Upper: 0.5344770811498165).",CWC04009,Chiller 9,2021-02-21 18:14:00, +an_0ac98bff-2efb-458a-b4ee-cc6cdd286ff0,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (27502504).,CWC04009,Chiller 9,2021-02-21 18:44:00, +an_5160d8cf-1b97-4e92-8e9d-ec72a01a799a,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.364718437194824).,CWC04009,Chiller 9,2021-02-21 18:44:00, +an_a7ec1b86-3b9e-404c-b29e-a6d6ffec32b9,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (30198608).,CWC04009,Chiller 9,2021-02-21 19:29:00, +an_0cf27b71-d07d-420d-a143-6fffe7f61e2c,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.336007748, Upper: 0.42295684292912483).",CWC04009,Chiller 9,2021-02-21 19:29:00, +an_c9d92eb2-3163-4262-ade7-f6c22094c7d4,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.093781471252441).,CWC04009,Chiller 9,2021-02-21 19:29:00, +an_de1ed9e7-03f0-4c4b-b013-4eb87e3cd628,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (28917790).,CWC04009,Chiller 9,2021-03-02 15:29:00, +an_ddd662b6-17d0-43cd-a0a1-80dcc16c54b8,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.39020855352282524).,CWC04009,Chiller 9,2021-03-02 15:29:00, +an_485854a0-9b93-4187-aee4-598645ef8f0e,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.6804781).,CWC04009,Chiller 9,2021-03-02 15:29:00, +an_18b0d350-3962-4407-83c0-841a0807e5b0,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (28680064).,CWC04009,Chiller 9,2021-03-02 15:44:00, +an_5ce61272-6254-42b6-81f7-93b8c9278568,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.363967895507812).,CWC04009,Chiller 9,2021-03-02 15:59:00, +an_5e5f8693-b6c4-4faf-8844-7131094d3dd7,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.44936830550432205).,CWC04009,Chiller 9,2021-03-02 17:59:00, +an_2cd1f64f-e4bb-43e3-b1ef-f62c29d74053,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (26718800.5).,CWC04009,Chiller 9,2021-03-04 08:59:00, +an_01f7e6ac-6dcb-491e-b2e4-16146b33cc53,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.34579069167375565).,CWC04009,Chiller 9,2021-03-04 08:59:00, +an_6c9665ed-ab7b-4fe0-b3d8-be4fb54037c4,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.815164566040039).,CWC04009,Chiller 9,2021-03-04 08:59:00, +an_13bf3b69-10cd-423c-b5cf-61d42c715bf7,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (29248356).,CWC04009,Chiller 9,2021-03-04 10:59:00, +an_840d661e-03c5-49de-948f-6c52751fdde2,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.529745101928711).,CWC04009,Chiller 9,2021-03-04 10:59:00, +an_792f35ac-81b8-4727-9f2e-815ba84cb2ca,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.335322212, Upper: 0.44660526141524315).",CWC04009,Chiller 9,2021-03-04 12:14:00, +an_b3e5ce0c-ad04-49f2-a4e4-eba4d7a72da1,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.36376990005373955).,CWC04009,Chiller 9,2021-03-04 15:14:00, +an_5188b9f5-32a9-4c9d-9032-075be54e8a80,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.36628421768546104).,CWC04009,Chiller 9,2021-03-04 16:44:00, +an_0eaeae30-7bf0-43e8-8200-00225c21c217,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.737798690795898).,CWC04009,Chiller 9,2021-03-04 16:44:00, +an_37160f31-254d-498a-bb7b-16fab64e4eef,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.4790486916899681).,CWC04009,Chiller 9,2021-03-05 00:14:00, +an_d3602eac-2d3b-4f6c-be47-3bcb37904804,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.291083895, Upper: 0.5014799013733864).",CWC04009,Chiller 9,2021-03-05 00:44:00, +an_243e36e7-bf86-4d76-93a2-a0d899d78683,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (28558102).,CWC04009,Chiller 9,2021-03-05 00:59:00, +an_ba4fb43e-cf05-4a61-bc8d-d2f515788734,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.31723272800445557).,CWC04009,Chiller 9,2021-03-05 00:59:00, +an_db156c38-bb62-4ed7-9668-ed30c0b6bd93,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.559986114501953).,CWC04009,Chiller 9,2021-03-05 00:59:00, +an_c0800a8a-d746-4a59-955b-0da958551c56,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.42840367183089256).,CWC04009,Chiller 9,2021-03-23 11:59:00, +an_a5b9f2b4-58ea-40d0-905f-0627287449ea,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.369392395019531).,CWC04009,Chiller 9,2021-03-23 11:59:00, +an_4eb6fd42-3eb5-485b-8c26-28ba643d772a,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.5529011636972427).,CWC04009,Chiller 9,2021-03-23 12:29:00, +an_eea6c3d0-a446-43f0-ab02-795d761a9058,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (31757620).,CWC04009,Chiller 9,2021-03-23 12:59:00, +an_1e3a5407-aa0e-4de5-980d-96c97a03af76,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.22284539, Upper: 0.5697184056043625).",CWC04009,Chiller 9,2021-03-23 12:59:00, +an_3d5b96f3-79a8-43d4-b8b6-b3224d420a79,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.38434886932373).,CWC04009,Chiller 9,2021-03-23 12:59:00, +an_9d1fec11-603f-436c-8a56-204ab950b981,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.37522197514772415).,CWC04009,Chiller 9,2021-03-23 13:29:00, +an_f5dd63fd-0ad7-4f99-8e4f-3d0c17b3d0ce,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.4871040806174278).,CWC04009,Chiller 9,2021-03-23 15:14:00, +an_a6357752-3284-4928-9160-dd9713a38703,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.6518071442842484).,CWC04009,Chiller 9,2021-03-23 15:59:00, +an_b9d6927a-f82e-421c-a523-bfc7d4edfe6e,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.40142302215099335).,CWC04009,Chiller 9,2021-03-23 20:59:00, +an_9802f9ce-28fd-4c2d-8c99-392d7fb52dd1,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.749076843261719).,CWC04009,Chiller 9,2021-03-23 20:59:00, +an_ebe95c98-1946-4183-bae9-ee210bd16775,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (29755792).,CWC04009,Chiller 9,2021-03-24 05:59:00, +an_86c151be-7425-402b-b376-187646d67a21,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.394702453, Upper: 0.4546596370637417).",CWC04009,Chiller 9,2021-03-24 05:59:00, +an_ac99c940-412b-4e12-8a28-e1a170527550,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.666676521).,CWC04009,Chiller 9,2021-03-24 05:59:00, +an_5e528cf5-8131-4e65-85b1-1854d2cd3f8a,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (27701846).,CWC04009,Chiller 9,2021-03-24 06:14:00, +an_c089ab8d-c405-4896-b55a-98ba78dca105,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.097843237).,CWC04009,Chiller 9,2021-03-24 06:14:00, +an_086c7e9a-4266-4f6b-af28-fda9de0b875f,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.189584732055664).,CWC04009,Chiller 9,2021-03-24 06:14:00, +an_fadcf3aa-5987-4539-99e2-2c725eb251aa,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (29058504).,CWC04009,Chiller 9,2021-03-24 08:44:00, +an_b069eb8a-dd72-4bdf-aae5-7f08ae6e786e,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.456578254699707).,CWC04009,Chiller 9,2021-03-24 08:44:00, +an_9d3e156e-9af2-4773-a113-4ea3f3581f76,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (27976002).,CWC04009,Chiller 9,2021-03-24 09:59:00, +an_a8fa1f2e-2a0c-49bd-8c75-82f5d3e28567,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.39703625440597534).,CWC04009,Chiller 9,2021-03-24 09:59:00, +an_7c5a2db1-c470-4ae5-a445-2a391ab7f6c7,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.276269912719727).,CWC04009,Chiller 9,2021-03-24 09:59:00, +an_3a985140-50bb-4e2c-ab56-82d8c277c5a3,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.234443448, Upper: 0.6378956660628319).",CWC04009,Chiller 9,2021-03-24 10:59:00, +an_82cd44b5-f62a-4299-8079-742868e06479,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.882318496704102).,CWC04009,Chiller 9,2021-03-24 10:59:00, +an_4aaa6b9e-ead1-40ab-8cf9-d4d52193cc79,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (27700824).,CWC04009,Chiller 9,2021-03-24 12:44:00, +an_66de0bb1-d98a-4248-bca2-1d72163c02bc,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.4817689545452595).,CWC04009,Chiller 9,2021-03-24 12:44:00, +an_e03e88fb-43d9-46d9-9bd0-521633e1e6af,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.207324981689453).,CWC04009,Chiller 9,2021-03-24 12:44:00, +an_0dfc27df-3e35-4ec2-ad8b-3205c182869a,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.29038474, Upper: 0.605317622).",CWC04009,Chiller 9,2021-03-24 13:44:00, +an_8ed53cf4-3c65-40a8-8752-536326bd8bcd,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.37651409953832626).,CWC04009,Chiller 9,2021-03-24 13:59:00, +an_d98467f1-ad23-425b-97a4-8f634b96fbb6,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (30954140).,CWC04009,Chiller 9,2021-03-24 14:14:00, +an_bab10480-31b4-4b3f-b607-bf13c8f72133,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.052369117736816).,CWC04009,Chiller 9,2021-03-24 14:14:00, +an_c7a2e512-0f5f-401b-a135-dc4d1302c70c,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.44485361874103546).,CWC04009,Chiller 9,2021-03-24 15:29:00, +an_8a08bc5a-6d3a-406f-afc5-939f5d174a0c,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (31473896).,CWC04009,Chiller 9,2021-03-24 16:14:00, +an_0c84897c-9b36-416a-9cde-e3e777b30081,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (32562635).,CWC04009,Chiller 9,2021-03-24 19:59:00, +an_f05a3470-10a4-4e19-b5c7-06017d3813d4,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.174337279, Upper: 0.7578271739184856).",CWC04009,Chiller 9,2021-03-24 19:59:00, +an_11aed345-57f4-4398-b84d-dd09e17605f0,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.54126262664795).,CWC04009,Chiller 9,2021-03-24 19:59:00, +an_170725fd-d589-44c8-831b-10f20df43144,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (31968428.5).,CWC04009,Chiller 9,2021-03-27 09:29:00, +an_613bef7a-2bb0-45a0-bd36-fb203fd23d25,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.596172332763672).,CWC04009,Chiller 9,2021-03-27 09:29:00, +an_9ba21a15-f545-4cbe-8995-176c2f815423,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (32014376.5).,CWC04009,Chiller 9,2021-03-27 14:00:00, +an_67c1733e-745c-41ef-8d3f-2cc18d34f589,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.57638931274414).,CWC04009,Chiller 9,2021-03-27 14:00:00, +an_09c8a9f4-2088-4394-98ec-d4db0eac13ee,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.5245542861521244).,CWC04009,Chiller 9,2021-03-28 05:14:00, +an_50e3395d-df4d-4d6b-9522-ddc52ff5f012,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (24039016).,CWC04009,Chiller 9,2021-03-28 05:29:00, +an_ac922d72-9c5f-4736-9a1c-33561668878f,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.6362951062619686).,CWC04009,Chiller 9,2021-03-28 05:29:00, +an_431afb62-0dbe-44a8-b956-a258c1e25d3c,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (7.601732254).,CWC04009,Chiller 9,2021-03-28 05:29:00, +an_c50d505c-df54-4faf-9f7c-5545d00c44d5,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (25469322).,CWC04009,Chiller 9,2021-03-28 05:44:00, +an_fc081a64-1f08-4546-9515-56cfd3b13349,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.026493072509766).,CWC04009,Chiller 9,2021-03-28 05:44:00, +an_642e8194-4804-4ac8-989e-ac6aaa12585a,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (29123562).,CWC04009,Chiller 9,2021-03-28 06:44:00, +an_d7e32b61-f05b-435e-b7b0-0e49db8eefd2,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.185881614685059).,CWC04009,Chiller 9,2021-03-28 06:44:00, +an_9167d2d1-aaa7-4740-bba1-77b3df7f269d,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (26910230).,CWC04009,Chiller 9,2021-03-28 07:14:00, +an_df821c94-8ccf-4526-b22a-32c5fd133ab0,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.4896387439221144).,CWC04009,Chiller 9,2021-03-28 07:14:00, +an_ef8c7877-718c-4801-90b7-10f8dd40514c,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.654106140136719).,CWC04009,Chiller 9,2021-03-28 07:14:00, +an_4417814f-033c-4d92-a25e-ddf268d35930,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (28098318).,CWC04009,Chiller 9,2021-03-28 07:44:00, +an_248e19dd-e0ee-4e7e-a8f1-867936630ae5,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.965008735656738).,CWC04009,Chiller 9,2021-03-28 07:44:00, +an_c9ecd665-892d-43d4-831d-5f497008eda2,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.675947189331055).,CWC04009,Chiller 9,2021-03-28 09:59:00, +al_58eb4e31-e797-489c-a3f1-d8158b55ace6,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-03-30 14:15:00, +an_3930a476-fcfc-4e9e-9295-090906ba7f70,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (29608856).,CWC04009,Chiller 9,2021-03-31 17:59:00, +an_fb7c37ee-129d-47ab-8979-870b34c95587,ANOMALY,ANOMALY,KPI Delta Setpoint below lower bound,The monitored KPI 'Delta Setpoint' is lower than the lower bound (0.8238772302865982).,CWC04009,Chiller 9,2021-03-31 17:59:00, +an_eb2667af-5369-4922-a9da-1e3cc439048a,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.162240028381348).,CWC04009,Chiller 9,2021-03-31 17:59:00, +an_1d50c4da-7b69-48d3-927c-e7e750a0aff7,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.494877428).,CWC04009,Chiller 9,2021-04-01 01:59:00, +an_c9813456-5d96-488c-b583-c1569a5c7af1,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.543405532836914).,CWC04009,Chiller 9,2021-04-01 01:59:00, +an_db5c80ff-273d-4f01-9d8d-e6fb01dd9aa7,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.399145745, Upper: 0.5589556470513344).",CWC04009,Chiller 9,2021-04-01 03:44:00, +al_a1f35013-9ba8-4193-8886-93d06c1aa2ea,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-04-01 13:00:00, +al_a2fb86ae-8e33-4d4d-b5fe-c85a6193a87a,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-04-02 00:00:00, +al_81f559b5-8748-4a18-ad34-e763412556fa,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-04-02 14:10:00, +an_521ad562-41e9-4a38-b464-bb4accf990fd,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.397361569, Upper: 0.5607398226857185).",CWC04009,Chiller 9,2021-04-02 23:44:00, +al_f0208165-1119-4178-8cfd-20c4b91131b6,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-04-03 00:00:00, +an_a95ef18a-ca4a-4d20-a7e6-91d0cb33013a,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (26767662).,CWC04009,Chiller 9,2021-04-03 06:59:00, +an_799b227c-cfd3-4df4-a6bd-9e70cb25144a,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.4698539227247238).,CWC04009,Chiller 9,2021-04-03 06:59:00, +an_9d556798-81c7-4228-8096-29c2308880f2,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.093294143676758).,CWC04009,Chiller 9,2021-04-03 06:59:00, +an_70aafc7f-547a-4541-a127-e430e63c93e9,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.4997643008828163).,CWC04009,Chiller 9,2021-04-03 11:14:00, +an_71033caa-16a4-47e0-9640-4f97f417eb6a,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (25709891).,CWC04009,Chiller 9,2021-04-03 11:29:00, +an_de2e8d5a-8cbc-45bc-8fbc-6598c2beeaa5,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.6245686858892441).,CWC04009,Chiller 9,2021-04-03 11:29:00, +an_45dae952-16fc-49df-82c3-d7cdf0adbda7,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.455028533935547).,CWC04009,Chiller 9,2021-04-03 11:29:00, +an_bea452e2-cd37-40df-b72a-ae480e9adb01,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.582365036010742).,CWC04009,Chiller 9,2021-04-03 11:59:00, +an_aa26c5a6-0007-4163-9afc-bc0e156fd508,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (26223119).,CWC04009,Chiller 9,2021-04-03 12:44:00, +an_5f734193-5407-4ad7-805d-3e49bb604362,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.6079427748918533).,CWC04009,Chiller 9,2021-04-03 12:44:00, +an_5bba392a-1be5-4633-a2a8-cbb9cf234641,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.601405143737793).,CWC04009,Chiller 9,2021-04-03 12:44:00, +an_a9359fbe-e341-4108-b2f2-5098638535b4,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.7786319255828857).,CWC04009,Chiller 9,2021-04-03 13:29:00, +an_9d2e2fd3-9dfa-47a0-b0dc-5ba692b48d8e,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (27273195).,CWC04009,Chiller 9,2021-04-03 16:44:00, +an_86d508d2-032e-4bf3-8f5b-c175590671eb,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.46804363280534744).,CWC04009,Chiller 9,2021-04-03 16:44:00, +an_ddaa5d27-3915-48e9-ae17-02c2df3420fc,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.37902545928955).,CWC04009,Chiller 9,2021-04-03 16:44:00, +an_016b3779-0f4c-4651-9c70-0b6c1702370c,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (29908999).,CWC04009,Chiller 9,2021-04-03 16:59:00, +an_e04261d7-aff9-4cb4-96c9-c3acb1ffe154,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.728693962097168).,CWC04009,Chiller 9,2021-04-03 16:59:00, +an_d10c05d1-a316-44a6-a671-4ae4b92231a0,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (31067803).,CWC04009,Chiller 9,2021-04-03 17:44:00, +an_ef157072-65ae-4e34-a43c-267aadab225b,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.391557693481445).,CWC04009,Chiller 9,2021-04-03 17:44:00, +an_8b73dafe-ee73-41e6-ba93-70edd235c907,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.677391052246094).,CWC04009,Chiller 9,2021-04-03 17:59:00, +an_a476b64f-14c8-4aa5-a868-72ebe099ec2d,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.709643363952637).,CWC04009,Chiller 9,2021-04-03 18:14:00, +an_69a6dd2d-3471-48d2-8fdb-c3b346554b31,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (28909606).,CWC04009,Chiller 9,2021-04-03 21:29:00, +an_7698f7c4-1d0c-4205-bc8f-faa265fe3460,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (32590376).,CWC04009,Chiller 9,2021-04-03 21:59:00, +an_6f582d69-6a3e-40b8-856d-97877469d84c,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.874114990234375).,CWC04009,Chiller 9,2021-04-03 21:59:00, +an_c59b78ad-98e1-4db7-9920-b90b29570a49,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (28927909).,CWC04009,Chiller 9,2021-04-04 04:14:00, +an_c5a99651-c5ac-4dc3-beac-7766d836cb96,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.5945465341210365).,CWC04009,Chiller 9,2021-04-04 04:14:00, +an_f9c2d6b9-ec03-42b3-b814-e95ba16f0093,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.813108444213867).,CWC04009,Chiller 9,2021-04-04 04:14:00, +an_c2145619-d7b1-45b4-8f32-71c982a1d670,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (8.620357513427734).,CWC04009,Chiller 9,2021-04-04 10:44:00, +an_4541cb5b-e982-4ed0-b796-13c7fccbab48,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (28354671).,CWC04009,Chiller 9,2021-04-04 17:14:00, +an_8661509e-de7e-46cf-a365-253c0901d91f,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (28828400).,CWC04009,Chiller 9,2021-04-04 22:29:00, +an_bb6f0998-4174-4b6c-9106-36fb2d5139a0,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (10.238598823547363).,CWC04009,Chiller 9,2021-04-04 22:29:00, +an_216071aa-07e1-46dd-9111-476e35af571a,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (30181512).,CWC04009,Chiller 9,2021-04-05 00:14:00, +an_51687854-9c57-4aa2-b0e4-9b0ea03c9053,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.450818061828613).,CWC04009,Chiller 9,2021-04-05 00:14:00, +an_98a7bc22-48a8-4d0f-9f5c-06ff0bfd4d06,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.829277992248535).,CWC04009,Chiller 9,2021-04-05 04:29:00, +an_23f7d7b4-e8ca-4cd8-99b7-0bda45227ecd,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (28699656).,CWC04009,Chiller 9,2021-04-05 06:15:00, +an_2928958b-bb8b-4e4a-9ec7-597c46c21bfb,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.49491380900144577).,CWC04009,Chiller 9,2021-04-05 06:15:00, +an_d2cf0beb-bfe7-44e2-bd63-ad7ee4891f5e,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.537110328674316).,CWC04009,Chiller 9,2021-04-05 06:15:00, +an_41b0b289-c781-466f-9375-3a5dbf5efbe3,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (28272708).,CWC04009,Chiller 9,2021-04-05 07:14:00, +an_cd5bafb4-722a-4ba3-a63d-6712197c85b1,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.42624716460704803).,CWC04009,Chiller 9,2021-04-05 07:14:00, +an_a1f3473f-9fee-4c00-b954-16c7a28ea83a,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.406607627868652).,CWC04009,Chiller 9,2021-04-05 07:14:00, +an_f157b049-6741-451b-91bf-a8756d72cf33,ANOMALY,ANOMALY,KPI Delta Setpoint within range,"The monitored KPI 'Delta Setpoint' is within the acceptable range (Lower: -0.433762342, Upper: 0.6127537041902542).",CWC04009,Chiller 9,2021-04-06 17:29:00, +an_d1a28cce-9b35-4304-8874-4d7fb7edee13,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.608357429504395).,CWC04009,Chiller 9,2021-04-06 17:29:00, +an_5f8312cd-ccab-4113-926f-b75ed2e1f476,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (28198632).,CWC04009,Chiller 9,2021-04-06 17:44:00, +an_992b75fb-c3d7-4684-90ab-31385f718197,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.1455017253756523).,CWC04009,Chiller 9,2021-04-06 17:44:00, +an_49e406ed-89fb-4318-93ab-75045263879b,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (11.203351020812988).,CWC04009,Chiller 9,2021-04-06 17:44:00, +an_41ae6e37-2a6e-45f7-aa81-71814f759efc,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (27887376).,CWC04009,Chiller 9,2021-04-07 03:14:00, +an_21bf4d57-061e-40cc-81bd-9c3835506b33,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.4707956686615944).,CWC04009,Chiller 9,2021-04-07 03:14:00, +an_47506557-123d-484f-8c14-f232d25cf100,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.774611473083496).,CWC04009,Chiller 9,2021-04-07 03:14:00, +WO386693,WORK_ORDER,CM,MT003,Lubrication,CWC04009,Chiller 9,2021-04-07 15:00:00, +an_eb1e9c6a-d785-4fa2-90ca-422ca1e0b514,ANOMALY,ANOMALY,KPI Flow Efficiency below lower bound,The monitored KPI 'Flow Efficiency' is lower than the lower bound (0.25695371627807617).,CWC04009,Chiller 9,2021-04-09 13:14:00, +an_5c42f591-20cd-4eb3-8b3f-f0cd4bd1042f,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (30640063).,CWC04009,Chiller 9,2021-04-21 04:29:00, +an_f4dac85d-c672-4428-a0f2-b80071489ca4,ANOMALY,ANOMALY,KPI Delta Temperature below lower bound,The monitored KPI 'Delta Temperature' is lower than the lower bound (10.50809383392334).,CWC04009,Chiller 9,2021-04-21 04:29:00, +al_da5d8ccf-081f-4beb-ba94-51af41ff31ea,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-04-21 09:52:00, +an_b512965b-9c5b-4d31-855d-acca0437546e,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.388501167297363).,CWC04009,Chiller 9,2021-04-21 22:59:00, +al_c16d3f37-e147-43df-b812-f0e0b7838b8d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-04-22 00:00:00, +an_ab54f8bd-2220-49ba-82d3-b41f9aa3dbe7,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (27637259).,CWC04009,Chiller 9,2021-04-22 01:44:00, +al_6e6b0be0-9b66-46d4-be17-289ddb69c814,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-04-23 00:00:00, +al_3931a4ab-9afb-48e3-b700-a75477c3cb30,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-04-24 00:00:00, +an_d66f32f6-d0de-4699-b863-a0511c3c52b1,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.25941869616508484).,CWC04009,Chiller 9,2021-04-24 13:29:00, +an_f76390e8-4a3a-4239-9b18-3e927f8ccda4,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.2812358886003494).,CWC04009,Chiller 9,2021-04-24 13:44:00, +an_f59149e8-004e-4e7e-a58d-ebd215c86364,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (9.690917969).,CWC04009,Chiller 9,2021-04-24 13:59:00, +an_cee4c25b-0097-43ac-a9a2-96d7cce9ec7e,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.29083284735679626).,CWC04009,Chiller 9,2021-04-24 13:59:00, +al_982dbcd8-f9ce-45cb-a98d-b5ff410380e6,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-04-25 00:00:00, +an_5f9b00f2-c75c-4b5f-a79d-0afda9479b38,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.7921147495508194).,CWC04009,Chiller 9,2021-04-25 00:44:00, +an_73e9d009-b9b4-49bd-99df-38e203f1331a,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.9966153353452682).,CWC04009,Chiller 9,2021-04-25 00:59:00, +an_a1cd5547-1742-4bdf-897e-60470f2f2df0,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (31406648).,CWC04009,Chiller 9,2021-04-25 01:14:00, +an_b0c3ec68-cb05-4de9-afee-a4e09b733d52,ANOMALY,ANOMALY,KPI Delta Setpoint below lower bound,The monitored KPI 'Delta Setpoint' is lower than the lower bound (0.22727029025554657).,CWC04009,Chiller 9,2021-04-25 01:14:00, +an_5a94e7b7-0168-47c8-9b4b-7f34e8f66b2d,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.578661918640137).,CWC04009,Chiller 9,2021-04-25 01:14:00, +an_282793f3-5fd6-4011-b75f-40969848ced5,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (11.068948745727539).,CWC04009,Chiller 9,2021-04-25 01:29:00, +an_b8474f94-8223-42ef-8eb7-1887afb0adc2,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (25023022).,CWC04009,Chiller 9,2021-04-25 13:29:00, +an_44298739-4f74-42ab-beec-c1dd1168e567,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (26767744).,CWC04009,Chiller 9,2021-04-25 13:44:00, +an_b747329b-69f6-42ad-9e3b-9c819c61c9ae,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (8.906702995300293).,CWC04009,Chiller 9,2021-04-25 13:44:00, +an_76662628-c9f3-4172-8046-42248f9d5739,ANOMALY,ANOMALY,KPI Cooling Load below lower bound,The monitored KPI 'Cooling Load' is lower than the lower bound (27249597).,CWC04009,Chiller 9,2021-04-25 23:44:00, +al_f98ca02d-d0f5-4f84-a0a8-78a7e784f0c1,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-04-26 00:00:00, +an_5e2b166b-1ab5-4dc3-8205-6f245428fe21,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.49266036972403526).,CWC04009,Chiller 9,2021-04-26 02:14:00, +an_d3f7f9bd-05a8-41e9-9cd1-85d350c432c9,ANOMALY,ANOMALY,KPI Cooling Load above upper bound,The monitored KPI 'Cooling Load' is higher than the upper bound (27972642).,CWC04009,Chiller 9,2021-04-26 02:29:00, +an_9a68ffdf-3151-4e5e-825e-2c79323978cc,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.312494277954102).,CWC04009,Chiller 9,2021-04-26 02:29:00, +an_074eeaec-124b-43bf-b711-b80b5b55b420,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.32219401001930237).,CWC04009,Chiller 9,2021-04-26 10:59:00, +an_b96fe317-c7cb-4af3-8839-fba519a4037b,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.35347282886505127).,CWC04009,Chiller 9,2021-04-26 11:14:00, +an_29d85583-ad3d-48fc-b7cf-6950aef2ed80,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.5348340272903442).,CWC04009,Chiller 9,2021-04-26 12:44:00, +an_11ec0edb-6ee3-4fe0-a02e-9557002ad656,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.224102020263672).,CWC04009,Chiller 9,2021-04-26 12:44:00, +al_aa9c93be-6bd2-4e4b-bd5e-621b8c2eeb11,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-04-27 00:00:00, +an_88fea94f-7242-47c5-a6c1-64f25ff2af52,ANOMALY,ANOMALY,KPI Delta Setpoint above upper bound,The monitored KPI 'Delta Setpoint' is higher than the upper bound (0.4762628450989723).,CWC04009,Chiller 9,2021-04-27 14:14:00, +an_e8de5b15-729c-4821-9e92-6255e1511029,ANOMALY,ANOMALY,KPI Delta Temperature above upper bound,The monitored KPI 'Delta Temperature' is higher than the upper bound (10.12733268737793).,CWC04009,Chiller 9,2021-04-27 14:14:00, +al_6e198104-07f7-4dc0-b036-53fbe0b3aa95,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-04-28 00:00:00, +al_9a4f1f41-8064-45b2-a07b-701cbb223e2e,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-04-29 00:00:00, +an_6aa6b8a6-20c1-40fa-8026-adf1b1219239,ANOMALY,ANOMALY,KPI Flow Efficiency above upper bound,The monitored KPI 'Flow Efficiency' is higher than the upper bound (0.2844059467315674).,CWC04009,Chiller 9,2021-04-29 13:29:00, +al_8ff9110e-0e43-410f-9bc9-eec9d638aa95,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-04-30 00:00:00, +al_ff50f022-d2f7-4c08-af9a-e13328fbaa97,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-04-30 12:38:00, +al_be632e62-a5d6-402e-9a40-c323098ca434,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-05-01 00:00:00, +al_73f9933b-e43f-4258-a233-f2ec25e0003c,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-05-02 00:00:00, +al_37e80bd0-8d35-402b-b463-92705a46db98,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-05-03 00:00:00, +al_0b9d20a2-7e31-4644-be08-b6459c2f9f85,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-05-03 09:59:00, +al_6849b844-b381-490b-993f-4d7278974d01,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-05-04 00:00:00, +al_080ccfc7-1298-4089-944b-b4879097eea8,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-05-05 00:00:00, +al_740d4245-4b25-4857-a411-a29cb7bd9211,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-05-06 00:00:00, +al_c72b6d97-29ef-4a2a-bce1-c0f1776b89a1,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-05-07 00:00:00, +al_cc4b74d1-468a-4bf7-b1e3-3c96cc04668d,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-05-08 00:00:00, +al_8cdb132d-a562-4636-adbb-2a13a03cab35,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-05-09 00:00:00, +al_c01024a7-ef1e-4e6d-954a-4eb0bab12784,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-05-10 00:00:00, +al_a323c7da-c293-411b-91ab-67355bf0cb95,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04009,Chiller 9,2021-05-10 12:45:00, +al_15dff439-b9f5-4501-abf2-4b07a700714b,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04009,Chiller 9,2021-05-11 00:00:00, +al_1c7e37b2-a6d2-48af-9d35-1632894f80a9,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04009,Chiller 9,2021-05-12 00:00:00, +al_aefde6c1-bd2a-475f-96cd-6d2b90edb191,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04009,Chiller 9,2021-05-13 00:00:00, +WO387151,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2021-05-13 13:00:00, +WO388108,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2021-05-13 14:00:00, +WO388110,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2021-05-13 15:30:00, +WO388109,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2021-05-13 19:30:00, +al_0409c193-208d-4d8b-9544-0873b3ae1140,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04009,Chiller 9,2021-05-14 00:00:00, +al_0d68188c-01b8-4c00-94ff-cb3ee69e51ab,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04009,Chiller 9,2021-05-15 00:00:00, +al_49fc3bd1-a8b3-4ca0-925f-5e2851a79c84,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04009,Chiller 9,2021-05-16 00:00:00, +al_e5f6e0af-c5c3-46fb-90a2-5e08b2fedbdd,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04009,Chiller 9,2021-05-17 00:00:00, +al_b954ff41-29c5-409e-be9e-6c8e4be80ea4,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04009,Chiller 9,2021-05-18 00:00:00, +al_0bd44403-9664-4e0d-9d93-0311bb4f6293,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04009,Chiller 9,2021-05-19 00:00:00, +al_832650bc-a5d9-4246-a33d-d7ca4cf7c101,ALERT,ALERT,RUL0017,Chiller - Load Low,CWC04009,Chiller 9,2021-05-20 00:00:00, +WO388006,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2021-05-21 16:00:00, +WO384010,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2021-06-25 21:00:00, +WO393576,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2021-08-05 17:30:00, +al_fe90b520-eb6c-46bf-bff3-b5d7a747dc04,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-09-16 02:45:00, +al_0efa5cab-ea30-4ebc-b5ec-84aab6f822a4,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-09-22 09:45:00, +al_c794df6b-cf7f-4809-a424-a8a9a38a3eed,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-09-23 05:45:00, +al_08b8cfe9-e795-4ac5-91ca-0cdf4092375f,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-09-24 04:00:00, +al_8149687a-5a74-4126-89e4-c1b83271c34d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-09-25 05:30:00, +al_32370afd-3a84-483a-8c2c-3e982b732442,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-09-26 00:00:00, +al_596d1844-59b1-4363-8c4c-ca3930851cbe,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-09-27 05:00:00, +al_5c8e8309-2bae-4820-bde7-ce76674c38cc,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-09-28 09:45:00, +al_ab163562-c416-458d-a568-3c7d71deac07,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-09-29 00:00:00, +al_81c5020d-999f-458a-a46b-1801d65aad25,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-09-30 00:00:00, +al_5dcd6875-96d8-4f9d-b3b1-1c7790e6b21c,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-10-01 00:00:00, +WO391368,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2021-10-01 14:00:00, +al_8ac568e7-ff2c-4474-b572-8f35f49f6deb,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-10-04 07:30:00, +WO398235,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2021-10-07 19:19:00, +al_32f23d78-6b0f-4e57-b822-9f3463d8e61b,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-10-19 06:45:00, +WO400142,WORK_ORDER,CM,MT003,Lubrication,CWC04009,Chiller 9,2021-10-20 15:32:00, +WO400509,WORK_ORDER,CM,MT003,Lubrication,CWC04009,Chiller 9,2021-10-22 19:37:00, +al_3741c8cf-a6d9-412a-97b9-98a33cbba9fc,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-10-26 03:45:00, +al_445b2c71-7b23-437c-9e24-f68e0f13e91f,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-10-27 00:00:00, +al_517e3ea6-f5f4-4470-9a25-c84ec34b790d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-10-28 00:00:00, +al_373f98be-f3c7-4955-8a60-706986953003,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-10-29 00:00:00, +al_c8ff7f2d-e502-4a57-a472-5607815bc9a1,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-10-30 00:00:00, +al_5a03bd5f-8a52-46c2-8d33-94256ed81afc,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-10-31 00:00:00, +al_b7c29cd5-5c20-42c3-b7cf-2134231aafbe,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-11-01 00:00:00, +al_9f50f104-9a18-49fd-b92a-d1720333e6e4,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-11-01 03:47:00, +al_5bee75fd-7433-4925-b750-98fca6eea0fa,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-11-01 10:45:00, +al_124bb75c-4e9d-4133-95cd-3a53b5d8c049,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-11-01 14:45:00, +al_c70d2d8e-0c37-48ca-b330-8088aa7d6162,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-11-02 00:00:00, +al_78357814-ffac-4454-bd93-493a11d897b4,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-11-09 09:30:00, +al_df608ca7-2a97-4e86-949a-19084c8fcf16,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-11-10 00:00:00, +al_a2c3b5f9-f497-4b4e-85e5-3ddd2ebec86b,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-11-11 09:45:00, +al_d9e3fe0a-9d5e-4c49-89ee-0384f78d3002,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-11-12 09:45:00, +al_560ff95b-4104-4fa0-9daa-1c05199fc2aa,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-11-12 11:15:00, +WO400068,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2021-11-12 17:30:00, +al_3a12bb76-ceca-4346-9cf5-553543f92acf,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-11-13 00:00:00, +al_1c7acf3a-389f-4b9d-8ae3-3dfe2be46bcc,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-11-13 10:14:00, +al_c98012b5-6348-4e88-8dd8-cd5e26d9bae6,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-11-14 00:00:00, +al_6a0f30c2-2968-4184-9ef2-b9d122121944,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-11-15 00:00:00, +al_8c63a091-b3de-4bd5-b1ee-50d4ef645723,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-11-15 12:15:00, +al_0efbb9a4-6403-448d-9c5d-ace50ebec017,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-11-16 00:00:00, +al_dd0f10d3-68eb-478e-b174-2601c832933d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2021-11-17 00:00:00, +WO399661,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04009,Chiller 9,2021-11-19 20:00:00, +al_bf778e51-9332-4f36-ad1d-747a62f51ade,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-12-01 18:45:00, +al_a179f560-653b-4a43-a086-819a02dc6c91,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2021-12-02 00:00:00, +WO396925,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2021-12-28 17:00:00, +WO402641,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2021-12-28 18:30:00, +WO405425,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2022-02-22 14:00:00, +WO408525,WORK_ORDER,CM,M016,Draining Operations,CWC04009,Chiller 9,2022-03-08 20:30:00, +WO408508,WORK_ORDER,CM,MT002,Cleaning,CWC04009,Chiller 9,2022-03-10 20:00:00, +WO408526,WORK_ORDER,CM,M020,Head Operations,CWC04009,Chiller 9,2022-03-10 20:30:00, +WO409017,WORK_ORDER,CM,MT002,Cleaning,CWC04009,Chiller 9,2022-03-15 15:00:00, +WO409523,WORK_ORDER,CM,CS005,Control System Malfunction,CWC04009,Chiller 9,2022-03-29 14:30:00, +WO408000,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2022-03-31 14:00:00, +WO410456,WORK_ORDER,CM,MT003,Lubrication,CWC04009,Chiller 9,2022-04-14 16:30:00, +WO411005,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2022-05-19 18:00:00, +WO411006,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2022-05-19 19:30:00, +WO411007,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2022-05-20 15:30:00, +WO411131,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2022-06-01 15:00:00, +WO402351,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04009,Chiller 9,2022-06-10 23:00:00, +WO410978,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2022-06-21 15:00:00, +WO414891,WORK_ORDER,CM,MT003,Lubrication,CWC04009,Chiller 9,2022-06-24 15:00:00, +WO413483,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2022-07-01 14:00:00, +WO416152,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2022-08-16 15:00:00, +al_4ad9df67-4897-4f94-b558-0b227315949a,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-08-30 07:00:00, +al_90c5aee1-1b9c-4519-b238-3c6d1dbbacdf,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-08-31 05:45:00, +al_385f001c-8d70-4ae7-b762-88865f2296e5,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-09-01 00:00:00, +al_25f29d42-c265-4e6c-88d8-fc484e4a82f8,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-09-02 00:00:00, +al_7e1bd6fb-ac72-44e9-8833-f986fa5f8986,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-09-03 00:00:00, +al_26dad069-e7d0-4f86-8e90-4f57e86c5212,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-09-04 00:00:00, +WO418187,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2022-09-29 17:00:00, +al_2774f392-c96b-4fcc-b670-aeb765661f7b,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-10-12 08:15:00, +al_99dabc7b-bf89-47f8-bce4-07e1fef41a68,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-10-13 00:00:00, +WO418744,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2022-10-13 14:30:00, +al_48c6a74f-d309-4ca3-b68a-ac2d574b8072,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-10-14 00:00:00, +al_7531313a-5e5e-4245-9382-6658ac5b584e,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-10-15 00:00:00, +al_d2dc736d-9e60-4a64-bf81-e538ca678d97,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-10-16 00:00:00, +al_9c9ff222-4301-443b-952e-2fdb526d1d91,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-10-17 00:00:00, +al_56bfa35d-eb90-4573-8cc5-c46384f38ceb,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-10-18 07:00:00, +al_e679c781-9fc5-4853-a39f-af359216eaf4,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-10-19 00:00:00, +al_736288d8-2b95-447c-b00d-e2dcd9487d9d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-10-25 03:00:00, +al_b8339682-94eb-4d2b-833b-a4b800ddd439,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-10-26 03:45:00, +al_a1becdb4-bc95-4d17-97db-d5dd205ca242,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2022-10-27 14:18:00, +al_f37af62f-997e-4f8f-805b-7507411a07d0,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2022-10-28 12:30:00, +al_c1ad0b2c-8780-4956-88e3-a1d64cc1952c,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-10-31 02:30:00, +al_54c23c3b-783c-4138-b776-f970e1b05bfc,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-01 02:30:00, +al_74de1b6a-d180-442d-9357-5cfdd9deeaeb,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-02 00:00:00, +al_424f5f39-b96e-4415-823e-20c81bb77417,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-03 00:00:00, +WO421035,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2022-11-03 17:00:00, +al_c0b34db0-7005-4aa5-b33e-21796545d5a5,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-04 00:00:00, +al_826ad072-5076-40b0-906c-d7e3d57001b6,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-05 00:00:00, +al_3f6917bc-cc28-466b-b5e0-b439fce684aa,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-08 04:30:00, +al_c9dce022-d94e-42c5-a331-a24143f4fe28,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-09 00:00:00, +al_6b12b019-d13c-4ce8-a4c7-28dfdf1fb5d3,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-10 00:00:00, +al_90078522-c344-4e33-9a9a-a7f58c107aa2,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-11 00:00:00, +al_beb35a3e-f001-4697-84ba-5e462afcf844,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-14 06:15:00, +al_682b704a-9184-4919-b3c3-b07c76f9a711,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-15 00:00:00, +al_3636636f-b3ff-44ff-a98e-65b586854416,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-16 00:00:00, +al_11c48241-dddb-424d-8027-3c9b1310e487,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-17 00:00:00, +al_77c05306-9ad4-4e11-8838-8d15d8300b88,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-18 00:00:00, +al_1d2804a1-4fca-4a58-b52f-7defe796c010,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-20 03:00:00, +al_a80aa78b-76e3-4683-9e69-78c00b515367,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-21 00:00:00, +al_61f6a97f-64ce-4009-ac3f-b624c9faea49,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-22 00:00:00, +al_333497c8-4943-4120-b661-45f4683dc070,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-23 02:45:00, +al_82e70e96-aa3e-4eff-b611-f80be100107c,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-24 03:30:00, +al_1d5b2882-0fe3-45e9-ba10-efa674a938cd,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-25 00:00:00, +al_269b8d7f-16e4-4c6d-b140-ed243689811a,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-29 00:00:00, +al_603cda24-9b38-4fd3-ae7b-03f59d321bd9,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-11-30 00:00:00, +al_2d305d80-9bde-4649-aba8-0c8167703af3,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-12-01 00:00:00, +al_3a6a962f-2546-4f78-988a-25976824ceb2,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-12-02 00:00:00, +al_bad29307-f30c-409e-8878-dc0efe5b7cea,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-12-03 00:00:00, +al_ecc53a24-b13a-447b-bd70-abfaee1e6b52,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-12-04 00:00:00, +al_b5308382-7e13-4999-82a8-20b688aa7e70,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-12-05 00:00:00, +al_7acc6237-9609-474d-993e-25fb4e38dafd,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2022-12-06 00:00:00, +al_c0bbc4d5-cccc-485f-91b1-6d6b73e73216,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2022-12-07 00:00:00, +al_e658c372-5e62-401a-b8b9-6debacff41cf,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2022-12-08 00:30:00, +al_b0835959-dc19-41e7-a8a3-30caa228c627,ALERT,ALERT,RUL0018,Chiller - Evaporator Approach High,CWC04009,Chiller 9,2022-12-09 12:15:00, +WO422734,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2022-12-16 12:45:00, +WO419958,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04009,Chiller 9,2023-01-20 20:00:00, +WO426264,WORK_ORDER,CM,M020,Head Operations,CWC04009,Chiller 9,2023-02-14 16:00:00, +WO425783,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2023-02-17 20:30:00, +WO422859,WORK_ORDER,PM,MT001,Routine Maintenance,CWC04009,Chiller 9,2023-03-06 19:30:00, +WO427329,WORK_ORDER,CM,M005,Misalignment,CWC04009,Chiller 9,2023-03-21 18:30:00, +al_889a0394-fdb6-4e4c-a7bb-2c35bd6884be,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2023-03-29 03:45:00, +al_aae58560-8ca4-419b-bcb9-f0ea092f7d9f,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2023-03-30 15:00:00, +al_004d0fc5-a5bb-4d57-bd52-c6be0d05fb1d,ALERT,ALERT,RUL0022,Chiller - Chiller Cycling,CWC04009,Chiller 9,2023-03-31 00:00:00, +WO128018,WORK_ORDER,CM,M009,Actuator Failure,CWC04009,Chiller 9,2023-04-22 14:30:00, +WO128432,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2023-04-26 08:30:00, +WO128598,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2023-04-28 09:00:00, +WO128600,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2023-04-28 13:00:00, +WO128599,WORK_ORDER,PM,MT011,Calibration,CWC04009,Chiller 9,2023-05-01 11:00:00, +WO132879,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2023-05-23 12:30:00, +WO151335,WORK_ORDER,CM,MT003,Lubrication,CWC04009,Chiller 9,2023-07-24 12:30:00, +WO144495,WORK_ORDER,PM,MT004,Refrigerant Addition,CWC04009,Chiller 9,2023-08-17 10:00:00, +WO162597,WORK_ORDER,CM,MT002,Cleaning,CWC04009,Chiller 9,2023-09-05 18:30:00, +WO154348,WORK_ORDER,PM,MT010,Oil Analysis,CWC04009,Chiller 9,2023-09-13 10:00:00, +WO427275,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2023-09-20 11:00:00, +WO139505,WORK_ORDER,PM,MT013,Vibration Analysis,CWC04009,Chiller 9,2023-09-21 14:00:00, \ No newline at end of file diff --git a/src/couchdb/sample_data/work_order/failure_codes.csv b/src/couchdb/sample_data/work_order/failure_codes.csv new file mode 100644 index 00000000..f4bcd72a --- /dev/null +++ b/src/couchdb/sample_data/work_order/failure_codes.csv @@ -0,0 +1,144 @@ +category,primary_code,primary_code_description,secondary_code,secondary_code_description +Structural and Mechanical Failures,M001,Cracking,M001a,Cracking in Piping +Structural and Mechanical Failures,M001,Cracking,M001b,Cracking in Structural Frame +Structural and Mechanical Failures,M002,Fracture,M002a,Fracture in Heat Exchanger +Structural and Mechanical Failures,M002,Fracture,M002b,Fracture in Compressor +Structural and Mechanical Failures,M003,Deformation,M003a,Deformation of Blades +Structural and Mechanical Failures,M003,Deformation,M003b,Deformation of Housing +Structural and Mechanical Failures,M004,Rupture,M004a,Rupture in Piping +Structural and Mechanical Failures,M004,Rupture,M004b,Rupture in Vessels +Structural and Mechanical Failures,M005,Misalignment,M005a,Misalignment of Motor +Structural and Mechanical Failures,M005,Misalignment,M005b,Misalignment of Shaft +Structural and Mechanical Failures,M005,Misalignment,M005c,Misalignment in Flow Control Valve +Structural and Mechanical Failures,M006,Overheating,M006a,Overheating of Motor +Structural and Mechanical Failures,M006,Overheating,M006b,Overheating of Compressor +Structural and Mechanical Failures,M007,Overloading,M007a,Electrical Overloading +Structural and Mechanical Failures,M007,Overloading,M007b,Mechanical Overloading +Structural and Mechanical Failures,M008,Vibration Issues,M008a,High Frequency Vibration +Structural and Mechanical Failures,M008,Vibration Issues,M008b,Low Frequency Vibration +Structural and Mechanical Failures,M009,Actuator Failure,M009a,Hydraulic Actuator Failure +Structural and Mechanical Failures,M009,Actuator Failure,M009b,Pneumatic Actuator Failure +Structural and Mechanical Failures,M010,Compressor Failure,M010a,Electrical Failure +Structural and Mechanical Failures,M010,Compressor Failure,M010b,Mechanical Failure +Structural and Mechanical Failures,M011,Motor Failure,M011a,Electrical Motor Failure +Structural and Mechanical Failures,M011,Motor Failure,M011b,Mechanical Motor Failure +Structural and Mechanical Failures,M012,Sensor/Transducer Failure,M012a,Temperature Sensor Failure +Structural and Mechanical Failures,M012,Sensor/Transducer Failure,M012b,Pressure Sensor Failure +Structural and Mechanical Failures,M013,Condenser Plugged,M013a,Condenser Plugged (Partial) +Structural and Mechanical Failures,M013,Condenser Plugged,M013b,Condenser Plugged (Complete) +Structural and Mechanical Failures,M013,Condenser Plugged,M013c,Condenser Plugged (Severe) +Structural and Mechanical Failures,M014,Condenser Tube Leak,M014a,Minor Leak +Structural and Mechanical Failures,M014,Condenser Tube Leak,M014b,Major Leak +Structural and Mechanical Failures,M015,Flow Sensor Failure,M015a,Sensor Not Responding +Structural and Mechanical Failures,M015,Flow Sensor Failure,M015b,Incorrect Sensor Reading +Structural and Mechanical Failures,M016,Draining Operations,M016a,Drain Water +Structural and Mechanical Failures,M016,Draining Operations,M016b,Drain Oil +Structural and Mechanical Failures,M017,Major Overhaul,M017a,Chiller Overhaul +Structural and Mechanical Failures,M017,Major Overhaul,M017b,Piping Overhaul +Structural and Mechanical Failures,M017,Major Overhaul,M017c,Compressor Overhaul +Structural and Mechanical Failures,M017,Major Overhaul,M017d,Motor Overhaul +Structural and Mechanical Failures,M018,Replacement,M018a,Chiller Replacement +Structural and Mechanical Failures,M018,Replacement,M018b,Component Replacement +Structural and Mechanical Failures,M019,Installation,M019a,Install Chiller Component +Structural and Mechanical Failures,M019,Installation,M019b,Install Piping +Structural and Mechanical Failures,M020,Head Operations,M020a,Remove Heads +Structural and Mechanical Failures,M020,Head Operations,M020b,Reinstall Heads +Structural and Mechanical Failures,M020,Head Operations,M020c,Set Up for Overhaul +Corrosion and Wear,C001,Corrosion,C001a,Surface Corrosion +Corrosion and Wear,C001,Corrosion,C001b,Pitting Corrosion +Corrosion and Wear,C002,Erosion,C002a,Erosion in Piping +Corrosion and Wear,C002,Erosion,C002b,Erosion in Heat Exchanger +Corrosion and Wear,C003,Wear,C003a,Bearing Wear +Corrosion and Wear,C003,Wear,C003b,Shaft Wear +Corrosion and Wear,C004,Abrasion,C004a,Surface Abrasion +Corrosion and Wear,C004,Abrasion,C004b,Internal Abrasion +Leaks and Seepage,L001,Refrigerant Leak,L001a,Small Leak +Leaks and Seepage,L001,Refrigerant Leak,L001b,Large Leak +Leaks and Seepage,L002,Condenser Tube Leak,L002a,Minor Leak +Leaks and Seepage,L002,Condenser Tube Leak,L002b,Major Leak +Leaks and Seepage,L003,Evaporator Leak,L003a,Minor Leak +Leaks and Seepage,L003,Evaporator Leak,L003b,Major Leak +Leaks and Seepage,L004,Piping Leak,L004a,Small Leak +Leaks and Seepage,L004,Piping Leak,L004b,Large Leak +Leaks and Seepage,L005,Seepage,L005a,Refrigerant Seepage +Leaks and Seepage,L005,Seepage,L005b,Water Seepage +Electrical Failures,E001,Short Circuit,E001a,Short Circuit in Control Circuit +Electrical Failures,E001,Short Circuit,E001b,Short Circuit in Power Circuit +Electrical Failures,E002,Open Circuit,E002a,Open Circuit in Control Circuit +Electrical Failures,E002,Open Circuit,E002b,Open Circuit in Power Circuit +Electrical Failures,E003,Insulation Failure,E003a,Insulation Breakdown +Electrical Failures,E003,Insulation Failure,E003b,Insulation Wear +Electrical Failures,E004,Overvoltage,E004a,Transient Overvoltage +Electrical Failures,E004,Overvoltage,E004b,Sustained Overvoltage +Electrical Failures,E005,Undervoltage,E005a,Transient Undervoltage +Electrical Failures,E005,Undervoltage,E005b,Sustained Undervoltage +Electrical Failures,E006,VFD (Variable Frequency Drive) Failure,E006a,Control Failure +Electrical Failures,E006,VFD (Variable Frequency Drive) Failure,E006b,Power Module Failure +Control System Failures,CS001,Calibration Drift,CS001a,Sensor Calibration Drift +Control System Failures,CS001,Calibration Drift,CS001b,Actuator Calibration Drift +Control System Failures,CS002,Sensor Failure,CS002a,Temperature Sensor Failure +Control System Failures,CS002,Sensor Failure,CS002b,Pressure Sensor Failure +Control System Failures,CS003,Actuator Failure,CS003a,Mechanical Actuator Failure +Control System Failures,CS003,Actuator Failure,CS003b,Electrical Actuator Failure +Control System Failures,CS004,Software Error,CS004a,Control Software Error +Control System Failures,CS004,Software Error,CS004b,Monitoring Software Error +Control System Failures,CS005,Control System Malfunction,CS005a,Control Loop Failure +Control System Failures,CS005,Control System Malfunction,CS005b,Communication Failure +Control System Failures,CS006,Control System Lag,CS006a,Slow Response to Temperature Changes +Control System Failures,CS007,Overactive Control Logic,CS007a,Excessive Adjustments Causing Overcooling +Human Factors,H001,Human Error,H001a,Operational Error +Human Factors,H001,Human Error,H001b,Maintenance Error +Human Factors,H002,Improper Operation,H002a,Incorrect Start-Up Procedure +Human Factors,H002,Improper Operation,H002b,Incorrect Shut-Down Procedure +Human Factors,H002,Improper Operation,H002c,Improper Flow Valve Adjustment +Human Factors,H003,Improper Maintenance,H003a,Inadequate Lubrication +Human Factors,H003,Improper Maintenance,H003b,Incorrect Component Installation +External Influences,EX001,Environmental Impact,EX001a,Temperature Extremes +External Influences,EX001,Environmental Impact,EX001b,Humidity Impact +External Influences,EX002,Chemical Exposure,EX002a,Corrosive Chemicals +External Influences,EX002,Chemical Exposure,EX002b,Reactive Chemicals +External Influences,EX003,Physical Impact,EX003a,Impact from External Objects +External Influences,EX003,Physical Impact,EX003b,Vandalism +Operational Failures,OP001,Process Upset,OP001a,Unexpected Load Change +Operational Failures,OP001,Process Upset,OP001b,Control System Upset +Operational Failures,OP002,Blockage,OP002a,Partial Blockage +Operational Failures,OP002,Blockage,OP002b,Complete Blockage +Operational Failures,OP003,Contamination,OP003a,Contamination in Refrigerant +Operational Failures,OP003,Contamination,OP003b,Contamination in Water +Operational Failures,OP004,Flow Sensor Failure,OP004a,Sensor Not Responding +Operational Failures,OP004,Flow Sensor Failure,OP004b,Incorrect Sensor Reading +Operational Failures,OP004,Incorrect Cooling Zone Operation,OP004c,Improperly Controlled or Shut Off Zones +Maintenance and Routine Checks,MT001,Routine Maintenance,MT001a,Scheduled Maintenance +Maintenance and Routine Checks,MT001,Routine Maintenance,MT001b,Unscheduled Maintenance +Maintenance and Routine Checks,MT002,Cleaning,MT002a,External Cleaning +Maintenance and Routine Checks,MT002,Cleaning,MT002b,Internal Cleaning +Maintenance and Routine Checks,MT003,Lubrication,MT003a,Lubrication of Bearings +Maintenance and Routine Checks,MT003,Lubrication,MT003b,Lubrication of Shafts +Maintenance and Routine Checks,MT004,Refrigerant Addition,MT004a,Small Amount +Maintenance and Routine Checks,MT004,Refrigerant Addition,MT004b,Large Amount +Maintenance and Routine Checks,MT005,Pressure Test,MT005a,Low Pressure Test +Maintenance and Routine Checks,MT005,Pressure Test,MT005b,High Pressure Test +Maintenance and Routine Checks,MT006,Major Overhaul,MT006a,Compressor Overhaul +Maintenance and Routine Checks,MT006,Major Overhaul,MT006b,Motor Overhaul +Maintenance and Routine Checks,MT007,Eddy Current Test,MT007a,Condenser Eddy Current Test +Maintenance and Routine Checks,MT007,Eddy Current Test,MT007b,Evaporator Eddy Current Test +Maintenance and Routine Checks,MT008,Leak Detection,MT008a,Visual Inspection +Maintenance and Routine Checks,MT008,Leak Detection,MT008b,Pressure Test +Maintenance and Routine Checks,MT009,Refrigerant Transfer,MT009a,Transfer to Storage +Maintenance and Routine Checks,MT009,Refrigerant Transfer,MT009b,Transfer to Another Unit +Maintenance and Routine Checks,MT010,Oil Analysis,MT010a,Initial Oil Analysis +Maintenance and Routine Checks,MT010,Oil Analysis,MT010b,Routine Oil Analysis +Maintenance and Routine Checks,MT010,Oil Analysis,MT010c,Post-Maintenance Oil Analysis +Maintenance and Routine Checks,MT011,Calibration,MT011a,Sensor Calibration +Maintenance and Routine Checks,MT011,Calibration,MT011b,Control System Calibration +Maintenance and Routine Checks,MT011,Calibration,MT011c,Flow Meter Calibration +Maintenance and Routine Checks,MT012,Freon Management,MT012a,Freon Level Check +Maintenance and Routine Checks,MT012,Freon Management,MT012b,Freon Addition +Maintenance and Routine Checks,MT012,Freon Management,MT012c,Freon Recycling and Disposal +Maintenance and Routine Checks,MT013,Vibration Analysis,MT013a,Initial Vibration Analysis +Maintenance and Routine Checks,MT013,Vibration Analysis,MT013b,Routine Vibration Analysis +Maintenance and Routine Checks,MT013,Vibration Analysis,MT013c,Post-Maintenance Vibration Analysis +Maintenance and Routine Checks,MT014,Filter Replacement,MT014a,Air Filter Replacement +Maintenance and Routine Checks,MT014,Filter Replacement,MT014b,Oil Filter Replacement +Maintenance and Routine Checks,MT014,Filter Replacement,MT014c,Water Filter Replacement +Maintenance and Routine Checks,MT015,Filling Operations,MT015a,Fill Water Piping \ No newline at end of file diff --git a/src/couchdb/sample_data/work_order/primary_failure_codes.csv b/src/couchdb/sample_data/work_order/primary_failure_codes.csv new file mode 100644 index 00000000..a2c564d1 --- /dev/null +++ b/src/couchdb/sample_data/work_order/primary_failure_codes.csv @@ -0,0 +1,68 @@ +category,primary_code,primary_code_description +Structural and Mechanical Failures,M001,Cracking +Structural and Mechanical Failures,M002,Fracture +Structural and Mechanical Failures,M003,Deformation +Structural and Mechanical Failures,M004,Rupture +Structural and Mechanical Failures,M005,Misalignment +Structural and Mechanical Failures,M006,Overheating +Structural and Mechanical Failures,M007,Overloading +Structural and Mechanical Failures,M008,Vibration Issues +Structural and Mechanical Failures,M009,Actuator Failure +Structural and Mechanical Failures,M010,Compressor Failure +Structural and Mechanical Failures,M011,Motor Failure +Structural and Mechanical Failures,M012,Sensor/Transducer Failure +Structural and Mechanical Failures,M013,Condenser Plugged +Structural and Mechanical Failures,M014,Condenser Tube Leak +Structural and Mechanical Failures,M015,Flow Sensor Failure +Structural and Mechanical Failures,M016,Draining Operations +Structural and Mechanical Failures,M017,Major Overhaul +Structural and Mechanical Failures,M018,Replacement +Structural and Mechanical Failures,M019,Installation +Structural and Mechanical Failures,M020,Head Operations +Corrosion and Wear,C001,Corrosion +Corrosion and Wear,C002,Erosion +Corrosion and Wear,C003,Wear +Corrosion and Wear,C004,Abrasion +Leaks and Seepage,L001,Refrigerant Leak +Leaks and Seepage,L002,Condenser Tube Leak +Leaks and Seepage,L003,Evaporator Leak +Leaks and Seepage,L004,Piping Leak +Leaks and Seepage,L005,Seepage +Electrical Failures,E001,Short Circuit +Electrical Failures,E002,Open Circuit +Electrical Failures,E003,Insulation Failure +Electrical Failures,E004,Overvoltage +Electrical Failures,E005,Undervoltage +Electrical Failures,E006,VFD (Variable Frequency Drive) Failure +Control System Failures,CS001,Calibration Drift +Control System Failures,CS002,Sensor Failure +Control System Failures,CS003,Actuator Failure +Control System Failures,CS004,Software Error +Control System Failures,CS005,Control System Malfunction +Control System Failures,CS006,Control System Lag +Control System Failures,CS007,Overactive Control Logic +Human Factors,H001,Human Error +Human Factors,H002,Improper Operation +Human Factors,H003,Improper Maintenance +External Influences,EX001,Environmental Impact +External Influences,EX002,Chemical Exposure +External Influences,EX003,Physical Impact +Operational Failures,OP001,Process Upset +Operational Failures,OP002,Blockage +Operational Failures,OP003,Contamination +Operational Failures,OP004,Flow Sensor Failure +Maintenance and Routine Checks,MT001,Routine Maintenance +Maintenance and Routine Checks,MT002,Cleaning +Maintenance and Routine Checks,MT003,Lubrication +Maintenance and Routine Checks,MT004,Refrigerant Addition +Maintenance and Routine Checks,MT005,Pressure Test +Maintenance and Routine Checks,MT006,Major Overhaul +Maintenance and Routine Checks,MT007,Eddy Current Test +Maintenance and Routine Checks,MT008,Leak Detection +Maintenance and Routine Checks,MT009,Refrigerant Transfer +Maintenance and Routine Checks,MT010,Oil Analysis +Maintenance and Routine Checks,MT011,Calibration +Maintenance and Routine Checks,MT012,Freon Management +Maintenance and Routine Checks,MT013,Vibration Analysis +Maintenance and Routine Checks,MT014,Filter Replacement +Maintenance and Routine Checks,MT015,Filling Operations \ No newline at end of file diff --git a/src/servers/wo/data.py b/src/servers/wo/data.py index 6cf7951d..4aeacf71 100644 --- a/src/servers/wo/data.py +++ b/src/servers/wo/data.py @@ -1,7 +1,7 @@ """Data access helpers for the Work Order MCP server. Reads from a CouchDB ``workorder`` database populated by ``src/couchdb/init_wo.py``. -Each document carries a ``_dataset`` field that acts as a collection discriminator. +Each document carries a ``dataset`` field that acts as a collection discriminator. Connection is established lazily on first use. If CouchDB is unavailable the helpers return ``None`` / empty results so the server can still start. @@ -78,7 +78,7 @@ def load(dataset: str) -> Optional[pd.DataFrame]: return None try: result = db.find( - selector={"_dataset": {"$eq": dataset}}, + selector={"dataset": {"$eq": dataset}}, limit=100_000, ) docs = result.get("docs", []) @@ -88,7 +88,7 @@ def load(dataset: str) -> Optional[pd.DataFrame]: df = pd.DataFrame(docs) # Drop internal CouchDB fields - df.drop(columns=[c for c in ("_id", "_rev", "_dataset") if c in df.columns], inplace=True) + df.drop(columns=[c for c in ("_id", "_rev", "dataset") if c in df.columns], inplace=True) # Parse date columns for col in _DATE_COLS.get(dataset, []): From cad5e6f1b36fb977712634ed6066992f0e3f3ad5 Mon Sep 17 00:00:00 2001 From: Shuxin Lin Date: Wed, 4 Mar 2026 16:17:20 -0500 Subject: [PATCH 13/16] feat: register WorkOrderAgent in plan-execute default servers Add wo-mcp-server to DEFAULT_SERVER_PATHS so WorkOrderAgent tools are available to plan-execute without requiring --server overrides. Signed-off-by: Shuxin Lin --- src/workflow/executor.py | 1 + src/workflow/runner.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/workflow/executor.py b/src/workflow/executor.py index e84703d0..e52aad24 100644 --- a/src/workflow/executor.py +++ b/src/workflow/executor.py @@ -35,6 +35,7 @@ "Utilities": "utilities-mcp-server", "FMSRAgent": "fmsr-mcp-server", "TSFMAgent": "tsfm-mcp-server", + "WorkOrderAgent": "wo-mcp-server", } _PLACEHOLDER_RE = re.compile(r"\{step_(\d+)\}") diff --git a/src/workflow/runner.py b/src/workflow/runner.py index 87ca789b..c9f25ec4 100644 --- a/src/workflow/runner.py +++ b/src/workflow/runner.py @@ -54,7 +54,7 @@ class PlanExecuteRunner: server_paths: Override MCP server specs. Keys must match the agent names the planner will assign steps to. Values are either a uv entry-point name (str) or a Path to a - script file. Defaults to all four registered servers. + script file. Defaults to all five registered servers. """ def __init__( From 8f83b1ca6a5cd1694654b0c753c55837d68cc625 Mon Sep 17 00:00:00 2001 From: Shuxin Lin Date: Wed, 4 Mar 2026 16:17:32 -0500 Subject: [PATCH 14/16] docs: add WO plan-execute examples and on-demand server note to INSTRUCTIONS.md - Add WorkOrder query examples (work order count, PM vs CM split, alert-to-failure probability, multi-step distribution + prediction) - Clarify that plan-execute spawns MCP servers on-demand; no manual server startup required - Fix .env.public: replace COUCHDB_DBNAME with IOT_DBNAME + WO_DBNAME - Add src/tmp/ to .gitignore Signed-off-by: Shuxin Lin --- .env.public | 3 ++- .gitignore | 3 ++- INSTRUCTIONS.md | 71 +++++++++++++++++++++++++++++++++++++++++++------ 3 files changed, 67 insertions(+), 10 deletions(-) diff --git a/.env.public b/.env.public index a2be134a..9ac2189f 100644 --- a/.env.public +++ b/.env.public @@ -1,8 +1,9 @@ # ── CouchDB (IoTAgent server) ──────────────────────────────────────────────── COUCHDB_URL=http://localhost:5984 -COUCHDB_DBNAME=chiller COUCHDB_USERNAME=admin COUCHDB_PASSWORD=password +IOT_DBNAME=chiller +WO_DBNAME=workorder # ── IBM WatsonX (plan-execute runner) ──────────────────────────────────────── WATSONX_APIKEY= diff --git a/.gitignore b/.gitignore index dcc34413..c04e9b60 100644 --- a/.gitignore +++ b/.gitignore @@ -199,4 +199,5 @@ benchmark/cods_track2/.env.local CLAUDE.md mcp/couchdb/sample_data/bulk_docs.json .env -mcp/servers/tsfm/artifacts/tsfm_models/ \ No newline at end of file +mcp/servers/tsfm/artifacts/tsfm_models/ +src/tmp/ diff --git a/INSTRUCTIONS.md b/INSTRUCTIONS.md index baf79a50..15801101 100644 --- a/INSTRUCTIONS.md +++ b/INSTRUCTIONS.md @@ -76,9 +76,40 @@ Verify CouchDB is running: curl -X GET http://localhost:5984/ ``` -### 4. Run servers locally +### 4. Verify servers -Use `uv run` to start the MCP servers (paths relative to repo root): +Run the smoke-test script to confirm all MCP servers can be imported and list their tools: + +```bash +./scripts/start_servers.sh +``` + +Expected output: + +``` +================================================ + AssetOpsBench MCP server check +================================================ + + [OK] utilities-mcp-server + tools: json_reader,current_date_time,current_time_english + [OK] iot-mcp-server + tools: sites,assets,sensors,history + [OK] fmsr-mcp-server + tools: get_failure_modes,get_failure_mode_sensor_mapping + [OK] tsfm-mcp-server + tools: get_ai_tasks,get_tsfm_models,run_tsfm_forecasting,... + [OK] wo-mcp-server + tools: get_work_orders,get_preventive_work_orders,... + +================================================ + 5 passed | 0 failed +================================================ +``` + +> **Note:** MCP servers use stdio transport — they are spawned on-demand by clients (Claude Desktop, `plan-execute`) and exit when the client disconnects. They are not long-running daemons. + +To start a server manually for testing: ```bash uv run utilities-mcp-server @@ -150,7 +181,7 @@ uv run wo-mcp-server **Path:** `src/servers/wo/main.py` **Requires:** CouchDB (`COUCHDB_URL`, `COUCHDB_USERNAME`, `COUCHDB_PASSWORD`, `WO_DBNAME`) -**Data init:** `python -m src.couchdb.init_wo` (or `docker compose -f src/couchdb/docker-compose.yaml up`) +**Data init:** Handled automatically by `docker compose -f src/couchdb/docker-compose.yaml up` (runs `src/couchdb/init_wo.py` inside the CouchDB container on first start) | Tool | Arguments | Description | |---|---|---| @@ -210,6 +241,8 @@ After `uv sync`, the `plan-execute` command is available: uv run plan-execute "What assets are available at site MAIN?" ``` +> **Note:** `plan-execute` spawns MCP servers on-demand for each query — you do **not** need to start them manually first. Servers are launched as subprocesses, used, then exit automatically. + Flags: | Flag | Description | @@ -243,10 +276,32 @@ uv run plan-execute --model-id litellm_proxy/GCP/claude-4-sonnet "What are the f uv run plan-execute --show-history --json "How many observations exist for CH-1?" | jq .answer ``` -### End-to-end example +### End-to-end examples All five servers (IoTAgent, Utilities, FMSRAgent, TSFMAgent, WorkOrderAgent) are registered by default. -Run a question that exercises three of them with independent parallel steps: + +#### Work order queries (requires CouchDB + populated `workorder` db) + +Equipment IDs in the sample dataset: `CWC04014` (524 WOs), `CWC04013` (431 WOs), `CWC04009` (alert events). + +```bash +# Work order count and most common failure code +uv run plan-execute "How many work orders does equipment CWC04014 have, and what is the most common failure code?" + +# Preventive vs corrective split +uv run plan-execute "For equipment CWC04013, how many preventive vs corrective work orders were completed?" + +# Alert-to-failure probability +uv run plan-execute "What is the probability that alert rule RUL0018 on equipment CWC04009 leads to a work order, and how long does it typically take?" + +# Work order distribution + next prediction (multi-step) +uv run plan-execute --show-plan --show-history \ + "For equipment CWC04014, show the work order distribution and predict the next maintenance type" +``` + +#### Multi-server parallel query + +Run a question that exercises three servers with independent parallel steps: ```bash uv run plan-execute --show-plan --show-history \ @@ -429,8 +484,8 @@ uv run pytest src/ -v │ │ stdio │ │ └───────────────────┼────────────┼─────────────────────┘ │ MCP protocol (stdio) - ┌──────────┼──────────┬──────────┐ - ▼ ▼ ▼ ▼ ▼ + ┌──────────┼──────────┬──────────┬──────────────┐ + ▼ ▼ ▼ ▼ ▼ IoTAgent Utilities FMSRAgent TSFMAgent WorkOrderAgent - (tools) (tools) (tools) (tools) (tools) + (tools) (tools) (tools) (tools) (tools) ``` From ed9347951949f1ecd61c13eed61272981a3f490e Mon Sep 17 00:00:00 2001 From: Shuxin Lin Date: Wed, 4 Mar 2026 16:23:49 -0500 Subject: [PATCH 15/16] chore: remove scripts/ directory and update INSTRUCTIONS.md Signed-off-by: Shuxin Lin --- INSTRUCTIONS.md | 31 +------------------ scripts/start_servers.sh | 65 ---------------------------------------- 2 files changed, 1 insertion(+), 95 deletions(-) delete mode 100755 scripts/start_servers.sh diff --git a/INSTRUCTIONS.md b/INSTRUCTIONS.md index 15801101..eea98bd5 100644 --- a/INSTRUCTIONS.md +++ b/INSTRUCTIONS.md @@ -76,36 +76,7 @@ Verify CouchDB is running: curl -X GET http://localhost:5984/ ``` -### 4. Verify servers - -Run the smoke-test script to confirm all MCP servers can be imported and list their tools: - -```bash -./scripts/start_servers.sh -``` - -Expected output: - -``` -================================================ - AssetOpsBench MCP server check -================================================ - - [OK] utilities-mcp-server - tools: json_reader,current_date_time,current_time_english - [OK] iot-mcp-server - tools: sites,assets,sensors,history - [OK] fmsr-mcp-server - tools: get_failure_modes,get_failure_mode_sensor_mapping - [OK] tsfm-mcp-server - tools: get_ai_tasks,get_tsfm_models,run_tsfm_forecasting,... - [OK] wo-mcp-server - tools: get_work_orders,get_preventive_work_orders,... - -================================================ - 5 passed | 0 failed -================================================ -``` +### 4. Run servers > **Note:** MCP servers use stdio transport — they are spawned on-demand by clients (Claude Desktop, `plan-execute`) and exit when the client disconnects. They are not long-running daemons. diff --git a/scripts/start_servers.sh b/scripts/start_servers.sh deleted file mode 100755 index 7d56f408..00000000 --- a/scripts/start_servers.sh +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/bash -# Verify all AssetOpsBench MCP servers can be imported and list their tools. -# -# MCP servers use stdio transport and are spawned on-demand by clients -# (Claude Desktop, plan-execute runner, etc.). This script confirms each -# server module is correctly installed and reports the tools it exposes. -# -# Usage: -# ./scripts/start_servers.sh - -set -euo pipefail - -ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" -cd "$ROOT_DIR" - -PASS=0 -FAIL=0 - -check_server() { - local label="$1" - local module="$2" - - local output - if output=$(uv run python -c " -from ${module} import mcp -tools = mcp._tool_manager.list_tools() -print(','.join(t.name for t in tools)) -" 2>&1); then - echo " [OK] $label" - echo " tools: $output" - ((PASS++)) || true - else - echo " [FAIL] $label" - echo "$output" | sed 's/^/ /' - ((FAIL++)) || true - fi -} - -echo "================================================" -echo " AssetOpsBench MCP server check" -echo "================================================" -echo "" - -check_server "utilities-mcp-server" "servers.utilities.main" -check_server "iot-mcp-server" "servers.iot.main" -check_server "fmsr-mcp-server" "servers.fmsr.main" -check_server "tsfm-mcp-server" "servers.tsfm.main" -check_server "wo-mcp-server" "servers.wo.main" - -echo "" -echo "================================================" -echo " $PASS passed | $FAIL failed" -echo "================================================" -echo "" -echo "To run a server (started on-demand by the client):" -echo " uv run utilities-mcp-server" -echo " uv run iot-mcp-server" -echo " uv run fmsr-mcp-server" -echo " uv run tsfm-mcp-server" -echo " uv run wo-mcp-server" -echo "" -echo "To run the plan-execute client across all servers:" -echo " uv run plan-execute \"\"" - -[[ $FAIL -eq 0 ]] From 3df0e81ed7591ed5c1495884fffc1bdf2ebc31d8 Mon Sep 17 00:00:00 2001 From: Shuxin Lin Date: Tue, 17 Mar 2026 11:16:44 -0400 Subject: [PATCH 16/16] fix: add --break-system-packages to pip3 install in couchdb_setup.sh Debian 12 (Bookworm) enforces PEP 668 and blocks system-wide pip installs without an explicit opt-in flag, causing ModuleNotFoundError for requests and pandas during CouchDB container initialisation. Signed-off-by: Shuxin Lin --- src/couchdb/couchdb_setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/couchdb/couchdb_setup.sh b/src/couchdb/couchdb_setup.sh index 1493cf5d..81b2b16b 100644 --- a/src/couchdb/couchdb_setup.sh +++ b/src/couchdb/couchdb_setup.sh @@ -20,7 +20,7 @@ echo "CouchDB is ready." echo "Installing Python dependencies..." apt-get update -qq apt-get install -y -qq python3 python3-pip -pip3 install -q requests pandas python-dotenv +pip3 install -q --break-system-packages requests pandas python-dotenv echo "Loading IoT asset data..." COUCHDB_URL="http://localhost:5984" \