summaryrefslogtreecommitdiff
path: root/MIBS/huawei/HUAWEI-SITE-MONITOR-MIB
blob: 087ffd5b36a16b2a3da92635aaaefc4b15cbabd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
--
-- HUAWEI-SITE-MONITOR-MIB.mib
-- MIB generated by MG-SOFT Visual MIB Builder Version 4.0 Build 347
-- Wednesday, March 30, 2011 at 11:17:42
--

--  HUAWEI-NGPOWER-MIB.mib
-- MIB generated by MG-SOFT Visual MIB Builder Version 3.0 Build 253
-- Sunday, June 14, 2009 at 11:04:12
-- 

	HUAWEI-SITE-MONITOR-MIB DEFINITIONS ::= BEGIN
 
		IMPORTS
			huaweiUtility			
				FROM HUAWEI-MIB			
			OBJECT-GROUP, NOTIFICATION-GROUP			
				FROM SNMPv2-CONF			
			Integer32, Unsigned32, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE			
				FROM SNMPv2-SMI			
			TEXTUAL-CONVENTION			
				FROM SNMPv2-TC;
	
	
--        September 15, 2010 at 11:00 GMT
		hwSiteMonitorMIB MODULE-IDENTITY 
			LAST-UPDATED "201103040000Z"		-- March 04, 2011 at 00:00 GMT
			ORGANIZATION 
				"Huawei Technologies Co.,Ltd."
			CONTACT-INFO 
				"Floor 5, Block 4, R&D Building,
				Huawei Longgang Production Base,
				Shenzhen,   P.R.C.
				http://www.huawei.com
				Zip: 518129."
			DESCRIPTION 
				"Site Monitor MIB defines MIB objects which provides load and backup management, patch management NMS interfaces.
				The current version is V1.01"
			REVISION "201103040000Z"		-- March 04, 2011 at 00:00 GMT
			DESCRIPTION 
				"Add hwAcOffLongTimeAlarmTraps, hwAcOffLongTimeAlarmResumeTraps"
			REVISION "201010310000Z"		-- October 31, 2010 at 00:00 GMT
			DESCRIPTION 
				"Huawei site monitor mib V1.00"
			::= { huaweiUtility 164 }

		
	
--
-- Textual conventions
--
	
		DisplayString ::= TEXTUAL-CONVENTION
			STATUS current
			DESCRIPTION 
				"Description."
			SYNTAX OCTET STRING (SIZE (1..64))
			
		RowStatus ::= TEXTUAL-CONVENTION
			STATUS current
			DESCRIPTION 
				"Description."
			SYNTAX INTEGER
				{
				active(1),
				notInService(2),
				notReady(3),
				createAndGo(4),
				createAndWait(5),
				destroy(6)
				}
			
--        Textual conventions
-- 
		DateAndTime ::= TEXTUAL-CONVENTION
			STATUS current
			DESCRIPTION 
				"Description."
			SYNTAX OCTET STRING (SIZE (8..11))

		RunStatus ::= TEXTUAL-CONVENTION
			STATUS current
			DESCRIPTION 
				"This integer value represents running status of the system. 
				Depending on situation there may be limits on allowed values.
				  Operational values:
					(1) unknown - status has not yet been defined
					(2) normal - there are no activated alarms
					(3) alarm - alarm status
				"
			SYNTAX INTEGER
				{
				unknow(1),
				normal(2),
				alarm(3)
				}

		MeasuresRange ::= TEXTUAL-CONVENTION
			STATUS current
			DESCRIPTION 
				"Description."
			SYNTAX Integer32

		TruthValue ::= TEXTUAL-CONVENTION
			STATUS current
			DESCRIPTION 
				"Description."
			SYNTAX INTEGER
				{
				true(1),
				flase(2)
				}

	
--
-- Node definitions
--
	
		-- 1.3.6.1.4.1.2011.6.164.1
		hwSiteMonitorMIBObjects OBJECT IDENTIFIER ::= { hwSiteMonitorMIB 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.1
		hwSiteInfo OBJECT IDENTIFIER ::= { hwSiteMonitorMIBObjects 1 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.1.1
		hwSiteSummary OBJECT IDENTIFIER ::= { hwSiteInfo 1 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.1.1.1
		hwSiteId OBJECT-TYPE
			SYNTAX Unsigned32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Site ID, default value: 000,000.
				Naming rule of the site device ID (six digits): The first three digits indicate the device name and the last three digits indicate the serial number (SN) of the device. If the last three digits are 000, it indicates a virtual device. "
			::= { hwSiteSummary 1 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.1.1.2
		hwSiteName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Site name, which users can configure, is used to specify a site. 
				Otherwise, the configured character can not be any other languages except English."
			::= { hwSiteSummary 2 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.1.1.3
		hwSiteAdminAddr OBJECT-TYPE
			SYNTAX Unsigned32 (0..65535)
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Site administrant address, which users can assigned, is the unique ID of a site. It is used for device management by NMS, and value range is 0 to 65535. "
			::= { hwSiteSummary 3 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.1.1.4
		hwSiteDescription OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..127))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Site description. It is of the character string type. It is used to describe the site information such as the site location, which users can configure. 
				Otherwise, the configured character can not be any other languages except English."
			::= { hwSiteSummary 4 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.1.1.5
		hwNetIdentifier OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"NE ID. It is of the character string type. It is the unique ID of the site (an independent network element (NE)) on the network.
				Otherwise, the configured character can not be any other languages except English. "
			::= { hwSiteSummary 5 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.1.1.6
		hwSiteIp OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (8..16))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Site IP address, default value is 192.168.0.10. Users need to configure the site IP address."
			::= { hwSiteSummary 6 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.1.1.7
		hwSiteNetmask OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (8..16))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Site netmask, default value is 255.255.0.0. Users need to configure the site netmask. "
			::= { hwSiteSummary 7 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.1.1.8
		hwSiteGateway OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (8..16))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Site gateway, default value: 192.168.0.1. Users need to configure the site gateway. "
			::= { hwSiteSummary 8 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.1.1.9
		hwSiteDGWorkStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				idle(1),
				working(2),
				unknown(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"State of the diesel working state. It is an enumeration type: 
				If the enumeration value is 1, it indicates that the diesel is in the idle state;
				If the enumeration value is 2, it indicates that the diesel is in the working state;     
				If the enumeration value is 255, it indicates diesel operation status unknown. "
			::= { hwSiteSummary 9 }
		-- 1.3.6.1.4.1.2011.6.164.1.1.2
		hwSiteAlarms OBJECT IDENTIFIER ::= { hwSiteInfo 2 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.1.2.1
		hwDeviceTrapOrdinalNumber OBJECT-TYPE
			SYNTAX Unsigned32
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Site device event trap serial number (SN) is the unique ID of the device event trap. It is used to resend and synchronize event traps. Its value range is 0 to 4294967296.
				When the value exceeds the maximum value, the system automatically clears the value and numbers the alarm from 0 to 4294967296.  
				If the network management system (NMS) recieve the alarm number is not consequential, in such case that it notifies the SNMP agent the event trap number required. 
				So the monitor send the 50 event trap messages in maximum, after consequencial number required by NMS again.
				Specially, if NMS set the value to 0, the agent would clear the alarm queue automatically."
			::= { hwSiteAlarms 1 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.1.2.2
		hwAlarmTrapOrdinalNumber OBJECT-TYPE
			SYNTAX Unsigned32
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Site alarm serial number (SN) is the unique ID of the alarm Trap. It is used to resend and synchronize alarms. Its value range is 0 to 4294967296.
				When the value exceeds the maximum value, the system automatically clears the value and numbers the alarm from 0 to 4294967296.  
				If the network management system (NMS) recieve the alarm number is not consequential, in such case that it notifies the SNMP agent the alarm number required. 
				So the monitor send the 50 alarm messages in maximum, after consequencial number required by NMS again.
				Specially, if NMS set the value to 0, the agent would clear the alarm queue automatically."
			::= { hwSiteAlarms 2 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.1.2.3
		hwAlarmQuantity OBJECT-TYPE
			SYNTAX Unsigned32 (0..65535)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Alarm number in site alarm list which are support. It is used for alarm list management by NMS, and value range is 0 to 65535. "
			::= { hwSiteAlarms 3 }
		
--  1.3.6.1.4.1.2011.6.1.5.10.7
		-- 1.3.6.1.4.1.2011.6.164.1.1.2.100
		hwSiteAlarmTable OBJECT-TYPE
			SYNTAX SEQUENCE OF HwSiteAlarmEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Site alarms table. The table containing alarm information on the site management. Use this table to get site alarm name, alarm level, alarm signal description, and alarm port description, which can be used as VB of alarm traps. This table's index is hwAlarmIndex, clone site alarms table."
			::= { hwSiteAlarms 100 }
		
--  1.3.6.1.4.1.2011.6.1.5.10.7.1
		-- 1.3.6.1.4.1.2011.6.164.1.1.2.100.1
		hwSiteAlarmEntry OBJECT-TYPE
			SYNTAX HwSiteAlarmEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Site alarms table entry."
			INDEX { hwAlarmIndex }
			::= { hwSiteAlarmTable 1 }

		
		HwSiteAlarmEntry ::=
			SEQUENCE { 
				hwAlarmIndex
					Integer32,
				hwAlarmText
					OCTET STRING,
				hwAlarmLevel
					INTEGER,
				hwAlarmSigDesc
					OCTET STRING,
				hwAlarmRowStatus
					RowStatus
			 }

		-- 1.3.6.1.4.1.2011.6.164.1.1.2.100.1.1
		hwAlarmIndex OBJECT-TYPE
			SYNTAX Integer32 (1..65535)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Site alarm table index. It is the unique ID of the site alarm."
			::= { hwSiteAlarmEntry 1 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.1.2.100.1.2
		hwAlarmText OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Alarm name. It is of the character string type, and used to specify the content of a specific alarm.  "
			::= { hwSiteAlarmEntry 2 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.1.2.100.1.3
		hwAlarmLevel OBJECT-TYPE
			SYNTAX INTEGER
				{
				critical(1),
				major(2),
				minor(3),
				warning(4),
				cleared(5),
				unknown(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Alarm level, which users can configure the alarm severity, is an enumeration type:
				If the enumeration value is 1, it indicates a critical alarm;
				If the enumeration value is 2, it indicates a major alarm;
				If the enumeration value is 3, it indicates a minor alarm;
				If the enumeration value is 4, it indicates a warning; 
				If the enumeration value is 5, it indicates the alarm is cleared."
			::= { hwSiteAlarmEntry 3 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.1.2.100.1.4
		hwAlarmSigDesc OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..127))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Alarm signal description. It is used to add and describe alarm content. Users can define the description of the alarm.
				Otherwise, the configured character can not be any other languages except English."
			::= { hwSiteAlarmEntry 4 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.1.2.100.1.100
		hwAlarmRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"RowStatus of site alarms table."
			::= { hwSiteAlarmEntry 100 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.2
		hwSiteMonitors OBJECT IDENTIFIER ::= { hwSiteMonitorMIBObjects 2 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.2.1
		hwMonitorsGroup OBJECT IDENTIFIER ::= { hwSiteMonitors 1 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.2.1.1
		hwMonsGroupId OBJECT-TYPE
			SYNTAX Unsigned32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Site monitor group ID, is the unique ID of the site monitors."
			::= { hwMonitorsGroup 1 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.2.1.2
		hwMonsGroupName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Site monitor group name is of the character string type, used to specify the monitor group. Users can configure it.
				Otherwise, the configured character can not be any other languages except English. "
			::= { hwMonitorsGroup 2 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.2.1.3
		hwMonsQuantity OBJECT-TYPE
			SYNTAX Unsigned32 (0..100)
			UNITS "pcs"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Total site intelligent monitors. "
			::= { hwMonitorsGroup 3 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.2.2
		hwMonitor OBJECT IDENTIFIER ::= { hwSiteMonitors 2 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.2.2.1
		hwMonitorTable OBJECT-TYPE
			SYNTAX SEQUENCE OF HwMonitorEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Site monitors table. Use this table to get site monitor equipment ID, site monitor equipment name, equipment software version, equipment PCB version, manufacturer, manufacture date, equipment serial No, equipment description, total runing time, and equipment controlled status, as well as to control monitor reset. This table's index is hwMonIndex, clone site monitors table."
			::= { hwMonitor 1 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.2.2.1.1
		hwMonitorEntry OBJECT-TYPE
			SYNTAX HwMonitorEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Site monitors table entry."
			INDEX { hwMonIndex }
			::= { hwMonitorTable 1 }

		
		HwMonitorEntry ::=
			SEQUENCE { 
				hwMonIndex
					Integer32,
				hwMonEquipId
					Unsigned32,
				hwMonEquipName
					OCTET STRING,
				hwMonEquipDescription
					OCTET STRING,
				hwMonEquipSoftwareVersion
					OCTET STRING,
				hwMonEquipPcbVersion
					OCTET STRING,
				hwMonEquipManufacturer
					OCTET STRING,
				hwMonEquipManuDate
					OCTET STRING,
				hwMonEquipSerialNo
					OCTET STRING,
				hwMonEquipOperTotalTime
					Unsigned32,
				hwSetMonEquipCtrlState
					INTEGER,
				hwCtrlMonEquipReset
					INTEGER,
				hwMonitorOperStatus
					INTEGER,
				hwMonRowStatus
					RowStatus
			 }

		-- 1.3.6.1.4.1.2011.6.164.1.2.2.1.1.1
		hwMonIndex OBJECT-TYPE
			SYNTAX Integer32 (1..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Table index of the site monitors (hwSiteMonsTab) is restricted by the quantity of the site monitors (hwMonsQuantity). Value range: 1 to 100"
			::= { hwMonitorEntry 1 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.2.2.1.1.2
		hwMonEquipId OBJECT-TYPE
			SYNTAX Unsigned32 (1001..1100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Site monitor ID. Value range: 001,001 to 001,100, in which the first three digits indicate the device type and the last three digits indicate the device SN.  "
			::= { hwMonitorEntry 2 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.2.2.1.1.3
		hwMonEquipName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Monitor name. It is of the character string type, and users can set the name of the monitor. 
				Otherwise, the configured character can not be any other languages except English.   "
			::= { hwMonitorEntry 3 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.2.2.1.1.4
		hwMonEquipDescription OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..127))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Monitor description. It is of the character string type. Users can set the description of the monitor. 
				Otherwise, the configured character can not be any other languages except English."
			::= { hwMonitorEntry 4 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.2.2.1.1.5
		hwMonEquipSoftwareVersion OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Monitor software version. It is of the character string type."
			::= { hwMonitorEntry 5 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.2.2.1.1.6
		hwMonEquipPcbVersion OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Monitor printed circuit board (PCB) hardware version. It is of the character string type."
			::= { hwMonitorEntry 6 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.2.2.1.1.7
		hwMonEquipManufacturer OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Monitor manufacture. It is of the character string type, and is an inherent attribute of the device."
			::= { hwMonitorEntry 7 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.2.2.1.1.8
		hwMonEquipManuDate OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..127))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Monitor production date. It is of the character string type, and is an inherent attribute of the device.  "
			::= { hwMonitorEntry 8 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.2.2.1.1.9
		hwMonEquipSerialNo OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..127))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Production SN of the monitor. It is the electronic tag of the products."
			::= { hwMonitorEntry 9 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.2.2.1.1.10
		hwMonEquipOperTotalTime OBJECT-TYPE
			SYNTAX Unsigned32 (0..65536)
			UNITS "hours"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Total monitor runtime. The monitor counts the data in real time. The value is an integer (.0), and unit is hour (h). It is used for performance measurement and evaluation of the monitor."
			::= { hwMonitorEntry 10 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.2.2.1.1.11
		hwSetMonEquipCtrlState OBJECT-TYPE
			SYNTAX INTEGER
				{
				manualMode(1),
				autoMode(2),
				unknown(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Monitor control status. It is an enumeration type:
				If the enumeration value is 1, it indicates the background control;
				If the enumeration value is 2, it indicates the automatic control.
				In manual state, monitor works under background commands; while monitors runs well automatically in auto state. 
				For details, see the corresponding user manual of the monitor."
			::= { hwMonitorEntry 11 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.2.2.1.1.12
		hwCtrlMonEquipReset OBJECT-TYPE
			SYNTAX INTEGER
				{
				normal(1),
				reset(2),
				nullOper(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Warm-reset control of the monitor. It is an enumeration type:
				If the network management system (NMS) notifies the SNMP agent that this node is set to 1, it indicates that the reset of the monitor is not triggered;
				If the NMS notifies the SNMP agent that this node is set to 2, it indicates that the background starts the reset of the monitor. "
			::= { hwMonitorEntry 12 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.2.2.1.1.99
		hwMonitorOperStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				normal(1),
				commRs485Fail(2),
				commNetFail(3),
				fault(4),
				alarmResume(254),
				other(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"State of the site monitor module. It is an enumeration type: 
				If the enumeration value is 1, it indicates that the site monitor module is in the normal state;
				If the enumeration value is 2, it indicates that the monitor module RS485 port communication failed; 
				If the enumeration value is 3, it indicates that the monitor module net port communication failed;  
				If the enumeration value is 4, it indicates that a fault occurs on the monitor module; 
				If the enumeration value is 254, it indicates monitor module alarm resume;  
				If the enumeration value is 255, it indicates monitor module operation status unknown. "
			::= { hwMonitorEntry 99 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.2.2.1.1.100
		hwMonRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"RowStatus of site monitor."
			::= { hwMonitorEntry 100 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3
		hwSiteRectifiers OBJECT IDENTIFIER ::= { hwSiteMonitorMIBObjects 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.1
		hwRectsGroup OBJECT IDENTIFIER ::= { hwSiteRectifiers 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.1.1
		hwRectsGroupId OBJECT-TYPE
			SYNTAX Unsigned32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Device group ID of the rectifier module. It is the unique ID of the rectifier module group, and its default value: 002,000. 
				The first digits indicate the device type and the last three digits indicate the device SN. If the last three digits are 000, it indicates a virtual device. "
			::= { hwRectsGroup 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.1.2
		hwRectsGroupName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Name of the rectifier module group, character string type, is used to specify the rectifier module group. Users can configure it. 
				Otherwise, the configured character can not be any other languages except English."
			::= { hwRectsGroup 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.1.3
		hwRectsTotalCurrent OBJECT-TYPE
			SYNTAX Unsigned32 (0..500000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Total current of the rectifier module group on the site. It indicates the real-time statistics of the rectifier module group on the site. unit: A, and the value is accurate to one decimal place (.1). "
			::= { hwRectsGroup 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.1.4
		hwRectsTotalQuantity OBJECT-TYPE
			SYNTAX Unsigned32 (0..256)
			UNITS "pcs"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Total quantity of the rectifier modules. Value range: 0 to 256. "
			::= { hwRectsGroup 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.1.5
		hwRectsRatedVoltage OBJECT-TYPE
			SYNTAX Unsigned32 (420..580)
			UNITS "V"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Rated voltage of the rectifier module group. It is an inherent attribute. Value range: 42 to 58, Unit: V, and the value is accurate to one decimal place (.1). "
			::= { hwRectsGroup 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.1.6
		hwModifyRectsOutputVoltage OBJECT-TYPE
			SYNTAX Unsigned32 (420..580)
			UNITS "V"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Voltage adjustment of the rectifier module, which users can configure it. Value range: 42 to 58, Unit: V, and the value is accurate to one decimal space (.1). Based on the actual requirements, users can modify the output voltage of the rectifier module by modifying the value of the node.
				NOTES: Be cautious about changing the value of the node.  "
			::= { hwRectsGroup 6 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.1.7
		hwSetRectsRedundEnable OBJECT-TYPE
			SYNTAX INTEGER
				{
				disable(1),
				enable(2),
				funcNotSupport(3)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Sleep function of the rectifier module group on the site. It is an enumeration value:
				If the NMS notifies the SNMP agent that this node is set to 1, it means to disable the sleep function of the rectifier module group;
				If the NMS notifies the SNMP agent that this node is set to 2, it means to enable the sleep function of the rectifier module group.
				If NMS get the node value is 3, it indicates that this function is not support, and in such case the value set to the agent is invalid.
				Default value: to disable the sleep function of the rectifier module group. For details, see the corresponding user manual of the monitor."
			::= { hwRectsGroup 7 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.1.8
		hwCtrlRectsAllOnOff OBJECT-TYPE
			SYNTAX INTEGER
				{
				on(1),
				off(2),
				nullOper(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Power-on or power-off of the rectifier module group (all the rectifier modules) on the site. It is an enumeration value:
				If the NMS notifies the SNMP agent that this node is set to 1, it indicates power-on of all rectifier modules;
				If the NMS notifies the SNMP agent that this node is set to 2, it indicates power-off of all the rectifier modules. "
			::= { hwRectsGroup 8 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.2
		hwRectifier OBJECT IDENTIFIER ::= { hwSiteRectifiers 2 }

		
--  1.3.6.1.4.1.2011.6.1.5.6
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.1
		hwRectConfigTable OBJECT-TYPE
			SYNTAX SEQUENCE OF HwRectConfigEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Rectifier config information table. Use this table to get rectifiers equipment ID, software version, manufacturer, rated current, efficency, AC input type, and to control equipment on or off. This table's index is hwRectConfigIndex, clone Rectifier config information table."
			::= { hwRectifier 1 }

		
--  1.3.6.1.4.1.2011.6.1.5.6.1
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.1.1
		hwRectConfigEntry OBJECT-TYPE
			SYNTAX HwRectConfigEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Rectifier config table entry."
			INDEX { hwRectConfigIndex }
			::= { hwRectConfigTable 1 }

		
		HwRectConfigEntry ::=
			SEQUENCE { 
				hwRectConfigIndex
					Integer32,
				hwRectEquipId
					Unsigned32,
				hwRectEquipName
					OCTET STRING,
				hwRectType
					INTEGER,
				hwRectSoftwareVersion
					OCTET STRING,
				hwRectManufacturer
					OCTET STRING,
				hwRectManuDate
					OCTET STRING,
				hwRectSerialNo
					OCTET STRING,
				hwRectRatedCurrent
					Unsigned32,
				hwRectEfficency
					Unsigned32,
				hwRectInputAcType
					INTEGER,
				hwCtrlRectOnOff
					INTEGER,
				hwRectConfigRowStatus
					RowStatus
			 }

--  1.3.6.1.4.1.2011.6.1.5.6.1.2
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.1.1.1
		hwRectConfigIndex OBJECT-TYPE
			SYNTAX Integer32 (1..256)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Index of the device configuration list for the rectifier modules, which value range: 1 to 256. Lines of the device list are restricted by the total quantity of the rectifier modules (hwRectTotleQuantity).
				"
			::= { hwRectConfigEntry 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.1.1.2
		hwRectEquipId OBJECT-TYPE
			SYNTAX Unsigned32 (2001..2255)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Rectifier module ID. Value range: 002'001 to 002'255. The first digits indicate the device type and last three digits indicate the device SN. "
			::= { hwRectConfigEntry 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.1.1.3
		hwRectEquipName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Device name of the rectifier module, character string type, is used to specify the rectifier module. Users can configure it. 
				Otherwise, the configured character can not be any other languages except English."
			::= { hwRectConfigEntry 3 }

		
--  1.3.6.1.4.1.2011.6.1.5.6.1.3
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.1.1.4
		hwRectType OBJECT-TYPE
			SYNTAX INTEGER
				{
				eps5(1),
				eps15(2),
				eps30(3),
				eps50(4),
				eps100(5),
				unknown(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Specific type of the rectifier module. It is an enumeration type:
				If the enumeration value is 1, it indicates a 5A rectifier module; 
				If the enumeration value is 2, it indicates a 15A rectifier module; 
				If the enumeration value is 3, it indicates a 30A rectifier module; 
				If the enumeration value is 4, it indicates a 50A rectifier module; 
				If the enumeration value is 5, it indicates a 100A rectifier module.
				 
				"
			::= { hwRectConfigEntry 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.1.1.5
		hwRectSoftwareVersion OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Software version of the rectifier module. It indicates the software version ID of the module. "
			::= { hwRectConfigEntry 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.1.1.6
		hwRectManufacturer OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Manufacture of the rectifier module."
			::= { hwRectConfigEntry 6 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.1.1.7
		hwRectManuDate OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..127))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Manufacture date of rectifiers is of string type."
			::= { hwRectConfigEntry 7 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.1.1.8
		hwRectSerialNo OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..127))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Rectifier module SN. It indicates the electronic tag of the product."
			::= { hwRectConfigEntry 8 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.1.1.9
		hwRectRatedCurrent OBJECT-TYPE
			SYNTAX Unsigned32 (0..1000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Rated voltage of the rectifier module, is an inherent attribute. Value range: 0 to 100, Unit: A, and the value is accurate to one decimal place (.1). "
			::= { hwRectConfigEntry 9 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.1.1.10
		hwRectEfficency OBJECT-TYPE
			SYNTAX Unsigned32 (800..1000)
			UNITS "%"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Efficiency of the rectifier module, is an inherent attribute. Value range: 80 to 100, Unit: %, and the value is accurate to one decimal place (.1)."
			::= { hwRectConfigEntry 10 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.1.1.11
		hwRectInputAcType OBJECT-TYPE
			SYNTAX INTEGER
				{
				single(1),
				triple(2),
				unknown(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Input AC type of the rectifier module. It is an enumeration value:
				If the value of the node is 1, it indicates single-phase AC input; 
				If the value of the node is 2, it indicates three-phase AC input. "
			::= { hwRectConfigEntry 11 }

		
--  1.3.6.1.4.1.2011.6.1.5.6.1.8
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.1.1.12
		hwCtrlRectOnOff OBJECT-TYPE
			SYNTAX INTEGER
				{
				on(1),
				off(2),
				nullOper(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Power-on or power-off of the rectifier module, is an enumeration value. Users can modify the enumeration value of this node, thus controlling of the power-on or power-off of the rectifier module:
				If the NMS notifies the SNMP agent that this node is set to 1, it indicates power-on of the rectifier module;
				If the NMS notifies the SNMP agent that this node is set to 2, it indicates power-off of the rectifier module. "
			::= { hwRectConfigEntry 12 }

		
--  1.3.6.1.4.1.2011.6.1.5.6.1.11
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.1.1.100
		hwRectConfigRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"RowStatus of rectifier config table."
			::= { hwRectConfigEntry 100 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.2
		hwRectOperTable OBJECT-TYPE
			SYNTAX SEQUENCE OF HwRectOperEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Rectifier runing information table. Use this table to get rectifiers output current, output voltage, totle runing time, and current run status. This table's index is hwRectRunIndex, clone rectifier runing information table."
			::= { hwRectifier 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.2.1
		hwRectOperEntry OBJECT-TYPE
			SYNTAX HwRectOperEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Rectifier runing table entry."
			INDEX { hwRectOperIndex }
			::= { hwRectOperTable 1 }

		
		HwRectOperEntry ::=
			SEQUENCE { 
				hwRectOperIndex
					Integer32,
				hwRectOutputCurrent
					Unsigned32,
				hwRectOutputVoltage
					Unsigned32,
				hwRectTotalOperTime
					Unsigned32,
				hwRectOperStatus
					INTEGER,
				hwRectOperRowStatus
					RowStatus
			 }

		-- 1.3.6.1.4.1.2011.6.164.1.3.2.2.1.1
		hwRectOperIndex OBJECT-TYPE
			SYNTAX Integer32 (1..256)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Table index of the running rectifier modules, which value range: 1 to 256. Lines of the device list are restricted by the total quantity of the rectifier modules (hwRectTotleQuantity)."
			::= { hwRectOperEntry 1 }

		
--  1.3.6.1.4.1.2011.6.1.5.6.1.5
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.2.1.2
		hwRectOutputCurrent OBJECT-TYPE
			SYNTAX Unsigned32 (0..2000)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Output current of the rectifier module. It is a real-time analog parameter. Value range: 0 to 200, Unit: A, and the value is accurate to one decimal place (.1). "
			::= { hwRectOperEntry 2 }

		
--  1.3.6.1.4.1.2011.6.1.5.6.1.4
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.2.1.3
		hwRectOutputVoltage OBJECT-TYPE
			SYNTAX Unsigned32 (0..600)
			UNITS "V"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Output voltage of the rectifier module. It is a real-time analog parameter. Value range: 0 to 60, Unit: V, the value is accurate to one decimal place (.1). 
				"
			::= { hwRectOperEntry 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.2.1.4
		hwRectTotalOperTime OBJECT-TYPE
			SYNTAX Unsigned32
			UNITS "minutes"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Total runtime of the rectifier module. Value unit: minute (m), and the value is an integer (.0).  "
			::= { hwRectOperEntry 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.2.1.99
		hwRectOperStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				normal(1),
				fault(2),
				protect(3),
				commFail(4),
				switchOff(5),
				invalid(6),
				noConfig(7),
				alarmResume(254),
				other(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"State of the rectifier module. It is an enumeration type: 
				If the enumeration value is 1, it indicates that the rectifier module is in the normal state;
				If the enumeration value is 2, it indicates that a fault occurs on the rectifier module; 
				If the enumeration value is 3, it indicates the automatic protection of the rectifier module;
				If the enumeration value is 4, it indicates that communication of the rectifier module fails;
				If the enumeration value is 5, it indicates that the rectifier module is shut down; 
				If the enumeration value is 6, it indicates that the rectifier module is invalid; 
				If the enumeration value is 7, it indicates that this rectifier is not configured; 
				If the enumeration value is 254, it indicates rectifier alarm resume; 
				If the enumeration value is 255, it indicates rectifier operation status unknown.
				 
				"
			::= { hwRectOperEntry 99 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.3.2.2.1.100
		hwRectOperRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"RowStatus of rectifier runing table."
			::= { hwRectOperEntry 100 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4
		hwSiteBatterys OBJECT IDENTIFIER ::= { hwSiteMonitorMIBObjects 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.1
		hwBattsConfig OBJECT IDENTIFIER ::= { hwSiteBatterys 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.1.1
		hwBattsGroupId OBJECT-TYPE
			SYNTAX Unsigned32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Battery group ID. It is the unique ID of the battery group device. The first digits indicate the device type and the last three digits indicate the device SN. If the last three digits are 000, it indicates a virtual device. "
			::= { hwBattsConfig 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.1.2
		hwBattsGroupName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Device name of the battery group. It is of the character string type, which can be configured by users.
				Otherwise, the configured character can not be any other languages except English."
			::= { hwBattsConfig 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.1.3
		hwBattsTotalQuantity OBJECT-TYPE
			SYNTAX Unsigned32 (0..100)
			UNITS "strings"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Total quantity of battery strings, which value range: 0 to 100."
			::= { hwBattsConfig 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.1.4
		hwSetBattsHighTempAction OBJECT-TYPE
			SYNTAX INTEGER
				{
				blvd(1),
				lowerDcOutput(2),
				unknown(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Battery high-temperature protection mode. It is an enumeration value, and can be configured. 
				If the enumeration value is 1, it indicates the power-off protection mode;
				If the enumeration value is 2, it indicates the protection mode of lowering the output voltage of the rectifier module.
				unknown(255) it is do nothing "
			::= { hwBattsConfig 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.1.5
		hwSetBattsHighTempVoltLimit OBJECT-TYPE
			SYNTAX Unsigned32 (0..600)
			UNITS "V"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Battery protection voltage under high temperature. It works with the low-voltage power-off protection in battery high-temperature protection mode, which can be configured by users. If the low-voltage power-off protection mode (that is, the enumeration value is 1) is selected, the node is a low-voltage power-off node. Value range: 0 to 60, unit: V, and the value is accurate to one decimal place (.1). "
			::= { hwBattsConfig 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.1.6
		hwSetBattsHTDLimit OBJECT-TYPE
			SYNTAX Integer32 (0..100)
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Upper threshold of the battery high temperature disconnection(HTD), can be configured by users. Value range: 0 to 100, Unit: centigrade (°„C), and the value is an integer (.0)."
			::= { hwBattsConfig 6 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.1.7
		hwSetBattsHTDEnable OBJECT-TYPE
			SYNTAX INTEGER
				{
				enable(1),
				disable(2)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Battery high temperature disconnection enable. It is an enumeration type:
				If the enumeration value is 1, enable the operation of the battery disconnection in high temperature; 
				If the enumeration value is 2, disable the operation of the battery disconnection in high temperature. 
				The operation of the battery disconnection in high temperature is disabled by default. "
			::= { hwBattsConfig 7 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.1.8
		hwSetBattsFloatVoltage OBJECT-TYPE
			SYNTAX Unsigned32 (420..580)
			UNITS "V"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Float charge voltage of the batteries, can be configured by users. Value range: 42 to 58, unit: V, and the value is accurate to one decimal place (.1)"
			::= { hwBattsConfig 8 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.1.9
		hwSetBattsBoostVoltage OBJECT-TYPE
			SYNTAX Unsigned32 (420..580)
			UNITS "V"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Boostcharge voltage of the batteries, can be configured by users. Value range: 42 to 58, unit: V, and the value is accurate to one decimal place (.1)."
			::= { hwBattsConfig 9 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.1.10
		hwSetBattsCurrLimitCoefficient OBJECT-TYPE
			SYNTAX Unsigned32 (5..25)
			UNITS "C10"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Current-limiting point coefficient of the batteries, can be configured by users. Value range: 0.05 to 0.25, unit: C10, and the value is accurate to two decimal places (.2)."
			::= { hwBattsConfig 10 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.1.11
		hwSetBattsCompFactor OBJECT-TYPE
			SYNTAX Unsigned32 (0..500)
			UNITS "mV per centigrades"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Temperature compensated coefficient of the batteries, can be configured by user. Value range: 0 to 500, unit: mv per centigrade, and the value is an integer (.0)."
			::= { hwBattsConfig 11 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.1.12
		hwCtrlBattsBoostFloat OBJECT-TYPE
			SYNTAX INTEGER
				{
				floatCharge(1),
				boostCharge(2),
				nullOper(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Control batteries charge mode between boost and float. It is an enumeration value. 
				Users actively control the conversion. 
				If the NMS notifies the SNMP agent that this node is set to 1, it means to start the float charge mode of the batteries; 
				If the NMS notifies the SNMP agent that this node is set to 2, it means to start the boost charge mode of the batteries. 
				"
			::= { hwBattsConfig 12 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.2
		hwBattsOperate OBJECT IDENTIFIER ::= { hwSiteBatterys 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.2.1
		hwBattsTotalCurrent OBJECT-TYPE
			SYNTAX Integer32 (-10000..10000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Total current of the battery group. It indicates the real-time statistics of the battery group on the site. Value range: -1000 to +1000, unit: A, and the value is accurate to one decimal place (.1). "
			::= { hwBattsOperate 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.2.2
		hwBattsPreDischargeTime OBJECT-TYPE
			SYNTAX Unsigned32 (0..65536)
			UNITS "minutes"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Battery group backup time. It indicates the real-time statistics of the battery group. Value range: 0 to 65536, Unit: minute (m), and the value is an integer (.0). "
			::= { hwBattsOperate 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.2.3
		hwBattsChargeStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				floatCharge(1),
				boostCharge(2),
				disCharge(3),
				unknown(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Battery charging state, indicates the charging and discharging information about the battery group. It is an enumeration type. 
				If the enumeration value is 1, it indicates a battery group in the float charging state. 
				If the enumeration value is 2, it indicates a battery group in the boost charging state. 
				If the enumeration value is 3, it indicates a battery group in the discharging state. 
				"
			::= { hwBattsOperate 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.2.4
		hwBattsCurrLimitStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				unlimit(1),
				limit(2),
				unknown(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Battery group current-limiting state, indicates the state information about the battery group. It is an enumeration value. 
				If the enumeration value is 1, it indicates that the current of the battery group is not limited. 
				If the enumeration value is 2, it indicates the current of the battery group is limited. 
				"
			::= { hwBattsOperate 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3
		hwBattsTest OBJECT IDENTIFIER ::= { hwSiteBatterys 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.1
		hwBattsTestRecordCount OBJECT-TYPE
			SYNTAX Unsigned32 (0..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Battery test records number."
			::= { hwBattsTest 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.2
		hwSetBattsManuStdTestTime OBJECT-TYPE
			SYNTAX Unsigned32 (1..100)
			UNITS "hours"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Battery standard test time, It can be configured by users, and its value is an integer (.0). 
				Here, if battery manual test is standard mode, value range defines between 1 to 6000, unit: minutes(m)"
			::= { hwBattsTest 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.3
		hwSetBattsManuStdTestEndVolt OBJECT-TYPE
			SYNTAX Unsigned32 (170..220)
			UNITS "V per cell"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Voltage when the battery test is ended, can be configured by users. Unit: V/cell, and the value is accurate to two decimal place (.2).
				Here, if battery manual test is standard mode, value range defines between 1.7 to 2.2"
			::= { hwBattsTest 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.4
		hwSetBattsManuStdTestCellNum OBJECT-TYPE
			SYNTAX Unsigned32 (1..50)
			UNITS "cell"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Battery cell number in each Group, which is used in the battery standard manual test, can be configured by users. Unit: psc or cell, value range defines between 1 to 50. and the value is accurate to one decimal place (.0)."
			::= { hwBattsTest 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.5
		hwSetBattsManuShortTestTime OBJECT-TYPE
			SYNTAX Unsigned32 (1..240)
			UNITS "minutes"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Battery short test time, It can be configured by users, and its value is an integer (.0). 
				If battery manual test is simple mode, value range defines between 1 to 240, unit: minutes(m)"
			::= { hwBattsTest 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.6
		hwSetBattsManuShortTestEndVolt OBJECT-TYPE
			SYNTAX Unsigned32 (400..540)
			UNITS "V"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Voltage when the battery short test is ended, can be configured by users. Unit: V, and the value is accurate to one decimal place (.1).
				Here, if battery manual test is standard mode, value range defines between 40 to 54.
				"
			::= { hwBattsTest 6 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.7
		hwCtrlBattsTestStartStop OBJECT-TYPE
			SYNTAX INTEGER
				{
				stdTestStart(1),
				shortTestStart(2),
				testStop(3),
				nullOper(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Battery manualtest start and stop. It is an enumeration value. 
				If the NMS notifies the SNMP agent that the node is set to 1, it means to start a standard manual test; 
				If the NMS notifies the SNMP agent that the node is set to 2, it means to start a short manual test; 
				If the NMS notifies the SNMP agent that the node is set to 3, it means to stop the battery test. 
				Set the parameters, such as battery test time, and voltage when the battery test stops before the node controls the start of the battery test. If the parameters are not set this time, the system uses the configuration parameters by default; and if the battery test is started at the first time, the system uses the default value. 
				Battery test can only start up in some conditions, so that the reason of Start of battery short test failed may be as follow:
				                            1. Interval between this test and the latest AC outage or test is longer than the preset duration.
				2. No major alarm is raised.
				3. The number of healthy modules is greater than 0.
				4. The number of battery strings is greater than 0."
			::= { hwBattsTest 7 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.100
		hwBattsTestResultTable OBJECT-TYPE
			SYNTAX SEQUENCE OF HwBattsTestResultEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Battery test result record table. Use this table to get battery test inital time, test result, battery efficiency, battery discharge time, terminated voltage, average current, discharge AH value, test temperature and test terminated course. This table's index is hwBattsTestResultIndex, clone Battery test result record table."
			::= { hwBattsTest 100 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.100.1
		hwBattsTestResultEntry OBJECT-TYPE
			SYNTAX HwBattsTestResultEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Battery test result table entry."
			INDEX { hwBattsTestResultIndex }
			::= { hwBattsTestResultTable 1 }

		
		HwBattsTestResultEntry ::=
			SEQUENCE { 
				hwBattsTestResultIndex
					Integer32,
				hwBattsTestType
					INTEGER,
				hwBattsTestStartTime
					OCTET STRING,
				hwBattsTestResult
					INTEGER,
				hwBattsEfficiency
					Integer32,
				hwBattsDischargeTime
					Unsigned32,
				hwBattsDischargeEndVoltage
					Unsigned32,
				hwBattsDischargeAvCurrent
					Integer32,
				hwBattsDischargeAhValue
					Unsigned32,
				hwBattsTestTemprature
					Integer32,
				hwBattsTestEndCourse
					INTEGER,
				hwBattsTestResultRowStatus
					RowStatus
			 }

		-- 1.3.6.1.4.1.2011.6.164.1.4.3.100.1.1
		hwBattsTestResultIndex OBJECT-TYPE
			SYNTAX Integer32 (1..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Table index of the battery test results. Currently up to 10 times of the battery test results are saved by default. "
			::= { hwBattsTestResultEntry 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.100.1.2
		hwBattsTestType OBJECT-TYPE
			SYNTAX INTEGER
				{
				manualTest(1),
				acOffAutoTest(2),
				timedTest(3),
				shortTest(4),
				other(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Record test type of the battery test. It is an enumeration value: 
				If the NMS notifies the SNMP agent that this node is set to 1, it indicates a manual test; 
				If the NMS notifies the SNMP agent that this node is set to 2, it indicates a simplified test;
				If the NMS notifies the SNMP agent that this node is set to 3, it indicates a timed test;
				If the NMS notifies the SNMP agent that this node is set to 4, it indicates a short test;
				If the NMS notifies the SNMP agent that this node is set to 255, it indicates a other test."
			::= { hwBattsTestResultEntry 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.100.1.3
		hwBattsTestStartTime OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..127))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Test start time of the record in the battery test. It is of the character string type."
			::= { hwBattsTestResultEntry 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.100.1.4
		hwBattsTestResult OBJECT-TYPE
			SYNTAX INTEGER
				{
				battNoResult(1),
				battNormal(2),
				battPreAlarm(3),
				battAlarm(4),
				unknown(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Battery test result. It is an enumeration value.
				If the enumeration value of the node is 1, it indicates that the battery test has no result: 
				If the enumeration value of the node is 2, it indicates that the battery is in the normal state: 
				If the enumeration value of the node is 3, it indicates that the battery is in the minor abnormal state, 
				If the enumeration value of the node is 4, it indicates that the battery is in the alarm state,
				If the enumeration value of the node is 255, it indicates that the battery state is unknown,"
			::= { hwBattsTestResultEntry 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.100.1.5
		hwBattsEfficiency OBJECT-TYPE
			SYNTAX Integer32 (0..100)
			UNITS "%"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Battery efficiency test. Value range: 0 to 100, Unit: %, and the value is an integer (.0).
				If the value is -1, it indicates that the test value is inefficient."
			::= { hwBattsTestResultEntry 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.100.1.6
		hwBattsDischargeTime OBJECT-TYPE
			SYNTAX Unsigned32 (0..10000)
			UNITS "hours"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Discharge time of the battery test records. Value range: 0 to 100, unit: hour (h), and the value is accurate to two decimal places (.2)."
			::= { hwBattsTestResultEntry 6 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.100.1.7
		hwBattsDischargeEndVoltage OBJECT-TYPE
			SYNTAX Unsigned32 (0..600)
			UNITS "V"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Discharge termination voltage of the battery test. Value range: 0 to 60, unit: V, and the value is accurate to one decimal place (.1)."
			::= { hwBattsTestResultEntry 7 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.100.1.8
		hwBattsDischargeAvCurrent OBJECT-TYPE
			SYNTAX Integer32 (-10000..10000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Average discharge current of the battery test. Value range: -10000 to 10000, unit: A, and the value is accurate to one decimal place (.1)."
			::= { hwBattsTestResultEntry 8 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.100.1.9
		hwBattsDischargeAhValue OBJECT-TYPE
			SYNTAX Unsigned32 (0..5000)
			UNITS "Ah"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Discharge ampere per hour the battery test. Value range: 0 to 5000, Unit: Ah, and the value is an integer (.0). "
			::= { hwBattsTestResultEntry 9 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.100.1.10
		hwBattsTestTemprature OBJECT-TYPE
			SYNTAX Integer32 (-50..100)
			UNITS "centigrades"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Battery temperature of the battery test termination. Value range: -50 to +100, Unit: centigrade (°„C), and the value is an integer (.0).
				If the value is -1024, it indicates that no battery temperature value sensor is detected."
			::= { hwBattsTestResultEntry 10 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.100.1.11
		hwBattsTestEndCourse OBJECT-TYPE
			SYNTAX INTEGER
				{
				voltageToEnd(1),
				timeToEnd(2),
				acOnToEnd(3),
				manulToEnd(4),
				faultAlarmToEnd(5),
				other(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Termination factors of the battery test. It is an enumeration value. 
				If the enumeration value is 1, it indicates that the voltage value of the battery test reaches the set termination voltage; 
				If the enumeration value is 2, it indicates that the voltage value of the battery test reaches the timing limit; 
				If the enumeration value is 3, it indicates that an alarm related to the battery leads to the stop of the battery test; 
				If the enumeration value is 4, it indicates that a battery test is stopped manually,
				If the enumeration value is 5, it indicates that battery fault alarm happened,
				If the enumeration value is 255, it indicates that battery test end for other courses."
			::= { hwBattsTestResultEntry 11 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.3.100.1.100
		hwBattsTestResultRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"RowStatus of battery test table."
			::= { hwBattsTestResultEntry 100 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4
		hwBattString OBJECT IDENTIFIER ::= { hwSiteBatterys 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.1
		hwBattStringConfigTable OBJECT-TYPE
			SYNTAX SEQUENCE OF HwBattStringConfigEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Battery string config table. Use this table to get battery string equipment ID and equipment name, to set battery standard capacity and battery install time as well. This table's index is hwBattStringConfigIndex, clone battery string config table."
			::= { hwBattString 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.1.1
		hwBattStringConfigEntry OBJECT-TYPE
			SYNTAX HwBattStringConfigEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Battery string config table entry."
			INDEX { hwBattStringConfigIndex }
			::= { hwBattStringConfigTable 1 }

		
		HwBattStringConfigEntry ::=
			SEQUENCE { 
				hwBattStringConfigIndex
					Integer32,
				hwBattStringEquipId
					Unsigned32,
				hwBattStringEquipName
					OCTET STRING,
				hwSetBattsTempUpperLimit
					Integer32,
				hwSetBattsTempLowerLimit
					Integer32,
				hwSetBattsTempMeasureUpperLimit
					Integer32,
				hwSetBattsTempMeasureLowerLimit
					Integer32,
				hwSetBattStdCapacity
					Integer32,
				hwSetBattInstallTime
					OCTET STRING,
				hwBattStringConfigRowStatus
					RowStatus
			 }

		-- 1.3.6.1.4.1.2011.6.164.1.4.4.1.1.1
		hwBattStringConfigIndex OBJECT-TYPE
			SYNTAX Integer32 (1..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Device table index of the battery string, which value range: 1 to 100."
			::= { hwBattStringConfigEntry 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.1.1.2
		hwBattStringEquipId OBJECT-TYPE
			SYNTAX Unsigned32 (3001..3100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Batteries device ID, can be configured by users. Value range: 003,001 to 003,100, in which the first three digits specify the device type and the last three specify the device SN."
			::= { hwBattStringConfigEntry 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.1.1.3
		hwBattStringEquipName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Batteries device name, of the character string type, is used to specify the batteries. Users can configure it.
				Otherwise, the configured character can not be any other languages except English."
			::= { hwBattStringConfigEntry 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.1.1.4
		hwSetBattsTempUpperLimit OBJECT-TYPE
			SYNTAX Integer32 (-50..100)
			UNITS "centigrades"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Upper threshold of the battery temperature alarm, can be configured by users. Value range: -50 to 100, Unit: centigrade (°„C), and the value is an integer (.0)."
			::= { hwBattStringConfigEntry 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.1.1.5
		hwSetBattsTempLowerLimit OBJECT-TYPE
			SYNTAX Integer32 (-50..100)
			UNITS "centigrades"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Lower threshold of the battery temperature alarm, can be configured by users. Value range: -50 to 100, Unit: centigrade (°„C), and the value is an integer (.0)."
			::= { hwBattStringConfigEntry 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.1.1.6
		hwSetBattsTempMeasureUpperLimit OBJECT-TYPE
			SYNTAX Integer32 (0..100)
			UNITS "centigrades"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Upper threshold of the battery temperature measurement, can be configured by users. Value range: 0 to 100, Unit: centigrade (°„C), and the value is an integer (.0)."
			::= { hwBattStringConfigEntry 6 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.1.1.7
		hwSetBattsTempMeasureLowerLimit OBJECT-TYPE
			SYNTAX Integer32 (-50..0)
			UNITS "centigrades"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Lower threshold of the battery temperature measurement, can be configured by users. Value range: -50 to 0, Unit: centigrade (°„C), and the value is an integer (.0)."
			::= { hwBattStringConfigEntry 7 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.1.1.8
		hwSetBattStdCapacity OBJECT-TYPE
			SYNTAX Integer32 (0..10000)
			UNITS "Ah"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Set battery standard capacity, is an inherent attribute of the device. Value range: 0 to 10000, unit: Ah, the value is an integer (.0). "
			::= { hwBattStringConfigEntry 8 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.1.1.9
		hwSetBattInstallTime OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..128))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Set battery install time, of the character string type, can be configured by users.
				Otherwise, the configured character can not be any other languages except English. "
			::= { hwBattStringConfigEntry 9 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.1.1.100
		hwBattStringConfigRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"RowStatus of battery string config table."
			::= { hwBattStringConfigEntry 100 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.2
		hwBattStringOperTable OBJECT-TYPE
			SYNTAX SEQUENCE OF HwBattStringOperEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Battery string runing table. Use this table to get battery string current, persent of remain capacity, battery remain capacity, battery actual capacity, as well as  battery temperature. This table's index is hwBattStringRunIndex, clone battery string runing table."
			::= { hwBattString 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.2.1
		hwBattStringOperEntry OBJECT-TYPE
			SYNTAX HwBattStringOperEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Battery string runing table entry."
			INDEX { hwBattStringOperIndex }
			::= { hwBattStringOperTable 1 }

		
		HwBattStringOperEntry ::=
			SEQUENCE { 
				hwBattStringOperIndex
					Integer32,
				hwBattStringCurrent
					Integer32,
				hwBattStringRemainCapacityPercent
					Unsigned32,
				hwBattStringRemainCapacity
					Unsigned32,
				hwBattStringActualCapacity
					Unsigned32,
				hwBattStringTemprature
					Integer32,
				hwBattStringOperStatus
					INTEGER,
				hwBattStringOperRowStatus
					RowStatus
			 }

		-- 1.3.6.1.4.1.2011.6.164.1.4.4.2.1.1
		hwBattStringOperIndex OBJECT-TYPE
			SYNTAX Integer32 (1..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Device table index of the battery string, which value range: 1 to 100."
			::= { hwBattStringOperEntry 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.2.1.2
		hwBattStringCurrent OBJECT-TYPE
			SYNTAX Integer32 (-10000..10000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Batteries current. It is an analog parameter collected by the battery string in real time. Value range: -1000 to +1000, unit: A, and the value is accurate to one decimal place (.1)."
			::= { hwBattStringOperEntry 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.2.1.3
		hwBattStringRemainCapacityPercent OBJECT-TYPE
			SYNTAX Unsigned32 (0..1000)
			UNITS "%"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Remaining capacity percentage of the battery string. Value range: 0 to 100, unit: %, and the value is accurate to one decimal place (.1)."
			::= { hwBattStringOperEntry 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.2.1.4
		hwBattStringRemainCapacity OBJECT-TYPE
			SYNTAX Unsigned32 (0..5000)
			UNITS "Ah"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Remaining capacity of the battery string. It is an analog parameter collected by the battery string in real time. Value range: 0 to 5000, unit: Ah, and the value is an integer (.0)."
			::= { hwBattStringOperEntry 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.2.1.5
		hwBattStringActualCapacity OBJECT-TYPE
			SYNTAX Unsigned32 (0..5000)
			UNITS "Ah"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Batteries actual capacity. It is an analog parameter collected by the battery string in real time.Value range: 0 to 5000, unit: Ah, the value is an integer (.0)."
			::= { hwBattStringOperEntry 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.2.1.6
		hwBattStringTemprature OBJECT-TYPE
			SYNTAX Integer32 (-500..1000)
			UNITS "centigrades"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Battery temperature. It is a battery parameter collected in real time. Value range: -50 to +100, unit: centigrade (°„C), and the value is an integer (.1).
				If the value is -99999, it indicates that battery temperature sensor is not configured."
			::= { hwBattStringOperEntry 6 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.2.1.99
		hwBattStringOperStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				normal(1),
				tempHigh(2),
				tempLow(3),
				loopBreak(4),
				overCurrent(5),
				unbalance(6),
				alarmResume(254),
				other(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"State of the site battery string module. It is an enumeration type: 
				If the enumeration value is 1, it indicates that the site battery string is in the normal state; 
				If the enumeration value is 2, it indicates that the battery string is over upper alarm threshold of temperature; 
				If the enumeration value is 3, it indicates that the battery string is under lower alarm threshold of temperature;  
				If the enumeration value is 4, it indicates that battery string loop has disconnected;  
				If the enumeration value is 5, it indicates that the current of batery is over upper charging threshold;
				If the enumeration value is 254, it indicates battery string alarm resume; 
				If the enumeration value is 255, it indicates battery string operation status unknown. "
			::= { hwBattStringOperEntry 99 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.4.4.2.1.100
		hwBattStringOperRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"RowStatus of battery string runing table."
			::= { hwBattStringOperEntry 100 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5
		hwSiteAcDistributions OBJECT IDENTIFIER ::= { hwSiteMonitorMIBObjects 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.1
		hwAcDistributionsGroup OBJECT IDENTIFIER ::= { hwSiteAcDistributions 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.1.1
		hwAcsGroupId OBJECT-TYPE
			SYNTAX Unsigned32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"AC group ID, is the unique ID of the AC group. The first three digits indicate the device type and the last three indicate the device SN. If the last three digits are 000, it indicates a virtual device. "
			::= { hwAcDistributionsGroup 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.1.2
		hwAcsGroupName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Device name of the AC group. It is of the character string type, and can be configured by users. 
				Otherwise, the configured character can not be any other languages except English."
			::= { hwAcDistributionsGroup 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.1.3
		hwAcsTotalCurrent OBJECT-TYPE
			SYNTAX Unsigned32 (0..10000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Total current of the AC group. It indicates the real-time statistics of the AC group. Value range: 0 to 1000, unit: A, and the value is accurate to one decimal place (.1)."
			::= { hwAcDistributionsGroup 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.1.4
		hwAcsTotalQuantity OBJECT-TYPE
			SYNTAX Unsigned32 (0..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Total quantity of the site ACUs. Value range: 0 to 100. "
			::= { hwAcDistributionsGroup 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.1.5
		hwSetAcsUpperVoltLimit OBJECT-TYPE
			SYNTAX Unsigned32 (60..500)
			UNITS "V"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Upper threshold of the AC voltage alarm, can be configured by users. Value range: 60 to 500, unit: V, and the value is an integer (.0)."
			::= { hwAcDistributionsGroup 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.1.6
		hwSetAcsLowerVoltLimit OBJECT-TYPE
			SYNTAX Unsigned32 (60..500)
			UNITS "V"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Lower threshold of the AC voltage alarm, can be configured by users. Value range: 60 to 500, unit: V, and the value is an integer (.0)."
			::= { hwAcDistributionsGroup 6 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.2
		hwAcDistribution OBJECT IDENTIFIER ::= { hwSiteAcDistributions 2 }

		
--  1.3.6.1.4.1.2011.6.1.5.5
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.1
		hwAcInputTable OBJECT-TYPE
			SYNTAX SEQUENCE OF HwAcInputEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"AC input table. Use this table to get AC distribution unit ID, AC distribution unit name, A phase or AB line voltage, B phase or BC line voltage, C phase or CA line voltage, AC input breaker status, as well as AC output breakers quantity, which defines hwAcOutputBreakerTable row number. This table's index is hwAcInputIndex, clone AC input table."
			::= { hwAcDistribution 1 }

		
--  1.3.6.1.4.1.2011.6.1.5.5.1
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.1.1
		hwAcInputEntry OBJECT-TYPE
			SYNTAX HwAcInputEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"AC input table entry."
			INDEX { hwAcInputIndex }
			::= { hwAcInputTable 1 }

		
		HwAcInputEntry ::=
			SEQUENCE { 
				hwAcInputIndex
					Integer32,
				hwAcEquipId
					Unsigned32,
				hwAcEquipName
					OCTET STRING,
				hwApOrAblVoltage
					Unsigned32,
				hwBpOrBclVoltage
					Unsigned32,
				hwCpOrCalVoltage
					Unsigned32,
				hwAphaseCurrent
					Integer32,
				hwBphaseCurrent
					Integer32,
				hwCphaseCurrent
					Integer32,
				hwAcInputBreakersQuantity
					Unsigned32,
				hwAcInputOperStatus
					INTEGER,
				hwAcRowStatus
					RowStatus
			 }

--  1.3.6.1.4.1.2011.6.1.5.5.1.1
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.1.1.1
		hwAcInputIndex OBJECT-TYPE
			SYNTAX Integer32 (1..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"ACU device table index, which value range: 1 to 100. Lines of the device list are restricted by the total quantity of ACUs (hwAcsInputQuantity)."
			::= { hwAcInputEntry 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.1.1.2
		hwAcEquipId OBJECT-TYPE
			SYNTAX Unsigned32 (4001..4100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"ACU device ID, which users can configure. Value range: 004,001 to 004,100, in which The first digits indicate the device type and the last three digits indicate the device SN."
			::= { hwAcInputEntry 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.1.1.3
		hwAcEquipName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"ACU device name, of the character string type, is used to specify the alternating current unit (ACU). Users can configure it.
				Otherwise, the configured character can not be any other languages except English."
			::= { hwAcInputEntry 3 }

		
--  1.3.6.1.4.1.2011.6.1.5.5.1.5
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.1.1.4
		hwApOrAblVoltage OBJECT-TYPE
			SYNTAX Unsigned32 (0..5000)
			UNITS "V"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"ACU A-phase or AB-line voltage. Value range: 0 to 500, unit: V, and the value is accurate to one decimal place (.1)."
			::= { hwAcInputEntry 4 }

		
--  1.3.6.1.4.1.2011.6.1.5.5.1.6
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.1.1.5
		hwBpOrBclVoltage OBJECT-TYPE
			SYNTAX Unsigned32 (0..5000)
			UNITS "V"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"ACU B-phase or BC-line voltage. Value range: 0 to 500, unit: V, and the value is accurate to one decimal place (.1)."
			::= { hwAcInputEntry 5 }

		
--  1.3.6.1.4.1.2011.6.1.5.5.1.7
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.1.1.6
		hwCpOrCalVoltage OBJECT-TYPE
			SYNTAX Unsigned32 (0..5000)
			UNITS "V"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"ACU C-phase or CA-line voltage. Value range: 0 to 500, unit: V, and the value is accurate to one decimal place (.1)."
			::= { hwAcInputEntry 6 }

		
--  1.3.6.1.4.1.2011.6.1.5.5.1.11
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.1.1.7
		hwAphaseCurrent OBJECT-TYPE
			SYNTAX Integer32 (0..1000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"ACU A-phase current. It is an analog parameter collected by the ACU in real time. Value range: 0 to 100, unit: A, and the value is accurate to one decimal place (.1)."
			::= { hwAcInputEntry 7 }

		
--  1.3.6.1.4.1.2011.6.1.5.5.1.12
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.1.1.8
		hwBphaseCurrent OBJECT-TYPE
			SYNTAX Integer32 (0..1000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"ACU B-phase current. It is an analog parameter collected by the ACU in real time. Value range: 0 to 100, unit: A, and the value is accurate to one decimal place (.1)."
			::= { hwAcInputEntry 8 }

		
--  1.3.6.1.4.1.2011.6.1.5.5.1.13
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.1.1.9
		hwCphaseCurrent OBJECT-TYPE
			SYNTAX Integer32 (0..1000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"ACU C-phase current. It is an analog parameter collected by the ACU in real time. Value range: 0 to 100, unit: A, and the value is accurate to one decimal place (.1)."
			::= { hwAcInputEntry 9 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.1.1.10
		hwAcInputBreakersQuantity OBJECT-TYPE
			SYNTAX Unsigned32 (0..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Quantity of the AC air circuit breakers. 
				As the ACU lower-level subset, the node indicates the quantity of the output air circuit breakers contained by each ACU lower-level subset. Value range: 0 to 100. 
				"
			::= { hwAcInputEntry 10 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.1.1.99
		hwAcInputOperStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				normal(1),
				acOff(2),
				acAbsent(3),
				voltHigh(4),
				voltLow(5),
				alarmResume(254),
				other(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"State of the site AC distribution uint. It is an enumeration type: 
				If the enumeration value is 1, it indicates that the site AC distribution uint is in the normal state; 
				If the enumeration value is 2, it indicates that AC distribution uint power off; 
				If the enumeration value is 3, it indicates that AC input phase absent;
				If the enumeration value is 4, it indicates that AC voltage is over upper alarm threshold;  
				If the enumeration value is 5, it indicates that AC voltage is under lower alarm threshold;  
				If the enumeration value is 254, it indicates AC distribution uint alarm resume; 
				If the enumeration value is 255, it indicates AC distribution uint operation status unknown. 
				"
			::= { hwAcInputEntry 99 }

		
--  1.3.6.1.4.1.2011.6.1.5.5.1.16
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.1.1.100
		hwAcRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"RowStatus of ACU."
			::= { hwAcInputEntry 100 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.2
		hwAcInputBreakerTable OBJECT-TYPE
			SYNTAX SEQUENCE OF HwAcInputBreakerEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Ac input breaker table. Use this table to get AC input breaker equipment ID, AC input breaker equipment name, and AC input breaker status. This table's index is hwAcInputBreakerIndex, which qualificated by hwAcInputBreakersQuantity in hwAcInputTable, clone Ac input breaker table."
			::= { hwAcDistribution 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.2.1
		hwAcInputBreakerEntry OBJECT-TYPE
			SYNTAX HwAcInputBreakerEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Ac input breaker table entry."
			INDEX { hwAcInputIndex, hwAcInputBreakerIndex }
			::= { hwAcInputBreakerTable 1 }

		
		HwAcInputBreakerEntry ::=
			SEQUENCE { 
				hwAcInputBreakerIndex
					Integer32,
				hwAcInputBreakerEquipId
					Unsigned32,
				hwAcInputBreakerEquipName
					OCTET STRING,
				hwAcInputBreakerOperStatus
					INTEGER,
				hwAcInputBreakerRowStatus
					RowStatus
			 }

		-- 1.3.6.1.4.1.2011.6.164.1.5.2.2.1.1
		hwAcInputBreakerIndex OBJECT-TYPE
			SYNTAX Integer32 (1..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Device table index of the AC air circuit breaker. Value range: 1 to 100.
				An input air circuit breaker device can be uniquely identified through the ACU table index and device index of the AC air circuit breaker.  "
			::= { hwAcInputBreakerEntry 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.2.1.2
		hwAcInputBreakerEquipId OBJECT-TYPE
			SYNTAX Unsigned32 (5001..5100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"AC input air circuit breaker ID. Value range: 005,001 to 005,100. The first digits indicate the device type and the last three digits indicate the device SN."
			::= { hwAcInputBreakerEntry 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.2.1.3
		hwAcInputBreakerEquipName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"AC input air circuit breaker name, of the character string type, can configured by users.
				Otherwise, the configured character can not be any other languages except English."
			::= { hwAcInputBreakerEntry 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.2.1.99
		hwAcInputBreakerOperStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				normal(1),
				disconnect(2),
				alarmResume(254),
				other(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Operation state of the site AC input breaker. It is an enumeration type: 
				If the enumeration value is 1, it indicates that the site AC input breaker is in the normal state; 
				If the enumeration value is 2, it indicates that the AC input breaker disconnect; 
				If the enumeration value is 254, it indicates AC input breaker alarm resume; 
				If the enumeration value is 255, it indicates AC input breaker operation status unknown. 
				"
			::= { hwAcInputBreakerEntry 99 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.5.2.2.1.100
		hwAcInputBreakerRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"RowStatus of AC input breaker."
			::= { hwAcInputBreakerEntry 100 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6
		hwSiteDcDistributions OBJECT IDENTIFIER ::= { hwSiteMonitorMIBObjects 6 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.1
		hwDcDistributionsGroup OBJECT IDENTIFIER ::= { hwSiteDcDistributions 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.1.1
		hwDcsGroupId OBJECT-TYPE
			SYNTAX Unsigned32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"DC group ID: unique ID of the DC group. in which The first digits indicate the device type and the last three digits indicate the device SN. If the last three digits are 000, it indicates a virtual device."
			::= { hwDcDistributionsGroup 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.1.2
		hwDcsGroupName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Device name of the DC group, of the character string type, can be configured by users.
				Otherwise, the configured character can not be any other languages except English."
			::= { hwDcDistributionsGroup 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.1.3
		hwDcsTotalVoltage OBJECT-TYPE
			SYNTAX Unsigned32 (0..600)
			UNITS "V"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Total voltage of the DC group. Value range: 0 to 60, unit: V, and the value is accurate to one decimal place (.1)."
			::= { hwDcDistributionsGroup 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.1.4
		hwDcsTotalCurrent OBJECT-TYPE
			SYNTAX Unsigned32 (0..1000000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Total current of the DC group. Value range: 0 to 10000, unit: A, and the value is accurate to one decimal place (.1). "
			::= { hwDcDistributionsGroup 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.1.5
		hwDcsTotalPower OBJECT-TYPE
			SYNTAX Unsigned32 (0..600000)
			UNITS "W"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Total power of the DC group. Value range: 0 to 10000, unit: W, and the value is an integer (.0)."
			::= { hwDcDistributionsGroup 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.1.6
		hwDcsTotalQuantity OBJECT-TYPE
			SYNTAX Unsigned32 (0..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Total quantity of the DC units, and its Value range: 0 to 100."
			::= { hwDcDistributionsGroup 6 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.1.7
		hwSetDcsUpperVoltLimit OBJECT-TYPE
			SYNTAX Unsigned32 (300..600)
			UNITS "V"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Upper threshold of the DC voltage alarm, can be configued by users. Value range: 30 to 60, unit: V, and the value is accurate to one decimal space (.1)."
			::= { hwDcDistributionsGroup 7 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.1.8
		hwSetDcsLowerVoltLimit OBJECT-TYPE
			SYNTAX Unsigned32 (300..600)
			UNITS "V"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Lower threshold of the DC voltage alarm, can be configued by users. Value range: 30 to 60, unit: V, and the value is accurate to one decimal space (.1)."
			::= { hwDcDistributionsGroup 8 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2
		hwDcDistribution OBJECT IDENTIFIER ::= { hwSiteDcDistributions 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.1
		hwDcOutputTable OBJECT-TYPE
			SYNTAX SEQUENCE OF HwDcOutputEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"DC output table. Use this table to get DC distribution unit ID, DC distribution unit name, DC output voltage, DC output power, and loads quantity in each DC distribution unit, which defines hwLoadsOutputTable row number. This table's index is hwDcOutputIndex, clone Dc output table."
			::= { hwDcDistribution 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.1.1
		hwDcOutputEntry OBJECT-TYPE
			SYNTAX HwDcOutputEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Dc output table entry."
			INDEX { hwDcOutputIndex }
			::= { hwDcOutputTable 1 }

		
		HwDcOutputEntry ::=
			SEQUENCE { 
				hwDcOutputIndex
					Integer32,
				hwDcOutputEquipId
					Unsigned32,
				hwDcOutputEquipName
					OCTET STRING,
				hwDcOutputVoltage
					Unsigned32,
				hwDcOutputCurrent
					Unsigned32,
				hwDcOutputPower
					Unsigned32,
				hwLoadsQuantity
					Unsigned32,
				hwDcOutputOperStatus
					INTEGER,
				hwDcOutputRowStatus
					RowStatus
			 }

		-- 1.3.6.1.4.1.2011.6.164.1.6.2.1.1.1
		hwDcOutputIndex OBJECT-TYPE
			SYNTAX Integer32 (1..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Device table index of the DC units, which value range: 1 to 100. Lines of the device list are restricted by the total quantity of DC units (hwDcsQuantity)."
			::= { hwDcOutputEntry 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.1.1.2
		hwDcOutputEquipId OBJECT-TYPE
			SYNTAX Unsigned32 (6001..6100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"DC unit device ID, which value range: 006,001 to 006,100. The first digits indicate the device type and the last three digits indicate the device SN. "
			::= { hwDcOutputEntry 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.1.1.3
		hwDcOutputEquipName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"DC unit device name, of the character string type, can be configued by users. 
				Otherwise, the configured character can not be any other languages except English."
			::= { hwDcOutputEntry 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.1.1.4
		hwDcOutputVoltage OBJECT-TYPE
			SYNTAX Unsigned32 (0..600)
			UNITS "V"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"DC output voltage. It is an analog parameter collected by the DC power in real time. Value range: 0 to 60, unit: V, and the value is accurate to one decimal space (.1)."
			::= { hwDcOutputEntry 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.1.1.5
		hwDcOutputCurrent OBJECT-TYPE
			SYNTAX Unsigned32 (0..100000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"DC output current. It is an analog parameter collected by the DC power in real time. Value range: 0 to 10000, unit: A, and the value is accurate to one decimal space (.1)."
			::= { hwDcOutputEntry 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.1.1.6
		hwDcOutputPower OBJECT-TYPE
			SYNTAX Unsigned32 (0..600000)
			UNITS "W"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"DC output power. It is an analog parameter collected by the DC power in real time. Value range: 0 to 600000, unit: W, and the value is an integer (.0)."
			::= { hwDcOutputEntry 6 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.1.1.7
		hwLoadsQuantity OBJECT-TYPE
			SYNTAX Unsigned32 (0..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Quantity of the DC load output branches, which value range: 0 to 100. 
				As the DC unit lower-level subset, the node indicates the quantity of the DC load output branches contained by each DC unit lower-level subset."
			::= { hwDcOutputEntry 7 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.1.1.99
		hwDcOutputOperStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				normal(1),
				voltHigh(2),
				voltLow(3),
				alarmResume(254),
				other(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"State of the site DC distribution uint. It is an enumeration type: 
				If the enumeration value is 1, it indicates that the site DC distribution uint is in the normal state; 
				If the enumeration value is 2, it indicates that DC voltage is over the upper alarm threshold;
				If the enumeration value is 3, it indicates that DC voltage is under the lower alarm threshold; 
				If the enumeration value is 254, it indicates DC distribution uint alarm resume; 
				If the enumeration value is 255, it indicates DC distribution uint operation status unknown. 
				"
			::= { hwDcOutputEntry 99 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.1.1.100
		hwDcOutputRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"RowStatus of Dc output equipments."
			::= { hwDcOutputEntry 100 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.2
		hwLoadBranchTable OBJECT-TYPE
			SYNTAX SEQUENCE OF HwLoadBranchEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Loads output table. Use this table to get load branch equipment ID, load branch equipment name, load branch current, and load branch power. This table's index is hwLoadBranchIndex, which qualificated by hwloadsQuantity in hwDcOutputTable, clone loads output table."
			::= { hwDcDistribution 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.2.1
		hwLoadBranchEntry OBJECT-TYPE
			SYNTAX HwLoadBranchEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Loads output table entry."
			INDEX { hwDcOutputIndex, hwLoadBranchIndex }
			::= { hwLoadBranchTable 1 }

		
		HwLoadBranchEntry ::=
			SEQUENCE { 
				hwLoadBranchIndex
					Integer32,
				hwLoadBranchEquipId
					Unsigned32,
				hwLoadBranchEquipName
					OCTET STRING,
				hwLoadBranchCurrent
					Unsigned32,
				hwLoadBranchPower
					Unsigned32,
				hwLoadBranchOperStatus
					INTEGER,
				hwLoadBranchRowStatus
					RowStatus
			 }

		-- 1.3.6.1.4.1.2011.6.164.1.6.2.2.1.1
		hwLoadBranchIndex OBJECT-TYPE
			SYNTAX Integer32 (1..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Device table index of the DC load output branch, which value range: 1 to 100. 
				A DC load output branch can be uniquely identified through the DC unit table index and device index of the DC load output branch."
			::= { hwLoadBranchEntry 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.2.1.2
		hwLoadBranchEquipId OBJECT-TYPE
			SYNTAX Unsigned32 (7001..7100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Device ID of the DC load output branch. Value range: 007,001 to 007,100. The first digits indicate the device type and the last three digits indicate the SN of the device. "
			::= { hwLoadBranchEntry 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.2.1.3
		hwLoadBranchEquipName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Device name of the DC load output branch, of the character string type, can be configured by users.
				Otherwise, the configured character can not be any other languages except English."
			::= { hwLoadBranchEntry 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.2.1.4
		hwLoadBranchCurrent OBJECT-TYPE
			SYNTAX Unsigned32 (0..100000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"DC load output branch current. It is an analog parameter collected by the load branch in real time. Value range: 0 to 10000, unit: A, and the value is accurate to one decimal space (.1)."
			::= { hwLoadBranchEntry 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.2.1.5
		hwLoadBranchPower OBJECT-TYPE
			SYNTAX Unsigned32 (0..600000)
			UNITS "W"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"DC load branch power. It is an analog parameter collected by the DC power in real time. Value range: 0 to 600000, unit: W, and the value is an integer (.0)."
			::= { hwLoadBranchEntry 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.2.1.99
		hwLoadBranchOperStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				normal(1),
				disconnect(2),
				alarmResume(254),
				other(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"State of the site load output branch. It is an enumeration type: 
				If the enumeration value is 1, it indicates that the site load output branch is in the normal state; 
				If the enumeration value is 2, it indicates that the load output branch disconnect;
				If the enumeration value is 254, it indicates load output branch alarm resume; 
				If the enumeration value is 255, it indicates load output branch operation status unknown. 
				"
			::= { hwLoadBranchEntry 99 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.6.2.2.1.100
		hwLoadBranchRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"RowStatus of loads output branch."
			::= { hwLoadBranchEntry 100 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.7
		hwLvdUnits OBJECT IDENTIFIER ::= { hwSiteMonitorMIBObjects 7 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.7.1
		hwLvdsGroup OBJECT IDENTIFIER ::= { hwLvdUnits 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.7.1.1
		hwLvdsGroupId OBJECT-TYPE
			SYNTAX Unsigned32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"LVD unit group ID. It is the unique ID of the LVD unit group. The first digits indicate the device type. The last three digits indicate the device SN. If the last three digits are 000, it indicates a virtual device."
			::= { hwLvdsGroup 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.7.1.2
		hwLvdsGroupName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Low-voltage power-off unit group name, of the character string type, can be configured by users.
				Otherwise, the configured character can not be any other languages except English."
			::= { hwLvdsGroup 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.7.1.3
		hwLvdsTotalQuantity OBJECT-TYPE
			SYNTAX Unsigned32 (0..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Total quantity of power-off units. Value range: 0 to 100."
			::= { hwLvdsGroup 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.7.2
		hwLvdUnit OBJECT IDENTIFIER ::= { hwLvdUnits 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.7.2.1
		hwLvdBranchTable OBJECT-TYPE
			SYNTAX SEQUENCE OF HwLvdBranchEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Power-off unit table. Use this table to get Lvd unit equipment ID and power-off unit equipment name, set power-off enable and power-off voltage, as well as control power-off unit disconnected. This table's index is hwLvdBranchIndex, which qualificated by hwLvdsQuantity, clone power-off unit table."
			::= { hwLvdUnit 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.7.2.1.1
		hwLvdBranchEntry OBJECT-TYPE
			SYNTAX HwLvdBranchEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Power-off table entry."
			INDEX { hwLvdBranchIndex }
			::= { hwLvdBranchTable 1 }

		
		HwLvdBranchEntry ::=
			SEQUENCE { 
				hwLvdBranchIndex
					Integer32,
				hwLvdUnitEquipId
					Unsigned32,
				hwLvdUnitEquipName
					OCTET STRING,
				hwSetLvdEnable
					INTEGER,
				hwSetLvdVoltage
					Integer32,
				hwCtrlLvd
					INTEGER,
				hwLvdBranchOperStatus
					INTEGER,
				hwLvdBranchRowStatus
					RowStatus
			 }

		-- 1.3.6.1.4.1.2011.6.164.1.7.2.1.1.1
		hwLvdBranchIndex OBJECT-TYPE
			SYNTAX Integer32 (1..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Device table index of a power-off unit. Value range: 1 to 100. Lines of the device list are restricted by the total quantity of the power-off units (hwLvdsTotalQuantity). "
			::= { hwLvdBranchEntry 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.7.2.1.1.2
		hwLvdUnitEquipId OBJECT-TYPE
			SYNTAX Unsigned32 (8001..8100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Device ID of a power-off unit. Value range: 8001 to 8100. The first digits indicate the device type and the last three digits indicate the device SN.  "
			::= { hwLvdBranchEntry 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.7.2.1.1.3
		hwLvdUnitEquipName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Device name of a power-off unit, of the character string type, is used to specify the low-voltage power-off unit. Users can configure it.
				Otherwise, the configured character can not be any other languages except English. "
			::= { hwLvdBranchEntry 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.7.2.1.1.4
		hwSetLvdEnable OBJECT-TYPE
			SYNTAX INTEGER
				{
				enabled(1),
				disabled(2)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Control power-off unit enabling. It is an enumeration value, and users actively set it. 
				If the enumeration value is 1, it means to enable the power-off unit; 
				If the enumeration value is 2, it means to disable the power-off unit. 
				When the power-off unit control is not configured, the power-off unit is enabled by default."
			::= { hwLvdBranchEntry 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.7.2.1.1.5
		hwSetLvdVoltage OBJECT-TYPE
			SYNTAX Integer32 (350..600)
			UNITS "V"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Low-voltage power-off voltage of a power-off unit can be configured by users. Its value range: 35 to 60, unit: V, and the value is accurate to one decimal space (.1)."
			::= { hwLvdBranchEntry 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.7.2.1.1.6
		hwCtrlLvd OBJECT-TYPE
			SYNTAX INTEGER
				{
				powerOff(1),
				powerOn(2),
				nullOper(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Control of the power-off unit. It is an enumeration value, users control it manually. 
				If the NMS notifies the SNMP agent that the node is set to 1, it means to power off the power-off unit; 
				If the NMS notifies the SNMP agent that the node is set to 2, it means that the background controls the power-on of the LVD unit. 
				"
			::= { hwLvdBranchEntry 6 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.7.2.1.1.99
		hwLvdBranchOperStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				normal(1),
				lowVoltOff(2),
				backgroundOff(3),
				localManualOff(4),
				lowTempOff(5),
				highTempOff(6),
				alarmResume(254),
				other(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"State of the site LVD uint. It is an enumeration type: 
				If the enumeration value is 1, it indicates that the site LVD uint is in the normal state;
				If the enumeration value is 2, it indicates that the power-off uint disconnect for low voltage;  
				If the enumeration value is 3, it indicates that the power-off uint disconnect bakeground;   
				If the enumeration value is 4, it indicates that the power-off uint local disconnect manually;  
				If the enumeration value is 5, it indicates that the power-off uint disconnect for under temperature; 
				If the enumeration value is 6, it indicates that the power-off uint disconnect for over temperature; 
				If the enumeration value is 254, it indicates that the power-off uint alarm resume; 
				If the enumeration value is 255, it indicates LVD uint operation status unknown. "
			::= { hwLvdBranchEntry 99 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.7.2.1.1.100
		hwLvdBranchRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"RowStatus of lvd table."
			::= { hwLvdBranchEntry 100 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8
		hwSiteEnvUnits OBJECT IDENTIFIER ::= { hwSiteMonitorMIBObjects 8 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.1
		hwEnvUnitsGroup OBJECT IDENTIFIER ::= { hwSiteEnvUnits 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.1.1
		hwEnvUnitsGroupId OBJECT-TYPE
			SYNTAX Unsigned32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Unit group ID of the site environment. It is the unique ID of the unit group on the site. The first digits indicate the device type. The last three digits indicate the device SN. If the last three digits are 000, it indicates a virtual device.  "
			::= { hwEnvUnitsGroup 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.1.2
		hwEnvUnitsGroupName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Unit group name of the site environment, of the character string type, can be configured by users.
				Otherwise, the configured character can not be any other languages except English."
			::= { hwEnvUnitsGroup 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.1.3
		hwCtrlSmokeReset OBJECT-TYPE
			SYNTAX INTEGER
				{
				normal(1),
				reset(2),
				nullOper(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Smoke sensor reset. It manually controls clearance of the smoke sensor alarm, and this node is of the enumeration type. 
				If the enumeration value is 1, it indicates that the reset of the smoke sensor is not required. 
				If the enumeration value of the node is 2, it indicates that the background controls the reset of the smoke sensor. 
				"
			::= { hwEnvUnitsGroup 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.1.4
		hwCtrlDoorReset OBJECT-TYPE
			SYNTAX INTEGER
				{
				normal(1),
				reset(2),
				nullOper(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Door actuator reset control. It manually controls clearance of the door actuator alarm. This node is of the enumeration type. 
				If the enumeration value is 1, it indicates that clearance of the door actuator is not required;
				If the enumeration value is 2, it indicates that the background controls clearance of the door actuator. "
			::= { hwEnvUnitsGroup 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.1.5
		hwCtrlBuzzerEnable OBJECT-TYPE
			SYNTAX INTEGER
				{
				enable(1),
				disable(2),
				nullOper(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Buzzer enabling. It manually controls the enabling of the buzzer alarm. This node is of the enumeration type. 
				When the enumeration value is 1, it means to enable the buzzer;
				When the enumeration value is 2, it means to disable the buzzer. 
				"
			::= { hwEnvUnitsGroup 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.1.6
		hwEnvTempSensorsTotalQuantity OBJECT-TYPE
			SYNTAX Unsigned32 (0..256)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Quantity of the environment temperature sensors, and its value range: 0 to 256."
			::= { hwEnvUnitsGroup 6 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.1.7
		hwEnvHumiSensorsTotalQuantity OBJECT-TYPE
			SYNTAX Unsigned32 (0..256)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Quantity of the environment humidity sensors, and its value range: 0 to 256."
			::= { hwEnvUnitsGroup 7 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.1.8
		hwSpareDigitalsTotalQuantity OBJECT-TYPE
			SYNTAX Unsigned32 (0..256)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Quantity of the Spare digitals, and its value range: 0 to 256."
			::= { hwEnvUnitsGroup 8 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2
		hwEnvSensor OBJECT IDENTIFIER ::= { hwSiteEnvUnits 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.1
		hwEnvTempSensorTable OBJECT-TYPE
			SYNTAX SEQUENCE OF HwEnvTempSensorEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Site environment temperature table. Use this table to get environment temperature equipment ID, environment temperature equipment name, and environment temperature, set environment temperature upper limit, environment temperature lower limit, and environment temperature alarm enable. This table's index is hwEnvTempSensorIndex, which qualificated by hwEnvTempSensorsQuantity, clone site environment temperature table."
			::= { hwEnvSensor 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.1.1
		hwEnvTempSensorEntry OBJECT-TYPE
			SYNTAX HwEnvTempSensorEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Site environment temperature table entry."
			INDEX { hwEnvTempSensorIndex }
			::= { hwEnvTempSensorTable 1 }

		
		HwEnvTempSensorEntry ::=
			SEQUENCE { 
				hwEnvTempSensorIndex
					Integer32,
				hwEnvTempEquipId
					Unsigned32,
				hwEnvTempEquipName
					OCTET STRING,
				hwEnvTemperature
					Integer32,
				hwSetEnvTempUpperLimit
					Integer32,
				hwSetEnvTempLowerLimit
					Integer32,
				hwSetEnvTempMeasureUpperLimit
					Integer32,
				hwSetEnvTempMeasureLowerLimit
					Integer32,
				hwSetEnvTempAlarmEnable
					INTEGER,
				hwEnvTempSensorOperStatus
					INTEGER,
				hwEnvTempSensorRowStatus
					RowStatus
			 }

		-- 1.3.6.1.4.1.2011.6.164.1.8.2.1.1.1
		hwEnvTempSensorIndex OBJECT-TYPE
			SYNTAX Integer32 (1..256)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Table index of the environment temperature sensors. Value range: 1 to 256. Lines of the device table are restricted by the quantity of environment temperature sensors (hwEnvTempSensorsTotalQuantity). "
			::= { hwEnvTempSensorEntry 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.1.1.2
		hwEnvTempEquipId OBJECT-TYPE
			SYNTAX Unsigned32 (9001..9255)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Environment temperature sensor ID. Value range: 009'001 to 009'255, in which the first digits indicate the device type and the last three digits indicate the device SN. "
			::= { hwEnvTempSensorEntry 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.1.1.3
		hwEnvTempEquipName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Environment temperature sensor name, of the character string type,  is used to specify an environment temperature sensor. Users can configure it.
				Otherwise, the configured character can not be any other languages except English. "
			::= { hwEnvTempSensorEntry 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.1.1.4
		hwEnvTemperature OBJECT-TYPE
			SYNTAX Integer32 (-50..100)
			UNITS "centigrades"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Environment temperature. It is an environment parameter collected in real time. Value range: -50 to +100, unit: centigrade (°„C), and the value is an integer (.0).  
				If the value is -1024, it indicates that the temperature sensor is not configured."
			::= { hwEnvTempSensorEntry 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.1.1.5
		hwSetEnvTempUpperLimit OBJECT-TYPE
			SYNTAX Integer32 (-50..100)
			UNITS "centigrades"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Upper threshold of the environment temperature alarm, can be configured by users. Value range: -50 to 100, unit: centigrade (°„C), and the value is an integer (.0)."
			::= { hwEnvTempSensorEntry 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.1.1.6
		hwSetEnvTempLowerLimit OBJECT-TYPE
			SYNTAX Integer32 (-50..100)
			UNITS "centigrades"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Lower threshold of the environment temperature alarm, can be configured by users. Value range: -50 to 100, unit: centigrade (°„C), and the value is an integer (.0)."
			::= { hwEnvTempSensorEntry 6 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.1.1.7
		hwSetEnvTempMeasureUpperLimit OBJECT-TYPE
			SYNTAX Integer32 (0..100)
			UNITS "centigrades"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Upper threshold of the environment temperature measurement, can be configured by users. Value range: 0 to 100, unit: centigrade (°„C), and the value is an integer (.0)."
			::= { hwEnvTempSensorEntry 7 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.1.1.8
		hwSetEnvTempMeasureLowerLimit OBJECT-TYPE
			SYNTAX Integer32 (-50..0)
			UNITS "centigrades"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Lower threshold of the environment temperature measurement, can be configured by users. Value range: -50 to 0, unit: centigrade (°„C), and the value is an integer (.0)."
			::= { hwEnvTempSensorEntry 8 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.1.1.9
		hwSetEnvTempAlarmEnable OBJECT-TYPE
			SYNTAX INTEGER
				{
				enable(1),
				disable(2)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Environment temperature alarm. It is an enumeration type:
				If the enumeration value is 1, enable the alarm of the environment temperature; 
				If the enumeration value is 2, disable the alarm of the environment temperature. "
			::= { hwEnvTempSensorEntry 9 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.1.1.99
		hwEnvTempSensorOperStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				normal(1),
				tempHigh(2),
				tempLow(3),
				notInslot(4),
				alarmResume(254),
				other(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"State of the site environment temperature sensor. It is an enumeration type: 
				If the enumeration value is 1, it indicates that the site environment temperature sensor is in the normal state; 
				If the enumeration value is 2, it indicates that the environment temperature sensor is over temperature; 
				If the enumeration value is 3, it indicates that the environment temperature sensor is under temperature; 
				If the enumeration value is 4, it indicates that the environment temperature sensor is not in slot;
				If the enumeration value is 254, it indicates that environment temperature alarm resume; 
				If the enumeration value is 255, it indicates environment temperature sensor operation status unknown. 
				
				"
			::= { hwEnvTempSensorEntry 99 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.1.1.100
		hwEnvTempSensorRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"RowStatus of Environment temperature table."
			::= { hwEnvTempSensorEntry 100 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.2
		hwEnvHumiSensorTable OBJECT-TYPE
			SYNTAX SEQUENCE OF HwEnvHumiSensorEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Environment humidity table. Use this table to get environment humidity equipment ID , environment humidity equipment name, and environment humidity, set environment humidity upper limit, environment humidity lower limit, and environment humidity alarm enable. This table's index is hwEnvHumiSensorIndex, which qualificated by hwEnvHumiSensorIndex, clone site environment humidity table."
			::= { hwEnvSensor 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.2.1
		hwEnvHumiSensorEntry OBJECT-TYPE
			SYNTAX HwEnvHumiSensorEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Environment humidity table entry."
			INDEX { hwEnvHumiSensorIndex }
			::= { hwEnvHumiSensorTable 1 }

		
		HwEnvHumiSensorEntry ::=
			SEQUENCE { 
				hwEnvHumiSensorIndex
					Integer32,
				hwEnvHumiEquipId
					Unsigned32,
				hwEnvHumiEquipName
					OCTET STRING,
				hwEnvHumidity
					Integer32,
				hwSetEnvHumidityUpperLimit
					Integer32,
				hwSetEnvHumidityLowerLimit
					Integer32,
				hwSetEnvHumidityMeasureUpperLimit
					Integer32,
				hwSetEnvHumidityMeasureLowerLimit
					Integer32,
				hwSetEnvHumiAlarmEnable
					INTEGER,
				hwEnvHumiSensorOperStatus
					INTEGER,
				hwEnvHumiSensorRowStatus
					RowStatus
			 }

		-- 1.3.6.1.4.1.2011.6.164.1.8.2.2.1.1
		hwEnvHumiSensorIndex OBJECT-TYPE
			SYNTAX Integer32 (1..256)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Table index of the environment humility sensors. Value range: 1 to 256. Lines of the device list are restricted by the quantity of environment humility sensors (hwEnvHumiSensorsTotalQuantity). "
			::= { hwEnvHumiSensorEntry 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.2.1.2
		hwEnvHumiEquipId OBJECT-TYPE
			SYNTAX Unsigned32 (10001..10255)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Environment humility sensor ID, can be configured by users. Value range: 010'001 to 010'255, in which the first digits indicate the device type and the last three digits indicate the device SN."
			::= { hwEnvHumiSensorEntry 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.2.1.3
		hwEnvHumiEquipName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Environment humility sensor name, of the character string type, is used to specify an environment humility sensor. Users can configure it.
				Otherwise, the configured character can not be any other languages except English. "
			::= { hwEnvHumiSensorEntry 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.2.1.4
		hwEnvHumidity OBJECT-TYPE
			SYNTAX Integer32 (0..100)
			UNITS "%RH"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Environment humility. It is an environment parameter collected in real time. Value range: 0 to 100, unit: %RH, and the value is an integer (.0).
				If the value is 255, it indicates that the humidity sensor is not configured."
			::= { hwEnvHumiSensorEntry 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.2.1.5
		hwSetEnvHumidityUpperLimit OBJECT-TYPE
			SYNTAX Integer32 (0..100)
			UNITS "%RH"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Upper threshold of the environment humility alarm, can be configured by users. Value range: 0 to 100, unit: %RH, and the value is an integer (.0)."
			::= { hwEnvHumiSensorEntry 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.2.1.6
		hwSetEnvHumidityLowerLimit OBJECT-TYPE
			SYNTAX Integer32 (0..100)
			UNITS "%RH"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Lower threshold of the environment humility alarm, can be configured by users. Value range: 0 to 100, unit: %RH, and the value is an integer (.0)."
			::= { hwEnvHumiSensorEntry 6 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.2.1.7
		hwSetEnvHumidityMeasureUpperLimit OBJECT-TYPE
			SYNTAX Integer32 (0..100)
			UNITS "%RH"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Upper threshold of the environment humility measurement, can be configured by users. Value range: 0 to 100, unit: %RH, and the value is an integer (.0)."
			::= { hwEnvHumiSensorEntry 7 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.2.1.8
		hwSetEnvHumidityMeasureLowerLimit OBJECT-TYPE
			SYNTAX Integer32 (0..100)
			UNITS "%RH"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Lower threshold of the environment humility measurement, can be configured by users. Value range: 0 to 100, unit: %RH, and the value is an integer (.0)."
			::= { hwEnvHumiSensorEntry 8 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.2.1.9
		hwSetEnvHumiAlarmEnable OBJECT-TYPE
			SYNTAX INTEGER
				{
				enable(1),
				disable(2)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Environment humility alarm. It is an enumeration type:
				If the enumeration value is 1, enable the alarm of the environment humility; 
				If the enumeration value is 2, disable the alarm of the environment humility. 
				The environment humility alarm is enabled by default. "
			::= { hwEnvHumiSensorEntry 9 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.2.1.99
		hwEnvHumiSensorOperStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				normal(1),
				humidityHigh(2),
				humidityLow(3),
				notInslot(4),
				alarmResume(254),
				other(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"State of the site environment humidity sensor. It is an enumeration type: 
				If the enumeration value is 1, it indicates that the site environment humidity sensor is in the normal state; 
				If the enumeration value is 2, it indicates that the environment humidity sensor is over humidity; 
				If the enumeration value is 3, it indicates that the environment humidity sensor is under humidity;
				If the enumeration value is 4, it indicates that the environment humidity sensor is not in slot;
				If the enumeration value is 254, it indicates that environment humidity alarm resume;   
				If the enumeration value is 255, it indicates environment humidity sensor operation status unknown.  "
			::= { hwEnvHumiSensorEntry 99 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.2.1.100
		hwEnvHumiSensorRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"RowStatus of Environment humidity table."
			::= { hwEnvHumiSensorEntry 100 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.3
		hwSpareDigitalTable OBJECT-TYPE
			SYNTAX SEQUENCE OF HwSpareDigitalEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Spare digital table. Use this table to get Spare digital equipment ID , Spare digital equipment name, and current Spare digital alarm tension, ae well as to set Spare digital alarm enable. This table's index is hwSpareDigitalIndex, which qualificated by hwSpareDigitalsTotalQuantity, clone switch input table."
			::= { hwEnvSensor 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.3.1
		hwSpareDigitalEntry OBJECT-TYPE
			SYNTAX HwSpareDigitalEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Spare digital table entry."
			INDEX { hwSpareDigitalIndex }
			::= { hwSpareDigitalTable 1 }

		
		HwSpareDigitalEntry ::=
			SEQUENCE { 
				hwSpareDigitalIndex
					Integer32,
				hwSpareDigitalEquipId
					Unsigned32,
				hwSpareDigitalEquipName
					OCTET STRING,
				hwSetSpareDigitalAlarmTension
					INTEGER,
				hwSetSpareDigitalAlarmEnable
					INTEGER,
				hwSpareDigitalOperStatus
					INTEGER,
				hwSpareDigitalRowStatus
					RowStatus
			 }

		-- 1.3.6.1.4.1.2011.6.164.1.8.2.3.1.1
		hwSpareDigitalIndex OBJECT-TYPE
			SYNTAX Integer32 (1..256)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Spare digital table index, which value range: 1 to 256. Lines of the device list are restricted by the quantity of Spare digitals (hwSpareDigitalsTotalQuantity). "
			::= { hwSpareDigitalEntry 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.3.1.2
		hwSpareDigitalEquipId OBJECT-TYPE
			SYNTAX Unsigned32 (11001..11255)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Spare digital device ID. Value range: 011'001 to 011'255, in which the first digits indicate the device type and the last three digits indicate the device SN. "
			::= { hwSpareDigitalEntry 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.3.1.3
		hwSpareDigitalEquipName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..63))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Spare digital name, of the character string type, is used to specify Spare digitals. Users can configure it.
				Otherwise, the configured character can not be any other languages except English. "
			::= { hwSpareDigitalEntry 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.3.1.4
		hwSetSpareDigitalAlarmTension OBJECT-TYPE
			SYNTAX INTEGER
				{
				low(0),
				high(1)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Spare digital alarm state. It is an enumeration value.  
				If the value of the node is 0, it indicates a low-tension alarm;
				If the value of the node is 1, it indicates a high-tension alarm. "
			::= { hwSpareDigitalEntry 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.3.1.5
		hwSetSpareDigitalAlarmEnable OBJECT-TYPE
			SYNTAX INTEGER
				{
				enable(1),
				disable(2)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Spare digital alarm enabling. It is an enumeration type: 
				If the enumeration value is 1, it means to enable the alarm; 
				If the enumeration value is 2, it means to disable the alarm. "
			::= { hwSpareDigitalEntry 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.3.1.99
		hwSpareDigitalOperStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				normal(1),
				alarm(2),
				alarmResume(254),
				other(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"State of the site Spare digital. It is an enumeration type: 
				If the enumeration value is 1, it indicates that the Spare digital operation state is normal; 
				If the enumeration value is 2, it indicates that a alarm occurs on the Spare digital;  
				If the enumeration value is 254, it indicates that spare digital alarm resume;  
				If the enumeration value is 255, it indicates Spare digital operation status unknown."
			::= { hwSpareDigitalEntry 99 }

		
		-- 1.3.6.1.4.1.2011.6.164.1.8.2.3.1.100
		hwSpareDigitalRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"RowStatus of Spare digital device table."
			::= { hwSpareDigitalEntry 100 }
					

		-- 1.3.6.1.4.1.2011.6.164.1.9
		hwSitePDEs OBJECT IDENTIFIER ::= { hwSiteMonitorMIBObjects 9 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.1
		hwPDEGroup OBJECT IDENTIFIER ::= { hwSitePDEs 1 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.1.1
		hwPDEGroupId OBJECT-TYPE
			SYNTAX Unsigned32 (12000..12255)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE unit group ID. It is the unique ID of the PDE unit group. The first digits indicate the device type. The last three digits indicate the device SN. If the last three digits are 000, it indicates a virtual device."
			::= { hwPDEGroup 1 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.1.2
		hwPDEGroupName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..64))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"PDE unit group name, of the character string type, can be configured by users.
				Otherwise, the configured character can not be any other languages except English."
			::= { hwPDEGroup 2 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.1.3
		hwPDEGroupNum OBJECT-TYPE
			SYNTAX Unsigned32 (0..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Num,Value range: 0 to 100."
			::= { hwPDEGroup 3 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.1.4
		hwPDEGroupCommNum OBJECT-TYPE
			SYNTAX Unsigned32 (0..100)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Communication PDE Num,Value range: 0 to 100."
			::= { hwPDEGroup 4 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.1.5
		hwPDEGroupTotalPower OBJECT-TYPE
			SYNTAX Unsigned32 (0..100000)
			UNITS "W"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Total Power,Value range: 0.0 to 10000.0.Unit: W.and the value is accurate to one decimal space (.1)."
			::= { hwPDEGroup 5 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.1.6
		hwPDEGroupTotalCurrent OBJECT-TYPE
			SYNTAX Unsigned32 (0..3000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Total Current,Value range: 0.0 to 300.0.Unit: A.and the value is accurate to one decimal space (.1)."
			::= { hwPDEGroup 6 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.1.7
		hwPDEGroupCommStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				commOk(1),
				commFail(2),
				unknown(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Communication Status. It is an enumeration type: 
				If the enumeration value is 1, it indicates that communication is normal; 
				If the enumeration value is 2, it indicates that communication is abnormal. 
				If the enumeration value is 255, it indicates that communication is unknown."
			::= { hwPDEGroup 7 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3
		hwPDE OBJECT IDENTIFIER ::= { hwSitePDEs 3 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1
		hwPDETable OBJECT-TYPE
			SYNTAX SEQUENCE OF HwPDEEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"PDE table. Use this table to get PDE equipment ID , PDE equipment name, and current PDE status. This table's index is hwPDEIndex."
			::= { hwPDE 1 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1
		hwPDEEntry OBJECT-TYPE
			SYNTAX HwPDEEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"PDE table entry."
			INDEX { hwPDEIndex }
			::= { hwPDETable 1 }
		
		HwPDEEntry ::=
			SEQUENCE { 
				hwPDEIndex
					Integer32,
				hwPDEEquipId
					Unsigned32,
				hwPDEEquipName
					OCTET STRING,
				hwPDETotalRunningTime
					Unsigned32,
				hwPDEBranchNum
					Unsigned32,
				hwPDETotalPower
					Unsigned32,
				hwPDETotalCurrent
					Unsigned32,
				hwPDEBranch1Power
					Unsigned32,
				hwPDEBranch2Power
					Unsigned32,
				hwPDEBranch3Power
					Unsigned32,
				hwPDEBranch4Power
					Unsigned32,
				hwPDEBranch1Current
					Unsigned32,
				hwPDEBranch2Current
					Unsigned32,
				hwPDEBranch3Current
					Unsigned32,
				hwPDEBranch4Current
					Unsigned32,
				hwPDEBranch1Voltage
					Unsigned32,
				hwPDEBranch2Voltage
					Unsigned32,
				hwPDEBranch3Voltage
					Unsigned32,
				hwPDEBranch4Voltage
					Unsigned32,
				hwPDEBranch1Temperature
					Unsigned32,
				hwPDEBranch2Temperature
					Unsigned32,
				hwPDEBranch3Temperature
					Unsigned32,
				hwPDEBranch4Temperature
					Unsigned32,
				hwPDEOperStatus
					INTEGER,
				hwPDERowStatus
					RowStatus
			 }


		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.1
		hwPDEIndex OBJECT-TYPE
			SYNTAX Integer32 (1..10)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE table index, which value range: 1 to 10. Lines of the device list are restricted by the quantity of PDE. "
			::= { hwPDEEntry 1 }

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.2
		hwPDEEquipId OBJECT-TYPE
			SYNTAX Unsigned32 (12001..12255)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE device ID. Value range: 012'001 to 012'255, in which the first digits indicate the device type and the last three digits indicate the device SN. "
			::= { hwPDEEntry 2 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.3
		hwPDEEquipName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..64))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"PDE name, of the character string type, is used to specify PDEs. Users can configure it.
				Otherwise, the configured character can not be any other languages except English. "
			::= { hwPDEEntry 3 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.4
		hwPDETotalRunningTime OBJECT-TYPE
			SYNTAX Unsigned32 (0..876000)
			UNITS "H"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Total Running Time,Value range: 0 to 876000.Unit: H."
			::= { hwPDEEntry 4 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.5
		hwPDEBranchNum OBJECT-TYPE
			SYNTAX Unsigned32 (0..6)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Branch Number,Value range: 0 to 6."
			::= { hwPDEEntry 5 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.6
		hwPDETotalPower OBJECT-TYPE
			SYNTAX Unsigned32 (0..100000)
			UNITS "W"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Total Power,Value range: 0.0 to 10000.0.Unit: W.and the value is accurate to one decimal space (.1)."
			::= { hwPDEEntry 6 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.7
		hwPDETotalCurrent OBJECT-TYPE
			SYNTAX Unsigned32 (0..300000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Total Current,Value range: 0.0 to 30000.0.Unit: A.and the value is accurate to one decimal space (.1)."
			::= { hwPDEEntry 7 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.8
		hwPDEBranch1Power OBJECT-TYPE
			SYNTAX Unsigned32 (0..1000000)
			UNITS "W"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Branch1 Power,Value range: 0.0 to 100000.0.Unit: W.and the value is accurate to one decimal space (.1)."
			::= { hwPDEEntry 8 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.9
		hwPDEBranch2Power OBJECT-TYPE
			SYNTAX Unsigned32 (0..1000000)
			UNITS "W"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Branch2 Power,Value range: 0.0 to 100000.0.Unit: W.and the value is accurate to one decimal space (.1)."
			::= { hwPDEEntry 9 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.10
		hwPDEBranch3Power OBJECT-TYPE
			SYNTAX Unsigned32 (0..1000000)
			UNITS "W"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Branch3 Power,Value range: 0.0 to 100000.0.Unit: W.and the value is accurate to one decimal space (.1)."
			::= { hwPDEEntry 10 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.11
		hwPDEBranch4Power OBJECT-TYPE
			SYNTAX Unsigned32 (0..1000000)
			UNITS "W"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Branch4 Power,Value range: 0.0 to 100000.0.Unit: W.and the value is accurate to one decimal space (.1)."
			::= { hwPDEEntry 11 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.12
		hwPDEBranch1Current OBJECT-TYPE
			SYNTAX Unsigned32 (0..10000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Branch1 Current,Value range: 0.0 to 1000.0.Unit: A.and the value is accurate to one decimal space (.1)."
			::= { hwPDEEntry 12 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.13
		hwPDEBranch2Current OBJECT-TYPE
			SYNTAX Unsigned32 (0..10000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Branch2 Current,Value range: 0.0 to 1000.0.Unit: A.and the value is accurate to one decimal space (.1)."
			::= { hwPDEEntry 13 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.14
		hwPDEBranch3Current OBJECT-TYPE
			SYNTAX Unsigned32 (0..10000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Branch3 Current,Value range: 0.0 to 1000.0.Unit: A.and the value is accurate to one decimal space (.1)."
			::= { hwPDEEntry 14 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.15
		hwPDEBranch4Current OBJECT-TYPE
			SYNTAX Unsigned32 (0..10000)
			UNITS "A"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Branch4 Current,Value range: 0.0 to 1000.0.Unit: A.and the value is accurate to one decimal space (.1)."
			::= { hwPDEEntry 15 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.16
		hwPDEBranch1Voltage OBJECT-TYPE
			SYNTAX Unsigned32 (0..650)
			UNITS "V"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Branch1 Voltage,Value range: 0.0 to 65.0.Unit: V.and the value is accurate to one decimal space (.1)."
			::= { hwPDEEntry 16 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.17
		hwPDEBranch2Voltage OBJECT-TYPE
			SYNTAX Unsigned32 (0..650)
			UNITS "V"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Branch2 Voltage,Value range: 0.0 to 65.0.Unit: V.and the value is accurate to one decimal space (.1)."
			::= { hwPDEEntry 17 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.18
		hwPDEBranch3Voltage OBJECT-TYPE
			SYNTAX Unsigned32 (0..650)
			UNITS "V"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Branch3 Voltage,Value range: 0.0 to 65.0.Unit: V.and the value is accurate to one decimal space (.1)."
			::= { hwPDEEntry 18 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.19
		hwPDEBranch4Voltage OBJECT-TYPE
			SYNTAX Unsigned32 (0..650)
			UNITS "V"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Branch4 Voltage,Value range: 0.0 to 65.0.Unit: V.and the value is accurate to one decimal space (.1)."
			::= { hwPDEEntry 19 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.20
		hwPDEBranch1Temperature OBJECT-TYPE
			SYNTAX Unsigned32 (0..300)
			UNITS "deg"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Branch1 Temperature,Value range: 0 to 300.Unit: deg."
			::= { hwPDEEntry 20 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.21
		hwPDEBranch2Temperature OBJECT-TYPE
			SYNTAX Unsigned32 (0..300)
			UNITS "deg"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Branch2 Temperature,Value range: 0 to 300.Unit: deg."
			::= { hwPDEEntry 21 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.22
		hwPDEBranch3Temperature OBJECT-TYPE
			SYNTAX Unsigned32 (0..300)
			UNITS "deg"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Branch3 Temperature,Value range: 0 to 300.Unit: deg."
			::= { hwPDEEntry 22 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.23
		hwPDEBranch4Temperature OBJECT-TYPE
			SYNTAX Unsigned32 (0..300)
			UNITS "deg"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Branch4 Temperature,Value range: 0 to 300.Unit: deg."
			::= { hwPDEEntry 23 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.24
		hwPDEOperStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				normal(1),
				alarm(2),
				alarmResume(254),
				unknown(255)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"State of the PDE. It is an enumeration type: 
				If the enumeration value is 1, it indicates that the PDE is in the normal state;
				If the enumeration value is 2, it indicates that the PDE is in the alarm state;  
				If the enumeration value is 254, it indicates that the PDE is in the resume state;   
				If the enumeration value is 255, it indicates PDE operation status unknown. "
			::= { hwPDEEntry 24 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.1.1.100
		hwPDERowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"RowStatus of PDE table."
			::= { hwPDEEntry 100 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2
		hwPDEConfigTable OBJECT-TYPE
			SYNTAX SEQUENCE OF HwPDEConfigEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"PDE Config table. Use this table to get PDE equipment ID , PDE equipment name, and current PDE config parameter. This table's index is hwPDEConfigIndex."
			::= { hwPDE 2 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1
		hwPDEConfigEntry OBJECT-TYPE
			SYNTAX HwPDEConfigEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"PDE Config table entry."
			INDEX { hwPDEConfigIndex }
			::= { hwPDEConfigTable 1 }
		
		HwPDEConfigEntry ::=
			SEQUENCE { 
				hwPDEConfigIndex
					Integer32,
				hwPDEConfigEquipId
					Unsigned32,
				hwPDEConfigEquipName
					OCTET STRING,
				hwPDEOverTempProtect
					Unsigned32,
				hwPDEVolProtectEnable
					INTEGER,
				hwPDEOverVoltageProtect
					Unsigned32,
				hwPDEUnderVoltageProtect
					Unsigned32,
				hwPDEHysteresis
					Unsigned32,
				hwPDEReset
					INTEGER,
				hwPDEBranch1Control
					INTEGER,
				hwPDEBranch2Control
					INTEGER,
				hwPDEBranch3Control
					INTEGER,
				hwPDEBranch4Control
					INTEGER,
				hwPDEBranch1CurrentLimit
					Unsigned32,
				hwPDEBranch2CurrentLimit
					Unsigned32,
				hwPDEBranch3CurrentLimit
					Unsigned32,
				hwPDEBranch4CurrentLimit
					Unsigned32,
				hwPDEConfigRowStatus
					RowStatus
			 }


		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.1
		hwPDEConfigIndex OBJECT-TYPE
			SYNTAX Integer32 (1..10)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE Config table index, which value range: 1 to 10. Lines of the device list are restricted by the quantity of PDE. "
			::= { hwPDEConfigEntry 1 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.2
		hwPDEConfigEquipId OBJECT-TYPE
			SYNTAX Unsigned32 (12001..12255)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"PDE device ID. Value range: 012'001 to 012'255, in which the first digits indicate the device type and the last three digits indicate the device SN. "
			::= { hwPDEConfigEntry 2 }

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.3
		hwPDEConfigEquipName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..64))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"PDE name, of the character string type, is used to specify PDEs. Users can configure it.
				Otherwise, the configured character can not be any other languages except English. "
			::= { hwPDEConfigEntry 3 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.4
		hwPDEOverTempProtect OBJECT-TYPE
			SYNTAX Unsigned32 (100..120)
			UNITS "deg"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"PDE Over Temperature Protect,Value range: 100 to 120.Unit: deg."
			::= { hwPDEConfigEntry 4 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.5
		hwPDEVolProtectEnable OBJECT-TYPE
			SYNTAX INTEGER
				{
				enable(1),
				disable(2),
				unknown(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"PDE Over Protect Enable,It is an enumeration value, and users actively set it. 
				If the enumeration value is 1, it means to enable the PDE voltage protect; 
				If the enumeration value is 2, it means to disable the PDE voltage protect. "
			::= { hwPDEConfigEntry 5 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.6
		hwPDEOverVoltageProtect OBJECT-TYPE
			SYNTAX Unsigned32 (58..60)
			UNITS "V"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"PDE Over Voltage Protect,Value range: 58 to 60.Unit: V."
			::= { hwPDEConfigEntry 6 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.7
		hwPDEUnderVoltageProtect OBJECT-TYPE
			SYNTAX Unsigned32 (40..48)
			UNITS "V"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"PDE Under Voltage Protect,Value range: 40 to 48.Unit: V."
			::= { hwPDEConfigEntry 7 }
		

-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.8
		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.8
		hwPDEHysteresis OBJECT-TYPE
			SYNTAX Unsigned32 (1..3)
			UNITS "V"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"PDE Hysteresis,Value range: 1 to 3.Unit: V."
			::= { hwPDEConfigEntry 8 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.9
		hwPDEReset OBJECT-TYPE
			SYNTAX INTEGER
				{
				reset(1),
				unknown(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"PDE Reset Control,It is an enumeration value, and users actively set it. 
				If the enumeration value is 1, it means to reset the PDE; "
			::= { hwPDEConfigEntry 9 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.10
		hwPDEBranch1Control OBJECT-TYPE
			SYNTAX INTEGER
				{
				open(1),
				close(2),
				unknown(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"PDE Branch1 Control,It is an enumeration value, and users actively set it. 
				If the enumeration value is 1, it means to open the branch1; 
				If the enumeration value is 2, it means to close the branch1; "
			::= { hwPDEConfigEntry 10 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.11
		hwPDEBranch2Control OBJECT-TYPE
			SYNTAX INTEGER
				{
				open(1),
				close(2),
				unknown(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"PDE Branch2 Control,It is an enumeration value, and users actively set it. 
				If the enumeration value is 1, it means to open the branch2; 
				If the enumeration value is 2, it means to close the branch2; "
			::= { hwPDEConfigEntry 11 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.12
		hwPDEBranch3Control OBJECT-TYPE
			SYNTAX INTEGER
				{
				open(1),
				close(2),
				unknown(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"PDE Branch3 Control,It is an enumeration value, and users actively set it. 
				If the enumeration value is 1, it means to open the branch3; 
				If the enumeration value is 2, it means to close the branch3; "
			::= { hwPDEConfigEntry 12 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.13
		hwPDEBranch4Control OBJECT-TYPE
			SYNTAX INTEGER
				{
				open(1),
				close(2),
				unknown(255)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"PDE Branch4 Control,It is an enumeration value, and users actively set it. 
				If the enumeration value is 1, it means to open the branch4; 
				If the enumeration value is 2, it means to close the branch4; "
			::= { hwPDEConfigEntry 13 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.14
		hwPDEBranch1CurrentLimit OBJECT-TYPE
			SYNTAX Unsigned32 (1..20)
			UNITS "A"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"PDE Branch1 Current Limit,Value range: 1 to 20.Unit: A."
			::= { hwPDEConfigEntry 14 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.15
		hwPDEBranch2CurrentLimit OBJECT-TYPE
			SYNTAX Unsigned32 (1..30)
			UNITS "A"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"PDE Branch2 Current Limit,Value range: 1 to 30.Unit: A."
			::= { hwPDEConfigEntry 15 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.16
		hwPDEBranch3CurrentLimit OBJECT-TYPE
			SYNTAX Unsigned32 (1..30)
			UNITS "A"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"PDE Branch3 Current Limit,Value range: 1 to 30.Unit: A."
			::= { hwPDEConfigEntry 16 }
		

		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.17
		hwPDEBranch4CurrentLimit OBJECT-TYPE
			SYNTAX Unsigned32 (1..20)
			UNITS "A"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"PDE Branch4 Current Limit,Value range: 1 to 20.Unit: A."
			::= { hwPDEConfigEntry 17 }
		
		-- 1.3.6.1.4.1.2011.6.164.1.9.3.2.1.100
		hwPDEConfigRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"RowStatus of PDE config table."
			::= { hwPDEConfigEntry 100 }

		
		-- 1.3.6.1.4.1.2011.6.164.2
		hwSiteMonitorMIBTraps OBJECT IDENTIFIER ::= { hwSiteMonitorMIB 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1
		hwSiteAlarmTraps OBJECT IDENTIFIER ::= { hwSiteMonitorMIBTraps 1 }

		
--  1.3.6.1.4.1.2011.6.1.7.1
		-- 1.3.6.1.4.1.2011.6.164.2.1.0
		hwSiteAlarmTrapsPrefix OBJECT IDENTIFIER ::= { hwSiteAlarmTraps 0 }

		
--  1.3.6.1.4.1.2011.6.1.7.1.9
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.1
		hwRectifierFaultAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber, hwAlarmText, hwAlarmLevel, hwAlarmSigDesc, hwSiteName, hwSiteAdminAddr,
				hwNetIdentifier, hwSiteDescription, hwRectEquipId, hwRectEquipName,hwRectOperStatus }
			STATUS current
			DESCRIPTION 
				"When rectifiers fault alarms happen, a alarm trap will be send. Its correlation binding parameters: Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, rectifier equipment ID and equipment name are also include in VB(variable bondings).  "
			::= { hwSiteAlarmTrapsPrefix 1 }

		
--  1.3.6.1.4.1.2011.6.1.7.1.10
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.2
		hwRectifierFaultAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber, hwAlarmText, hwAlarmLevel, hwAlarmSigDesc, hwSiteName, hwSiteAdminAddr, 
				hwNetIdentifier, hwSiteDescription, hwRectEquipId, hwRectEquipName, hwRectOperStatus   }
			STATUS current
			DESCRIPTION 
				"Rectifier Fault alarm resolved.Its correlation binding parameters: Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, rectifier equipment ID and equipment name are also include in VB(variable bondings).  "
			::= { hwSiteAlarmTrapsPrefix 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.3
		hwRectifierAbnormalAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber, hwAlarmText, hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
			       hwNetIdentifier,hwSiteDescription,hwRectEquipId, hwRectEquipName, hwRectOperStatus   }
			STATUS current
			DESCRIPTION 
				"Rectifier abnormal alarm, because of communication failure, module protection, or turnoff. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, rectifier equipment ID and equipment name are also include in VB(variable bondings).  "
			::= { hwSiteAlarmTrapsPrefix 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.4
		hwRectifierAbnormalAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc,hwSiteName ,hwSiteAdminAddr ,
			 		hwNetIdentifier,hwSiteDescription,hwRectEquipId, hwRectEquipName, hwRectOperStatus  }
			STATUS current
			DESCRIPTION 
				"Rectifier abnormal alarm resume. Description.Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, rectifier equipment ID and equipment name are also include in VB(variable bondings).  "
			::= { hwSiteAlarmTrapsPrefix 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.5
		hwBattLoopBreakAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
			   		hwNetIdentifier,hwSiteDescription, hwBattStringEquipId, hwBattStringEquipName, hwBattStringOperStatus }
			STATUS current
			DESCRIPTION 
				"Battery loop disconnect. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, battery string equipment ID and equipment name are also include in VB(variable bondings).    "
			::= { hwSiteAlarmTrapsPrefix 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.6
		hwBattLoopBreakAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
			   		hwNetIdentifier,hwSiteDescription, hwBattStringEquipId,hwBattStringEquipName,  hwBattStringOperStatus }
			STATUS current
			DESCRIPTION 
				"Battery loop break alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, battery string equipment ID and equipment name are also include in VB(variable bondings).     "
			::= { hwSiteAlarmTrapsPrefix 6 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.7
		hwBattLvdAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
					hwNetIdentifier,hwSiteDescription,hwLvdUnitEquipId, hwLvdUnitEquipName,hwLvdBranchOperStatus }
			STATUS current
			DESCRIPTION 
				"Battery disconnect for low voltage. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, battery LVD unit equipment ID and equipment name are also include in VB(variable bondings). "
			::= { hwSiteAlarmTrapsPrefix 7 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.8
		hwBattLvdAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber, hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription,hwLvdUnitEquipId, hwLvdUnitEquipName, hwLvdBranchOperStatus }
			STATUS current
			DESCRIPTION 
				"Battery LVD alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, battery LVD unit equipment ID and equipment name are also include in VB(variable bondings).  "
			::= { hwSiteAlarmTrapsPrefix 8 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.9
		hwBattOverCurrAlarmTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription,hwBattStringEquipId, hwBattStringEquipName, hwBattStringOperStatus }
			STATUS current
			DESCRIPTION 
				"Batterys charge in over current. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, battery string equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 9 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.10
		hwBattOverCurrAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc, hwSiteName,hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription,  hwBattStringEquipId,hwBattStringEquipName,  hwBattStringOperStatus  }
			STATUS current
			DESCRIPTION 
				"Batterys over current alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, battery string equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 10 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.11
		hwBattStringTempAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					  hwNetIdentifier,hwSiteDescription,  hwBattStringEquipId, hwBattStringEquipName,hwBattStringOperStatus}
			STATUS current
			DESCRIPTION 
				"Battery string temperature is too high or too low. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, battery group ID and group name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 11 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.12
		hwBattStringTempAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc, hwSiteName,hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription, hwBattStringEquipId, hwBattStringEquipName,  hwBattStringOperStatus }
			STATUS current
			DESCRIPTION 
				"Battery string temperature alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, battery group ID and group name are also include in VB(variable bondings).       "
			::= { hwSiteAlarmTrapsPrefix 12 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.13
		hwBattDischargeAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
			 		hwNetIdentifier,hwSiteDescription,hwBattsGroupId, hwBattsGroupName }
			STATUS current
			DESCRIPTION 
				"Battery group discharge alarm. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, battery group ID and group name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 13 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.14
		hwBattDischargeAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
			 		hwNetIdentifier,hwSiteDescription,  hwBattsGroupId, hwBattsGroupName }      
			STATUS current
			DESCRIPTION 
				"Battery group discharge alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, battery group ID and group name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 14 }

		
--  1.3.6.1.4.1.2011.6.1.7.1.32
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.15
		hwAcInputAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc, hwSiteName,hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription, hwAcEquipId, hwAcEquipName, hwAcInputOperStatus }
			STATUS current
			DESCRIPTION 
				"AC absent or AC power off alarms happened. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, AC equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 15 }

		
--  1.3.6.1.4.1.2011.6.1.7.1.31
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.16
		hwAcInputAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
			 		hwNetIdentifier,hwSiteDescription,  hwAcEquipId,hwAcEquipName, hwAcInputOperStatus }
			STATUS current
			DESCRIPTION 
				"AC input alarm resumed. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, AC equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 16 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.17
		hwAcVoltAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription, hwAcEquipId, hwAcEquipName, hwAcInputOperStatus }
			STATUS current
			DESCRIPTION 
				"AC voltage too high or too low. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, AC equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 17 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.18
		hwAcVoltAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					hwNetIdentifier, hwSiteDescription,hwAcEquipId, hwAcEquipName, hwAcInputOperStatus }
			STATUS current
			DESCRIPTION 
				"AC voltage alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, AC equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 18 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.19
		hwDcVoltAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
					  hwNetIdentifier,hwSiteDescription, hwDcOutputEquipId, hwDcOutputEquipName, hwDcOutputOperStatus }
			STATUS current
			DESCRIPTION 
				"DC voltage too high or too low. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, DC equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 19 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.20
		hwDcVoltAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber, hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					hwNetIdentifier,hwSiteDescription, hwDcOutputEquipId, hwDcOutputEquipName,  hwDcOutputOperStatus }
			STATUS current
			DESCRIPTION 
				"DC voltage alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, DC equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 20 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.21
		hwLoadLvdAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
					 hwNetIdentifier, hwSiteDescription,hwLvdUnitEquipId,hwLvdUnitEquipName,hwLvdBranchOperStatus  }
			STATUS current
			DESCRIPTION 
				"Loads disconnect for low voltage. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, load LVD unit equipment ID and equipment name are also include in VB(variable bondings). "
			::= { hwSiteAlarmTrapsPrefix 21 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.22
		hwLoadLvdAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel,hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription, hwLvdUnitEquipId, hwLvdUnitEquipName, hwLvdBranchOperStatus  }
			STATUS current
			DESCRIPTION 
				"Load LVD alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, load LVD unit equipment ID and equipment name are also include in VB(variable bondings). "
			::= { hwSiteAlarmTrapsPrefix 22 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.23
		hwLoadFuseAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription,hwLoadBranchEquipId, hwLoadBranchEquipName,hwLoadBranchOperStatus}
			STATUS current
			DESCRIPTION 
				"Load fuse broken down. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, battery string equipment ID and equipment name are also include in VB(variable bondings).    "
			::= { hwSiteAlarmTrapsPrefix 23 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.24
		hwLoadFuseAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					hwNetIdentifier,hwSiteDescription, hwLoadBranchEquipId, hwLoadBranchEquipName, hwLoadBranchOperStatus }
			STATUS current
			DESCRIPTION 
				"Load fuse alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, battery string equipment ID and equipment name are also include in VB(variable bondings).    "
			::= { hwSiteAlarmTrapsPrefix 24 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.25
		hwEnvTempAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
					  hwNetIdentifier,hwSiteDescription, hwEnvTempEquipId,hwEnvTempEquipName,  hwEnvTempSensorOperStatus }
			STATUS current
			DESCRIPTION 
				"Environment temperature is too high or too low. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, envirenment temperature sensor equipment ID and equipment name are also include in VB(variable bondings).    "
			::= { hwSiteAlarmTrapsPrefix 25 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.26
		hwEnvTempAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					hwNetIdentifier,hwSiteDescription, hwEnvTempEquipId,hwEnvTempEquipName, hwEnvTempSensorOperStatus }
			STATUS current
			DESCRIPTION 
				"Environment temperature alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, envirenment temperature sensor equipment ID and equipment name are also include in VB(variable bondings).    "
			::= { hwSiteAlarmTrapsPrefix 26 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.27
		hwEnvHumiAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber, hwAlarmText, hwAlarmLevel, hwAlarmSigDesc, hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier, hwSiteDescription,  hwEnvHumiEquipId, hwEnvHumiEquipName, hwEnvHumiSensorOperStatus }
			STATUS current
			DESCRIPTION 
				"Environment humidity is too high or too low. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, envirenment humidity sensor equipment ID and equipment name are also include in VB(variable bondings).    "
			::= { hwSiteAlarmTrapsPrefix 27 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.28
		hwEnvHumiAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber, hwAlarmText,  hwAlarmLevel,  hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					hwNetIdentifier,hwSiteDescription, hwEnvHumiEquipId, hwEnvHumiEquipName, hwEnvHumiSensorOperStatus }
			STATUS current
			DESCRIPTION 
				"Environment humidity alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, envirenment humidity sensor equipment ID and equipment name are also include in VB(variable bondings).    "
			::= { hwSiteAlarmTrapsPrefix 28 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.29
		hwSpareDigitalAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel,hwAlarmSigDesc, hwSiteName, hwSiteAdminAddr,
					hwNetIdentifier,hwSiteDescription, hwSpareDigitalEquipId, hwSpareDigitalEquipName, hwSpareDigitalOperStatus }
			STATUS current
			DESCRIPTION 
				"Spare digital fault. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, Spare digital equipment ID and equipment name are also include in VB(variable bondings).    "
			::= { hwSiteAlarmTrapsPrefix 29 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.30
		hwSpareDigitalAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber, hwAlarmText,hwAlarmLevel,hwAlarmSigDesc, hwSiteName, hwSiteAdminAddr,
					hwNetIdentifier, hwSiteDescription,hwSpareDigitalEquipId, hwSpareDigitalEquipName, hwSpareDigitalOperStatus }
			STATUS current
			DESCRIPTION 
				"Spare digital alarm resume.Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, Spare digital equipment ID and equipment name are also include in VB(variable bondings).    "
			::= { hwSiteAlarmTrapsPrefix 30 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.31
		hwDoorAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription,  hwEnvUnitsGroupId, hwEnvUnitsGroupName }
			STATUS current
			DESCRIPTION 
				"Door open. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, envirenment unit group ID and group name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 31 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.32
		hwDoorAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber, hwAlarmText,hwAlarmLevel,hwAlarmSigDesc, hwSiteName, hwSiteAdminAddr,
					hwNetIdentifier,hwSiteDescription, hwEnvUnitsGroupId, hwEnvUnitsGroupName }
			STATUS current
			DESCRIPTION 
				"Door alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, envirenment unit group ID and group name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 32 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.33
		hwWaterAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber, hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription,  hwEnvUnitsGroupId, hwEnvUnitsGroupName }
			STATUS current
			DESCRIPTION 
				"Water alarm. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, envirenment unit group ID and group name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 33 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.34
		hwWaterAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,  hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName,  hwSiteAdminAddr,
					hwNetIdentifier,hwSiteDescription, hwEnvUnitsGroupId, hwEnvUnitsGroupName }
			STATUS current
			DESCRIPTION 
				"Water alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, envirenment unit group ID and group name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 34 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.35
		hwSmokeAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber, hwAlarmText,hwAlarmLevel, hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
					hwNetIdentifier, hwSiteDescription,  hwEnvUnitsGroupId,hwEnvUnitsGroupName }
			STATUS current
			DESCRIPTION 
				"Site is on fire, which is detected by smoke sensors. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, envirenment unit group ID and group name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 35 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.36
		hwSmokeAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber, hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
					  hwNetIdentifier,hwSiteDescription,hwEnvUnitsGroupId,hwEnvUnitsGroupName }
			STATUS current
			DESCRIPTION 
				"Smoke alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, envirenment unit group ID and group name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 36 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.37
		hwWireAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier, hwSiteDescription, hwEnvUnitsGroupId, hwEnvUnitsGroupName }
			STATUS current
			DESCRIPTION 
				"Wire alarm.Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, envirenment unit group ID and group name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 37 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.38
		hwWireAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
					  hwNetIdentifier,hwSiteDescription, hwEnvUnitsGroupId, hwEnvUnitsGroupName }
			STATUS current
			DESCRIPTION 
				"Wire alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, envirenment unit group ID and group name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 38 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.39
		hwAcBreakerAlarmTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel,hwAlarmSigDesc, hwSiteName, hwSiteAdminAddr,
					hwNetIdentifier,hwSiteDescription, hwAcInputBreakerEquipId, hwAcInputBreakerEquipName, hwAcInputBreakerOperStatus}
			STATUS current
			DESCRIPTION 
				"AC breaker alarm.Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, AC distribution unit ID and its name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 39 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.40
		hwAcBreakerAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					hwNetIdentifier,hwSiteDescription, hwAcInputBreakerEquipId, hwAcInputBreakerEquipName, hwAcInputBreakerOperStatus }
			STATUS current
			DESCRIPTION 
				"AC breaker alarm resume.Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, AC distribution unit ID and its name are also include in VB(variable bondings). "
			::= { hwSiteAlarmTrapsPrefix 40 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.41
		hwMultiRectFailureAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel,hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
				 	hwNetIdentifier,hwSiteDescription, hwRectsGroupId, hwRectsGroupName }
			STATUS current
			DESCRIPTION 
				"More than one rectifier reported fault alarms in the same time. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, rectifier group ID and group name are also include in VB(variable bondings).  "
			::= { hwSiteAlarmTrapsPrefix 41 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.42
		hwMultiRectFailureAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc, hwSiteName,hwSiteAdminAddr,
					  hwNetIdentifier,hwSiteDescription, hwRectsGroupId, hwRectsGroupName }
			STATUS current
			DESCRIPTION 
				"Multi-rectifiers fault alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, rectifier group ID and group name are also include in VB(variable bondings).  "
			::= { hwSiteAlarmTrapsPrefix 42 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.43
		hwRectRedundAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
					  hwNetIdentifier,hwSiteDescription,hwRectsGroupId,hwRectsGroupName }
			STATUS current
			DESCRIPTION 
				"Rectifiers work redundantly, in this case that some of rectifiers will going to sleep. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, rectifier group ID and group name are also include in VB(variable bondings).   "
			::= { hwSiteAlarmTrapsPrefix 43 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.44
		hwRectRedundAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber, hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					hwNetIdentifier,hwSiteDescription, hwRectsGroupId, hwRectsGroupName }
			STATUS current
			DESCRIPTION 
				"Rectifiers redundant alarm resume, when the power supply and requirement were in balance. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, rectifier group ID and group name are also include in VB(variable bondings).   "
			::= { hwSiteAlarmTrapsPrefix 44 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.45
		hwBattUnbalanceAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription,  hwBattStringEquipId, hwBattStringEquipName,hwBattStringOperStatus }
			STATUS current
			DESCRIPTION 
				"Battery works in unbalance state. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, battery string equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 45 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.46
		hwBattUnbalanceAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber, hwAlarmText,hwAlarmLevel, hwAlarmSigDesc, hwSiteName,hwSiteAdminAddr,
				 	 hwNetIdentifier,hwSiteDescription, hwBattStringEquipId,  hwBattStringEquipName,hwBattStringOperStatus }
			STATUS current
			DESCRIPTION 
				"Battery unbalance alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, battery string equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 46 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.47
		hwAcFreqFaultAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					hwNetIdentifier,hwSiteDescription, hwAcEquipId,hwAcEquipName, hwAcInputOperStatus }
			STATUS current
			DESCRIPTION 
				"AC frequency is fault. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, AC equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 47 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.48
		hwAcFreqFaultAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel,hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
					  hwNetIdentifier,hwSiteDescription, hwAcEquipId, hwAcEquipName,hwAcInputOperStatus }
			STATUS current
			DESCRIPTION 
				"AC frequency alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, AC equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 48 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.49
		hwXmuSelfFaultAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription,hwMonEquipId,hwMonEquipName,hwMonitorOperStatus  }
			STATUS current
			DESCRIPTION 
				"There are some fault in XMU itself. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, monitor equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 49 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.50
		hwXmuSelfFaultAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber, hwAlarmText,hwAlarmLevel, hwAlarmSigDesc, hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription, hwMonEquipId, hwMonEquipName, hwMonitorOperStatus }
			STATUS current
			DESCRIPTION 
				"XMU fault alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, monitor equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 50 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.51
		hwRs485CommAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					hwNetIdentifier,hwSiteDescription, hwMonEquipId, hwMonEquipName,hwMonitorOperStatus }
			STATUS current
			DESCRIPTION 
				"RS485 communication of monitors disconnect. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, monitor equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 51 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.52
		hwRs485CommAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription, hwMonEquipId, hwMonEquipName, hwMonitorOperStatus }
			STATUS current
			DESCRIPTION 
				"RS485 communication alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, monitor equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 52 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.53
		hwNetCommAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber, hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					hwNetIdentifier,hwSiteDescription, hwMonEquipId, hwMonEquipName,hwMonitorOperStatus }
			STATUS current
			DESCRIPTION 
				"Network communication of monitors disconnect. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, monitor equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 53 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.54
		hwNetCommAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc, hwSiteName, hwSiteAdminAddr,
					hwNetIdentifier,hwSiteDescription, hwMonEquipId, hwMonEquipName, hwMonitorOperStatus }
			STATUS current
			DESCRIPTION 
				"Network communication alarm resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, monitor equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 54 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.55
		hwAcOffLongTimeAlarmTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc, hwSiteName,hwSiteAdminAddr,
				 	hwNetIdentifier,hwSiteDescription, hwAcEquipId, hwAcEquipName, hwAcInputOperStatus }
			STATUS current
			DESCRIPTION 
				"AC power off for a long time alarms happened. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, AC equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 55 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.56
		hwAcOffLongTimeAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc, hwSiteName,hwSiteAdminAddr,
					 hwNetIdentifier, hwSiteDescription, hwAcEquipId, hwAcEquipName,hwAcInputOperStatus }
			STATUS current
			DESCRIPTION 
				"AC power off for a long time alarms resume. Its correlation binding parameters:  Site ID, Site name, Site description, NE ID, Alarm name, Alarm single description, Alarm port description, Alarm severity, and Site alarm SN. Additionally, in order to identify the device, AC equipment ID and equipment name are also include in VB(variable bondings).      "
			::= { hwSiteAlarmTrapsPrefix 56 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.57
		hwSpdAlarmTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr,
					  hwNetIdentifier,hwSiteDescription, hwEnvUnitsGroupId, hwEnvUnitsGroupName }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 57 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.58
		hwSpdAlarmResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					 hwNetIdentifier,hwSiteDescription, hwEnvUnitsGroupId, hwEnvUnitsGroupName }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 58 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.59
		hwBadBatteryTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					 hwNetIdentifier,hwSiteDescription, hwBattsGroupId, hwBattsGroupName }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 59 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.60
		hwBadBatteryResumeTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription, hwBattsGroupId, hwBattsGroupName }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 60 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.61
		hwLvd2DisconnectingTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					  hwNetIdentifier,hwSiteDescription, hwLvdUnitEquipId, hwLvdUnitEquipName, hwLvdBranchOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 61 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.62
		hwLvd2DisconnectingResumeTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					hwNetIdentifier,hwSiteDescription,  hwLvdUnitEquipId, hwLvdUnitEquipName, hwLvdBranchOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 62 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.63
		hwBattHighTempTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc,hwSiteName,hwSiteAdminAddr, 
					 hwNetIdentifier,hwSiteDescription, hwBattStringEquipId, hwBattStringEquipName,hwBattStringOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 63 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.64
		hwBattHighTempResumeTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					hwNetIdentifier, hwSiteDescription,   hwBattStringEquipId, hwBattStringEquipName,hwBattStringOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 64 }
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.65
		hwBattLowTempTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc, hwSiteName, hwSiteAdminAddr, 
					hwNetIdentifier,hwSiteDescription,  hwBattStringEquipId,hwBattStringEquipName, hwBattStringOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 65 }
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.66
		hwBattLowTempResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					hwNetIdentifier,hwSiteDescription, hwBattStringEquipId, hwBattStringEquipName, hwBattStringOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 66 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.67
		hwDcUltraOverVoltageTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					hwNetIdentifier,hwSiteDescription, hwDcOutputEquipId, hwDcOutputEquipName, hwDcOutputOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 67 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.68
		hwDcUltraOverVoltageResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel,hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					hwNetIdentifier, hwSiteDescription, hwDcOutputEquipId, hwDcOutputEquipName, hwDcOutputOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 68 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.69
		hwDcUltraUnderVoltageTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription, hwDcOutputEquipId, hwDcOutputEquipName, hwDcOutputOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 69 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.70
		hwDcUltraUnderVoltageResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText,hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					hwNetIdentifier,hwSiteDescription, hwDcOutputEquipId, hwDcOutputEquipName, hwDcOutputOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 70 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.71
		hwUmiCommFailTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc, hwSiteName, hwSiteAdminAddr, 
					hwNetIdentifier,hwSiteDescription, hwEnvUnitsGroupId, hwEnvUnitsGroupName }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 71 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.72
		hwUmiCommFailResumeTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					 hwNetIdentifier, hwSiteDescription,hwEnvUnitsGroupId, hwEnvUnitsGroupName }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 72 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.73
		hwShortTestFailTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					hwNetIdentifier,hwSiteDescription, hwRectsGroupId, hwRectsGroupName }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 73 }
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.74
		hwShortTestFailResumeTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					  hwNetIdentifier,hwSiteDescription, hwBattsGroupId, hwBattsGroupName }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 74 }
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.75
		hwMissingBattTempSensorTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					 hwNetIdentifier,hwSiteDescription, hwBattsGroupId, hwBattsGroupName }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 75 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.76
		hwMissingBattTempSensorResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc, hwSiteName, hwSiteAdminAddr,
					  hwNetIdentifier,hwSiteDescription, hwBattsGroupId, hwBattsGroupName }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 76 }
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.77
		hwBattTempSensorFaultTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
						hwNetIdentifier,hwSiteDescription, hwBattsGroupId, hwBattsGroupName }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 77 }
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.78
		hwBattTempSensorFaultResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,	hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					  hwNetIdentifier,hwSiteDescription,hwBattsGroupId, hwBattsGroupName }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 78 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.79
		hwAcOverVoltageTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					hwNetIdentifier,hwSiteDescription, hwAcEquipId, hwAcEquipName, hwAcInputOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 79 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.80
		hwAcOverVoltageResumeTraps NOTIFICATION-TYPE
			OBJECTS {hwAlarmTrapOrdinalNumber, hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					hwNetIdentifier, hwSiteDescription, hwAcEquipId, hwAcEquipName, hwAcInputOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 80 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.81
		hwAcUnderVoltageTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription, hwAcEquipId, hwAcEquipName, hwAcInputOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 81 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.82
		hwAcUnderVoltageResumeTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					 hwNetIdentifier,hwSiteDescription,hwAcEquipId, hwAcEquipName, hwAcInputOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 82 }
                                                           
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.83
		hwPDELoadFaultTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					hwNetIdentifier,hwSiteDescription,  hwPDEGroupId, hwPDEGroupName  }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 83 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.84
		hwPDELoadFaultResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc, hwSiteName,hwSiteAdminAddr, 
					hwNetIdentifier,hwSiteDescription, hwPDEGroupId, hwPDEGroupName }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 84 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.85
		hwPDENoResponseTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription,  hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 85 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.86
		hwPDENoResponseResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					 hwNetIdentifier,hwSiteDescription, hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 86 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.87
		hwPDEFailureTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					  hwNetIdentifier,hwSiteDescription,hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 87 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.88
		hwPDEFailureResumeTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription, hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 88 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.89
		hwPDEBr1FailureTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription,  hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 89 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.90
		hwPDEBr1FailureResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription, hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 90 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.91
		hwPDEBr2FailureTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription, hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 91 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.92
		hwPDEBr2FailureResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					hwNetIdentifier,hwSiteDescription,  hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 92 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.93
		hwPDEBr3FailureTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					 hwNetIdentifier, hwSiteDescription, hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 93 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.94
		hwPDEBr3FailureResumeTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier, hwSiteDescription, hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 94 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.95
		hwPDEBr4FailureTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription,  hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 95 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.96
		hwPDEBr4FailureResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier, hwSiteDescription, hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 96 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.97
		hwPDEBr1ProtectTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier, hwSiteDescription, hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 97 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.98
		hwPDEBr1ProtectResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,	hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					hwNetIdentifier,hwSiteDescription, hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 98 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.99
		hwPDEBr2ProtectTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					 hwNetIdentifier,hwSiteDescription,  hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 99 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.100
		hwPDEBr2ProtectResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					hwNetIdentifier,hwSiteDescription, hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 100 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.101
		hwPDEBr3ProtectTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					 hwNetIdentifier,hwSiteDescription, hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 101 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.102
		hwPDEBr3ProtectResumeTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber, hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					hwNetIdentifier,hwSiteDescription, hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 102 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.103
		hwPDEBr4ProtectTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					hwNetIdentifier,hwSiteDescription, hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 103 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.104
		hwPDEBr4ProtectResumeTraps NOTIFICATION-TYPE
			OBJECTS {hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc, hwSiteName, hwSiteAdminAddr,
					 hwNetIdentifier,hwSiteDescription,hwPDEEquipId, hwPDEEquipName,hwPDEOperStatus }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 104 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.105
		hwPDELostTraps NOTIFICATION-TYPE
			OBJECTS { hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr,
					  hwNetIdentifier,hwSiteDescription, hwPDEGroupId, hwPDEGroupName }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 105 }
		
		-- 1.3.6.1.4.1.2011.6.164.2.1.0.106
		hwPDELostResumeTraps NOTIFICATION-TYPE
			OBJECTS {  hwAlarmTrapOrdinalNumber,hwAlarmText, hwAlarmLevel, hwAlarmSigDesc,hwSiteName, hwSiteAdminAddr, 
					 hwNetIdentifier,hwSiteDescription, hwPDEGroupId, hwPDEGroupName }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteAlarmTrapsPrefix 106 }
                                                           
		
		-- 1.3.6.1.4.1.2011.6.164.2.2
		hwSiteDevicesTraps OBJECT IDENTIFIER ::= { hwSiteMonitorMIBTraps 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.2.0
		hwDevicesTrapsPrefix OBJECT IDENTIFIER ::= { hwSiteDevicesTraps 0 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.2.0.1
		hwRectifiersInslotChange NOTIFICATION-TYPE
			OBJECTS { hwDeviceTrapOrdinalNumber, hwSiteName, hwSiteAdminAddr, hwNetIdentifier, hwSiteDescription,  
					hwRectEquipId, hwRectEquipName, hwRectOperStatus }
			STATUS current
			DESCRIPTION 
				"When the presence status of a rectifier changes, the node reports an event. Then the NMS adds or deletes the corresponding entry to or from hwRectConfigTable or hwRectOperTable. The bound information includes the site address, site name, site description, and NE identifier. In addition, the ID, name, and status of the rectifier are bound to identify the specific rectifier and its operation type. When an entry is added, the device status is reported as normal (1); when an entry is deleted, the device status is reported as commFail (4).
				This trap is the unique trigger condition that causes the NMS to add or delete entries to or from hwRectConfigTable or hwRectOperTable."
			::= { hwDevicesTrapsPrefix 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.2.0.2
		hwBatterysInslotChange NOTIFICATION-TYPE
			OBJECTS { hwDeviceTrapOrdinalNumber, hwSiteName, hwSiteAdminAddr, hwNetIdentifier, hwSiteDescription,  
					hwBattStringEquipId, hwBattStringEquipName, hwBattStringOperStatus }
			STATUS current
			DESCRIPTION 
				"When the presence status of a battery string changes, the node reports an event. Then the NMS adds or deletes the corresponding entry to or from hwBatttConfigTable or hwBatttOperTable. The bound information includes the site address, site name, site description, and NE identifier. In addition, the ID, name, and status of the battery string are bound to identify the specific battery string and its operation type. When an entry is added, the device status is reported as normal (1); when an entry is deleted, the device status is reported as loopBreak (4).
				This trap is the unique trigger condition that causes the NMS to add or delete entries to or from hwBatttConfigTable or hwBatttOperTable."
			::= { hwDevicesTrapsPrefix 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.2.0.3
		hwBattTestRecordsAdd NOTIFICATION-TYPE
			OBJECTS { hwDeviceTrapOrdinalNumber, hwSiteName, hwSiteDescription, hwNetIdentifier,  hwSiteAdminAddr }
			STATUS current
			DESCRIPTION 
				"After a new discharge test is conducted on a battery group, the node reports an event. The bound information includes the site address, site name, site description, and NE identifier. The NMS needs to add the corresponding entry to the battery test table. The test records are sorted by time in descending order. The battery test table holds a maximum of 10 test records. If the number of test records exceeds 10, the earlier records starting from the last but one record are deleted at a time because the last record is saved permanently.
				This trap is the unique trigger condition that causes the NMS to add entries from hwBattsTestResultTable.
				The battery test table allows you only to add entries."
			::= { hwDevicesTrapsPrefix 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.2.0.4
		hwEnvTempSensInslotChange NOTIFICATION-TYPE
			OBJECTS {  hwDeviceTrapOrdinalNumber, hwSiteName,hwSiteAdminAddr, hwNetIdentifier,hwSiteDescription,  
					hwEnvTempEquipId, hwEnvTempEquipName, hwEnvTempSensorOperStatus }
			STATUS current
			DESCRIPTION 
				"When the presence status of an environment temperature sensor changes, the node reports an event. Then the NMS adds or deletes the corresponding entry to or from hwEvnTempSensorTable. The bound information includes the site address, site name, site description, and NE identifier. In addition, the ID, name, and status of the environment temperature sensor are bound to identify the specific environment temperature sensor and its operation type. When an entry is added, the device status is reported as normal (1); when an entry is deleted, the device status is reported as notInslot (4).
				This trap is the unique trigger condition that causes the NMS to add or delete entries to or from hwEnvTempSensorTable."
			::= { hwDevicesTrapsPrefix 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.2.0.5
		hwEnvHumiSensInslotChange NOTIFICATION-TYPE
			OBJECTS { hwDeviceTrapOrdinalNumber, hwSiteName, hwSiteAdminAddr, hwNetIdentifier,hwSiteDescription, 
					hwEnvHumiEquipId, hwEnvHumiEquipName, hwEnvHumiSensorOperStatus   }
			STATUS current
			DESCRIPTION 
				"When the presence status of an environment humidity sensor changes, the trap reports an event. Then the NMS adds or deletes the corresponding entry to or from hwEvnHumiSensorTable. The bound information includes the site address, site name, site description, and NE identifier. In addition, the ID, name, and status of the environment humidity sensor are bound to identify the specific environment humidity sensor and its operation type. When an entry is added, the device status is reported as normal (1); when an entry is deleted, the device status is reported as notInslot (4).
				This trap is the unique trigger condition that causes the NMS to add or delete entries to or from hwEnvHumiSensorTable."
			::= { hwDevicesTrapsPrefix 5 }
			
					-- 1.3.6.1.4.1.2011.6.164.2.2.0.6
		hwPDEsInslotChange NOTIFICATION-TYPE
			OBJECTS { hwDeviceTrapOrdinalNumber,hwSiteName, hwSiteAdminAddr, hwNetIdentifier,hwSiteDescription, 
				 hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus  }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwDevicesTrapsPrefix 6 }
                                               
                                               
                                               
		
		-- 1.3.6.1.4.1.2011.6.164.2.3
		hwV101SiteDevicesTraps OBJECT IDENTIFIER ::= { hwSiteMonitorMIBTraps 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.3.0
		hwV101DevicesTrapsPrefix OBJECT IDENTIFIER ::= { hwV101SiteDevicesTraps 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.3.0.1
		hwRectifiersInslotChange NOTIFICATION-TYPE
			OBJECTS { hwDeviceTrapOrdinalNumber, hwSiteName, hwSiteAdminAddr, hwNetIdentifier, hwSiteDescription,  
					hwRectEquipId, hwRectEquipName, hwRectOperStatus }
			STATUS current
			DESCRIPTION 
				"When the presence status of a rectifier changes, the node reports an event. Then the NMS adds or deletes the corresponding entry to or from hwRectConfigTable or hwRectOperTable. The bound information includes the site address, site name, site description, and NE identifier. In addition, the ID, name, and status of the rectifier are bound to identify the specific rectifier and its operation type. When an entry is added, the device status is reported as normal (1); when an entry is deleted, the device status is reported as commFail (4).
				This trap is the unique trigger condition that causes the NMS to add or delete entries to or from hwRectConfigTable or hwRectOperTable."
			::= { hwV101DevicesTrapsPrefix 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.3.0.2
		hwBatterysInslotChange NOTIFICATION-TYPE
			OBJECTS { hwDeviceTrapOrdinalNumber, hwSiteName, hwSiteAdminAddr, hwNetIdentifier, hwSiteDescription,  
					hwBattStringEquipId, hwBattStringEquipName, hwBattStringOperStatus }
			STATUS current
			DESCRIPTION 
				"When the presence status of a battery string changes, the node reports an event. Then the NMS adds or deletes the corresponding entry to or from hwBatttConfigTable or hwBatttOperTable. The bound information includes the site address, site name, site description, and NE identifier. In addition, the ID, name, and status of the battery string are bound to identify the specific battery string and its operation type. When an entry is added, the device status is reported as normal (1); when an entry is deleted, the device status is reported as loopBreak (4).
				This trap is the unique trigger condition that causes the NMS to add or delete entries to or from hwBatttConfigTable or hwBatttOperTable."
			::= { hwV101DevicesTrapsPrefix 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.3.0.3
		hwBattTestRecordsAdd NOTIFICATION-TYPE
			OBJECTS { hwDeviceTrapOrdinalNumber, hwSiteName, hwSiteDescription, hwNetIdentifier,  hwSiteAdminAddr }
			STATUS current
			DESCRIPTION 
				"After a new discharge test is conducted on a battery group, the node reports an event. The bound information includes the site address, site name, site description, and NE identifier. The NMS needs to add the corresponding entry to the battery test table. The test records are sorted by time in descending order. The battery test table holds a maximum of 10 test records. If the number of test records exceeds 10, the earlier records starting from the last but one record are deleted at a time because the last record is saved permanently.
				This trap is the unique trigger condition that causes the NMS to add entries from hwBattsTestResultTable.
				The battery test table allows you only to add entries."
			::= { hwV101DevicesTrapsPrefix 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.3.0.4
		hwEnvTempSensInslotChange NOTIFICATION-TYPE
			OBJECTS {  hwDeviceTrapOrdinalNumber, hwSiteName,hwSiteAdminAddr, hwNetIdentifier,hwSiteDescription,  
					hwEnvTempEquipId, hwEnvTempEquipName, hwEnvTempSensorOperStatus }
			STATUS current
			DESCRIPTION 
				"When the presence status of an environment temperature sensor changes, the node reports an event. Then the NMS adds or deletes the corresponding entry to or from hwEvnTempSensorTable. The bound information includes the site address, site name, site description, and NE identifier. In addition, the ID, name, and status of the environment temperature sensor are bound to identify the specific environment temperature sensor and its operation type. When an entry is added, the device status is reported as normal (1); when an entry is deleted, the device status is reported as notInslot (4).
				This trap is the unique trigger condition that causes the NMS to add or delete entries to or from hwEnvTempSensorTable."
			::= { hwV101DevicesTrapsPrefix  4 }

		
		-- 1.3.6.1.4.1.2011.6.164.2.3.0.5
		hwEnvHumiSensInslotChange NOTIFICATION-TYPE
			OBJECTS { hwDeviceTrapOrdinalNumber, hwSiteName, hwSiteAdminAddr, hwNetIdentifier,hwSiteDescription, 
					hwEnvHumiEquipId, hwEnvHumiEquipName, hwEnvHumiSensorOperStatus   }
			STATUS current
			DESCRIPTION 
				"When the presence status of an environment humidity sensor changes, the trap reports an event. Then the NMS adds or deletes the corresponding entry to or from hwEvnHumiSensorTable. The bound information includes the site address, site name, site description, and NE identifier. In addition, the ID, name, and status of the environment humidity sensor are bound to identify the specific environment humidity sensor and its operation type. When an entry is added, the device status is reported as normal (1); when an entry is deleted, the device status is reported as notInslot (4).
				This trap is the unique trigger condition that causes the NMS to add or delete entries to or from hwEnvHumiSensorTable."
			::= { hwV101DevicesTrapsPrefix 5 }
			
		-- 1.3.6.1.4.1.2011.6.164.2.3.0.6
		hwPDEsInslotChange NOTIFICATION-TYPE
			OBJECTS { hwDeviceTrapOrdinalNumber,hwSiteName, hwSiteAdminAddr, hwNetIdentifier,hwSiteDescription, 
				 hwPDEEquipId, hwPDEEquipName, hwPDEOperStatus  }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwV101DevicesTrapsPrefix 6 }
                                               
		
		-- 1.3.6.1.4.1.2011.6.164.3
		hwSiteMonitorMIBConformance OBJECT IDENTIFIER ::= { hwSiteMonitorMIB 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.3.1
		hwSiteMonitorGroups OBJECT IDENTIFIER ::= { hwSiteMonitorMIBConformance 1 }

		
--  1.3.6.1.4.1.2011.6.1.6
		-- 1.3.6.1.4.1.2011.6.164.3.1.1
		hwSiteInfoGroup OBJECT-GROUP
			OBJECTS { hwSiteName, hwSiteDescription, hwSiteId, hwSiteIp, hwSiteNetmask, 
				hwAlarmIndex, hwAlarmLevel, hwAlarmSigDesc, hwAlarmQuantity, hwAlarmRowStatus, 
				hwSiteGateway, hwNetIdentifier, hwAlarmText, hwDeviceTrapOrdinalNumber, hwAlarmTrapOrdinalNumber, 
				hwSiteAdminAddr }
			STATUS current
			DESCRIPTION 
				"Site information group."
			::= { hwSiteMonitorGroups 1 }

		
		-- 1.3.6.1.4.1.2011.6.164.3.1.2
		hwSiteMonitorsGroup OBJECT-GROUP
			OBJECTS { hwMonsGroupId, hwMonsGroupName, hwMonIndex, hwMonEquipId, hwMonEquipName, 
				hwMonEquipPcbVersion, hwMonEquipManufacturer, hwMonEquipManuDate, hwMonEquipSerialNo, hwMonEquipDescription, 
				hwCtrlMonEquipReset, hwMonRowStatus, hwMonitorOperStatus, hwMonsQuantity, hwMonEquipOperTotalTime, 
				hwMonEquipSoftwareVersion, hwSetMonEquipCtrlState }
			STATUS current
			DESCRIPTION 
				"Site monitor group."
			::= { hwSiteMonitorGroups 2 }

		
		-- 1.3.6.1.4.1.2011.6.164.3.1.3
		hwSiteRectifiersGroup OBJECT-GROUP
			OBJECTS { hwRectSerialNo, hwRectType, hwRectManufacturer, hwRectOutputCurrent, hwRectOutputVoltage, 
				hwCtrlRectOnOff, hwRectEquipId, hwRectEquipName, hwRectRatedCurrent, hwRectInputAcType, 
				hwRectEfficency, hwRectConfigIndex, hwRectConfigRowStatus, hwRectsGroupId, hwRectsGroupName, 
				hwRectsTotalQuantity, hwRectsRatedVoltage, hwModifyRectsOutputVoltage, hwSetRectsRedundEnable, hwRectManuDate, 
				hwCtrlRectsAllOnOff, hwRectsTotalCurrent, hwRectOperStatus, hwRectOperIndex, hwRectTotalOperTime, 
				hwRectSoftwareVersion, hwRectOperRowStatus }
			STATUS current
			DESCRIPTION 
				"Site rectifier group."
			::= { hwSiteMonitorGroups 3 }

		
		-- 1.3.6.1.4.1.2011.6.164.3.1.4
		hwSiteBatterysGroup OBJECT-GROUP
			OBJECTS { hwBattStringCurrent, hwBattStringRemainCapacity, hwSetBattInstallTime, hwBattStringEquipId, hwBattStringEquipName, 
				hwBattStringRemainCapacityPercent, hwBattStringActualCapacity, hwSetBattStdCapacity, hwBattStringTemprature, hwBattsGroupId, 
				hwBattsGroupName, hwSetBattsHighTempAction, hwSetBattsHighTempVoltLimit, hwSetBattsFloatVoltage, hwSetBattsBoostVoltage, 
				hwSetBattsCompFactor, hwBattsChargeStatus, hwBattsCurrLimitStatus, hwCtrlBattsTestStartStop, hwBattsTestResultIndex, 
				hwBattsTestType, hwBattsTestStartTime, hwBattsTestResult, hwBattsEfficiency, hwBattsDischargeTime, 
				hwBattsDischargeEndVoltage, hwBattsDischargeAvCurrent, hwBattsDischargeAhValue, hwBattsTestTemprature, hwBattsTestEndCourse, 
				hwBattsTestResultRowStatus, hwBattStringConfigIndex, hwBattStringConfigRowStatus, hwSetBattsTempUpperLimit, hwSetBattsTempLowerLimit, 
				hwSetBattsCurrLimitCoefficient, hwBattsTotalCurrent, hwSetBattsHTDLimit, hwBattsTestRecordCount, hwBattStringOperStatus, 
				hwSetBattsTempMeasureUpperLimit, hwSetBattsTempMeasureLowerLimit, hwBattsPreDischargeTime, hwBattsTotalQuantity, hwSetBattsManuStdTestTime, 
				hwSetBattsManuStdTestEndVolt, hwSetBattsManuStdTestCellNum, hwSetBattsManuShortTestTime, hwSetBattsManuShortTestEndVolt, hwBattStringOperIndex, 
				hwSetBattsHTDEnable, hwBattStringOperRowStatus, hwCtrlBattsBoostFloat }
			STATUS current
			DESCRIPTION 
				"Site battery group."
			::= { hwSiteMonitorGroups 4 }

		
		-- 1.3.6.1.4.1.2011.6.164.3.1.5
		hwSiteAcDistributionsGroup OBJECT-GROUP
			OBJECTS { hwSetAcsUpperVoltLimit, hwSetAcsLowerVoltLimit, hwApOrAblVoltage, hwBpOrBclVoltage, hwCpOrCalVoltage, 
				hwAphaseCurrent, hwBphaseCurrent, hwCphaseCurrent, hwAcsGroupId, hwAcsGroupName, 
				hwAcInputIndex, hwAcRowStatus, hwAcEquipId, hwAcInputOperStatus, hwAcEquipName, 
				hwAcsTotalCurrent, hwAcsTotalQuantity, hwSiteDescription, hwAcInputBreakerIndex, hwAcInputBreakerEquipId, 
				hwAcInputBreakerEquipName, hwAcInputBreakerOperStatus, hwAcInputBreakerRowStatus, hwAcInputBreakersQuantity }
			STATUS current
			DESCRIPTION 
				"Site AC distribution group."
			::= { hwSiteMonitorGroups 5 }

		
		-- 1.3.6.1.4.1.2011.6.164.3.1.6
		hwSiteDcDistributionsGroup OBJECT-GROUP
			OBJECTS { hwSetDcsUpperVoltLimit, hwSetDcsLowerVoltLimit, hwDcOutputIndex, hwDcOutputVoltage, hwDcOutputCurrent, 
				hwDcOutputPower, hwDcOutputRowStatus, hwLoadBranchIndex, hwLoadBranchPower, hwDcOutputEquipId, 
				hwDcOutputEquipName, hwLoadBranchEquipId, hwDcOutputOperStatus, hwLoadBranchOperStatus, hwLoadBranchRowStatus, 
				hwLvdUnitEquipName, hwLoadBranchEquipName, hwDcsGroupId, hwDcsGroupName, hwDcsTotalVoltage, 
				hwDcsTotalCurrent, hwDcsTotalPower, hwDcsTotalQuantity, hwLoadsQuantity, hwLoadBranchCurrent
				 }
			STATUS current
			DESCRIPTION 
				"Site DC distribution group."
			::= { hwSiteMonitorGroups 6 }

		
		-- 1.3.6.1.4.1.2011.6.164.3.1.7
		hwSiteLvdUnitsGroup OBJECT-GROUP
			OBJECTS { hwLvdBranchIndex, hwLvdBranchRowStatus, hwLvdUnitEquipId, hwLvdsGroupId, hwLvdUnitEquipName, 
				hwLvdsGroupName, hwSetLvdVoltage, hwCtrlLvd, hwLvdsTotalQuantity, hwLvdBranchOperStatus, 
				hwSetLvdEnable }
			STATUS current
			DESCRIPTION 
				"Site low voltage disconnection unit group."
			::= { hwSiteMonitorGroups 7 }

		
		-- 1.3.6.1.4.1.2011.6.164.3.1.8
		hwSiteEnvUnitsGroup OBJECT-GROUP
			OBJECTS { hwCtrlSmokeReset, hwCtrlDoorReset, hwEnvTempSensorIndex, hwEnvTemperature, hwEnvHumiSensorIndex, 
				hwEnvHumidity, hwEnvHumiEquipId, hwEnvHumiEquipName, hwEnvTempEquipId, hwEnvTempEquipName, 
				hwEnvUnitsGroupId, hwEnvUnitsGroupName, hwSetEnvTempAlarmEnable, hwSetEnvHumiAlarmEnable, hwCtrlBuzzerEnable, 
				hwSetEnvTempUpperLimit, hwSetEnvTempLowerLimit, hwEnvTempSensorRowStatus, hwSetEnvHumidityUpperLimit, hwSetEnvHumidityLowerLimit, 
				hwEnvHumiSensorRowStatus, hwEnvTempSensorOperStatus, hwEnvHumiSensorOperStatus, hwSetEnvTempMeasureUpperLimit, hwSetEnvTempMeasureLowerLimit, 
				hwSetEnvHumidityMeasureUpperLimit, hwSetEnvHumidityMeasureLowerLimit, hwEnvTempSensorsTotalQuantity, hwEnvHumiSensorsTotalQuantity, hwSpareDigitalIndex, 
				hwSpareDigitalEquipId, hwSpareDigitalEquipName, hwSetSpareDigitalAlarmTension, hwSetSpareDigitalAlarmEnable, hwSpareDigitalOperStatus, 
				hwSpareDigitalRowStatus, hwSpareDigitalsTotalQuantity }
			STATUS current
			DESCRIPTION 
				"Site envirenment unit group."
			::= { hwSiteMonitorGroups 8 }

		
--  1.3.6.1.4.1.2011.6.1.7.3
		-- 1.3.6.1.4.1.2011.6.164.3.1.9
		hwSiteAlarmTrapsGroup NOTIFICATION-GROUP
			NOTIFICATIONS { hwAcInputAlarmTraps, hwAcInputAlarmResumeTraps, hwAcVoltAlarmTraps, hwAcVoltAlarmResumeTraps, hwDcVoltAlarmTraps, 
				hwDcVoltAlarmResumeTraps, hwLoadLvdAlarmTraps, hwLoadLvdAlarmResumeTraps, hwBattLvdAlarmTraps, hwBattLvdAlarmResumeTraps, 
				hwBattLoopBreakAlarmTraps, hwBattLoopBreakAlarmResumeTraps, hwEnvTempAlarmTraps, hwEnvTempAlarmResumeTraps, hwEnvHumiAlarmTraps, 
				hwEnvHumiAlarmResumeTraps, hwDoorAlarmTraps, hwDoorAlarmResumeTraps, hwWaterAlarmTraps, hwWaterAlarmResumeTraps, 
				hwSmokeAlarmTraps, hwSmokeAlarmResumeTraps, hwRectifierFaultAlarmTraps, hwRectifierFaultAlarmResumeTraps, hwRectifierAbnormalAlarmTraps, 
				hwRectifierAbnormalAlarmResumeTraps, hwBattOverCurrAlarmTraps, hwBattOverCurrAlarmResumeTraps, hwLoadFuseAlarmTraps, hwLoadFuseAlarmResumeTraps, 
				hwRs485CommAlarmTraps, hwRs485CommAlarmResumeTraps, hwNetCommAlarmTraps, hwNetCommAlarmResumeTraps, hwMultiRectFailureAlarmTraps, 
				hwMultiRectFailureAlarmResumeTraps, hwRectRedundAlarmTraps, hwRectRedundAlarmResumeTraps, hwBattUnbalanceAlarmTraps, hwBattUnbalanceAlarmResumeTraps, 
				hwAcFreqFaultAlarmTraps, hwWireAlarmTraps, hwWireAlarmResumeTraps, hwAcFreqFaultAlarmResumeTraps, hwXmuSelfFaultAlarmTraps, 
				hwAcBreakerAlarmTraps, hwAcBreakerAlarmResumeTraps, hwBattDischargeAlarmTraps, hwBattDischargeAlarmResumeTraps, hwXmuSelfFaultAlarmResumeTraps, 
				hwBattStringTempAlarmTraps, hwBattStringTempAlarmResumeTraps, hwSpareDigitalAlarmTraps, hwSpareDigitalAlarmResumeTraps, hwAcOffLongTimeAlarmTraps, 
				hwAcOffLongTimeAlarmResumeTraps, hwSpdAlarmTraps, hwSpdAlarmResumeTraps, hwBadBatteryTraps, hwBadBatteryResumeTraps, 
				hwLvd2DisconnectingTraps, hwLvd2DisconnectingResumeTraps, hwBattHighTempTraps, hwBattHighTempResumeTraps, hwBattLowTempTraps, 
				hwBattLowTempResumeTraps, hwDcUltraOverVoltageTraps, hwDcUltraOverVoltageResumeTraps, hwDcUltraUnderVoltageTraps, hwDcUltraUnderVoltageResumeTraps, 
				hwUmiCommFailTraps, hwUmiCommFailResumeTraps, hwShortTestFailTraps, hwShortTestFailResumeTraps, hwMissingBattTempSensorTraps, 
				hwMissingBattTempSensorResumeTraps, hwBattTempSensorFaultTraps, hwBattTempSensorFaultResumeTraps, hwAcOverVoltageTraps, hwAcOverVoltageResumeTraps, 
				hwAcUnderVoltageTraps, hwAcUnderVoltageResumeTraps, hwBattTestRecordsAdd, hwPDENoResponseTraps, hwPDENoResponseResumeTraps, 
				hwPDELostTraps, hwPDELostResumeTraps, hwPDELoadFaultTraps, hwPDELoadFaultResumeTraps, hwPDEFailureTraps, 
				hwPDEFailureResumeTraps, hwPDEBr1FailureTraps, hwPDEBr1FailureResumeTraps, hwPDEBr2FailureTraps, hwPDEBr2FailureResumeTraps, 
				hwPDEBr3FailureTraps, hwPDEBr3FailureResumeTraps, hwPDEBr4FailureTraps, hwPDEBr4FailureResumeTraps, hwPDEBr1ProtectTraps, 
				hwPDEBr1ProtectResumeTraps, hwPDEBr2ProtectTraps, hwPDEBr2ProtectResumeTraps, hwPDEBr3ProtectTraps, hwPDEBr3ProtectResumeTraps, 
				hwPDEBr4ProtectTraps, hwPDEBr4ProtectResumeTraps }
			STATUS current
			DESCRIPTION 
				"Site alarm trap group."
			::= { hwSiteMonitorGroups 9 }

		
		-- 1.3.6.1.4.1.2011.6.164.3.1.10
		hwSiteDeviceTrapsGroup NOTIFICATION-GROUP
			NOTIFICATIONS { hwRectifiersInslotChange, hwBatterysInslotChange, hwBattTestRecordsAdd, hwEnvTempSensInslotChange, hwEnvHumiSensInslotChange, 
				hwPDEsInslotChange }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteMonitorGroups 10 }

		-- 1.3.6.1.4.1.2011.6.164.3.1.11
		hwSiteEfusesGroup OBJECT-GROUP
			OBJECTS { hwPDEGroupId, hwPDEGroupName, hwPDEGroupNum, hwPDEGroupCommNum, hwPDEGroupTotalPower, 
				hwPDEGroupTotalCurrent, hwPDEGroupCommStatus, hwPDEIndex, hwPDEEquipId, hwPDEEquipName, 
				hwPDETotalRunningTime, hwPDEBranchNum, hwPDETotalPower, hwPDETotalCurrent, hwPDEBranch1Power, 
				hwPDEBranch2Power, hwPDEBranch3Power, hwPDEBranch4Power, hwPDEBranch1Current, hwPDEBranch2Current, 
				hwPDEBranch3Current, hwPDEBranch4Current, hwPDEBranch1Voltage, hwPDEBranch2Voltage, hwPDEBranch3Voltage, 
				hwPDEBranch4Voltage, hwPDEBranch1Temperature, hwPDEBranch2Temperature, hwPDEBranch3Temperature, hwPDEBranch4Temperature, 
				hwPDEOperStatus, hwPDERowStatus, hwPDEConfigIndex, hwPDEConfigEquipId, hwPDEConfigEquipName, 
				hwPDEOverTempProtect, hwPDEVolProtectEnable, hwPDEOverVoltageProtect, hwPDEUnderVoltageProtect, hwPDEHysteresis, 
				hwPDEReset, hwPDEBranch1Control, hwPDEBranch2Control, hwPDEBranch3Control, hwPDEBranch4Control, 
				hwPDEBranch1CurrentLimit, hwPDEBranch2CurrentLimit, hwPDEBranch3CurrentLimit, hwPDEBranch4CurrentLimit, hwPDEConfigRowStatus
				 }
			STATUS current
			DESCRIPTION 
				"Description."
			::= { hwSiteMonitorGroups 11 }
		
	
	END

--
-- HUAWEI-SITE-MONITOR-MIB.mib
--