diff --git a/src/calculation_time_constrains/service.py b/src/calculation_time_constrains/service.py index 315bd2f..e6a7778 100644 --- a/src/calculation_time_constrains/service.py +++ b/src/calculation_time_constrains/service.py @@ -877,7 +877,7 @@ class OptimumCostModel: retry_delay: float = 1.0 ) -> Optional[float]: date_str = target_date.strftime('%Y-%m-%d %H:%M:%S.%f') - url = f"{self.api_base_url}/calculate/reliability/{location_tag}/{date_str}" + url = f"{self.api_base_url}/calculate/failure-rate/{location_tag}/{date_str}" for attempt in range(max_retries + 1): try: @@ -1055,9 +1055,29 @@ class OptimumCostModel: return fr - def _calculate_costs_vectorized(self, reliabilities: Dict[datetime, float], - preventive_cost: float, failure_replacement_cost: float, failure_rate) -> List[Dict]: - valid_data = [(date, rel) for date, rel in reliabilities.items() if rel is not None] + def _get_failure_rate(self, location_tag: str, token: str): + failure_rate_url = f"{self.api_base_url}/asset/failure-rate/{location_tag}" + try: + response = requests.get( + failure_rate_url, + headers={ + "Content-Type": "application/json", + "Authorization": f"Bearer {token}", + }, + timeout=10 + ) + response.raise_for_status() + result = response.json() + except (requests.RequestException, ValueError) as e: + raise Exception(f"Failed to fetch or parse mdt data: {e}") + + fr = result["data"]["failure_rate"] + + return fr + + def _calculate_costs_vectorized(self, failure_rate: Dict[datetime, float], + preventive_cost: float, failure_replacement_cost: float) -> List[Dict]: + valid_data = [(date, rel) for date, rel in failure_rate.items() if rel is not None] if not valid_data: return [] @@ -1069,28 +1089,33 @@ class OptimumCostModel: reliability_values = np.array(reliability_values) # Calculate days from last OH - days_from_last_oh = np.array([(date - self.last_oh_date).days for date in dates]) + days_from_last_oh = np.array([(date - self.last_oh_date).days * 24 for date in dates]) + date_point = np.array([i+1 for i in range(len(dates))]) # Calculate failure probabilities failure_probs = 1 - reliability_values # Calculate expected operating times using trapezoidal integration # This is the denominator: ∫₀ᵀ R(t) dt for each T - expected_operating_times = np.zeros_like(days_from_last_oh, dtype=float) - for i in range(len(days_from_last_oh)): - # Time points from 0 to current point T - time_points = [(d - self.last_oh_date).days for d in dates[:i+1]] - # Reliability values (assuming reliability at time 0 is 1.0) - rel_values = reliability_values[:i+1] - # Calculate expected operating time up to this point - expected_operating_times[i] = np.trapz(rel_values, time_points) + # expected_operating_times = np.zeros_like(days_from_last_oh, dtype=float) + # for i in range(len(days_from_last_oh)): + # # Time points from 0 to current point T + # time_points = [(d - self.last_oh_date).days for d in dates[:i+1]] + # # Reliability values (assuming reliability at time 0 is 1.0) + # rel_values = reliability_values[:i+1] + # # Calculate expected operating time up to this point + # expected_operating_times[i] = np.trapz(rel_values, time_points) # Calculate costs according to the formula # Failure cost = (1-R(T)) × IDRu / ∫₀ᵀ R(t) dt - failure_costs = (failure_rate * failure_replacement_cost * expected_operating_times) - # Preventive cost = R(T) × IDRp / ∫₀ᵀ R(t) dt - preventive_costs = (reliability_values * preventive_cost) / expected_operating_times + # failure_costs = (failure_rate * failure_replacement_cost * expected_operating_times) + # # Preventive cost = R(T) × IDRp / ∫₀ᵀ R(t) dt + # preventive_costs = (reliability_values * preventive_cost) / expected_operating_times + + failure_costs = reliability_values * failure_replacement_cost * days_from_last_oh + preventive_costs = preventive_cost / date_point + # Total cost = Failure cost + Preventive cost @@ -1099,14 +1124,13 @@ class OptimumCostModel: # Convert back to list of dictionaries results = [] for i in range(len(dates)): - if i == 0: - continue results.append({ 'date': dates[i], - 'days_from_last_oh': days_from_last_oh[i], - 'reliability': reliability_values[i], + 'days_from_last_oh': days_from_last_oh[i] / 24, + 'failure_rate': reliability_values[i], 'failure_probability': failure_probs[i], - 'expected_operating_time': expected_operating_times[i], + 'number_of_failure': round(reliability_values[i] * days_from_last_oh[i]), + 'expected_operating_time': days_from_last_oh[i], 'failure_replacement_cost': failure_costs[i], 'preventive_replacement_cost': preventive_costs[i], 'total_cost': total_costs[i], @@ -1124,6 +1148,7 @@ class OptimumCostModel: return None total_costs = np.array([r['total_cost'] for r in results]) + min_idx = np.argmin(total_costs) optimal_result = results[min_idx] @@ -1131,13 +1156,31 @@ class OptimumCostModel: 'optimal_index': min_idx, 'optimal_date': optimal_result['date'], 'days_from_last_oh': optimal_result['days_from_last_oh'], - 'reliability': optimal_result['reliability'], + 'failure_rate': optimal_result['failure_rate'], + 'number_of_failure': optimal_result['number_of_failure'], 'failure_cost': optimal_result['failure_replacement_cost'], 'preventive_cost': optimal_result['preventive_replacement_cost'], 'total_cost': optimal_result['total_cost'], 'procurement_cost': 0 } + def _get_number_of_failure_after_last_oh(self, target_date, token, location_tag): + date = target_date.strftime('%Y-%m-%d %H:%M:%S.%f') + + nof = f"http://192.168.1.82:8000/reliability/calculate/failures/{location_tag}/{date}" + + header = { + 'Content-Type': 'application/json', + 'Authorization': 'Bearer ' + token + } + + response = requests.get(nof, headers=header) + + data = response.json() + + return data['data']['value'] + + async def calculate_cost_all_equipment( self, db_session, # DbSession type @@ -1177,17 +1220,11 @@ class OptimumCostModel: cost_per_failure = equipment.material_cost # Get pre-fetched reliability data - reliabilities = all_reliabilities.get(location_tag, {}) - failure_rate = self._get_equipment_fr(location_tag, self.token) - - - if not reliabilities: - self.logger.warning(f"No reliability data for equipment {location_tag}") - continue + failure_rate = all_reliabilities.get(location_tag, {}) + # failure_rate = self._get_equipment_fr(location_tag, self.token) # Calculate costs using vectorized operations predicted_costs = self._calculate_costs_vectorized( - reliabilities=reliabilities, preventive_cost=preventive_cost_per_equipment, failure_replacement_cost=cost_per_failure, failure_rate=failure_rate @@ -1204,8 +1241,8 @@ class OptimumCostModel: preventive_costs = [r["preventive_replacement_cost"] for r in predicted_costs] procurement_costs = [r["procurement_cost"] for r in predicted_costs] procurement_details = [r["procurement_details"] for r in predicted_costs] - failures = [(1-r["reliability"]) for r in predicted_costs] - total_costs = [r['total_cost'] for r in predicted_costs] + failures = [r["number_of_failure"] for r in predicted_costs] + total_costs_per_equipment = [r['total_cost'] for r in predicted_costs] # Pad arrays to max_interval length def pad_array(arr, target_length): @@ -1217,7 +1254,7 @@ class OptimumCostModel: preventive_costs = pad_array(preventive_costs, max_interval) procurement_costs = pad_array(procurement_costs, max_interval) failures = pad_array(failures, max_interval) - total_costs = pad_array(total_costs, max_interval) + total_costs_per_equipment = pad_array(total_costs_per_equipment, max_interval) fleet_results.append( CalculationEquipmentResult( # Assuming this class exists @@ -1238,7 +1275,7 @@ class OptimumCostModel: total_corrective_costs += np.array(corrective_costs) total_preventive_costs += np.array(preventive_costs) total_procurement_costs += np.array(procurement_costs) - total_costs += np.array(total_costs) + total_costs += np.array(total_costs_per_equipment) # Calculate fleet optimal interval # total_costs = total_corrective_costs + total_preventive_costs + total_procurement_costs @@ -1285,8 +1322,6 @@ async def run_simulation(*, db_session: DbSession, calculation: CalculationData, db_session=db_session, overhaul_session_id=calculation.overhaul_session_id ) - equipments = equipments[:100] - scope = await get_scope(db_session=db_session, overhaul_session_id=calculation.overhaul_session_id) diff --git a/src/overhaul_activity/cost_failure.json b/src/overhaul_activity/cost_failure.json new file mode 100644 index 0000000..c38a531 --- /dev/null +++ b/src/overhaul_activity/cost_failure.json @@ -0,0 +1,9561 @@ +{ +"data": [ + { + "location" : "00CHB-SKR805A", + "total_work_orders" : 416, + "total_cost" : 5.342133299E9, + "avg_cost" : 12841666.584134615385 + }, + { + "location" : "00CHA-SU801B", + "total_work_orders" : 388, + "total_cost" : 1.2727581122E10, + "avg_cost" : 32803044.128865979381 + }, + { + "location" : "00CHB-SKR805B", + "total_work_orders" : 358, + "total_cost" : 4.359637724E9, + "avg_cost" : 12177759.005586592179 + }, + { + "location" : "00CHA-SU801A", + "total_work_orders" : 354, + "total_cost" : 1.2511368626E10, + "avg_cost" : 35342849.225988700565 + }, + { + "location" : "00CHB-CV805A", + "total_work_orders" : 160, + "total_cost" : 4.5531383E8, + "avg_cost" : 2845711.437500000000 + }, + { + "location" : "00CHB-CV805B", + "total_work_orders" : 152, + "total_cost" : 1.995510155E9, + "avg_cost" : 13128356.282894736842 + }, + { + "location" : "00CHA-CV803A", + "total_work_orders" : 102, + "total_cost" : 1.085878938E9, + "avg_cost" : 10645871.941176470588 + }, + { + "location" : "00RO-S170A", + "total_work_orders" : 93, + "total_cost" : 8.5102543E8, + "avg_cost" : 9150811.075268817204 + }, + { + "location" : "00RO-S170C", + "total_work_orders" : 79, + "total_cost" : 8.1201957E8, + "avg_cost" : 10278728.734177215190 + }, + { + "location" : "00CHA-CV801A", + "total_work_orders" : 77, + "total_cost" : 9.75924205E9, + "avg_cost" : 126743403.24675325 + }, + { + "location" : "00CHA-CV803B", + "total_work_orders" : 75, + "total_cost" : 4.34169656E8, + "avg_cost" : 5788928.746666666667 + }, + { + "location" : "00CHA-CV802A", + "total_work_orders" : 74, + "total_cost" : 1.2157889526E10, + "avg_cost" : 164295804.40540541 + }, + { + "location" : "00DS-VF900", + "total_work_orders" : 72, + "total_cost" : 1.312066733E9, + "avg_cost" : 18223149.069444444444 + }, + { + "location" : "00RO-S170B", + "total_work_orders" : 70, + "total_cost" : 5.8583154E8, + "avg_cost" : 8369022.000000000000 + }, + { + "location" : "00DS-VF935", + "total_work_orders" : 68, + "total_cost" : 3.43762508E8, + "avg_cost" : 5055331.000000000000 + }, + { + "location" : "00CHA-CV804", + "total_work_orders" : 60, + "total_cost" : 1.7704475E8, + "avg_cost" : 2950745.833333333333 + }, + { + "location" : "00CHA-CV802B", + "total_work_orders" : 56, + "total_cost" : 1.91170166E8, + "avg_cost" : 3413752.964285714286 + }, + { + "location" : "00RO-S170D", + "total_work_orders" : 55, + "total_cost" : 8.79536795E8, + "avg_cost" : 15991578.090909090909 + }, + { + "location" : "00CHA-CV801B", + "total_work_orders" : 54, + "total_cost" : 5.5111054E8, + "avg_cost" : 10205750.740740740741 + }, + { + "location" : "00CHA-LBX801A", + "total_work_orders" : 43, + "total_cost" : 1.9083332E7, + "avg_cost" : 443798.418604651163 + }, + { + "location" : null, + "total_work_orders" : 38, + "total_cost" : 3.3254667E8, + "avg_cost" : 8751228.157894736842 + }, + { + "location" : "00MOB-WL009", + "total_work_orders" : 37, + "total_cost" : 8.1E7, + "avg_cost" : 2189189.189189189189 + }, + { + "location" : "00RO-T160C", + "total_work_orders" : 34, + "total_cost" : 1.97062538E8, + "avg_cost" : 5795957.000000000000 + }, + { + "location" : "00MOB-WL011", + "total_work_orders" : 33, + "total_cost" : 9.2156193E7, + "avg_cost" : 2792611.909090909091 + }, + { + "location" : "3SCR-S002A", + "total_work_orders" : 33, + "total_cost" : 3.05091179E9, + "avg_cost" : 92451872.424242424242 + }, + { + "location" : "00LSH-VI851", + "total_work_orders" : 33, + "total_cost" : 7180000.0, + "avg_cost" : 217575.757575757576 + }, + { + "location" : "00CHA-CS803", + "total_work_orders" : 32, + "total_cost" : 6.1908053E7, + "avg_cost" : 1934626.656250000000 + }, + { + "location" : "00RO-T160D", + "total_work_orders" : 30, + "total_cost" : 7.87525413E8, + "avg_cost" : 26250847.100000000000 + }, + { + "location" : "00LSH-CV852", + "total_work_orders" : 29, + "total_cost" : 1.6894841E7, + "avg_cost" : 582580.724137931034 + }, + { + "location" : "00MOB-BD006", + "total_work_orders" : 28, + "total_cost" : 1619543.0, + "avg_cost" : 57840.821428571429 + }, + { + "location" : "00RO-T160B", + "total_work_orders" : 28, + "total_cost" : 1.094721756E9, + "avg_cost" : 39097205.571428571429 + }, + { + "location" : "00LSH-CV801", + "total_work_orders" : 28, + "total_cost" : 1253500.0, + "avg_cost" : 44767.857142857143 + }, + { + "location" : "00RP-Z856B", + "total_work_orders" : 27, + "total_cost" : 3.69232E8, + "avg_cost" : 13675259.259259259259 + }, + { + "location" : "00RO-T160A", + "total_work_orders" : 27, + "total_cost" : 7.8789444E7, + "avg_cost" : 2918127.555555555556 + }, + { + "location" : "3SCR-W004A", + "total_work_orders" : 26, + "total_cost" : 5.917886E7, + "avg_cost" : 2276110.000000000000 + }, + { + "location" : "00RP-Z856A", + "total_work_orders" : 26, + "total_cost" : 9.1500205E7, + "avg_cost" : 3519238.653846153846 + }, + { + "location" : "00MOB-WL008", + "total_work_orders" : 24, + "total_cost" : 4.16495451E8, + "avg_cost" : 17353977.125000000000 + }, + { + "location" : "00RP-P972B", + "total_work_orders" : 21, + "total_cost" : 4.41908807E8, + "avg_cost" : 21043276.523809523810 + }, + { + "location" : "00CL-S001A", + "total_work_orders" : 21, + "total_cost" : 1.8145E7, + "avg_cost" : 864047.619047619048 + }, + { + "location" : "00DS-CY851A", + "total_work_orders" : 21, + "total_cost" : 5.6862177E8, + "avg_cost" : 27077227.142857142857 + }, + { + "location" : "3ABS-P910A", + "total_work_orders" : 20, + "total_cost" : 9.261E7, + "avg_cost" : 4630500.000000000000 + }, + { + "location" : "4LOM-I", + "total_work_orders" : 20, + "total_cost" : 5.79693318E8, + "avg_cost" : 28984665.900000000000 + }, + { + "location" : "00RO-S180", + "total_work_orders" : 20, + "total_cost" : 1.2219178E8, + "avg_cost" : 6109589.000000000000 + }, + { + "location" : "4TSI-I", + "total_work_orders" : 19, + "total_cost" : 4.98118132E8, + "avg_cost" : 26216743.789473684211 + }, + { + "location" : "3BAD-AX501", + "total_work_orders" : 19, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00LSH-CR853", + "total_work_orders" : 19, + "total_cost" : 6.9657265E7, + "avg_cost" : 3666171.842105263158 + }, + { + "location" : "00CL-P002A", + "total_work_orders" : 19, + "total_cost" : 2.55407127E8, + "avg_cost" : 13442480.368421052632 + }, + { + "location" : "3BAD-CV501", + "total_work_orders" : 19, + "total_cost" : 1.5930233E7, + "avg_cost" : 838433.315789473684 + }, + { + "location" : "00RO-P250A", + "total_work_orders" : 18, + "total_cost" : 2.0319E7, + "avg_cost" : 1128833.333333333333 + }, + { + "location" : "3ABS-P910B", + "total_work_orders" : 18, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "4OL-E", + "total_work_orders" : 18, + "total_cost" : 5.7196E7, + "avg_cost" : 3177555.555555555556 + }, + { + "location" : "00RO-P170C", + "total_work_orders" : 18, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-BM871", + "total_work_orders" : 17, + "total_cost" : 7405182.0, + "avg_cost" : 435598.941176470588 + }, + { + "location" : "3AI-Y511L", + "total_work_orders" : 17, + "total_cost" : 1232108.0, + "avg_cost" : 72476.941176470588 + }, + { + "location" : "00APC-PD807", + "total_work_orders" : 16, + "total_cost" : 3791500.0, + "avg_cost" : 236968.750000000000 + }, + { + "location" : "3DP-BM731E", + "total_work_orders" : 16, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y504R", + "total_work_orders" : 16, + "total_cost" : 4.616929E7, + "avg_cost" : 2885580.625000000000 + }, + { + "location" : "3DP-BM731D", + "total_work_orders" : 16, + "total_cost" : 9.0, + "avg_cost" : 0.56250000000000000000 + }, + { + "location" : "3ABS-P888A", + "total_work_orders" : 16, + "total_cost" : 4.4929222E7, + "avg_cost" : 2808076.375000000000 + }, + { + "location" : "00CHA-MB806A", + "total_work_orders" : 16, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-CY911", + "total_work_orders" : 16, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3EVM-PAN801", + "total_work_orders" : 15, + "total_cost" : 1.81148364E8, + "avg_cost" : 12076557.600000000000 + }, + { + "location" : "00APC-PD808", + "total_work_orders" : 15, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-P891A", + "total_work_orders" : 15, + "total_cost" : 1.12112E7, + "avg_cost" : 747413.333333333333 + }, + { + "location" : "00DS-P936", + "total_work_orders" : 15, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-AIX109D", + "total_work_orders" : 14, + "total_cost" : 3.8602132E7, + "avg_cost" : 2757295.142857142857 + }, + { + "location" : "4BSS-I", + "total_work_orders" : 14, + "total_cost" : 1.248320713E9, + "avg_cost" : 89165765.214285714286 + }, + { + "location" : "00RO-P270C", + "total_work_orders" : 14, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-P781C", + "total_work_orders" : 14, + "total_cost" : 5250000.0, + "avg_cost" : 375000.000000000000 + }, + { + "location" : "00OA-F851C", + "total_work_orders" : 14, + "total_cost" : 6.2153772E8, + "avg_cost" : 44395551.428571428571 + }, + { + "location" : "00CL-V101", + "total_work_orders" : 14, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-BM731F", + "total_work_orders" : 14, + "total_cost" : 1.1430388E7, + "avg_cost" : 816456.285714285714 + }, + { + "location" : "3ABS-P932B", + "total_work_orders" : 14, + "total_cost" : 3068750.0, + "avg_cost" : 219196.428571428571 + }, + { + "location" : "3DP-BM731B", + "total_work_orders" : 14, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-MB805B", + "total_work_orders" : 13, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00OA-F851A", + "total_work_orders" : 13, + "total_cost" : 6005322.0, + "avg_cost" : 461947.846153846154 + }, + { + "location" : "3AI-Y511R", + "total_work_orders" : 13, + "total_cost" : 1762680.0, + "avg_cost" : 135590.769230769231 + }, + { + "location" : "00CHA-MB807A", + "total_work_orders" : 13, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-BM731C", + "total_work_orders" : 13, + "total_cost" : 5.69036E8, + "avg_cost" : 43772000.000000000000 + }, + { + "location" : "3AI-Y505R", + "total_work_orders" : 13, + "total_cost" : 3290002.0, + "avg_cost" : 253077.076923076923 + }, + { + "location" : "00DS-P978A", + "total_work_orders" : 13, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-P932A", + "total_work_orders" : 13, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-P801A", + "total_work_orders" : 12, + "total_cost" : 6.797352E7, + "avg_cost" : 5664460.000000000000 + }, + { + "location" : "00APC-PD981", + "total_work_orders" : 12, + "total_cost" : 5750000.0, + "avg_cost" : 479166.666666666667 + }, + { + "location" : "00DS-P901", + "total_work_orders" : 12, + "total_cost" : 1336500.0, + "avg_cost" : 111375.000000000000 + }, + { + "location" : "00ACR-C001B", + "total_work_orders" : 12, + "total_cost" : 1.472993192E9, + "avg_cost" : 122749432.66666667 + }, + { + "location" : "3SCR-S002B", + "total_work_orders" : 12, + "total_cost" : 6.1683E8, + "avg_cost" : 51402500.000000000000 + }, + { + "location" : "00CHA-MB806B", + "total_work_orders" : 12, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00ACR-C001C", + "total_work_orders" : 12, + "total_cost" : 1.28379034E8, + "avg_cost" : 10698252.833333333333 + }, + { + "location" : "00RP-BM911", + "total_work_orders" : 12, + "total_cost" : 3522520.0, + "avg_cost" : 293543.333333333333 + }, + { + "location" : "3AI-Y502R", + "total_work_orders" : 12, + "total_cost" : 1.7132873E7, + "avg_cost" : 1427739.416666666667 + }, + { + "location" : "00RP-M911B", + "total_work_orders" : 11, + "total_cost" : 1.40407955E8, + "avg_cost" : 12764359.545454545455 + }, + { + "location" : "00RO-P250D", + "total_work_orders" : 11, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P270D", + "total_work_orders" : 11, + "total_cost" : 5.9852656E8, + "avg_cost" : 54411505.454545454545 + }, + { + "location" : "3DP-FDR711C", + "total_work_orders" : 11, + "total_cost" : 3.45182E8, + "avg_cost" : 31380181.818181818182 + }, + { + "location" : "00DS-P902A", + "total_work_orders" : 11, + "total_cost" : 4221000.0, + "avg_cost" : 383727.272727272727 + }, + { + "location" : "00CHA-BW802A", + "total_work_orders" : 11, + "total_cost" : 2.76866E8, + "avg_cost" : 25169636.363636363636 + }, + { + "location" : "3DP-FDR711F", + "total_work_orders" : 10, + "total_cost" : 1.77418162E8, + "avg_cost" : 17741816.200000000000 + }, + { + "location" : "3ABS-W914A", + "total_work_orders" : 10, + "total_cost" : 1.0366325E9, + "avg_cost" : 103663250.000000000000 + }, + { + "location" : "3AI-Y503L", + "total_work_orders" : 10, + "total_cost" : 420066.0, + "avg_cost" : 42006.600000000000 + }, + { + "location" : "00RO-PN115D", + "total_work_orders" : 10, + "total_cost" : 2.816E8, + "avg_cost" : 28160000.000000000000 + }, + { + "location" : "3AI-Y513L", + "total_work_orders" : 10, + "total_cost" : 821428.0, + "avg_cost" : 82142.800000000000 + }, + { + "location" : "00DS-P937A", + "total_work_orders" : 10, + "total_cost" : 1.97453106E8, + "avg_cost" : 19745310.600000000000 + }, + { + "location" : "3DP-TE731E", + "total_work_orders" : 10, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SCR-P003A", + "total_work_orders" : 10, + "total_cost" : 3.2471658E7, + "avg_cost" : 3247165.800000000000 + }, + { + "location" : "3AI-Y514L", + "total_work_orders" : 10, + "total_cost" : 3.8236751E7, + "avg_cost" : 3823675.100000000000 + }, + { + "location" : "00APC-PD806", + "total_work_orders" : 10, + "total_cost" : 1.12678E7, + "avg_cost" : 1126780.000000000000 + }, + { + "location" : "00RO-P270B", + "total_work_orders" : 10, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-FDR711B", + "total_work_orders" : 10, + "total_cost" : 1.93773857E8, + "avg_cost" : 19377385.700000000000 + }, + { + "location" : "00RO-P270A", + "total_work_orders" : 10, + "total_cost" : 1.21125E7, + "avg_cost" : 1211250.000000000000 + }, + { + "location" : "00RP-P972A", + "total_work_orders" : 10, + "total_cost" : 5497614.0, + "avg_cost" : 549761.400000000000 + }, + { + "location" : "00DMW-C375A", + "total_work_orders" : 9, + "total_cost" : 6.463E8, + "avg_cost" : 71811111.111111111111 + }, + { + "location" : "3AI-Y513R", + "total_work_orders" : 9, + "total_cost" : 1232100.0, + "avg_cost" : 136900.000000000000 + }, + { + "location" : "00RO-AIX109C", + "total_work_orders" : 9, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P320A", + "total_work_orders" : 9, + "total_cost" : 4.2075893E8, + "avg_cost" : 46750992.222222222222 + }, + { + "location" : "00ACR-C001A", + "total_work_orders" : 9, + "total_cost" : 2.14180549E9, + "avg_cost" : 237978387.77777778 + }, + { + "location" : "3AI-Y504L", + "total_work_orders" : 9, + "total_cost" : 2.5310129E7, + "avg_cost" : 2812236.555555555556 + }, + { + "location" : "00CL-XR001B", + "total_work_orders" : 9, + "total_cost" : 8.97497509E8, + "avg_cost" : 99721945.444444444444 + }, + { + "location" : "00RP-M911A", + "total_work_orders" : 9, + "total_cost" : 5.2886172E7, + "avg_cost" : 5876241.333333333333 + }, + { + "location" : "00RO-P126B", + "total_work_orders" : 9, + "total_cost" : 1.73612349E8, + "avg_cost" : 19290261.000000000000 + }, + { + "location" : "3DP-P781E", + "total_work_orders" : 9, + "total_cost" : 1.93967E8, + "avg_cost" : 21551888.888888888889 + }, + { + "location" : "3DP-FDR711D", + "total_work_orders" : 9, + "total_cost" : 4.35606866E8, + "avg_cost" : 48400762.888888888889 + }, + { + "location" : "3ABS-P888C", + "total_work_orders" : 9, + "total_cost" : 970000.0, + "avg_cost" : 107777.777777777778 + }, + { + "location" : "3ABS-AX851A", + "total_work_orders" : 9, + "total_cost" : 3.99495E7, + "avg_cost" : 4438833.333333333333 + }, + { + "location" : "00CL-S001B", + "total_work_orders" : 9, + "total_cost" : 2.854E7, + "avg_cost" : 3171111.111111111111 + }, + { + "location" : "3ABS-W854", + "total_work_orders" : 9, + "total_cost" : 3.4309E7, + "avg_cost" : 3812111.111111111111 + }, + { + "location" : "00CHA-MB805A", + "total_work_orders" : 9, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-MB809A", + "total_work_orders" : 9, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SCR-P003B", + "total_work_orders" : 9, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SCR-W004B", + "total_work_orders" : 9, + "total_cost" : 3.368185E7, + "avg_cost" : 3742427.777777777778 + }, + { + "location" : "00RO-AIX109A", + "total_work_orders" : 8, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-P888B", + "total_work_orders" : 8, + "total_cost" : 2.5255185E8, + "avg_cost" : 31568981.250000000000 + }, + { + "location" : "3ABS-W886", + "total_work_orders" : 8, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-FCV102B", + "total_work_orders" : 8, + "total_cost" : 8.348E7, + "avg_cost" : 10435000.000000000000 + }, + { + "location" : "3ABS-W935", + "total_work_orders" : 8, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-SRP120C", + "total_work_orders" : 8, + "total_cost" : 5.6292E7, + "avg_cost" : 7036500.000000000000 + }, + { + "location" : "00DMW-C375B", + "total_work_orders" : 8, + "total_cost" : 3.49E7, + "avg_cost" : 4362500.000000000000 + }, + { + "location" : "00DS-W859", + "total_work_orders" : 8, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-M900", + "total_work_orders" : 8, + "total_cost" : 1.944285E7, + "avg_cost" : 2430356.250000000000 + }, + { + "location" : "3ABS-W896C", + "total_work_orders" : 8, + "total_cost" : 326841.0, + "avg_cost" : 40855.125000000000 + }, + { + "location" : "3ABS-ABT851", + "total_work_orders" : 8, + "total_cost" : 1.609108328E9, + "avg_cost" : 201138541.00000000 + }, + { + "location" : "00CL-XR001A", + "total_work_orders" : 8, + "total_cost" : 9.4233401E8, + "avg_cost" : 117791751.25000000 + }, + { + "location" : "3ABS-W895A", + "total_work_orders" : 8, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W878", + "total_work_orders" : 8, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-PD804", + "total_work_orders" : 8, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-AG879C", + "total_work_orders" : 8, + "total_cost" : 4.2548319E8, + "avg_cost" : 53185398.750000000000 + }, + { + "location" : "00RO-P170D", + "total_work_orders" : 8, + "total_cost" : 6.881731212E9, + "avg_cost" : 860216401.50000000 + }, + { + "location" : "00RO-CAB225B", + "total_work_orders" : 8, + "total_cost" : 3.051130132E9, + "avg_cost" : 381391266.50000000 + }, + { + "location" : "3CW-P011B", + "total_work_orders" : 8, + "total_cost" : 1.425E8, + "avg_cost" : 17812500.000000000000 + }, + { + "location" : "00RO-SRP120B", + "total_work_orders" : 8, + "total_cost" : 3.38142956E8, + "avg_cost" : 42267869.500000000000 + }, + { + "location" : "3TR-CAB006", + "total_work_orders" : 8, + "total_cost" : 2.08E7, + "avg_cost" : 2600000.000000000000 + }, + { + "location" : "00APC-PD801", + "total_work_orders" : 8, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P290D", + "total_work_orders" : 8, + "total_cost" : 5.3E7, + "avg_cost" : 6625000.000000000000 + }, + { + "location" : "00RP-M871A", + "total_work_orders" : 8, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00OA-F851B", + "total_work_orders" : 8, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-PIX942", + "total_work_orders" : 7, + "total_cost" : 3286250.0, + "avg_cost" : 469464.285714285714 + }, + { + "location" : "3DP-FDR711A", + "total_work_orders" : 7, + "total_cost" : 1.0857E8, + "avg_cost" : 15510000.000000000000 + }, + { + "location" : "3BDW-W601", + "total_work_orders" : 7, + "total_cost" : 3.278E7, + "avg_cost" : 4682857.142857142857 + }, + { + "location" : "3ABS-AG879E", + "total_work_orders" : 7, + "total_cost" : 567000.0, + "avg_cost" : 81000.000000000000 + }, + { + "location" : "3ABS-W913B", + "total_work_orders" : 7, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-MB810A", + "total_work_orders" : 7, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y515L", + "total_work_orders" : 7, + "total_cost" : 821401.0, + "avg_cost" : 117343.000000000000 + }, + { + "location" : "00IA-A001A", + "total_work_orders" : 7, + "total_cost" : 1.13928468E8, + "avg_cost" : 16275495.428571428571 + }, + { + "location" : "00DS-P978B", + "total_work_orders" : 7, + "total_cost" : 2.0169896E8, + "avg_cost" : 28814137.142857142857 + }, + { + "location" : "3CW-S001A", + "total_work_orders" : 7, + "total_cost" : 1.1461989E7, + "avg_cost" : 1637427.000000000000 + }, + { + "location" : "00SSB-EV001", + "total_work_orders" : 7, + "total_cost" : 2.85271564E8, + "avg_cost" : 40753080.571428571429 + }, + { + "location" : "3ABS-W896B", + "total_work_orders" : 7, + "total_cost" : 1.2941125E8, + "avg_cost" : 18487321.428571428571 + }, + { + "location" : "3BOL-H501", + "total_work_orders" : 7, + "total_cost" : 8.75688445E8, + "avg_cost" : 125098349.28571429 + }, + { + "location" : "3CW-W003B", + "total_work_orders" : 7, + "total_cost" : 1.7058361E7, + "avg_cost" : 2436908.714285714286 + }, + { + "location" : "00RO-P255C", + "total_work_orders" : 7, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W914B", + "total_work_orders" : 7, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-FCV102A", + "total_work_orders" : 7, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y516L", + "total_work_orders" : 7, + "total_cost" : 3.6704962E7, + "avg_cost" : 5243566.000000000000 + }, + { + "location" : "3ABS-AG879B", + "total_work_orders" : 7, + "total_cost" : 839802.0, + "avg_cost" : 119971.714285714286 + }, + { + "location" : "3ABS-W864", + "total_work_orders" : 7, + "total_cost" : 4.0968364E7, + "avg_cost" : 5852623.428571428571 + }, + { + "location" : "00RO-AG122B", + "total_work_orders" : 7, + "total_cost" : 1.164252E8, + "avg_cost" : 16632171.428571428571 + }, + { + "location" : "3GG-TE819A", + "total_work_orders" : 7, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BAD-P511A", + "total_work_orders" : 7, + "total_cost" : 6.0, + "avg_cost" : 0.85714285714285714286 + }, + { + "location" : "3GG-TE820B", + "total_work_orders" : 7, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-P891B", + "total_work_orders" : 7, + "total_cost" : 1.0955116E7, + "avg_cost" : 1565016.571428571429 + }, + { + "location" : "00CHA-LBX801B", + "total_work_orders" : 7, + "total_cost" : 4.44E8, + "avg_cost" : 63428571.428571428571 + }, + { + "location" : "3DP-FDR711E", + "total_work_orders" : 6, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-H050", + "total_work_orders" : 6, + "total_cost" : 1.5096912E8, + "avg_cost" : 25161520.000000000000 + }, + { + "location" : "3GG-P878A", + "total_work_orders" : 6, + "total_cost" : 1.2430883E8, + "avg_cost" : 20718138.333333333333 + }, + { + "location" : "00CHA-LBX802A", + "total_work_orders" : 6, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00IA-A001B", + "total_work_orders" : 6, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3MS-SV502A", + "total_work_orders" : 6, + "total_cost" : 3449600.0, + "avg_cost" : 574933.333333333333 + }, + { + "location" : "00RO-P195B", + "total_work_orders" : 6, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P274D", + "total_work_orders" : 6, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-PN856B", + "total_work_orders" : 6, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-FCV885", + "total_work_orders" : 6, + "total_cost" : 6.6291354E7, + "avg_cost" : 11048559.000000000000 + }, + { + "location" : "00CHA-BW802B", + "total_work_orders" : 6, + "total_cost" : 5.0569534E7, + "avg_cost" : 8428255.666666666667 + }, + { + "location" : "00DMW-PN258", + "total_work_orders" : 6, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-AIX103A", + "total_work_orders" : 6, + "total_cost" : 4.0E8, + "avg_cost" : 66666666.666666666667 + }, + { + "location" : "00RO-P274C", + "total_work_orders" : 6, + "total_cost" : 2950000.0, + "avg_cost" : 491666.666666666667 + }, + { + "location" : "3DP-P781B", + "total_work_orders" : 6, + "total_cost" : 1.538935E8, + "avg_cost" : 25648916.666666666667 + }, + { + "location" : "3AI-Y503B", + "total_work_orders" : 6, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P170A", + "total_work_orders" : 6, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-P020A", + "total_work_orders" : 6, + "total_cost" : 4.22264453E8, + "avg_cost" : 70377408.833333333333 + }, + { + "location" : "00RO-F152A", + "total_work_orders" : 6, + "total_cost" : 2.679429E8, + "avg_cost" : 44657150.000000000000 + }, + { + "location" : "00RO-SRP120A", + "total_work_orders" : 6, + "total_cost" : 1.17494571E8, + "avg_cost" : 19582428.500000000000 + }, + { + "location" : "00DS-CY851B", + "total_work_orders" : 6, + "total_cost" : 9.425E7, + "avg_cost" : 15708333.333333333333 + }, + { + "location" : "3AI-Y503R", + "total_work_orders" : 6, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-CY871", + "total_work_orders" : 6, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-P952A", + "total_work_orders" : 6, + "total_cost" : 5646554.0, + "avg_cost" : 941092.333333333333 + }, + { + "location" : "00APC-PD818", + "total_work_orders" : 6, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ATT-TCV506", + "total_work_orders" : 6, + "total_cost" : 2.0, + "avg_cost" : 0.33333333333333333333 + }, + { + "location" : "00DS-W983B", + "total_work_orders" : 6, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-XR804", + "total_work_orders" : 6, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y512L", + "total_work_orders" : 6, + "total_cost" : 3.68176012E8, + "avg_cost" : 61362668.666666666667 + }, + { + "location" : "3GG-AX853", + "total_work_orders" : 6, + "total_cost" : 3.06457635E8, + "avg_cost" : 51076272.500000000000 + }, + { + "location" : "00RO-P274B", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00ACR-C001D", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y507B", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-W989", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-TE823A", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y551B", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-P802A", + "total_work_orders" : 5, + "total_cost" : 570000.0, + "avg_cost" : 114000.000000000000 + }, + { + "location" : "00RO-P130D", + "total_work_orders" : 5, + "total_cost" : 1.6884E7, + "avg_cost" : 3376800.000000000000 + }, + { + "location" : "3AI-Y502L", + "total_work_orders" : 5, + "total_cost" : 1588401.0, + "avg_cost" : 317680.200000000000 + }, + { + "location" : "00RO-P180A", + "total_work_orders" : 5, + "total_cost" : 1.087E7, + "avg_cost" : 2174000.000000000000 + }, + { + "location" : "00CHA-MS801A", + "total_work_orders" : 5, + "total_cost" : 5.918E9, + "avg_cost" : 1183600000.00000000 + }, + { + "location" : "00RP-P986B", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-P370A", + "total_work_orders" : 5, + "total_cost" : 1.91697E8, + "avg_cost" : 38339400.000000000000 + }, + { + "location" : "3AI-Y510C", + "total_work_orders" : 5, + "total_cost" : 6.0, + "avg_cost" : 1.2000000000000000 + }, + { + "location" : "00RO-P274A", + "total_work_orders" : 5, + "total_cost" : 2.23041665E8, + "avg_cost" : 44608333.000000000000 + }, + { + "location" : "3ABS-AG879A", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-P001A", + "total_work_orders" : 5, + "total_cost" : 7.1883894E7, + "avg_cost" : 14376778.800000000000 + }, + { + "location" : "3GG-TE870", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-PD802", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W876", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-P781F", + "total_work_orders" : 5, + "total_cost" : 1.52986E8, + "avg_cost" : 30597200.000000000000 + }, + { + "location" : "3GG-F854A", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PN711D", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-FCV878", + "total_work_orders" : 5, + "total_cost" : 2.9775E8, + "avg_cost" : 59550000.000000000000 + }, + { + "location" : "00RP-W958A", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P234B", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-PN505", + "total_work_orders" : 5, + "total_cost" : 4008888.0, + "avg_cost" : 801777.600000000000 + }, + { + "location" : "00RP-FE856B1", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-F851", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-TE914A", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHB-LBX803A", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00SCR-Z001", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-W853", + "total_work_orders" : 5, + "total_cost" : 1.28205E7, + "avg_cost" : 2564100.000000000000 + }, + { + "location" : "00RO-P130B", + "total_work_orders" : 5, + "total_cost" : 155250.0, + "avg_cost" : 31050.000000000000 + }, + { + "location" : "3TR-F307", + "total_work_orders" : 5, + "total_cost" : 5300000.0, + "avg_cost" : 1060000.000000000000 + }, + { + "location" : "3CW-P010B", + "total_work_orders" : 5, + "total_cost" : 5.4458E8, + "avg_cost" : 108916000.000000000000 + }, + { + "location" : "00CHA-MB803A", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P255D", + "total_work_orders" : 5, + "total_cost" : 4.8453E7, + "avg_cost" : 9690600.000000000000 + }, + { + "location" : "3GG-M801A", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-TE812A", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-AG122D", + "total_work_orders" : 5, + "total_cost" : 3.84E7, + "avg_cost" : 7680000.000000000000 + }, + { + "location" : "3GG-AX511B", + "total_work_orders" : 5, + "total_cost" : 4.57086784E8, + "avg_cost" : 91417356.800000000000 + }, + { + "location" : "00RO-F152B", + "total_work_orders" : 5, + "total_cost" : 8.789646E7, + "avg_cost" : 17579292.000000000000 + }, + { + "location" : "3CO-P001B", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y506L", + "total_work_orders" : 5, + "total_cost" : 7.68908E7, + "avg_cost" : 15378160.000000000000 + }, + { + "location" : "3GG-PN856A", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00MOB-WL012", + "total_work_orders" : 5, + "total_cost" : 2.8996102E7, + "avg_cost" : 5799220.400000000000 + }, + { + "location" : "00RO-AIX109B", + "total_work_orders" : 5, + "total_cost" : 2.58075E9, + "avg_cost" : 516150000.00000000 + }, + { + "location" : "3CW-DPGS002", + "total_work_orders" : 5, + "total_cost" : 7.4762442E7, + "avg_cost" : 14952488.400000000000 + }, + { + "location" : "00RO-P255A", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN355", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GMC-CAB005", + "total_work_orders" : 5, + "total_cost" : 6706000.0, + "avg_cost" : 1341200.000000000000 + }, + { + "location" : "00DS-W983A", + "total_work_orders" : 5, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-W982B", + "total_work_orders" : 4, + "total_cost" : 6.1317409E7, + "avg_cost" : 15329352.250000000000 + }, + { + "location" : "00CHA-LBX802B", + "total_work_orders" : 4, + "total_cost" : 1.984422E7, + "avg_cost" : 4961055.000000000000 + }, + { + "location" : "3DP-PN711B", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y501R", + "total_work_orders" : 4, + "total_cost" : 1.0, + "avg_cost" : 0.25000000000000000000 + }, + { + "location" : "3ABS-W869", + "total_work_orders" : 4, + "total_cost" : 1930000.0, + "avg_cost" : 482500.000000000000 + }, + { + "location" : "00CL-P002B", + "total_work_orders" : 4, + "total_cost" : 6.3287153E7, + "avg_cost" : 15821788.250000000000 + }, + { + "location" : "00DMW-PN356", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-TE012B", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-M801B", + "total_work_orders" : 4, + "total_cost" : 9.9645455E7, + "avg_cost" : 24911363.750000000000 + }, + { + "location" : "00RO-P130A", + "total_work_orders" : 4, + "total_cost" : 2.9901282E8, + "avg_cost" : 74753205.000000000000 + }, + { + "location" : "00RO-P255B", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W872", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-SRP120D", + "total_work_orders" : 4, + "total_cost" : 8076200.0, + "avg_cost" : 2019050.000000000000 + }, + { + "location" : "00DS-PIX851B", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-HO701E", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y503I", + "total_work_orders" : 4, + "total_cost" : 1.0, + "avg_cost" : 0.25000000000000000000 + }, + { + "location" : "00APC-PD982", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APE-TF803A", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-DPIX002A", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-AG122C", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00OA-TE855A", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-TE852C", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-PIX902", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "4AF-F501B", + "total_work_orders" : 4, + "total_cost" : 5.0386E7, + "avg_cost" : 12596500.000000000000 + }, + { + "location" : "00RO-PN110A", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W901C", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-FIX101", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GSS-PCV002", + "total_work_orders" : 4, + "total_cost" : 2.433397E7, + "avg_cost" : 6083492.500000000000 + }, + { + "location" : "00DS-P860A", + "total_work_orders" : 4, + "total_cost" : 3.3235768E7, + "avg_cost" : 8308942.000000000000 + }, + { + "location" : "00RO-P160D", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DCS-LSD001", + "total_work_orders" : 4, + "total_cost" : 3.5730392E8, + "avg_cost" : 89325980.000000000000 + }, + { + "location" : "00RO-P234A", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-MB807B", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-Z404", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P170B", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-PN511B", + "total_work_orders" : 4, + "total_cost" : 2990000.0, + "avg_cost" : 747500.000000000000 + }, + { + "location" : "00DMW-PN131A", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W896A", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-P995B", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P340B", + "total_work_orders" : 4, + "total_cost" : 2.2142075E7, + "avg_cost" : 5535518.750000000000 + }, + { + "location" : "00CHA", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-F880A", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AF-FCV501A", + "total_work_orders" : 4, + "total_cost" : 3.4046004E7, + "avg_cost" : 8511501.000000000000 + }, + { + "location" : "00RP-W987A", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-F875A", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-TE812B", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN101D", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W853", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3LPB-PCV010B", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P130C", + "total_work_orders" : 4, + "total_cost" : 3.0215088E8, + "avg_cost" : 75537720.000000000000 + }, + { + "location" : "00RP-P952B", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W913A", + "total_work_orders" : 4, + "total_cost" : 6.1762909E7, + "avg_cost" : 15440727.250000000000 + }, + { + "location" : "00DMW-PN123A", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-AG950", + "total_work_orders" : 4, + "total_cost" : 6.622E7, + "avg_cost" : 16555000.000000000000 + }, + { + "location" : "00DMW-P370B", + "total_work_orders" : 4, + "total_cost" : 6.355E7, + "avg_cost" : 15887500.000000000000 + }, + { + "location" : "00APC-PD812", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P110B", + "total_work_orders" : 4, + "total_cost" : 1.18528302E8, + "avg_cost" : 29632075.500000000000 + }, + { + "location" : "00RO-P160B", + "total_work_orders" : 4, + "total_cost" : 1.41779152E8, + "avg_cost" : 35444788.000000000000 + }, + { + "location" : "3AL-PN511A", + "total_work_orders" : 4, + "total_cost" : 4368000.0, + "avg_cost" : 1092000.000000000000 + }, + { + "location" : "00RP-P991A", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y515R", + "total_work_orders" : 4, + "total_cost" : 1.795425E7, + "avg_cost" : 4488562.500000000000 + }, + { + "location" : "3AI-Y507R", + "total_work_orders" : 4, + "total_cost" : 1.0, + "avg_cost" : 0.25000000000000000000 + }, + { + "location" : "00MOB-BD007", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHB-LBX803B", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN358", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P340A", + "total_work_orders" : 4, + "total_cost" : 2.2E7, + "avg_cost" : 5500000.000000000000 + }, + { + "location" : "3ABS-W887", + "total_work_orders" : 4, + "total_cost" : 984733.0, + "avg_cost" : 246183.250000000000 + }, + { + "location" : "00CL-LIX001B", + "total_work_orders" : 4, + "total_cost" : 2.1571971E7, + "avg_cost" : 5392992.750000000000 + }, + { + "location" : "00CL-SV131B", + "total_work_orders" : 4, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-FCV881", + "total_work_orders" : 4, + "total_cost" : 7992050.0, + "avg_cost" : 1998012.500000000000 + }, + { + "location" : "00FF-FS911", + "total_work_orders" : 3, + "total_cost" : 4627250.0, + "avg_cost" : 1542416.666666666667 + }, + { + "location" : "3ATT-PN501", + "total_work_orders" : 3, + "total_cost" : 2.32529E7, + "avg_cost" : 7750966.666666666667 + }, + { + "location" : "00RP-LIX985", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00OA-W857C", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-F852", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-P931A", + "total_work_orders" : 3, + "total_cost" : 1.4810364E7, + "avg_cost" : 4936788.000000000000 + }, + { + "location" : "00RP-P995A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P195A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PN711C", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V089D", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y505H", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-M935", + "total_work_orders" : 3, + "total_cost" : 1.3E7, + "avg_cost" : 4333333.333333333333 + }, + { + "location" : "00CL-LS001C", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3APE-MV852", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P140A", + "total_work_orders" : 3, + "total_cost" : 1.085E7, + "avg_cost" : 3616666.666666666667 + }, + { + "location" : "3MS-W001B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-W900B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-TE531A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-AG879D", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3EVM-AX801", + "total_work_orders" : 3, + "total_cost" : 8.99614177E8, + "avg_cost" : 299871392.33333333 + }, + { + "location" : "00CL-V052", + "total_work_orders" : 3, + "total_cost" : 4.01E7, + "avg_cost" : 13366666.666666666667 + }, + { + "location" : "00DMW-J120A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3MT-SE001G", + "total_work_orders" : 3, + "total_cost" : 2.0018049E8, + "avg_cost" : 66726830.000000000000 + }, + { + "location" : "3ABS-W855", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P110D", + "total_work_orders" : 3, + "total_cost" : 2.02917E7, + "avg_cost" : 6763900.000000000000 + }, + { + "location" : "3CW-LBX004A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FF-PAN501", + "total_work_orders" : 3, + "total_cost" : 1.61505E8, + "avg_cost" : 53835000.000000000000 + }, + { + "location" : "00RP-P986A", + "total_work_orders" : 3, + "total_cost" : 6180000.0, + "avg_cost" : 2060000.000000000000 + }, + { + "location" : "00PRW-M", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y505L", + "total_work_orders" : 3, + "total_cost" : 7.5498E7, + "avg_cost" : 25166000.000000000000 + }, + { + "location" : "00RO-P126D", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00LSH-F901", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CCCW-P010B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FO-LIX802", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-FCV918", + "total_work_orders" : 3, + "total_cost" : 5.93240705E8, + "avg_cost" : 197746901.66666667 + }, + { + "location" : "3ABS-W867", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y551A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-SV701F", + "total_work_orders" : 3, + "total_cost" : 2.1263383E7, + "avg_cost" : 7087794.333333333333 + }, + { + "location" : "00FF-Z401", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-LIX931", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AS-W501", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-P011A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PN711A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-F853A", + "total_work_orders" : 3, + "total_cost" : 4399000.0, + "avg_cost" : 1466333.333333333333 + }, + { + "location" : "3EG-E001", + "total_work_orders" : 3, + "total_cost" : 3.7663949E7, + "avg_cost" : 12554649.666666666667 + }, + { + "location" : "3ABS-W901B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3APC-LV811P1", + "total_work_orders" : 3, + "total_cost" : 1900000.0, + "avg_cost" : 633333.333333333333 + }, + { + "location" : "00RO-FCV102F", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-F501A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P160C", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-VE502A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-LIX853", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-TE027A", + "total_work_orders" : 3, + "total_cost" : 5.3592E7, + "avg_cost" : 17864000.000000000000 + }, + { + "location" : "3GG-TE825B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-TE825A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-V005A", + "total_work_orders" : 3, + "total_cost" : 5168936.0, + "avg_cost" : 1722978.666666666667 + }, + { + "location" : "00LSH-M851", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-F801B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL", + "total_work_orders" : 3, + "total_cost" : 4722200.0, + "avg_cost" : 1574066.666666666667 + }, + { + "location" : "00RP-W987B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-V900", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-PD815", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN340", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-BM731A", + "total_work_orders" : 3, + "total_cost" : 1196000.0, + "avg_cost" : 398666.666666666667 + }, + { + "location" : "00LSH-SU801", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3EHB-P010A", + "total_work_orders" : 3, + "total_cost" : 2.593208E7, + "avg_cost" : 8644026.666666666667 + }, + { + "location" : "3DP-SV701A", + "total_work_orders" : 3, + "total_cost" : 4450000.0, + "avg_cost" : 1483333.333333333333 + }, + { + "location" : "00RO-P320B", + "total_work_orders" : 3, + "total_cost" : 5.2243016E7, + "avg_cost" : 17414338.666666666667 + }, + { + "location" : "00DMW-V251", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P290C", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-PAN811", + "total_work_orders" : 3, + "total_cost" : 1.061019E7, + "avg_cost" : 3536730.000000000000 + }, + { + "location" : "00RP-W958B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00OA-W855C", + "total_work_orders" : 3, + "total_cost" : 95332.0, + "avg_cost" : 31777.333333333333 + }, + { + "location" : "00RP-TE876", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3TR-F305", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-T851", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-TE704C", + "total_work_orders" : 3, + "total_cost" : 2.63E7, + "avg_cost" : 8766666.666666666667 + }, + { + "location" : "00DMW-F360B", + "total_work_orders" : 3, + "total_cost" : 8.41674E7, + "avg_cost" : 28055800.000000000000 + }, + { + "location" : "3ESP-CAB827", + "total_work_orders" : 3, + "total_cost" : 1.49E7, + "avg_cost" : 4966666.666666666667 + }, + { + "location" : "00RO-FIX102E", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-TE851", + "total_work_orders" : 3, + "total_cost" : 5.2254E7, + "avg_cost" : 17418000.000000000000 + }, + { + "location" : "00DS-P902B", + "total_work_orders" : 3, + "total_cost" : 5.8403936E7, + "avg_cost" : 19467978.666666666667 + }, + { + "location" : "3GG-F801A", + "total_work_orders" : 3, + "total_cost" : 3228308.0, + "avg_cost" : 1076102.666666666667 + }, + { + "location" : "00DMW-P110B", + "total_work_orders" : 3, + "total_cost" : 7650000.0, + "avg_cost" : 2550000.000000000000 + }, + { + "location" : "3DP-PN721B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN107E", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-FS001B", + "total_work_orders" : 3, + "total_cost" : 8333500.0, + "avg_cost" : 2777833.333333333333 + }, + { + "location" : "00RO-P110C", + "total_work_orders" : 3, + "total_cost" : 5509434.0, + "avg_cost" : 1836478.000000000000 + }, + { + "location" : "3BAD-PAN501", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-LIX106", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-PIX851A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-LIX311", + "total_work_orders" : 3, + "total_cost" : 4.08135E7, + "avg_cost" : 13604500.000000000000 + }, + { + "location" : "00RP-W955A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-CAB210", + "total_work_orders" : 3, + "total_cost" : 1.20715E8, + "avg_cost" : 40238333.333333333333 + }, + { + "location" : "00RO-CAB285", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W895C", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-DPS878", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN122A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-P010A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00LSH-M852", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BDW-LI501B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-T330", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P180B", + "total_work_orders" : 3, + "total_cost" : 7650000.0, + "avg_cost" : 2550000.000000000000 + }, + { + "location" : "3AI-Y501H", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-T975", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN101B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-CVT711B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-DPIX702F", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AF-DPX501A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AF-TE533A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-M501A", + "total_work_orders" : 3, + "total_cost" : 3.4174E8, + "avg_cost" : 113913333.333333333333 + }, + { + "location" : "3LOS-P010A", + "total_work_orders" : 3, + "total_cost" : 1474141.0, + "avg_cost" : 491380.333333333333 + }, + { + "location" : "00RO-FCV102C", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3EHS-P010A", + "total_work_orders" : 3, + "total_cost" : 1.9588403E7, + "avg_cost" : 6529467.666666666667 + }, + { + "location" : "00FO-P803B", + "total_work_orders" : 3, + "total_cost" : 2.8978348E7, + "avg_cost" : 9659449.333333333333 + }, + { + "location" : "00CL-SV132A", + "total_work_orders" : 3, + "total_cost" : 6025000.0, + "avg_cost" : 2008333.333333333333 + }, + { + "location" : "3GG-H870", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00OA-TE854A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "4PHT-E", + "total_work_orders" : 3, + "total_cost" : 5350000.0, + "avg_cost" : 1783333.333333333333 + }, + { + "location" : "00RP-W955B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y514R", + "total_work_orders" : 3, + "total_cost" : 1.713285E7, + "avg_cost" : 5710950.000000000000 + }, + { + "location" : "3BDW-LG501A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-PIX977", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-CAB225C", + "total_work_orders" : 3, + "total_cost" : 2.16558225E9, + "avg_cost" : 721860750.00000000 + }, + { + "location" : "3GG-M875A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BDW-LI501A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN102A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y517A", + "total_work_orders" : 3, + "total_cost" : 7.0, + "avg_cost" : 2.3333333333333333 + }, + { + "location" : "00CJ-JF01", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y514B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-LS118", + "total_work_orders" : 3, + "total_cost" : 5.63615E7, + "avg_cost" : 18787166.666666666667 + }, + { + "location" : "00RO-PN104D", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-P802B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-PAN858", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-PD813", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y505B", + "total_work_orders" : 3, + "total_cost" : 9.04673162E8, + "avg_cost" : 301557720.66666667 + }, + { + "location" : "3GG-TE811B", + "total_work_orders" : 3, + "total_cost" : 1.533798E7, + "avg_cost" : 5112660.000000000000 + }, + { + "location" : "00RP-AG985", + "total_work_orders" : 3, + "total_cost" : 2235000.0, + "avg_cost" : 745000.000000000000 + }, + { + "location" : "3AI-Y502B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN107F", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00OA-W858A", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-M936", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-FCV511E", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-P937B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P300C", + "total_work_orders" : 3, + "total_cost" : 1.00596395E8, + "avg_cost" : 33532131.666666666667 + }, + { + "location" : "00RO-P290B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AH-H501B", + "total_work_orders" : 3, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V527C", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN189B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-OWH003", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V030C", + "total_work_orders" : 2, + "total_cost" : 4.6E7, + "avg_cost" : 23000000.000000000000 + }, + { + "location" : "00CL-V143", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APE-TF802A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-PD811", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FO-FIX801", + "total_work_orders" : 2, + "total_cost" : 4.711325E8, + "avg_cost" : 235566250.00000000 + }, + { + "location" : "3GG-P878B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P230A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-LS851A", + "total_work_orders" : 2, + "total_cost" : 1950000.0, + "avg_cost" : 975000.000000000000 + }, + { + "location" : "3ABS-M879B", + "total_work_orders" : 2, + "total_cost" : 1321614.0, + "avg_cost" : 660807.000000000000 + }, + { + "location" : "3AL-PN701E", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3MS-PAN501B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P234C", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CRH-PCV001", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-T120D", + "total_work_orders" : 2, + "total_cost" : 2.5973571E7, + "avg_cost" : 12986785.500000000000 + }, + { + "location" : "00RP-DX979", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-HO701A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PIX127C", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-TE887", + "total_work_orders" : 2, + "total_cost" : 1.6912071E7, + "avg_cost" : 8456035.500000000000 + }, + { + "location" : "3ABS-V855D", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AF-F501B", + "total_work_orders" : 2, + "total_cost" : 1.21297914E8, + "avg_cost" : 60648957.000000000000 + }, + { + "location" : "00SSB-EV011", + "total_work_orders" : 2, + "total_cost" : 1.290582E9, + "avg_cost" : 645291000.00000000 + }, + { + "location" : "00RO-PN115C", + "total_work_orders" : 2, + "total_cost" : 5.76645E8, + "avg_cost" : 288322500.00000000 + }, + { + "location" : "3ESP-RD801", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-DPIX852", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00ACR-M001B", + "total_work_orders" : 2, + "total_cost" : 2765950.0, + "avg_cost" : 1382975.000000000000 + }, + { + "location" : "00SSB-EV002", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-PAN861", + "total_work_orders" : 2, + "total_cost" : 1.308E7, + "avg_cost" : 6540000.000000000000 + }, + { + "location" : "00DMW-PN151A", + "total_work_orders" : 2, + "total_cost" : 2.053E7, + "avg_cost" : 10265000.000000000000 + }, + { + "location" : "3ABS-W856", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3EHS-DPIX001A", + "total_work_orders" : 2, + "total_cost" : 2.2557411E7, + "avg_cost" : 11278705.500000000000 + }, + { + "location" : "00RO-V111B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V113A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-W978A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-T240", + "total_work_orders" : 2, + "total_cost" : 2.35E7, + "avg_cost" : 11750000.000000000000 + }, + { + "location" : "3FW-FCV001", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-LG001A", + "total_work_orders" : 2, + "total_cost" : 2.3710896E7, + "avg_cost" : 11855448.000000000000 + }, + { + "location" : "00RO-PN112C", + "total_work_orders" : 2, + "total_cost" : 5.16E7, + "avg_cost" : 25800000.000000000000 + }, + { + "location" : "3CW-PG011A", + "total_work_orders" : 2, + "total_cost" : 2.8432254E7, + "avg_cost" : 14216127.000000000000 + }, + { + "location" : "00APE-MV803A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-LIX851", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-PAN501A", + "total_work_orders" : 2, + "total_cost" : 3.4254E7, + "avg_cost" : 17127000.000000000000 + }, + { + "location" : "3AN-F502", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-CAB230B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SCR-PIS001", + "total_work_orders" : 2, + "total_cost" : 1986600.0, + "avg_cost" : 993300.000000000000 + }, + { + "location" : "3AI-M503L", + "total_work_orders" : 2, + "total_cost" : 7.5248E7, + "avg_cost" : 37624000.000000000000 + }, + { + "location" : "00DMW-PN256", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3TR-F301", + "total_work_orders" : 2, + "total_cost" : 2.56940398E8, + "avg_cost" : 128470199.000000000000 + }, + { + "location" : "00FO-PG802B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y508A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-V855C", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-XR813", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PN711E", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-AIX103B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-VE501B", + "total_work_orders" : 2, + "total_cost" : 4.5132791E7, + "avg_cost" : 22566395.500000000000 + }, + { + "location" : "3GG-AX511A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-S150A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-M711A", + "total_work_orders" : 2, + "total_cost" : 4.69507263E8, + "avg_cost" : 234753631.50000000 + }, + { + "location" : "00DMW-T310", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-S005A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-BM741D", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SCW-P001B", + "total_work_orders" : 2, + "total_cost" : 1251756.0, + "avg_cost" : 625878.000000000000 + }, + { + "location" : "3AI-Y503H", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P290A", + "total_work_orders" : 2, + "total_cost" : 6.02406E7, + "avg_cost" : 30120300.000000000000 + }, + { + "location" : "00RO-P300A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BAD-V502B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-LV006A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-B702F", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-AX851B", + "total_work_orders" : 2, + "total_cost" : 1.223664E8, + "avg_cost" : 61183200.000000000000 + }, + { + "location" : "00RP-W888", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00LSH-PAN865", + "total_work_orders" : 2, + "total_cost" : 8295000.0, + "avg_cost" : 4147500.000000000000 + }, + { + "location" : "00FF-FS827", + "total_work_orders" : 2, + "total_cost" : 6730240.0, + "avg_cost" : 3365120.000000000000 + }, + { + "location" : "3APC-LV501A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-DPS701E", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-DPIX702E", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-F870A", + "total_work_orders" : 2, + "total_cost" : 2.5146E7, + "avg_cost" : 12573000.000000000000 + }, + { + "location" : "3CW-W003A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-M856A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-HRK823", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-FIX102B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BDW-LX502B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-M160D", + "total_work_orders" : 2, + "total_cost" : 6.0E7, + "avg_cost" : 30000000.000000000000 + }, + { + "location" : "00DMW-PN160A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CO-PN001B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BAD-P511B", + "total_work_orders" : 2, + "total_cost" : 4.24008906E8, + "avg_cost" : 212004453.00000000 + }, + { + "location" : "3BAD-V514", + "total_work_orders" : 2, + "total_cost" : 1.0, + "avg_cost" : 0.50000000000000000000 + }, + { + "location" : "3BDW-W602", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-FS813", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W851", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN106D", + "total_work_orders" : 2, + "total_cost" : 7.45E7, + "avg_cost" : 37250000.000000000000 + }, + { + "location" : "3GG-X856", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-DPS811A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-PN856", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-SWT801", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN120A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V940", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-FS801A", + "total_work_orders" : 2, + "total_cost" : 2.70000001E8, + "avg_cost" : 135000000.500000000000 + }, + { + "location" : "3MS-W002B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BAD-FX501", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-HRK805", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-PD814", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-MPB901", + "total_work_orders" : 2, + "total_cost" : 1.398459E7, + "avg_cost" : 6992295.000000000000 + }, + { + "location" : "00DMW-PN395", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN102E", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-FIX887", + "total_work_orders" : 2, + "total_cost" : 1.56025E8, + "avg_cost" : 78012500.000000000000 + }, + { + "location" : "3LOT-DPIX001A", + "total_work_orders" : 2, + "total_cost" : 7.17263741E8, + "avg_cost" : 358631870.50000000 + }, + { + "location" : "00DMW-T340", + "total_work_orders" : 2, + "total_cost" : 936364.0, + "avg_cost" : 468182.000000000000 + }, + { + "location" : "3AF-TE534A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-TE813A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3LOT-F120A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SO-DPIX003", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00IA-DPS001B", + "total_work_orders" : 2, + "total_cost" : 1.10681463E8, + "avg_cost" : 55340731.500000000000 + }, + { + "location" : "3DP-P781D", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-PG002A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-V701E", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-W977A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-XR801", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-AIX105", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-M011A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN124A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-PIX856", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-STR001", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PN741C", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ATT-HV001", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN105A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-FE856A1", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ATT-W501", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-FS832", + "total_work_orders" : 2, + "total_cost" : 2.045994E7, + "avg_cost" : 10229970.000000000000 + }, + { + "location" : "3ABS-W933A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AS-V201", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-LIX885", + "total_work_orders" : 2, + "total_cost" : 9.4504E7, + "avg_cost" : 47252000.000000000000 + }, + { + "location" : "00RP-DX837", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W852", + "total_work_orders" : 2, + "total_cost" : 3168000.0, + "avg_cost" : 1584000.000000000000 + }, + { + "location" : "3MS-SV501A", + "total_work_orders" : 2, + "total_cost" : 1.87E7, + "avg_cost" : 9350000.000000000000 + }, + { + "location" : "3GG-P877A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-V860", + "total_work_orders" : 2, + "total_cost" : 3005436.0, + "avg_cost" : 1502718.000000000000 + }, + { + "location" : "3TR-F310", + "total_work_orders" : 2, + "total_cost" : 8688683.0, + "avg_cost" : 4344341.500000000000 + }, + { + "location" : "3DP-V722C", + "total_work_orders" : 2, + "total_cost" : 3315000.0, + "avg_cost" : 1657500.000000000000 + }, + { + "location" : "3GG-TE827A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APE-TF803B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DCS-CAB003A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-FCV511B", + "total_work_orders" : 2, + "total_cost" : 3.7002179E7, + "avg_cost" : 18501089.500000000000 + }, + { + "location" : "00FAD-CAB807", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-P300", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-PN501", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-M871", + "total_work_orders" : 2, + "total_cost" : 153750.0, + "avg_cost" : 76875.000000000000 + }, + { + "location" : "00APC-PD803", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-CVT701D", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3EHS-TG001", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AF-TE532B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-MPB872", + "total_work_orders" : 2, + "total_cost" : 1.408E8, + "avg_cost" : 70400000.000000000000 + }, + { + "location" : "00RO-PN105F", + "total_work_orders" : 2, + "total_cost" : 3.80952E7, + "avg_cost" : 19047600.000000000000 + }, + { + "location" : "3ATT-PN001", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-FCV102D", + "total_work_orders" : 2, + "total_cost" : 3.20184E7, + "avg_cost" : 16009200.000000000000 + }, + { + "location" : "3AI-Y507C", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y506I", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y504B", + "total_work_orders" : 2, + "total_cost" : 6.0, + "avg_cost" : 3.0000000000000000 + }, + { + "location" : "00RP-T950", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-Z110C", + "total_work_orders" : 2, + "total_cost" : 2.10085256E8, + "avg_cost" : 105042628.000000000000 + }, + { + "location" : "00FF-LBX835", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y516R", + "total_work_orders" : 2, + "total_cost" : 1.713285E7, + "avg_cost" : 8566425.000000000000 + }, + { + "location" : "3SCR-S001A", + "total_work_orders" : 2, + "total_cost" : 5.44996E7, + "avg_cost" : 27249800.000000000000 + }, + { + "location" : "3TR-F303", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-VF851", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-PIX851A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-TE824A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-P781A", + "total_work_orders" : 2, + "total_cost" : 750000.0, + "avg_cost" : 375000.000000000000 + }, + { + "location" : "00RO-PN104C", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-PD821", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN121A", + "total_work_orders" : 2, + "total_cost" : 1.67032E7, + "avg_cost" : 8351600.000000000000 + }, + { + "location" : "3SO-DPIX001", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P140B", + "total_work_orders" : 2, + "total_cost" : 156250.0, + "avg_cost" : 78125.000000000000 + }, + { + "location" : "3MS-TE003B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CCCW-TE001", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-FCV302", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y504H", + "total_work_orders" : 2, + "total_cost" : 3.211E7, + "avg_cost" : 16055000.000000000000 + }, + { + "location" : "00RO-AIX111C", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3TR-F302", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-AIX103C", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN111D", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-V882A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-PN701B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3LOT-DPIX001B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-W001B", + "total_work_orders" : 2, + "total_cost" : 407400.0, + "avg_cost" : 203700.000000000000 + }, + { + "location" : "3EHB-P020", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-M810A", + "total_work_orders" : 2, + "total_cost" : 1.43E7, + "avg_cost" : 7150000.000000000000 + }, + { + "location" : "00CL-LS001B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-J150B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W901A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P261A", + "total_work_orders" : 2, + "total_cost" : 4.85E7, + "avg_cost" : 24250000.000000000000 + }, + { + "location" : "00FF-FS815", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W895B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-V878", + "total_work_orders" : 2, + "total_cost" : 2.7E7, + "avg_cost" : 13500000.000000000000 + }, + { + "location" : "3ABS-V878", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-PN503", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P272A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3TR-TF001", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FO-P802A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-V723E", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BAD-LGS501", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-PN512B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-V215B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-AG970", + "total_work_orders" : 2, + "total_cost" : 7.63E7, + "avg_cost" : 38150000.000000000000 + }, + { + "location" : "3ABS-W911A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-TE814B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-PN854", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-LG001B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-FS826", + "total_work_orders" : 2, + "total_cost" : 3.312665E7, + "avg_cost" : 16563325.000000000000 + }, + { + "location" : "00RO-PN111B", + "total_work_orders" : 2, + "total_cost" : 7.02E7, + "avg_cost" : 35100000.000000000000 + }, + { + "location" : "3ABS-W874", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-FS8251", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-FS830", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AF-TCV752B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-CAB225A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-M878A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3EHS-DPIX001B", + "total_work_orders" : 2, + "total_cost" : 2.2557411E7, + "avg_cost" : 11278705.500000000000 + }, + { + "location" : "3ABS-W866", + "total_work_orders" : 2, + "total_cost" : 1.815E7, + "avg_cost" : 9075000.000000000000 + }, + { + "location" : "3AL-PCV501A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN115B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y506B", + "total_work_orders" : 2, + "total_cost" : 5.755006E7, + "avg_cost" : 28775030.000000000000 + }, + { + "location" : "3AI-PN512", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-MB802A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-F360A", + "total_work_orders" : 2, + "total_cost" : 2.8588278E7, + "avg_cost" : 14294139.000000000000 + }, + { + "location" : "3GEN-M101A", + "total_work_orders" : 2, + "total_cost" : 197450.0, + "avg_cost" : 98725.000000000000 + }, + { + "location" : "00RO-P330A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-PG004A", + "total_work_orders" : 2, + "total_cost" : 2.12E7, + "avg_cost" : 10600000.000000000000 + }, + { + "location" : "3AI-Y511B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-W501", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-PAN824", + "total_work_orders" : 2, + "total_cost" : 2.08572E8, + "avg_cost" : 104286000.000000000000 + }, + { + "location" : "3GG-DPG852", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-V082A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00LSH-DC901", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y510R", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-TV107", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GEN-GM001", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PN731D", + "total_work_orders" : 2, + "total_cost" : 1.0857E8, + "avg_cost" : 54285000.000000000000 + }, + { + "location" : "3CCCW-P090", + "total_work_orders" : 2, + "total_cost" : 184902.0, + "avg_cost" : 92451.000000000000 + }, + { + "location" : "3EG-PAN002", + "total_work_orders" : 2, + "total_cost" : 644000.0, + "avg_cost" : 322000.000000000000 + }, + { + "location" : "3ABS-W870", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00ACR-V305B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P251A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-V875", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-TF803B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-DPS811B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y508L", + "total_work_orders" : 2, + "total_cost" : 3.087E7, + "avg_cost" : 15435000.000000000000 + }, + { + "location" : "00FF-V803", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-W901A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-MB809B", + "total_work_orders" : 2, + "total_cost" : 3.19E7, + "avg_cost" : 15950000.000000000000 + }, + { + "location" : "00RO-SC282", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PN741B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y512R", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-LBX831", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PN721D", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3HPB-PCV010", + "total_work_orders" : 2, + "total_cost" : 4.43797736E8, + "avg_cost" : 221898868.00000000 + }, + { + "location" : "3CAE-PIX001A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-PN851", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-V870", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ATT-PN503", + "total_work_orders" : 2, + "total_cost" : 2.3714E7, + "avg_cost" : 11857000.000000000000 + }, + { + "location" : "4AN-M501", + "total_work_orders" : 2, + "total_cost" : 6.378695E8, + "avg_cost" : 318934750.00000000 + }, + { + "location" : "3DCS-CAB012", + "total_work_orders" : 2, + "total_cost" : 2.24E7, + "avg_cost" : 11200000.000000000000 + }, + { + "location" : "3BDW-LG501B", + "total_work_orders" : 2, + "total_cost" : 6.183429E7, + "avg_cost" : 30917145.000000000000 + }, + { + "location" : "3LOS-M010B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W919", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CCCW-V975", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3TR-F306", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-FIX878", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-T001A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-TE731B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-W895A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-LIX118B", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V113C", + "total_work_orders" : 2, + "total_cost" : 1.837352E7, + "avg_cost" : 9186760.000000000000 + }, + { + "location" : "3CO-RFV001", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AF-M501A", + "total_work_orders" : 2, + "total_cost" : 2.24442E8, + "avg_cost" : 112221000.000000000000 + }, + { + "location" : "00RP-W957A", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-W921", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-M852", + "total_work_orders" : 2, + "total_cost" : 9.0E7, + "avg_cost" : 45000000.000000000000 + }, + { + "location" : "3AI-Y506C", + "total_work_orders" : 2, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-W897A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-PG004A-RV", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-V280A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00SCR-PAN002", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3MS-SV503B", + "total_work_orders" : 1, + "total_cost" : 2.052501E7, + "avg_cost" : 20525010.000000000000 + }, + { + "location" : "3GG-TE990", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-PCS884B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ATT-V525-A", + "total_work_orders" : 1, + "total_cost" : 1.0, + "avg_cost" : 1.00000000000000000000 + }, + { + "location" : "00RO-P231", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DCS-CO009", + "total_work_orders" : 1, + "total_cost" : 1.48E7, + "avg_cost" : 14800000.000000000000 + }, + { + "location" : "3FW-W501", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-P200A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-P320A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-FIX052A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3APC-LV501B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "WHD", + "total_work_orders" : 1, + "total_cost" : 5.0E7, + "avg_cost" : 50000000.000000000000 + }, + { + "location" : "00FF-EHD879", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-LBX810", + "total_work_orders" : 1, + "total_cost" : 2848590.0, + "avg_cost" : 2848590.000000000000 + }, + { + "location" : "3CO-V291D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-T181", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-X853", + "total_work_orders" : 1, + "total_cost" : 2.45413491E8, + "avg_cost" : 245413491.00000000 + }, + { + "location" : "3GG-F853C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-DPIX012B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-CAB200", + "total_work_orders" : 1, + "total_cost" : 3.93491018E8, + "avg_cost" : 393491018.00000000 + }, + { + "location" : "3CCCW-V538", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-PN801B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V527D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-CVT711C", + "total_work_orders" : 1, + "total_cost" : 2.01721227E8, + "avg_cost" : 201721227.00000000 + }, + { + "location" : "3FW-W005", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-FS701F", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CL-AX001", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-T120B", + "total_work_orders" : 1, + "total_cost" : 5.84304E7, + "avg_cost" : 58430400.000000000000 + }, + { + "location" : "00RP-W889", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-F161A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-TS002B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-CAB105A", + "total_work_orders" : 1, + "total_cost" : 9.1974948E7, + "avg_cost" : 91974948.000000000000 + }, + { + "location" : "00RO-AIX111B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V573A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-PAN501B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V045D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V454A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3LOS-PS002", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BAD-PN501", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-HO701C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-M551A", + "total_work_orders" : 1, + "total_cost" : 92000.0, + "avg_cost" : 92000.000000000000 + }, + { + "location" : "4DP-BM741A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GEN-M211A", + "total_work_orders" : 1, + "total_cost" : 3700000.0, + "avg_cost" : 3700000.000000000000 + }, + { + "location" : "3GG-F804A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y517C", + "total_work_orders" : 1, + "total_cost" : 6.0, + "avg_cost" : 6.0000000000000000 + }, + { + "location" : "3ATT-TCV502B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-LIX115", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-W939A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN255", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-PCS827B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V524C", + "total_work_orders" : 1, + "total_cost" : 4290000.0, + "avg_cost" : 4290000.000000000000 + }, + { + "location" : "3GG-F802A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APE-TF801A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3EHB-T110", + "total_work_orders" : 1, + "total_cost" : 3.062268E7, + "avg_cost" : 30622680.000000000000 + }, + { + "location" : "00RO-PN106C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SCR-DPG001B-IV", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-TE026B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-LG109", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN107D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FO-P801B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-Z001B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y502C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DCS-CAB007A", + "total_work_orders" : 1, + "total_cost" : 9.605544E7, + "avg_cost" : 96055440.000000000000 + }, + { + "location" : "3FW-LIX004C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-PIX957", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-AG925", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-P801B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CCCW-H010B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-CAB105B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-CAB832", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-V855A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3HRH-PIX002A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-Z001D", + "total_work_orders" : 1, + "total_cost" : 7071000.0, + "avg_cost" : 7071000.000000000000 + }, + { + "location" : "3CRH-PCV002", + "total_work_orders" : 1, + "total_cost" : 4.46E7, + "avg_cost" : 44600000.000000000000 + }, + { + "location" : "00RP-TE871", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GSS-F011A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-M001A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-HH811A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y501L", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P190B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CO-V002B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DCS-CAB006A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-PN502A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-XR803", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GMC-CAB006", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-TE818A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-M010B", + "total_work_orders" : 1, + "total_cost" : 6.663E8, + "avg_cost" : 666300000.00000000 + }, + { + "location" : "00CHA-PAN815", + "total_work_orders" : 1, + "total_cost" : 1.0972044E7, + "avg_cost" : 10972044.000000000000 + }, + { + "location" : "3DP-M712D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-PAN855", + "total_work_orders" : 1, + "total_cost" : 3925000.0, + "avg_cost" : 3925000.000000000000 + }, + { + "location" : "00DMW-J150A", + "total_work_orders" : 1, + "total_cost" : 6413120.0, + "avg_cost" : 6413120.000000000000 + }, + { + "location" : "00DMW-AIX150B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-V281A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3OA-FIX861", + "total_work_orders" : 1, + "total_cost" : 4.3633406E7, + "avg_cost" : 43633406.000000000000 + }, + { + "location" : "3ESP-XR810", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-DPS701D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-LBX805", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PAN712F", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-LV001B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-TV108", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CCCW-PIX001", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-FIX918", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00SCR-PAN001", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-V227A", + "total_work_orders" : 1, + "total_cost" : 2.1464E7, + "avg_cost" : 21464000.000000000000 + }, + { + "location" : "00DS-LIX975", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-DPS701E", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PG701F", + "total_work_orders" : 1, + "total_cost" : 1.18E7, + "avg_cost" : 11800000.000000000000 + }, + { + "location" : "00RO-P310A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-PS811A", + "total_work_orders" : 1, + "total_cost" : 1.3518E7, + "avg_cost" : 13518000.000000000000 + }, + { + "location" : "00FF-BE801", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AF-TE536B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-IH806D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00SCR-ZS002", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00SCR-Z005A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-W982A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-LV803A", + "total_work_orders" : 1, + "total_cost" : 4470000.0, + "avg_cost" : 4470000.000000000000 + }, + { + "location" : "00RO-PN104A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-M986B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-V222", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CO-LG001", + "total_work_orders" : 1, + "total_cost" : 4598000.0, + "avg_cost" : 4598000.000000000000 + }, + { + "location" : "3GG-F853B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-PAN825", + "total_work_orders" : 1, + "total_cost" : 1.86618E8, + "avg_cost" : 186618000.000000000000 + }, + { + "location" : "00DS-AG975", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-PD812", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V851", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN160B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PG115B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-W956", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-M879C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-HO701B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CCCW-TG006", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-DPS877", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BDW-SFV606", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V834", + "total_work_orders" : 1, + "total_cost" : 2.0, + "avg_cost" : 2.0000000000000000 + }, + { + "location" : "3DCS-CAB009A", + "total_work_orders" : 1, + "total_cost" : 1.6242E9, + "avg_cost" : 1624200000.00000000 + }, + { + "location" : "3AI-Y508B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V031B", + "total_work_orders" : 1, + "total_cost" : 7.88E7, + "avg_cost" : 78800000.000000000000 + }, + { + "location" : "00RO-T120A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DCS-CAB013A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y501B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AF-FX501B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-PAN802B", + "total_work_orders" : 1, + "total_cost" : 1664761.0, + "avg_cost" : 1664761.000000000000 + }, + { + "location" : "3CCCW-TG511A", + "total_work_orders" : 1, + "total_cost" : 9504000.0, + "avg_cost" : 9504000.000000000000 + }, + { + "location" : "3DP-TE734C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-PAN802", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-PD018", + "total_work_orders" : 1, + "total_cost" : 3650000.0, + "avg_cost" : 3650000.000000000000 + }, + { + "location" : "3ABS-PIX853", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3LOM-TE307", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y505C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-PIX970", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FAD-C811C", + "total_work_orders" : 1, + "total_cost" : 2667600.0, + "avg_cost" : 2667600.000000000000 + }, + { + "location" : "3FW-V229", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG", + "total_work_orders" : 1, + "total_cost" : 2.91525E7, + "avg_cost" : 29152500.000000000000 + }, + { + "location" : "00RO-V587A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-LIX002A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN106F", + "total_work_orders" : 1, + "total_cost" : 8405304.0, + "avg_cost" : 8405304.000000000000 + }, + { + "location" : "3CO-PIX001", + "total_work_orders" : 1, + "total_cost" : 4.2E7, + "avg_cost" : 42000000.000000000000 + }, + { + "location" : "3CAE-P010B", + "total_work_orders" : 1, + "total_cost" : 5799200.0, + "avg_cost" : 5799200.000000000000 + }, + { + "location" : "3GG-TE970", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-FS805", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AF-PN532B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-PIX802A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-LBX203D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-V918", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V432A", + "total_work_orders" : 1, + "total_cost" : 1.00395E8, + "avg_cost" : 100395000.000000000000 + }, + { + "location" : "3SCR-LIX002A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-TF803A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-TE951", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-HRK808", + "total_work_orders" : 1, + "total_cost" : 4450000.0, + "avg_cost" : 4450000.000000000000 + }, + { + "location" : "3BDW-DPIX502B", + "total_work_orders" : 1, + "total_cost" : 4.7529214E7, + "avg_cost" : 47529214.000000000000 + }, + { + "location" : "3CAE-H010B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-LBX834", + "total_work_orders" : 1, + "total_cost" : 2832000.0, + "avg_cost" : 2832000.000000000000 + }, + { + "location" : "3SCR-DPG001A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-LBX203B", + "total_work_orders" : 1, + "total_cost" : 1.6E8, + "avg_cost" : 160000000.000000000000 + }, + { + "location" : "00FF-HRK811", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-SN812", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SO-DPIX002", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-V277", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-PCV501B", + "total_work_orders" : 1, + "total_cost" : 1.81942798E8, + "avg_cost" : 181942798.000000000000 + }, + { + "location" : "00OA-TE852", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-ARV006B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-PG001B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-M200B", + "total_work_orders" : 1, + "total_cost" : 2.7295801E7, + "avg_cost" : 27295801.000000000000 + }, + { + "location" : "3APC-PD921", + "total_work_orders" : 1, + "total_cost" : 962800.0, + "avg_cost" : 962800.000000000000 + }, + { + "location" : "3BFT-HV010B-C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-PAN804", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V305", + "total_work_orders" : 1, + "total_cost" : 893750.0, + "avg_cost" : 893750.000000000000 + }, + { + "location" : "3CCCW-M010A", + "total_work_orders" : 1, + "total_cost" : 4390000.0, + "avg_cost" : 4390000.000000000000 + }, + { + "location" : "00RO-AIX111D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-V259", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-P761A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-FS001A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-LIX366A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-HRK802", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00IA-DPS001A", + "total_work_orders" : 1, + "total_cost" : 5.5984183E7, + "avg_cost" : 55984183.000000000000 + }, + { + "location" : "00RP-T885", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-PN504", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-PD921", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN146A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN367", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-LS701A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-W860", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3TR-TF002A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FAD-M", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BAD-AX501-RV", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V802", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-W903", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y502A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-RD821", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-MB804", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PIX127A-RV-A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-PG936", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-P883A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BFT-ST010B", + "total_work_orders" : 1, + "total_cost" : 6.9771143E8, + "avg_cost" : 697711430.00000000 + }, + { + "location" : "00RO-AIX108C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W921", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-SV701B", + "total_work_orders" : 1, + "total_cost" : 6766607.0, + "avg_cost" : 6766607.000000000000 + }, + { + "location" : "00RP-PG972B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-TE814A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-DPIX851", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-AG851", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AF-TCV502B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-DX896", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-B702D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-TE735B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PN731B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN102B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BAD-M501", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "4ABS-M879A", + "total_work_orders" : 1, + "total_cost" : 450000.0, + "avg_cost" : 450000.000000000000 + }, + { + "location" : "3GG-X855", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-PN511A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AF-PN521A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-TS002A", + "total_work_orders" : 1, + "total_cost" : 1.57124E7, + "avg_cost" : 15712400.000000000000 + }, + { + "location" : "00RO-LS119", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN189A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3APC-PD505", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-PG932A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-V869", + "total_work_orders" : 1, + "total_cost" : 2522520.0, + "avg_cost" : 2522520.000000000000 + }, + { + "location" : "3CW-V007B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3LOT-TE005B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-PD012", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y504C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ATT-V527-A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ATT-TCV503", + "total_work_orders" : 1, + "total_cost" : 1.8202204E7, + "avg_cost" : 18202204.000000000000 + }, + { + "location" : "3DP-V701A", + "total_work_orders" : 1, + "total_cost" : 3100000.0, + "avg_cost" : 3100000.000000000000 + }, + { + "location" : "00RO-PG122C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "4DPB", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-F802B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-SN816", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00SSB-TF010", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-RD835", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00IA-S002B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GEN-M102A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-RD803", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P126A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DCS-CO007C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-VF861", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-PN513", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-SRN886", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PAN712A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3IA-V502", + "total_work_orders" : 1, + "total_cost" : 1.8632166E7, + "avg_cost" : 18632166.000000000000 + }, + { + "location" : "3AF-FX501A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AS-PCV001", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DCS-CO005B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-VE701C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V091D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-W937B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN101A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-W001A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-LIX102", + "total_work_orders" : 1, + "total_cost" : 1.56E7, + "avg_cost" : 15600000.000000000000 + }, + { + "location" : "3DP-M781F", + "total_work_orders" : 1, + "total_cost" : 505000.0, + "avg_cost" : 505000.000000000000 + }, + { + "location" : "00FF-SDP827", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-TS001B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-PG003A-BV", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P212B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AH-M502B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-V881", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V902", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-HRK813", + "total_work_orders" : 1, + "total_cost" : 2.598E7, + "avg_cost" : 25980000.000000000000 + }, + { + "location" : "3GG-TE820A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN144A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-TE034A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y509L", + "total_work_orders" : 1, + "total_cost" : 5.29E8, + "avg_cost" : 529000000.00000000 + }, + { + "location" : "3CW-FS001B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V003", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00SSB-EV012", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-PAN003A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-TE955B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AH-P531B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BDW-LX502B-RV-B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-PN852", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y506R", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CCCW-V970", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-S150C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V959", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V872", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-PAN864", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FO-PIX801", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00IA-V001B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-TE734F", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-S005B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN144B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-AIX107", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-FIX851", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FF-V502", + "total_work_orders" : 1, + "total_cost" : 5108400.0, + "avg_cost" : 5108400.000000000000 + }, + { + "location" : "00FF-S813", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DCS-CO004", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3HRH-PN001A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3APC-PD502", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-Z110D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APE-MV802B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3MS-V203B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-P320B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-DPG001", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-F854D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-CAB245A", + "total_work_orders" : 1, + "total_cost" : 1.4232122E7, + "avg_cost" : 14232122.000000000000 + }, + { + "location" : "00FF-OWH011", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FAD", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-J140B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-LV006B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-SN818", + "total_work_orders" : 1, + "total_cost" : 3500000.0, + "avg_cost" : 3500000.000000000000 + }, + { + "location" : "00IA-V005A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-PX501A", + "total_work_orders" : 1, + "total_cost" : 1.0, + "avg_cost" : 1.00000000000000000000 + }, + { + "location" : "3EVM-AX803", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-AG888", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y505I", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DCS-CO002B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-DAX501", + "total_work_orders" : 1, + "total_cost" : 9.6817493E7, + "avg_cost" : 96817493.000000000000 + }, + { + "location" : "3AI-M506H", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-FIX103D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PIX118B", + "total_work_orders" : 1, + "total_cost" : 1.25E7, + "avg_cost" : 12500000.000000000000 + }, + { + "location" : "00RP-M891A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-RD815", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ATT-V506", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN132B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CO-V210", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00EVM-CPU801", + "total_work_orders" : 1, + "total_cost" : 4470000.0, + "avg_cost" : 4470000.000000000000 + }, + { + "location" : "00RO-PN144D", + "total_work_orders" : 1, + "total_cost" : 2.1252E7, + "avg_cost" : 21252000.000000000000 + }, + { + "location" : "3FW-TE504A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-V722D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PG122D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-V723C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APE-MV803B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-AX801B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-T801B", + "total_work_orders" : 1, + "total_cost" : 1603236.0, + "avg_cost" : 1603236.000000000000 + }, + { + "location" : "GIS", + "total_work_orders" : 1, + "total_cost" : 3.795E7, + "avg_cost" : 37950000.000000000000 + }, + { + "location" : "3LOT-S020A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00IA-V801", + "total_work_orders" : 1, + "total_cost" : 4560000.0, + "avg_cost" : 4560000.000000000000 + }, + { + "location" : "00DS-W854B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-M851A", + "total_work_orders" : 1, + "total_cost" : 1.6E7, + "avg_cost" : 16000000.000000000000 + }, + { + "location" : "00DCS-CAB001A", + "total_work_orders" : 1, + "total_cost" : 8220000.0, + "avg_cost" : 8220000.000000000000 + }, + { + "location" : "00RP-W977B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-SFV120B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-LS701E", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PN721C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-PD013", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y510L", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "4ATT-I", + "total_work_orders" : 1, + "total_cost" : 2.33013E8, + "avg_cost" : 233013000.00000000 + }, + { + "location" : "00FF-V909", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CAE-P010A", + "total_work_orders" : 1, + "total_cost" : 1.68389911E8, + "avg_cost" : 168389911.000000000000 + }, + { + "location" : "00DS-W988", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-V227B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RB", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-W001B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-P100", + "total_work_orders" : 1, + "total_cost" : 1.443E8, + "avg_cost" : 144300000.000000000000 + }, + { + "location" : "00RO-M110D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-AU030A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-M501L", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-F854C", + "total_work_orders" : 1, + "total_cost" : 250000.0, + "avg_cost" : 250000.000000000000 + }, + { + "location" : "3GG-TE822A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-P003", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-M879A", + "total_work_orders" : 1, + "total_cost" : 3071478.0, + "avg_cost" : 3071478.000000000000 + }, + { + "location" : "00CL-TS001C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-AX512B", + "total_work_orders" : 1, + "total_cost" : 1.575E7, + "avg_cost" : 15750000.000000000000 + }, + { + "location" : "00RP-DX897", + "total_work_orders" : 1, + "total_cost" : 1.436E7, + "avg_cost" : 14360000.000000000000 + }, + { + "location" : "3MS-V502A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-FCV875", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CO-W001B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-V886", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APE-MV001A", + "total_work_orders" : 1, + "total_cost" : 5.70247724E8, + "avg_cost" : 570247724.00000000 + }, + { + "location" : "00CHA-PCS827A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V882", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-AIX103D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-B701B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FO-PN741E", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN330", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-P860B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00IA-S002A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y506H", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-V011B", + "total_work_orders" : 1, + "total_cost" : 2.6268E7, + "avg_cost" : 26268000.000000000000 + }, + { + "location" : "3GG-TE953A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y507L", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SCR-PIS002B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-BM741F", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V091B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-MS801B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-XR802", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-F880B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V809", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-SRN899", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-V121A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-TCV512B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y509R", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CAE-LIX001A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-V723A", + "total_work_orders" : 1, + "total_cost" : 1500000.0, + "avg_cost" : 1500000.000000000000 + }, + { + "location" : "00FF-HRK822", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-LBX005A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-PAN827", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-FIX102F", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-T001B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P230B", + "total_work_orders" : 1, + "total_cost" : 1.628E7, + "avg_cost" : 16280000.000000000000 + }, + { + "location" : "3DCS-CO006C", + "total_work_orders" : 1, + "total_cost" : 900000.0, + "avg_cost" : 900000.000000000000 + }, + { + "location" : "00FF-LBX839", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00LSH-BW801", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SCR-LIX002B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SO-PCV001", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00IA-T851", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-TE859", + "total_work_orders" : 1, + "total_cost" : 2021030.0, + "avg_cost" : 2021030.000000000000 + }, + { + "location" : "00DS-V862", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PN711F", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-P190A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-AX513A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V815", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN115A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-T852", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-V102", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "4DP-M781F", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-PG811B", + "total_work_orders" : 1, + "total_cost" : 4870000.0, + "avg_cost" : 4870000.000000000000 + }, + { + "location" : "00OA-W855A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN112A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V855", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BDW-W603", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DM-B701A", + "total_work_orders" : 1, + "total_cost" : 1530000.0, + "avg_cost" : 1530000.000000000000 + }, + { + "location" : "3FW-W007", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-PG859", + "total_work_orders" : 1, + "total_cost" : 5016500.0, + "avg_cost" : 5016500.000000000000 + }, + { + "location" : "00FF-FS8252", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3MT-ZE005A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-F803B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-AIX106A", + "total_work_orders" : 1, + "total_cost" : 4.35E7, + "avg_cost" : 43500000.000000000000 + }, + { + "location" : "3GSS-PN002", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-B704D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-FCV915", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3MS-SV503A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-TE913A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "4ABS-M888C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V106", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P220A", + "total_work_orders" : 1, + "total_cost" : 4897895.0, + "avg_cost" : 4897895.000000000000 + }, + { + "location" : "00CHA-PAN803B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y510A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "4ABS-M879E", + "total_work_orders" : 1, + "total_cost" : 4.3854015E7, + "avg_cost" : 43854015.000000000000 + }, + { + "location" : "00SW", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-W897B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-PG012B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PG122B-RV-B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3LPB-PCV010A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PN731C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BDW-V604A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-W010", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-TE873A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN364", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP", + "total_work_orders" : 1, + "total_cost" : 6180000.0, + "avg_cost" : 6180000.000000000000 + }, + { + "location" : "3DP-V722A", + "total_work_orders" : 1, + "total_cost" : 907500.0, + "avg_cost" : 907500.000000000000 + }, + { + "location" : "00DCS-CO012", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-LS001A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-V215A", + "total_work_orders" : 1, + "total_cost" : 1.134E7, + "avg_cost" : 11340000.000000000000 + }, + { + "location" : "00FF-V845", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3MT-VE002B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-FIX854", + "total_work_orders" : 1, + "total_cost" : 1.658533875E9, + "avg_cost" : 1658533875.00000000 + }, + { + "location" : "00LSH-M853A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y503A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PIX127D-RV-A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3EHS-LGS001", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN110C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y518A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-AIX102", + "total_work_orders" : 1, + "total_cost" : 3.3522E8, + "avg_cost" : 335220000.00000000 + }, + { + "location" : "3MT-SE001A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-P300A", + "total_work_orders" : 1, + "total_cost" : 7.678E7, + "avg_cost" : 76780000.000000000000 + }, + { + "location" : "00RO-PN106E", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-V051D", + "total_work_orders" : 1, + "total_cost" : 1475000.0, + "avg_cost" : 1475000.000000000000 + }, + { + "location" : "00DCS-CO005A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-FCV511C", + "total_work_orders" : 1, + "total_cost" : 3.7002179E7, + "avg_cost" : 37002179.000000000000 + }, + { + "location" : "00APC-PD005A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-V003B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V090B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BRS-H631", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-SFV113A", + "total_work_orders" : 1, + "total_cost" : 1.7482944E8, + "avg_cost" : 174829440.000000000000 + }, + { + "location" : "00RO-V052A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-P020B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN143B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PIX127A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00LSH-PAN862", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CO-M001A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-TE534A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V274A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3MT-ZE004C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-TE851", + "total_work_orders" : 1, + "total_cost" : 1.6912071E7, + "avg_cost" : 16912071.000000000000 + }, + { + "location" : "3AL-TE532A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-HRK806", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3PRW-M", + "total_work_orders" : 1, + "total_cost" : 1.6980723E8, + "avg_cost" : 169807230.000000000000 + }, + { + "location" : "00RO-M110A", + "total_work_orders" : 1, + "total_cost" : 2.1645E8, + "avg_cost" : 216450000.00000000 + }, + { + "location" : "3GG-TE968", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-LIX001A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-DPS801A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00SCR-ZS101", + "total_work_orders" : 1, + "total_cost" : 2.188968E8, + "avg_cost" : 218896800.00000000 + }, + { + "location" : "00DMW-FIX052B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3MS-SV501B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y512B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V525B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BDW-SFV601", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-V879", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3H2-FIX001", + "total_work_orders" : 1, + "total_cost" : 7266600.0, + "avg_cost" : 7266600.000000000000 + }, + { + "location" : "00FF-HRK820", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V470", + "total_work_orders" : 1, + "total_cost" : 4680000.0, + "avg_cost" : 4680000.000000000000 + }, + { + "location" : "3CRH-V209A", + "total_work_orders" : 1, + "total_cost" : 6.0, + "avg_cost" : 6.0000000000000000 + }, + { + "location" : "00RO-V032", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-V724A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-MB810B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-PN506", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-FS701D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3LOT-PIX001A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SCW-H023B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y512C", + "total_work_orders" : 1, + "total_cost" : 2.0, + "avg_cost" : 2.0000000000000000 + }, + { + "location" : "00CHD-CV809A", + "total_work_orders" : 1, + "total_cost" : 2726100.0, + "avg_cost" : 2726100.000000000000 + }, + { + "location" : "0", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V118B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-W935A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN130A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-LBX203B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AF-F501A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AF-TE533B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-Z002D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-RD825", + "total_work_orders" : 1, + "total_cost" : 6.56634E7, + "avg_cost" : 65663400.000000000000 + }, + { + "location" : "3GG-G801", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-V251C", + "total_work_orders" : 1, + "total_cost" : 7071000.0, + "avg_cost" : 7071000.000000000000 + }, + { + "location" : "3DP-CVT701F", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-PCV501", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GSS-PN003", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V813", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BDW-DPIX501A", + "total_work_orders" : 1, + "total_cost" : 2.2308575E7, + "avg_cost" : 22308575.000000000000 + }, + { + "location" : "00RO-PN110B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-MPB880", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SO-S012", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GEN-EXC006", + "total_work_orders" : 1, + "total_cost" : 4179878.0, + "avg_cost" : 4179878.000000000000 + }, + { + "location" : "3DP-PX701F", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BAD-AG531", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-FIX103A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-TE511A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3H2-DPG001", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-V026A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-FIX104B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN102F", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CCCW-TG702A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-TE855", + "total_work_orders" : 1, + "total_cost" : 1.67055E7, + "avg_cost" : 16705500.000000000000 + }, + { + "location" : "3AL-PN512F", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-TE874A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DCS-CAB006A", + "total_work_orders" : 1, + "total_cost" : 900000.0, + "avg_cost" : 900000.000000000000 + }, + { + "location" : "3AI-TE512", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CCCW-PG001B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CCCW-H010A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P251B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-M170B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-V251B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-SV701E", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-S150D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-FIX011B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CO-LIX002A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-M712B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FO-PG802A", + "total_work_orders" : 1, + "total_cost" : 9030000.0, + "avg_cost" : 9030000.000000000000 + }, + { + "location" : "00RO-V090C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-FS829", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-CAB846", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ATT-V533", + "total_work_orders" : 1, + "total_cost" : 1.0, + "avg_cost" : 1.00000000000000000000 + }, + { + "location" : "3BDW-V611", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3HRH-HV022B", + "total_work_orders" : 1, + "total_cost" : 1.78445986E8, + "avg_cost" : 178445986.000000000000 + }, + { + "location" : "3TR-F304", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FO-S801A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-DPS701B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V957", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BDW-LX503B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V823", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CRH-LS002", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3APE-MV002B", + "total_work_orders" : 1, + "total_cost" : 8140000.0, + "avg_cost" : 8140000.000000000000 + }, + { + "location" : "00OA-TE861", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-LIX001A", + "total_work_orders" : 1, + "total_cost" : 1.60139E7, + "avg_cost" : 16013900.000000000000 + }, + { + "location" : "3FW-P010B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-M910A", + "total_work_orders" : 1, + "total_cost" : 6714000.0, + "avg_cost" : 6714000.000000000000 + }, + { + "location" : "00RO-V502", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-FCV101", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y515A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-M910B", + "total_work_orders" : 1, + "total_cost" : 804800.0, + "avg_cost" : 804800.000000000000 + }, + { + "location" : "00RO-V593D", + "total_work_orders" : 1, + "total_cost" : 3000000.0, + "avg_cost" : 3000000.000000000000 + }, + { + "location" : "00DS-V900", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DCS-CO005A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-TCV512D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-LS001D", + "total_work_orders" : 1, + "total_cost" : 2.2E7, + "avg_cost" : 22000000.000000000000 + }, + { + "location" : "00RO-P300D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00PHT", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-V072A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-P004B", + "total_work_orders" : 1, + "total_cost" : 2.384E7, + "avg_cost" : 23840000.000000000000 + }, + { + "location" : "3ABS-M888B", + "total_work_orders" : 1, + "total_cost" : 2316000.0, + "avg_cost" : 2316000.000000000000 + }, + { + "location" : "3DP-V731F", + "total_work_orders" : 1, + "total_cost" : 9998857.0, + "avg_cost" : 9998857.000000000000 + }, + { + "location" : "3GG-TE511B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-DPIX855", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-LG310-RV-A", + "total_work_orders" : 1, + "total_cost" : 7.57965E7, + "avg_cost" : 75796500.000000000000 + }, + { + "location" : "3GG-F870B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "4ABS-AG879E", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SCW-P001A", + "total_work_orders" : 1, + "total_cost" : 1.06875E7, + "avg_cost" : 10687500.000000000000 + }, + { + "location" : "3BAD-PG501B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-V239", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-T801A", + "total_work_orders" : 1, + "total_cost" : 1.1511472E7, + "avg_cost" : 11511472.000000000000 + }, + { + "location" : "3CW-V324A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W858", + "total_work_orders" : 1, + "total_cost" : 4.554325E7, + "avg_cost" : 45543250.000000000000 + }, + { + "location" : "3CCCW-V567A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-M375A", + "total_work_orders" : 1, + "total_cost" : 1.4355E7, + "avg_cost" : 14355000.000000000000 + }, + { + "location" : "00RO-AIX110B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3APC-PD901", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W859", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-DPG002", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-PAN803A", + "total_work_orders" : 1, + "total_cost" : 105000.0, + "avg_cost" : 105000.000000000000 + }, + { + "location" : "00FF-PAN501", + "total_work_orders" : 1, + "total_cost" : 4320000.0, + "avg_cost" : 4320000.000000000000 + }, + { + "location" : "00RO-V676", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y510B", + "total_work_orders" : 1, + "total_cost" : 3173592.0, + "avg_cost" : 3173592.000000000000 + }, + { + "location" : "3DCS-CAB005C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-MPB839", + "total_work_orders" : 1, + "total_cost" : 5112000.0, + "avg_cost" : 5112000.000000000000 + }, + { + "location" : "00RO-SRP210", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00OA-V857C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-Z002B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PG110B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-M242A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CO-LBX002B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3LOS-M010A", + "total_work_orders" : 1, + "total_cost" : 1.805E8, + "avg_cost" : 180500000.000000000000 + }, + { + "location" : "00FO-P802B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-PS003", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SCR-PG001B-RV", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PG115D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V930", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V524D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-VE701A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-TE830A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-LBX871", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-CAB215", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CCCW-TCV002A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-OWH015", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-TE871A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APE-MV804", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-LIX341", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y503C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CCCW-P091", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CO-H030", + "total_work_orders" : 1, + "total_cost" : 5.2477826E7, + "avg_cost" : 52477826.000000000000 + }, + { + "location" : "00RP-M856B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-LS117", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-T130", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-PCS889", + "total_work_orders" : 1, + "total_cost" : 1.45E7, + "avg_cost" : 14500000.000000000000 + }, + { + "location" : "00RO-P272B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DCS-CAB007", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-P931B", + "total_work_orders" : 1, + "total_cost" : 665500.0, + "avg_cost" : 665500.000000000000 + }, + { + "location" : "00DMW-FG351", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-P877B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-M741C", + "total_work_orders" : 1, + "total_cost" : 1.6395E7, + "avg_cost" : 16395000.000000000000 + }, + { + "location" : "3LOT-P010A", + "total_work_orders" : 1, + "total_cost" : 4.511339E8, + "avg_cost" : 451133900.00000000 + }, + { + "location" : "00FF-V863", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-CAB831", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-S380A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CRH-TE003A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-T931", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-V519", + "total_work_orders" : 1, + "total_cost" : 1.0, + "avg_cost" : 1.00000000000000000000 + }, + { + "location" : "3FW-TE031B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CCCW-TG504A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-FG251", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-V213B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-W943", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-TE914B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-MPB852", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-T270", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-AX855", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-P200B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-LBX857", + "total_work_orders" : 1, + "total_cost" : 6928050.0, + "avg_cost" : 6928050.000000000000 + }, + { + "location" : "3CW-PG002B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-LBX846", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-M502R", + "total_work_orders" : 1, + "total_cost" : 3.7624E7, + "avg_cost" : 37624000.000000000000 + }, + { + "location" : "3ABS-W857", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-P001B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-TE738E", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-M711C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-V365", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APE-CAB807", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-PIX852", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P160A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-PX501B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3APC-LV001A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-PAN863", + "total_work_orders" : 1, + "total_cost" : 535000.0, + "avg_cost" : 535000.000000000000 + }, + { + "location" : "3DP-PN741D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-DPG851", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-V909", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-OWH016", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FO-T801", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V810", + "total_work_orders" : 1, + "total_cost" : 1.4E7, + "avg_cost" : 14000000.000000000000 + }, + { + "location" : "00CW-V252", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-LV803B", + "total_work_orders" : 1, + "total_cost" : 7.727E7, + "avg_cost" : 77270000.000000000000 + }, + { + "location" : "3ATT-V552", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-B701A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-LIX001B-RV-B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PG110A-RV", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BSS-H611", + "total_work_orders" : 1, + "total_cost" : 1.3213056E7, + "avg_cost" : 13213056.000000000000 + }, + { + "location" : "3HRH-PN001B", + "total_work_orders" : 1, + "total_cost" : 1.3209E7, + "avg_cost" : 13209000.000000000000 + }, + { + "location" : "3SO-PG002", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-MPB858", + "total_work_orders" : 1, + "total_cost" : 3420000.0, + "avg_cost" : 3420000.000000000000 + }, + { + "location" : "3ABS-W861", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-FCV102E", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00IA-DPS002A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-EHD868", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "4HD-I", + "total_work_orders" : 1, + "total_cost" : 1.26139375E8, + "avg_cost" : 126139375.000000000000 + }, + { + "location" : "00RO-SFV108A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W911B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN125B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-V101", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-T901", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-P261B", + "total_work_orders" : 1, + "total_cost" : 1.363206E8, + "avg_cost" : 136320600.000000000000 + }, + { + "location" : "3AI-Q505", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN118", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-PD817", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-S809", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AH-PG601B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-OWH001", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-AG931", + "total_work_orders" : 1, + "total_cost" : 2.76815E7, + "avg_cost" : 27681500.000000000000 + }, + { + "location" : "3GG-TE984B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y505A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN101E", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-PCS867A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-P004A", + "total_work_orders" : 1, + "total_cost" : 8.916536E7, + "avg_cost" : 89165360.000000000000 + }, + { + "location" : "3CW-V002A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3BRS-TE512", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-PG932B", + "total_work_orders" : 1, + "total_cost" : 1.438338E7, + "avg_cost" : 14383380.000000000000 + }, + { + "location" : "00RO-P110A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PG105A-RV", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FO-P803A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y508R", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-PN502", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y513B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SCW-M001A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PG702C", + "total_work_orders" : 1, + "total_cost" : 1650000.0, + "avg_cost" : 1650000.000000000000 + }, + { + "location" : "3FO-FCV501", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-PG001A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-M851B", + "total_work_orders" : 1, + "total_cost" : 1.83E8, + "avg_cost" : 183000000.000000000000 + }, + { + "location" : "00RO-AIX107A-RV", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AF-TE531A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V086B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-LG330", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-TE986", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GMC-Z002", + "total_work_orders" : 1, + "total_cost" : 1653300.0, + "avg_cost" : 1653300.000000000000 + }, + { + "location" : "3ABS-V913", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AH-TE751A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-PN503A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-TE511A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-M195A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-RD805", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CHA-PCS881B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-DPIX703E", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AI-Y515C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-RD823", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-EHD845", + "total_work_orders" : 1, + "total_cost" : 2.345E7, + "avg_cost" : 23450000.000000000000 + }, + { + "location" : "3FW-P010A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-PX511A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DS-W980B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-SN810", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FO-PN502", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FO-PN711A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V051F", + "total_work_orders" : 1, + "total_cost" : 1.4469E7, + "avg_cost" : 14469000.000000000000 + }, + { + "location" : "3AI-Y514A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-ARV013D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V849", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-PN114B", + "total_work_orders" : 1, + "total_cost" : 2.397E7, + "avg_cost" : 23970000.000000000000 + }, + { + "location" : "00FF-SRN895", + "total_work_orders" : 1, + "total_cost" : 3979875.0, + "avg_cost" : 3979875.000000000000 + }, + { + "location" : "3AL-VE502B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "4GG-F853A", + "total_work_orders" : 1, + "total_cost" : 1.31947E7, + "avg_cost" : 13194700.000000000000 + }, + { + "location" : "00RP-W978B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CL", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-FIX103C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-TE522B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-LBX005B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-V282A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-LV004A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ATT-V006A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-F803A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V806", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-FS808", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V010C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AL-PN512C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SCR-Z007A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-FIX031B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ESP-RD827", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V068B", + "total_work_orders" : 1, + "total_cost" : 1.96248E7, + "avg_cost" : 19624800.000000000000 + }, + { + "location" : "3ABS-PIX910", + "total_work_orders" : 1, + "total_cost" : 8.52369E7, + "avg_cost" : 85236900.000000000000 + }, + { + "location" : "00FF-SRN852", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3GG-PN853", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SO-P001", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-V219B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PX701B", + "total_work_orders" : 1, + "total_cost" : 2442000.0, + "avg_cost" : 2442000.000000000000 + }, + { + "location" : "3CAE-PIX001B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-W957B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CRH-PIX001", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-V012B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-V072A", + "total_work_orders" : 1, + "total_cost" : 9.1464E7, + "avg_cost" : 91464000.000000000000 + }, + { + "location" : "00RO-V045A", + "total_work_orders" : 1, + "total_cost" : 5.16E7, + "avg_cost" : 51600000.000000000000 + }, + { + "location" : "00RO-P300B", + "total_work_orders" : 1, + "total_cost" : 3.4633333E7, + "avg_cost" : 34633333.000000000000 + }, + { + "location" : "3ABS-M932B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FW-V227", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3SCR-V012A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AS-V506", + "total_work_orders" : 1, + "total_cost" : 1.0, + "avg_cost" : 1.00000000000000000000 + }, + { + "location" : "00FF-SN809", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RP-FS995", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DP-PN721E", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CCCW-PG002B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3EHB-P010B", + "total_work_orders" : 1, + "total_cost" : 1.71717E7, + "avg_cost" : 17171700.000000000000 + }, + { + "location" : "3GG-TE817A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3DCS-CAB014A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3ABS-W933B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00CL-V151D", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00APC-PD891", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00RO-M170C", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3FF-PG501A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3AH-H501A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CO-LIX001A", + "total_work_orders" : 1, + "total_cost" : 1.468325E7, + "avg_cost" : 14683250.000000000000 + }, + { + "location" : "00RP-P991B", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V960", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "3CW-LBX001A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00FF-V001", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + }, + { + "location" : "00DMW-PN132A", + "total_work_orders" : 1, + "total_cost" : 0.0, + "avg_cost" : 0E-20 + } +]} diff --git a/src/overhaul_activity/service.py b/src/overhaul_activity/service.py index 83c1f96..72c509a 100644 --- a/src/overhaul_activity/service.py +++ b/src/overhaul_activity/service.py @@ -25,6 +25,7 @@ from .model import OverhaulActivity from .schema import (OverhaulActivityCreate, OverhaulActivityRead, OverhaulActivityUpdate) +import json async def get( *, db_session: DbSession, assetnum: str, overhaul_session_id: Optional[UUID] = None @@ -42,7 +43,11 @@ async def get( result = await db_session.execute(query) return result.scalar() +def get_cost_per_failute(): + with open('src/overhaul_activity/cost_failure.json', 'r') as f: + data = json.load(f) + return data['data'] async def get_all( *, @@ -97,20 +102,24 @@ async def get_all( num_equipments = len((await common['db_session'].execute(query)).scalars().all()) - material_cost = get_material_cost("B", num_equipments) + data_cost = get_cost_per_failute() equipments = await search_filter_sort_paginate(model=query, **common) data = equipments['items'] + + results = [] for equipment in data: if not equipment.master_equipment: continue + + cost = next((item for item in data_cost if item['location'] == equipment.location_tag), None) res = OverhaulActivityRead( id=equipment.id, - material_cost=material_cost, + material_cost=cost.get('avg_cost', 0) if cost else 0, service_cost=200000000, location_tag=equipment.location_tag, equipment_name=equipment.master_equipment.name if equipment.master_equipment else None, @@ -146,11 +155,13 @@ async def get_standard_scope_by_session_id(*, db_session: DbSession, overhaul_se material_cost = get_material_cost("B", len(eqs)) results = [] + data_cost = get_cost_per_failute() for equipment in eqs: + cost = next((item for item in data_cost if item['location'] == equipment.location_tag), None) res = OverhaulActivityRead( id=equipment.id, - material_cost=material_cost, + material_cost=cost.get('avg_cost', 0) if cost else 0, service_cost=200000000, location_tag=equipment.location_tag, equipment_name=equipment.master_equipment.name if equipment.master_equipment else None,