Jump to content

Walking a .json ( and failing )


Go to solution Solved by AspirinJunkie,

Recommended Posts

Posted (edited)

Using the json UDF, started to discern the json from https://github.com/LibreHardwareMonitor/LibreHardwareMonitor/releases 
To save you from installing the software to solve my problem, the test code has the json string in it.

The problem is that walking the json, I don't get all the values:
 

#include <JSON.au3>
#include <Array.au3>

Exit Test()
Func Test()
    Local $hTimer = TimerInit()
    Local $sTempJson, $mMap = _JSON_Parse(TheJsonStr())

    Local $aValues[10000][10], $iIndex0 = 0
    Local $sValue1, $iIndex1 = -1
    Local $sValue2, $iIndex2 = -1
    Local $sValue3, $iIndex3 = -1
    Local $sValue4, $iIndex4 = -1
    Local $sValue5, $iIndex5 = -1
    Local $sValue6, $iIndex6 = -1
    Local $sValue7, $iIndex7 = -1
    Do

        $iIndex1 += 1
        $sValue1 = _JSON_Get($mMap, "Children[" & $iIndex1 & "].id")
        If $sValue1 = "" Then ExitLoop
;~      If VarGetType(_JSON_Get($mMap, "Children[" & $iIndex1 & "].Children")) <> "Array" Then ExitLoop
        $iIndex0 += 1
        If $iIndex0 > 270 Then ExitLoop
        ConsoleWrite('>' & Asc($sValue1) & '<' & @CRLF)
        $aValues[$iIndex0][1] = $sValue1
        $aValues[$iIndex0][0] = _JSON_Get($mMap, "Children[" & $iIndex1 & "].ImageURL")
        $aValues[$iIndex0][9] = _JSON_Get($mMap, "Children[" & $iIndex1 & "].id")
;~      $aValues[$iIndex0][0] = $iIndex1
;~      ConsoleWrite('->' & $sValue1 & '<' & @CRLF) ; @ComputerName
        $iIndex2 = -1
        Do
            $iIndex2 += 1
            $sTempJson = "Children[" & $iIndex1 & "].Children[" & $iIndex2 & "]."
            $sValue2 = _JSON_Get($mMap, $sTempJson & "id")
;~          If $sValue2 = "" Then ExitLoop
            If VarGetType(_JSON_Get($mMap, $sTempJson & "Children")) <> "Array" Then ExitLoop
            $iIndex0 += 1
            $aValues[$iIndex0][0] = $iIndex1 & "," & $iIndex2
            $aValues[$iIndex0][1] = _JSON_Get($mMap, $sTempJson & "ImageURL")
            $aValues[$iIndex0][2] = _JSON_Get($mMap, $sTempJson & "Text")
            $aValues[$iIndex0][9] = $sValue2
            $iIndex3 = -1
            Do
                $iIndex3 += 1
                $sTempJson = "Children[" & $iIndex1 & "].Children[" & $iIndex2 & "].Children[" & $iIndex3 & "]."
                $sValue3 = _JSON_Get($mMap, $sTempJson & "id")
;~              If $sValue3 = "" Then ExitLoop
                If VarGetType(_JSON_Get($mMap, $sTempJson & "Children")) <> "Array" Then ExitLoop
                $iIndex0 += 1
                $aValues[$iIndex0][0] = $iIndex1 & "," & $iIndex2 & "," & $iIndex3
;~              $aValues[$iIndex0][1] = $sTempJson & "($iIndex3)"
                $aValues[$iIndex0][2] = _JSON_Get($mMap, $sTempJson & "ImageURL")
                $aValues[$iIndex0][3] = _JSON_Get($mMap, $sTempJson & "Text")
                $aValues[$iIndex0][9] = $sValue3
                $iIndex4 = -1
                Do
                    $iIndex4 += 1
                    $sTempJson = "Children[" & $iIndex1 & "].Children[" & $iIndex2 & "].Children[" & $iIndex3 & "].Children[" & $iIndex4 & "]."
                    $sValue4 = _JSON_Get($mMap, $sTempJson & "id")
                    ConsoleWrite('- 4 ' & VarGetType(_JSON_Get($mMap, $sTempJson & "Children")) & @TAB & $sValue4 & @TAB & $sTempJson & @CRLF)
                    If VarGetType(_JSON_Get($mMap, $sTempJson & "Children")) <> "Array" Then ExitLoop
                    $iIndex0 += 1
                    $aValues[$iIndex0][0] = $iIndex1 & "," & $iIndex2 & "," & $iIndex3 & "," & $iIndex4
                    $aValues[$iIndex0][1] = $sTempJson & "($iIndex4)"
                    $aValues[$iIndex0][3] = _JSON_Get($mMap, $sTempJson & "ImageURL")
                    $aValues[$iIndex0][4] = _JSON_Get($mMap, $sTempJson & "Text")
                    $aValues[$iIndex0][5] = _JSON_Get($mMap, $sTempJson & "Value")
                    $aValues[$iIndex0][9] = $sValue4
                    $iIndex5 = -1
                    Do
                        $iIndex5 += 1
                        $sTempJson = "Children[" & $iIndex1 & "].Children[" & $iIndex2 & "].Children[" & $iIndex4 & "].Children[" & $iIndex4 & "].Children[" & $iIndex5 & "]."
                        $sValue5 = _JSON_Get($mMap, $sTempJson & "id")
                        ConsoleWrite('- 5 ' & VarGetType($sValue5) & @TAB & $sValue5 & @TAB & $sTempJson & @CRLF)
;~                      If $sValue5 = "" Then ExitLoop
                        If VarGetType(_JSON_Get($mMap, $sTempJson & "Children")) <> "Array" Then ExitLoop
                        $iIndex0 += 1
                        $aValues[$iIndex0][0] = $iIndex1 & "," & $iIndex2 & "," & $iIndex3 & "," & $iIndex4 & "," & $iIndex5
                        $aValues[$iIndex0][1] = $sTempJson & "($iIndex5)"
                        $aValues[$iIndex0][4] = _JSON_Get($mMap, $sTempJson & "ImageURL")
                        $aValues[$iIndex0][5] = _JSON_Get($mMap, $sTempJson & "Text")
                        $aValues[$iIndex0][6] = _JSON_Get($mMap, $sTempJson & "Value")
                        $aValues[$iIndex0][9] = $sValue5
                        $iIndex6 = -1
                        Do
                            $iIndex6 += 1
                            $sTempJson = "Children[" & $iIndex1 & "].Children[" & $iIndex2 & "].Children[" & $iIndex4 & "].Children[" & $iIndex4 & "].Children[" & $iIndex5 & "].Children[" & $iIndex6 & "]."
                            $sValue6 = _JSON_Get($mMap, $sTempJson & "id")
;~                          If $sValue6 = "" Then ExitLoop
                            If VarGetType(_JSON_Get($mMap, $sTempJson & "Children")) <> "Array" Then ExitLoop
                            $iIndex0 += 1
                            $aValues[$iIndex0][0] = $iIndex1 & "," & $iIndex2 & "," & $iIndex3 & "," & $iIndex4 & "," & $iIndex5 & "," & $iIndex6
;~                          $aValues[$iIndex0][1] = $sTempJson & "($iIndex6)"
                            $aValues[$iIndex0][5] = _JSON_Get($mMap, $sTempJson & "ImageURL")
                            $aValues[$iIndex0][6] = _JSON_Get($mMap, $sTempJson & "Text")
                            $aValues[$iIndex0][7] = _JSON_Get($mMap, $sTempJson & "Value")
                            $aValues[$iIndex0][9] = $sValue6
                            $iIndex7 = -1
                            Do
                                $iIndex7 += 1
                                $sTempJson = "Children[" & $iIndex1 & "].Children[" & $iIndex2 & "].Children[" & $sValue3 & "].Children[" & $iIndex4 & "].Children[" & $iIndex5 & "].Children[" & $iIndex6 & "].Children[" & $iIndex7 & "]."
                                $sValue7 = _JSON_Get($mMap, $sTempJson & "id")
;~                              If $sValue7 = "" Then ExitLoop
                                If VarGetType(_JSON_Get($mMap, $sTempJson & "Children")) <> "Array" Then ExitLoop
                                $iIndex0 += 1
                                $aValues[$iIndex0][0] = $iIndex1 & "," & $iIndex2 & "," & $iIndex3 & "," & $iIndex4 & "," & $iIndex5 & "," & $iIndex6 & "," & $iIndex7
;~                              $aValues[$iIndex0][1] = $sTempJson & "($iIndex7)"
                                $aValues[$iIndex0][6] = _JSON_Get($mMap, $sTempJson & "ImageURL")
                                $aValues[$iIndex0][7] = _JSON_Get($mMap, $sTempJson & "Text")
                                $aValues[$iIndex0][8] = _JSON_Get($mMap, $sTempJson & "Value")
                                $aValues[$iIndex0][9] = $sValue7
                                $iIndex7 = -1
                            Until $sValue7 = ""
                        Until $sValue6 = ""
                    Until $sValue5 = ""
                Until $sValue4 = ""
            Until $sValue3 = ""
        Until $sValue2 = ""
    Until $sValue1 = ""
    ReDim $aValues[$iIndex0 + 1][10]
    ConsoleWrite(@CRLF & TimerDiff($hTimer) & @CRLF & @CRLF)
    ConsoleWrite('+++ $iIndex0 = ' & $iIndex0 & @CRLF)
    _ArrayDisplay($aValues)
    Return $aValues
EndFunc   ;==>Test

Func TheJsonStr()
    Local $sJson = '{"id":0,"Text":"Sensor","Min":"Min","Value":"Value","Max":"Max","ImageURL":"","Children":['
    $sJson &= '{"id":1,"Text":"PEPE-PC","Min":"","Value":"","Max":"","ImageURL":"images_icon/computer.png","Children":['
    $sJson &= '{"id":2,"Text":"AHWSA","Min":"","Value":"","Max":"","ImageURL":"images_icon/mainboard.png","Children":['
    $sJson &= '{"id":3,"Text":"Nuvoton NCT6796D-R","Min":"","Value":"","Max":"","ImageURL":"images_icon/chip.png","Children":['
    $sJson &= '{"id":4,"Text":"Voltages","Min":"","Value":"","Max":"","ImageURL":"images_icon/voltage.png","Children":['
    $sJson &= '{"id":5,"Text":"Vcore","Min":"0.336 V","Value":"0.448 V","Max":"0.704 V","SensorId":"/lpc/nct6796dr/0/voltage/0","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":6,"Text":"Voltage #2","Min":"1.032 V","Value":"1.040 V","Max":"1.040 V","SensorId":"/lpc/nct6796dr/0/voltage/1","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":7,"Text":"AVCC","Min":"3.344 V","Value":"3.360 V","Max":"3.360 V","SensorId":"/lpc/nct6796dr/0/voltage/2","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":8,"Text":"+3.3V","Min":"3.344 V","Value":"3.360 V","Max":"3.360 V","SensorId":"/lpc/nct6796dr/0/voltage/3","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":9,"Text":"Voltage #5","Min":"1.088 V","Value":"1.096 V","Max":"1.096 V","SensorId":"/lpc/nct6796dr/0/voltage/4","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":10,"Text":"Voltage #6","Min":"0.152 V","Value":"0.168 V","Max":"0.168 V","SensorId":"/lpc/nct6796dr/0/voltage/5","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":11,"Text":"Voltage #7","Min":"0.136 V","Value":"0.144 V","Max":"0.144 V","SensorId":"/lpc/nct6796dr/0/voltage/6","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":12,"Text":"+3V Standby","Min":"3.344 V","Value":"3.344 V","Max":"3.360 V","SensorId":"/lpc/nct6796dr/0/voltage/7","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":13,"Text":"CMOS Battery","Min":"3.136 V","Value":"3.152 V","Max":"3.152 V","SensorId":"/lpc/nct6796dr/0/voltage/8","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":14,"Text":"CPU Termination","Min":"0.504 V","Value":"0.512 V","Max":"0.512 V","SensorId":"/lpc/nct6796dr/0/voltage/9","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":15,"Text":"Voltage #11","Min":"0.080 V","Value":"0.088 V","Max":"0.088 V","SensorId":"/lpc/nct6796dr/0/voltage/10","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":16,"Text":"Voltage #12","Min":"0.064 V","Value":"0.072 V","Max":"0.072 V","SensorId":"/lpc/nct6796dr/0/voltage/11","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":17,"Text":"Voltage #13","Min":"0.992 V","Value":"1.000 V","Max":"1.008 V","SensorId":"/lpc/nct6796dr/0/voltage/12","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":18,"Text":"Voltage #14","Min":"0.152 V","Value":"0.160 V","Max":"0.168 V","SensorId":"/lpc/nct6796dr/0/voltage/13","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":19,"Text":"Voltage #15","Min":"1.264 V","Value":"1.264 V","Max":"1.272 V","SensorId":"/lpc/nct6796dr/0/voltage/14","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":20,"Text":"Temperatures","Min":"","Value":"","Max":"","ImageURL":"images_icon/temperature.png","Children":['
    $sJson &= '{"id":21,"Text":"CPU Core","Min":"54.0 °C","Value":"59.0 °C","Max":"89.0 °C","SensorId":"/lpc/nct6796dr/0/temperature/0","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":22,"Text":"Temperature #1","Min":"50.0 °C","Value":"51.0 °C","Max":"56.0 °C","SensorId":"/lpc/nct6796dr/0/temperature/1","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":23,"Text":"Temperature #2","Min":"111.0 °C","Value":"112.0 °C","Max":"114.0 °C","SensorId":"/lpc/nct6796dr/0/temperature/2","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":24,"Text":"Temperature #3","Min":"108.0 °C","Value":"109.5 °C","Max":"111.0 °C","SensorId":"/lpc/nct6796dr/0/temperature/3","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":25,"Text":"Temperature #4","Min":"109.0 °C","Value":"110.0 °C","Max":"111.0 °C","SensorId":"/lpc/nct6796dr/0/temperature/4","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":26,"Text":"Temperature #5","Min":"109.0 °C","Value":"110.0 °C","Max":"112.0 °C","SensorId":"/lpc/nct6796dr/0/temperature/5","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":27,"Text":"Temperature #6","Min":"-36.0 °C","Value":"-34.0 °C","Max":"-30.0 °C","SensorId":"/lpc/nct6796dr/0/temperature/6","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":28,"Text":"Fans","Min":"","Value":"","Max":"","ImageURL":"images_icon/fan.png","Children":['
    $sJson &= '{"id":29,"Text":"Fan #1","Min":"2486 RPM","Value":"2505 RPM","Max":"2567 RPM","SensorId":"/lpc/nct6796dr/0/fan/0","Type":"Fan","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":30,"Text":"Fan #2","Min":"2202 RPM","Value":"2373 RPM","Max":"3207 RPM","SensorId":"/lpc/nct6796dr/0/fan/1","Type":"Fan","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":31,"Text":"Fan #3","Min":"0 RPM","Value":"0 RPM","Max":"0 RPM","SensorId":"/lpc/nct6796dr/0/fan/2","Type":"Fan","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":32,"Text":"Fan #4","Min":"0 RPM","Value":"0 RPM","Max":"0 RPM","SensorId":"/lpc/nct6796dr/0/fan/3","Type":"Fan","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":33,"Text":"Fan #5","Min":"0 RPM","Value":"0 RPM","Max":"0 RPM","SensorId":"/lpc/nct6796dr/0/fan/4","Type":"Fan","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":34,"Text":"Fan #6","Min":"0 RPM","Value":"0 RPM","Max":"0 RPM","SensorId":"/lpc/nct6796dr/0/fan/5","Type":"Fan","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":35,"Text":"Fan #7","Min":"0 RPM","Value":"0 RPM","Max":"0 RPM","SensorId":"/lpc/nct6796dr/0/fan/6","Type":"Fan","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":36,"Text":"Controls","Min":"","Value":"","Max":"","ImageURL":"images_icon/control.png","Children":['
    $sJson &= '{"id":37,"Text":"Fan #1","Min":"35.3 %","Value":"35.3 %","Max":"36.1 %","SensorId":"/lpc/nct6796dr/0/control/0","Type":"Control","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":38,"Text":"Fan #2","Min":"34.5 %","Value":"37.3 %","Max":"58.8 %","SensorId":"/lpc/nct6796dr/0/control/1","Type":"Control","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":39,"Text":"Fan #3","Min":"60.0 %","Value":"60.0 %","Max":"60.0 %","SensorId":"/lpc/nct6796dr/0/control/2","Type":"Control","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":40,"Text":"Fan #4","Min":"60.0 %","Value":"60.0 %","Max":"60.0 %","SensorId":"/lpc/nct6796dr/0/control/3","Type":"Control","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":41,"Text":"Fan #5","Min":"60.0 %","Value":"60.0 %","Max":"60.0 %","SensorId":"/lpc/nct6796dr/0/control/4","Type":"Control","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":42,"Text":"Fan #6","Min":"100.0 %","Value":"100.0 %","Max":"100.0 %","SensorId":"/lpc/nct6796dr/0/control/5","Type":"Control","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":43,"Text":"Fan #7","Min":"38.4 %","Value":"40.0 %","Max":"58.8 %","SensorId":"/lpc/nct6796dr/0/control/6","Type":"Control","ImageURL":"images/transparent.png","Children":[]}]}]}]},'
    $sJson &= '{"id":44,"Text":"12th Gen Intel Core i9-12900H","Min":"","Value":"","Max":"","ImageURL":"images_icon/cpu.png","Children":['
    $sJson &= '{"id":45,"Text":"Voltages","Min":"","Value":"","Max":"","ImageURL":"images_icon/voltage.png","Children":['
    $sJson &= '{"id":46,"Text":"CPU Core","Min":"0.632 V","Value":"1.234 V","Max":"1.463 V","SensorId":"/intelcpu/0/voltage/0","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":47,"Text":"CPU Core #1","Min":"0.700 V","Value":"1.299 V","Max":"1.458 V","SensorId":"/intelcpu/0/voltage/1","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":48,"Text":"CPU Core #2","Min":"0.637 V","Value":"1.374 V","Max":"1.439 V","SensorId":"/intelcpu/0/voltage/2","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":49,"Text":"CPU Core #3","Min":"0.581 V","Value":"1.334 V","Max":"1.413 V","SensorId":"/intelcpu/0/voltage/3","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":50,"Text":"CPU Core #4","Min":"0.580 V","Value":"1.322 V","Max":"1.428 V","SensorId":"/intelcpu/0/voltage/4","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":51,"Text":"CPU Core #5","Min":"0.582 V","Value":"1.287 V","Max":"1.476 V","SensorId":"/intelcpu/0/voltage/5","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":52,"Text":"CPU Core #6","Min":"0.606 V","Value":"1.262 V","Max":"1.487 V","SensorId":"/intelcpu/0/voltage/6","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":53,"Text":"CPU Core #7","Min":"0.644 V","Value":"1.207 V","Max":"1.498 V","SensorId":"/intelcpu/0/voltage/7","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":54,"Text":"CPU Core #8","Min":"0.631 V","Value":"1.297 V","Max":"1.423 V","SensorId":"/intelcpu/0/voltage/8","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":55,"Text":"CPU Core #9","Min":"0.632 V","Value":"1.297 V","Max":"1.443 V","SensorId":"/intelcpu/0/voltage/9","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":56,"Text":"CPU Core #10","Min":"0.632 V","Value":"1.297 V","Max":"1.441 V","SensorId":"/intelcpu/0/voltage/10","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":57,"Text":"CPU Core #11","Min":"0.661 V","Value":"1.362 V","Max":"1.431 V","SensorId":"/intelcpu/0/voltage/11","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":58,"Text":"CPU Core #12","Min":"0.691 V","Value":"1.362 V","Max":"1.411 V","SensorId":"/intelcpu/0/voltage/12","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":59,"Text":"CPU Core #13","Min":"0.696 V","Value":"1.302 V","Max":"1.416 V","SensorId":"/intelcpu/0/voltage/13","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":60,"Text":"CPU Core #14","Min":"0.696 V","Value":"1.302 V","Max":"1.426 V","SensorId":"/intelcpu/0/voltage/14","Type":"Voltage","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":61,"Text":"Powers","Min":"","Value":"","Max":"","ImageURL":"images_icon/power.png","Children":['
    $sJson &= '{"id":62,"Text":"CPU Package","Min":"8.8 W","Value":"17.4 W","Max":"53.8 W","SensorId":"/intelcpu/0/power/0","Type":"Power","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":63,"Text":"CPU Cores","Min":"4.5 W","Value":"8.4 W","Max":"42.5 W","SensorId":"/intelcpu/0/power/1","Type":"Power","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":64,"Text":"CPU Memory","Min":"0.0 W","Value":"0.0 W","Max":"0.0 W","SensorId":"/intelcpu/0/power/3","Type":"Power","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":65,"Text":"CPU Platform","Min":"0.0 W","Value":"0.0 W","Max":"0.0 W","SensorId":"/intelcpu/0/power/4","Type":"Power","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":66,"Text":"Clocks","Min":"","Value":"","Max":"","ImageURL":"images_icon/clock.png","Children":['
    $sJson &= '{"id":67,"Text":"Bus Speed","Min":"100.6 MHz","Value":"100.6 MHz","Max":"100.6 MHz","SensorId":"/intelcpu/0/clock/0","Type":"Clock","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":68,"Text":"CPU Core #1","Min":"402.5 MHz","Value":"4327.3 MHz","Max":"4931.5 MHz","SensorId":"/intelcpu/0/clock/1","Type":"Clock","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":69,"Text":"CPU Core #2","Min":"402.5 MHz","Value":"4629.2 MHz","Max":"4931.5 MHz","SensorId":"/intelcpu/0/clock/2","Type":"Clock","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":70,"Text":"CPU Core #3","Min":"402.5 MHz","Value":"4327.3 MHz","Max":"5032.2 MHz","SensorId":"/intelcpu/0/clock/3","Type":"Clock","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":71,"Text":"CPU Core #4","Min":"402.5 MHz","Value":"4629.2 MHz","Max":"4931.6 MHz","SensorId":"/intelcpu/0/clock/4","Type":"Clock","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":72,"Text":"CPU Core #5","Min":"402.5 MHz","Value":"4629.2 MHz","Max":"5032.2 MHz","SensorId":"/intelcpu/0/clock/5","Type":"Clock","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":73,"Text":"CPU Core #6","Min":"402.5 MHz","Value":"4629.2 MHz","Max":"4931.6 MHz","SensorId":"/intelcpu/0/clock/6","Type":"Clock","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":74,"Text":"CPU Core #7","Min":"402.5 MHz","Value":"3824.1 MHz","Max":"3824.5 MHz","SensorId":"/intelcpu/0/clock/7","Type":"Clock","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":75,"Text":"CPU Core #8","Min":"402.5 MHz","Value":"3824.1 MHz","Max":"3824.5 MHz","SensorId":"/intelcpu/0/clock/8","Type":"Clock","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":76,"Text":"CPU Core #9","Min":"402.5 MHz","Value":"3824.1 MHz","Max":"3824.5 MHz","SensorId":"/intelcpu/0/clock/9","Type":"Clock","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":77,"Text":"CPU Core #10","Min":"402.5 MHz","Value":"3824.1 MHz","Max":"3824.5 MHz","SensorId":"/intelcpu/0/clock/10","Type":"Clock","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":78,"Text":"CPU Core #11","Min":"402.5 MHz","Value":"3824.1 MHz","Max":"3824.5 MHz","SensorId":"/intelcpu/0/clock/11","Type":"Clock","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":79,"Text":"CPU Core #12","Min":"402.5 MHz","Value":"3824.1 MHz","Max":"3824.5 MHz","SensorId":"/intelcpu/0/clock/12","Type":"Clock","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":80,"Text":"CPU Core #13","Min":"402.5 MHz","Value":"3824.1 MHz","Max":"3824.5 MHz","SensorId":"/intelcpu/0/clock/13","Type":"Clock","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":81,"Text":"CPU Core #14","Min":"402.5 MHz","Value":"3824.1 MHz","Max":"3824.5 MHz","SensorId":"/intelcpu/0/clock/14","Type":"Clock","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":82,"Text":"Temperatures","Min":"","Value":"","Max":"","ImageURL":"images_icon/temperature.png","Children":['
    $sJson &= '{"id":83,"Text":"Core Max","Min":"51.0 °C","Value":"85.0 °C","Max":"100.0 °C","SensorId":"/intelcpu/0/temperature/0","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":84,"Text":"Core Average","Min":"48.6 °C","Value":"58.4 °C","Max":"74.6 °C","SensorId":"/intelcpu/0/temperature/1","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":85,"Text":"CPU Core #1","Min":"44.0 °C","Value":"61.0 °C","Max":"96.0 °C","SensorId":"/intelcpu/0/temperature/2","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":86,"Text":"CPU Core #2","Min":"45.0 °C","Value":"51.0 °C","Max":"97.0 °C","SensorId":"/intelcpu/0/temperature/3","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":87,"Text":"CPU Core #3","Min":"46.0 °C","Value":"85.0 °C","Max":"100.0 °C","SensorId":"/intelcpu/0/temperature/4","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":88,"Text":"CPU Core #4","Min":"44.0 °C","Value":"55.0 °C","Max":"96.0 °C","SensorId":"/intelcpu/0/temperature/5","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":89,"Text":"CPU Core #5","Min":"45.0 °C","Value":"80.0 °C","Max":"96.0 °C","SensorId":"/intelcpu/0/temperature/6","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":90,"Text":"CPU Core #6","Min":"44.0 °C","Value":"62.0 °C","Max":"96.0 °C","SensorId":"/intelcpu/0/temperature/7","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":91,"Text":"CPU Core #7","Min":"45.0 °C","Value":"58.0 °C","Max":"75.0 °C","SensorId":"/intelcpu/0/temperature/8","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":92,"Text":"CPU Core #8","Min":"45.0 °C","Value":"58.0 °C","Max":"77.0 °C","SensorId":"/intelcpu/0/temperature/9","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":93,"Text":"CPU Core #9","Min":"45.0 °C","Value":"58.0 °C","Max":"77.0 °C","SensorId":"/intelcpu/0/temperature/10","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":94,"Text":"CPU Core #10","Min":"45.0 °C","Value":"58.0 °C","Max":"77.0 °C","SensorId":"/intelcpu/0/temperature/11","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":95,"Text":"CPU Core #11","Min":"46.0 °C","Value":"48.0 °C","Max":"78.0 °C","SensorId":"/intelcpu/0/temperature/12","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":96,"Text":"CPU Core #12","Min":"46.0 °C","Value":"48.0 °C","Max":"78.0 °C","SensorId":"/intelcpu/0/temperature/13","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":97,"Text":"CPU Core #13","Min":"46.0 °C","Value":"48.0 °C","Max":"78.0 °C","SensorId":"/intelcpu/0/temperature/14","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":98,"Text":"CPU Core #14","Min":"46.0 °C","Value":"48.0 °C","Max":"78.0 °C","SensorId":"/intelcpu/0/temperature/15","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":99,"Text":"CPU Package","Min":"51.0 °C","Value":"85.0 °C","Max":"100.0 °C","SensorId":"/intelcpu/0/temperature/16","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":100,"Text":"CPU Core #1 Distance to TjMax","Min":"4.0 °C","Value":"39.0 °C","Max":"56.0 °C","SensorId":"/intelcpu/0/temperature/17","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":101,"Text":"CPU Core #2 Distance to TjMax","Min":"3.0 °C","Value":"49.0 °C","Max":"55.0 °C","SensorId":"/intelcpu/0/temperature/18","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":102,"Text":"CPU Core #3 Distance to TjMax","Min":"0.0 °C","Value":"15.0 °C","Max":"54.0 °C","SensorId":"/intelcpu/0/temperature/19","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":103,"Text":"CPU Core #4 Distance to TjMax","Min":"4.0 °C","Value":"45.0 °C","Max":"56.0 °C","SensorId":"/intelcpu/0/temperature/20","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":104,"Text":"CPU Core #5 Distance to TjMax","Min":"4.0 °C","Value":"20.0 °C","Max":"55.0 °C","SensorId":"/intelcpu/0/temperature/21","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":105,"Text":"CPU Core #6 Distance to TjMax","Min":"4.0 °C","Value":"38.0 °C","Max":"56.0 °C","SensorId":"/intelcpu/0/temperature/22","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":106,"Text":"CPU Core #7 Distance to TjMax","Min":"25.0 °C","Value":"42.0 °C","Max":"55.0 °C","SensorId":"/intelcpu/0/temperature/23","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":107,"Text":"CPU Core #8 Distance to TjMax","Min":"23.0 °C","Value":"42.0 °C","Max":"55.0 °C","SensorId":"/intelcpu/0/temperature/24","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":108,"Text":"CPU Core #9 Distance to TjMax","Min":"23.0 °C","Value":"42.0 °C","Max":"55.0 °C","SensorId":"/intelcpu/0/temperature/25","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":109,"Text":"CPU Core #10 Distance to TjMax","Min":"23.0 °C","Value":"42.0 °C","Max":"55.0 °C","SensorId":"/intelcpu/0/temperature/26","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":110,"Text":"CPU Core #11 Distance to TjMax","Min":"22.0 °C","Value":"52.0 °C","Max":"54.0 °C","SensorId":"/intelcpu/0/temperature/27","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":111,"Text":"CPU Core #12 Distance to TjMax","Min":"22.0 °C","Value":"52.0 °C","Max":"54.0 °C","SensorId":"/intelcpu/0/temperature/28","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":112,"Text":"CPU Core #13 Distance to TjMax","Min":"22.0 °C","Value":"52.0 °C","Max":"54.0 °C","SensorId":"/intelcpu/0/temperature/29","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":113,"Text":"CPU Core #14 Distance to TjMax","Min":"22.0 °C","Value":"52.0 °C","Max":"54.0 °C","SensorId":"/intelcpu/0/temperature/30","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":114,"Text":"Load","Min":"","Value":"","Max":"","ImageURL":"images_icon/load.png","Children":['
    $sJson &= '{"id":115,"Text":"CPU Total","Min":"0.0 %","Value":"2.2 %","Max":"32.9 %","SensorId":"/intelcpu/0/load/0","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":116,"Text":"CPU Core Max","Min":"0.0 %","Value":"24.1 %","Max":"84.6 %","SensorId":"/intelcpu/0/load/1","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":117,"Text":"CPU Core #1 Thread #1","Min":"0.0 %","Value":"1.0 %","Max":"69.8 %","SensorId":"/intelcpu/0/load/2","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":118,"Text":"CPU Core #1 Thread #2","Min":"0.0 %","Value":"0.7 %","Max":"45.4 %","SensorId":"/intelcpu/0/load/3","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":119,"Text":"CPU Core #2 Thread #1","Min":"0.0 %","Value":"0.9 %","Max":"67.6 %","SensorId":"/intelcpu/0/load/4","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":120,"Text":"CPU Core #2 Thread #2","Min":"0.0 %","Value":"0.5 %","Max":"48.2 %","SensorId":"/intelcpu/0/load/5","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":121,"Text":"CPU Core #3 Thread #1","Min":"0.0 %","Value":"24.1 %","Max":"79.1 %","SensorId":"/intelcpu/0/load/6","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":122,"Text":"CPU Core #3 Thread #2","Min":"0.0 %","Value":"0.6 %","Max":"84.6 %","SensorId":"/intelcpu/0/load/7","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":123,"Text":"CPU Core #4 Thread #1","Min":"0.0 %","Value":"1.1 %","Max":"60.6 %","SensorId":"/intelcpu/0/load/8","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":124,"Text":"CPU Core #4 Thread #2","Min":"0.0 %","Value":"0.5 %","Max":"47.5 %","SensorId":"/intelcpu/0/load/9","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":125,"Text":"CPU Core #5 Thread #1","Min":"0.0 %","Value":"8.3 %","Max":"81.9 %","SensorId":"/intelcpu/0/load/10","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":126,"Text":"CPU Core #5 Thread #2","Min":"0.0 %","Value":"0.6 %","Max":"79.7 %","SensorId":"/intelcpu/0/load/11","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":127,"Text":"CPU Core #6 Thread #1","Min":"0.0 %","Value":"1.0 %","Max":"64.0 %","SensorId":"/intelcpu/0/load/12","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":128,"Text":"CPU Core #6 Thread #2","Min":"0.0 %","Value":"0.5 %","Max":"51.2 %","SensorId":"/intelcpu/0/load/13","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":129,"Text":"CPU Core #7","Min":"0.0 %","Value":"0.6 %","Max":"45.4 %","SensorId":"/intelcpu/0/load/14","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":130,"Text":"CPU Core #8","Min":"0.0 %","Value":"0.6 %","Max":"14.6 %","SensorId":"/intelcpu/0/load/15","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":131,"Text":"CPU Core #9","Min":"0.0 %","Value":"0.6 %","Max":"21.6 %","SensorId":"/intelcpu/0/load/16","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":132,"Text":"CPU Core #10","Min":"0.0 %","Value":"0.6 %","Max":"27.0 %","SensorId":"/intelcpu/0/load/17","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":133,"Text":"CPU Core #11","Min":"0.0 %","Value":"0.8 %","Max":"74.2 %","SensorId":"/intelcpu/0/load/18","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":134,"Text":"CPU Core #12","Min":"0.0 %","Value":"0.6 %","Max":"60.5 %","SensorId":"/intelcpu/0/load/19","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":135,"Text":"CPU Core #13","Min":"0.0 %","Value":"0.6 %","Max":"36.7 %","SensorId":"/intelcpu/0/load/20","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":136,"Text":"CPU Core #14","Min":"0.0 %","Value":"0.6 %","Max":"17.0 %","SensorId":"/intelcpu/0/load/21","Type":"Load","ImageURL":"images/transparent.png","Children":[]}]}]},'
    $sJson &= '{"id":137,"Text":"Generic Memory","Min":"","Value":"","Max":"","ImageURL":"images_icon/ram.png","Children":['
    $sJson &= '{"id":138,"Text":"Load","Min":"","Value":"","Max":"","ImageURL":"images_icon/load.png","Children":['
    $sJson &= '{"id":139,"Text":"Memory","Min":"46.9 %","Value":"48.0 %","Max":"48.5 %","SensorId":"/ram/load/0","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":140,"Text":"Virtual Memory","Min":"46.7 %","Value":"48.1 %","Max":"48.6 %","SensorId":"/ram/load/1","Type":"Load","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":141,"Text":"Data","Min":"","Value":"","Max":"","ImageURL":"images_icon/power.png","Children":['
    $sJson &= '{"id":142,"Text":"Memory Used","Min":"44.9 GB","Value":"45.9 GB","Max":"46.5 GB","SensorId":"/ram/data/0","Type":"Data","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":143,"Text":"Memory Available","Min":"49.3 GB","Value":"49.8 GB","Max":"50.9 GB","SensorId":"/ram/data/1","Type":"Data","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":144,"Text":"Virtual Memory Used","Min":"44.8 GB","Value":"46.0 GB","Max":"46.6 GB","SensorId":"/ram/data/2","Type":"Data","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":145,"Text":"Virtual Memory Available","Min":"49.2 GB","Value":"49.7 GB","Max":"51.0 GB","SensorId":"/ram/data/3","Type":"Data","ImageURL":"images/transparent.png","Children":[]}]}]},'
    $sJson &= '{"id":146,"Text":"Samsung SSD 990 PRO 4TB","Min":"","Value":"","Max":"","ImageURL":"images_icon/hdd.png","Children":['
    $sJson &= '{"id":147,"Text":"Temperatures","Min":"","Value":"","Max":"","ImageURL":"images_icon/temperature.png","Children":['
    $sJson &= '{"id":148,"Text":"Temperature","Min":"0.0 °C","Value":"47.0 °C","Max":"49.0 °C","SensorId":"/nvme/0/temperature/0","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":149,"Text":"Temperature 1","Min":"0.0 °C","Value":"47.0 °C","Max":"49.0 °C","SensorId":"/nvme/0/temperature/6","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":150,"Text":"Temperature 2","Min":"0.0 °C","Value":"65.0 °C","Max":"73.0 °C","SensorId":"/nvme/0/temperature/7","Type":"Temperature","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":151,"Text":"Load","Min":"","Value":"","Max":"","ImageURL":"images_icon/load.png","Children":['
    $sJson &= '{"id":152,"Text":"Used Space","Min":"23.0 %","Value":"23.0 %","Max":"23.0 %","SensorId":"/nvme/0/load/0","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":153,"Text":"Read Activity","Min":"0.0 %","Value":"0.0 %","Max":"97.3 %","SensorId":"/nvme/0/load/31","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":154,"Text":"Write Activity","Min":"0.0 %","Value":"0.2 %","Max":"10.4 %","SensorId":"/nvme/0/load/32","Type":"Load","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":155,"Text":"Total Activity","Min":"0.0 %","Value":"0.8 %","Max":"100.0 %","SensorId":"/nvme/0/load/33","Type":"Load","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":156,"Text":"Levels","Min":"","Value":"","Max":"","ImageURL":"images_icon/level.png","Children":['
    $sJson &= '{"id":157,"Text":"Available Spare","Min":"0.0 %","Value":"100.0 %","Max":"100.0 %","SensorId":"/nvme/0/level/1","Type":"Level","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":158,"Text":"Available Spare Threshold","Min":"0.0 %","Value":"10.0 %","Max":"10.0 %","SensorId":"/nvme/0/level/2","Type":"Level","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":159,"Text":"Percentage Used","Min":"0.0 %","Value":"3.0 %","Max":"3.0 %","SensorId":"/nvme/0/level/3","Type":"Level","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":160,"Text":"Data","Min":"","Value":"","Max":"","ImageURL":"images_icon/power.png","Children":['
    $sJson &= '{"id":161,"Text":"Data Read","Min":"0.0 GB","Value":"5877.0 GB","Max":"5877.0 GB","SensorId":"/nvme/0/data/4","Type":"Data","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":162,"Text":"Data Written","Min":"0.0 GB","Value":"7136.0 GB","Max":"7136.0 GB","SensorId":"/nvme/0/data/5","Type":"Data","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":163,"Text":"Throughput","Min":"","Value":"","Max":"","ImageURL":"images_icon/throughput.png","Children":['
    $sJson &= '{"id":164,"Text":"Read Rate","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"184.2 MB/s","SensorId":"/nvme/0/throughput/34","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":165,"Text":"Write Rate","Min":"0.0 KB/s","Value":"273.4 KB/s","Max":"261.5 MB/s","SensorId":"/nvme/0/throughput/35","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]}]}]},'
    $sJson &= '{"id":166,"Text":"Bluetooth Network Connection","Min":"","Value":"","Max":"","ImageURL":"images_icon/nic.png","Children":['
    $sJson &= '{"id":167,"Text":"Load","Min":"","Value":"","Max":"","ImageURL":"images_icon/load.png","Children":['
    $sJson &= '{"id":168,"Text":"Network Utilization","Min":"0.0 %","Value":"0.0 %","Max":"0.0 %","SensorId":"/nic/%7B5EB07683-663D-4FFF-9BF9-53AB66DB234E%7D/load/1","Type":"Load","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":169,"Text":"Data","Min":"","Value":"","Max":"","ImageURL":"images_icon/power.png","Children":['
    $sJson &= '{"id":170,"Text":"Data Uploaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7B5EB07683-663D-4FFF-9BF9-53AB66DB234E%7D/data/2","Type":"Data","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":171,"Text":"Data Downloaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7B5EB07683-663D-4FFF-9BF9-53AB66DB234E%7D/data/3","Type":"Data","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":172,"Text":"Throughput","Min":"","Value":"","Max":"","ImageURL":"images_icon/throughput.png","Children":['
    $sJson &= '{"id":173,"Text":"Upload Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"0.0 KB/s","SensorId":"/nic/%7B5EB07683-663D-4FFF-9BF9-53AB66DB234E%7D/throughput/7","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":174,"Text":"Download Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"0.0 KB/s","SensorId":"/nic/%7B5EB07683-663D-4FFF-9BF9-53AB66DB234E%7D/throughput/8","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]}]}]},'
    $sJson &= '{"id":175,"Text":"Local Area Connection* 10","Min":"","Value":"","Max":"","ImageURL":"images_icon/nic.png","Children":['
    $sJson &= '{"id":176,"Text":"Load","Min":"","Value":"","Max":"","ImageURL":"images_icon/load.png","Children":['
    $sJson &= '{"id":177,"Text":"Network Utilization","Min":"0.0 %","Value":"0.0 %","Max":"0.0 %","SensorId":"/nic/%7B3203B47A-CD12-4559-9988-CBE4A293B134%7D/load/1","Type":"Load","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":178,"Text":"Data","Min":"","Value":"","Max":"","ImageURL":"images_icon/power.png","Children":['
    $sJson &= '{"id":179,"Text":"Data Uploaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7B3203B47A-CD12-4559-9988-CBE4A293B134%7D/data/2","Type":"Data","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":180,"Text":"Data Downloaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7B3203B47A-CD12-4559-9988-CBE4A293B134%7D/data/3","Type":"Data","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":181,"Text":"Throughput","Min":"","Value":"","Max":"","ImageURL":"images_icon/throughput.png","Children":['
    $sJson &= '{"id":182,"Text":"Upload Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"0.0 KB/s","SensorId":"/nic/%7B3203B47A-CD12-4559-9988-CBE4A293B134%7D/throughput/7","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":183,"Text":"Download Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"0.0 KB/s","SensorId":"/nic/%7B3203B47A-CD12-4559-9988-CBE4A293B134%7D/throughput/8","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]}]}]},'
    $sJson &= '{"id":184,"Text":"Local Area Connection* 9","Min":"","Value":"","Max":"","ImageURL":"images_icon/nic.png","Children":['
    $sJson &= '{"id":185,"Text":"Load","Min":"","Value":"","Max":"","ImageURL":"images_icon/load.png","Children":['
    $sJson &= '{"id":186,"Text":"Network Utilization","Min":"0.0 %","Value":"0.0 %","Max":"0.0 %","SensorId":"/nic/%7BE631063B-F124-4320-A55E-10F6FBFA8809%7D/load/1","Type":"Load","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":187,"Text":"Data","Min":"","Value":"","Max":"","ImageURL":"images_icon/power.png","Children":['
    $sJson &= '{"id":188,"Text":"Data Uploaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7BE631063B-F124-4320-A55E-10F6FBFA8809%7D/data/2","Type":"Data","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":189,"Text":"Data Downloaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7BE631063B-F124-4320-A55E-10F6FBFA8809%7D/data/3","Type":"Data","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":190,"Text":"Throughput","Min":"","Value":"","Max":"","ImageURL":"images_icon/throughput.png","Children":['
    $sJson &= '{"id":191,"Text":"Upload Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"0.0 KB/s","SensorId":"/nic/%7BE631063B-F124-4320-A55E-10F6FBFA8809%7D/throughput/7","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":192,"Text":"Download Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"0.0 KB/s","SensorId":"/nic/%7BE631063B-F124-4320-A55E-10F6FBFA8809%7D/throughput/8","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]}]}]},'
    $sJson &= '{"id":193,"Text":"vEthernet (Default Switch)","Min":"","Value":"","Max":"","ImageURL":"images_icon/nic.png","Children":['
    $sJson &= '{"id":194,"Text":"Load","Min":"","Value":"","Max":"","ImageURL":"images_icon/load.png","Children":['
    $sJson &= '{"id":195,"Text":"Network Utilization","Min":"0.0 %","Value":"0.0 %","Max":"0.0 %","SensorId":"/nic/%7B6E0870E1-CCF6-4BF0-BBEB-5DEBD5E4CA20%7D/load/1","Type":"Load","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":196,"Text":"Data","Min":"","Value":"","Max":"","ImageURL":"images_icon/power.png","Children":['
    $sJson &= '{"id":197,"Text":"Data Uploaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7B6E0870E1-CCF6-4BF0-BBEB-5DEBD5E4CA20%7D/data/2","Type":"Data","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":198,"Text":"Data Downloaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7B6E0870E1-CCF6-4BF0-BBEB-5DEBD5E4CA20%7D/data/3","Type":"Data","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":199,"Text":"Throughput","Min":"","Value":"","Max":"","ImageURL":"images_icon/throughput.png","Children":['
    $sJson &= '{"id":200,"Text":"Upload Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"0.2 KB/s","SensorId":"/nic/%7B6E0870E1-CCF6-4BF0-BBEB-5DEBD5E4CA20%7D/throughput/7","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":201,"Text":"Download Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"0.0 KB/s","SensorId":"/nic/%7B6E0870E1-CCF6-4BF0-BBEB-5DEBD5E4CA20%7D/throughput/8","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]}]}]},'
    $sJson &= '{"id":202,"Text":"vEthernet (External-10G1)","Min":"","Value":"","Max":"","ImageURL":"images_icon/nic.png","Children":['
    $sJson &= '{"id":203,"Text":"Load","Min":"","Value":"","Max":"","ImageURL":"images_icon/load.png","Children":['
    $sJson &= '{"id":204,"Text":"Network Utilization","Min":"0.0 %","Value":"0.0 %","Max":"1.2 %","SensorId":"/nic/%7B3A2A9FA7-B791-4A10-BD96-0F42901DA286%7D/load/1","Type":"Load","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":205,"Text":"Data","Min":"","Value":"","Max":"","ImageURL":"images_icon/power.png","Children":['
    $sJson &= '{"id":206,"Text":"Data Uploaded","Min":"0.2 GB","Value":"0.3 GB","Max":"0.3 GB","SensorId":"/nic/%7B3A2A9FA7-B791-4A10-BD96-0F42901DA286%7D/data/2","Type":"Data","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":207,"Text":"Data Downloaded","Min":"1.6 GB","Value":"1.7 GB","Max":"1.7 GB","SensorId":"/nic/%7B3A2A9FA7-B791-4A10-BD96-0F42901DA286%7D/data/3","Type":"Data","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":208,"Text":"Throughput","Min":"","Value":"","Max":"","ImageURL":"images_icon/throughput.png","Children":['
    $sJson &= '{"id":209,"Text":"Upload Speed","Min":"0.0 KB/s","Value":"0.1 KB/s","Max":"329.2 KB/s","SensorId":"/nic/%7B3A2A9FA7-B791-4A10-BD96-0F42901DA286%7D/throughput/7","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":210,"Text":"Download Speed","Min":"0.0 KB/s","Value":"0.1 KB/s","Max":"14.5 MB/s","SensorId":"/nic/%7B3A2A9FA7-B791-4A10-BD96-0F42901DA286%7D/throughput/8","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]}]}]},'
    $sJson &= '{"id":211,"Text":"vEthernet (External-10G2)","Min":"","Value":"","Max":"","ImageURL":"images_icon/nic.png","Children":['
    $sJson &= '{"id":212,"Text":"Load","Min":"","Value":"","Max":"","ImageURL":"images_icon/load.png","Children":['
    $sJson &= '{"id":213,"Text":"Network Utilization","Min":"NaN %","Value":"NaN %","Max":"NaN %","SensorId":"/nic/%7B3B737EFB-82A0-455A-BAEE-AE96F07A8468%7D/load/1","Type":"Load","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":214,"Text":"Data","Min":"","Value":"","Max":"","ImageURL":"images_icon/power.png","Children":['
    $sJson &= '{"id":215,"Text":"Data Uploaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7B3B737EFB-82A0-455A-BAEE-AE96F07A8468%7D/data/2","Type":"Data","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":216,"Text":"Data Downloaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7B3B737EFB-82A0-455A-BAEE-AE96F07A8468%7D/data/3","Type":"Data","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":217,"Text":"Throughput","Min":"","Value":"","Max":"","ImageURL":"images_icon/throughput.png","Children":['
    $sJson &= '{"id":218,"Text":"Upload Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"0.0 KB/s","SensorId":"/nic/%7B3B737EFB-82A0-455A-BAEE-AE96F07A8468%7D/throughput/7","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":219,"Text":"Download Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"0.0 KB/s","SensorId":"/nic/%7B3B737EFB-82A0-455A-BAEE-AE96F07A8468%7D/throughput/8","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]}]}]},'
    $sJson &= '{"id":220,"Text":"vEthernet (External-1G-LM)","Min":"","Value":"","Max":"","ImageURL":"images_icon/nic.png","Children":['
    $sJson &= '{"id":221,"Text":"Load","Min":"","Value":"","Max":"","ImageURL":"images_icon/load.png","Children":['
    $sJson &= '{"id":222,"Text":"Network Utilization","Min":"0.0 %","Value":"0.0 %","Max":"0.0 %","SensorId":"/nic/%7B66E1E14F-15F1-43B8-860E-8D1F67C4D1E0%7D/load/1","Type":"Load","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":223,"Text":"Data","Min":"","Value":"","Max":"","ImageURL":"images_icon/power.png","Children":['
    $sJson &= '{"id":224,"Text":"Data Uploaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7B66E1E14F-15F1-43B8-860E-8D1F67C4D1E0%7D/data/2","Type":"Data","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":225,"Text":"Data Downloaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7B66E1E14F-15F1-43B8-860E-8D1F67C4D1E0%7D/data/3","Type":"Data","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":226,"Text":"Throughput","Min":"","Value":"","Max":"","ImageURL":"images_icon/throughput.png","Children":['
    $sJson &= '{"id":227,"Text":"Upload Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"0.0 KB/s","SensorId":"/nic/%7B66E1E14F-15F1-43B8-860E-8D1F67C4D1E0%7D/throughput/7","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":228,"Text":"Download Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"0.0 KB/s","SensorId":"/nic/%7B66E1E14F-15F1-43B8-860E-8D1F67C4D1E0%7D/throughput/8","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]}]}]},'
    $sJson &= '{"id":229,"Text":"vEthernet (External-1G-V)","Min":"","Value":"","Max":"","ImageURL":"images_icon/nic.png","Children":['
    $sJson &= '{"id":230,"Text":"Load","Min":"","Value":"","Max":"","ImageURL":"images_icon/load.png","Children":['
    $sJson &= '{"id":231,"Text":"Network Utilization","Min":"0.0 %","Value":"0.0 %","Max":"0.0 %","SensorId":"/nic/%7B32D010F6-B973-4762-BDAC-FA4266A2D4D4%7D/load/1","Type":"Load","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":232,"Text":"Data","Min":"","Value":"","Max":"","ImageURL":"images_icon/power.png","Children":['
    $sJson &= '{"id":233,"Text":"Data Uploaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7B32D010F6-B973-4762-BDAC-FA4266A2D4D4%7D/data/2","Type":"Data","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":234,"Text":"Data Downloaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7B32D010F6-B973-4762-BDAC-FA4266A2D4D4%7D/data/3","Type":"Data","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":235,"Text":"Throughput","Min":"","Value":"","Max":"","ImageURL":"images_icon/throughput.png","Children":['
    $sJson &= '{"id":236,"Text":"Upload Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"0.0 KB/s","SensorId":"/nic/%7B32D010F6-B973-4762-BDAC-FA4266A2D4D4%7D/throughput/7","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":237,"Text":"Download Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"0.0 KB/s","SensorId":"/nic/%7B32D010F6-B973-4762-BDAC-FA4266A2D4D4%7D/throughput/8","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]}]}]},'
    $sJson &= '{"id":238,"Text":"vEthernet (External-WiFi)","Min":"","Value":"","Max":"","ImageURL":"images_icon/nic.png","Children":['
    $sJson &= '{"id":239,"Text":"Load","Min":"","Value":"","Max":"","ImageURL":"images_icon/load.png","Children":['
    $sJson &= '{"id":240,"Text":"Network Utilization","Min":"0.0 %","Value":"0.0 %","Max":"0.0 %","SensorId":"/nic/%7B17DC36A3-5016-4FBF-BACA-303B7BF118FD%7D/load/1","Type":"Load","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":241,"Text":"Data","Min":"","Value":"","Max":"","ImageURL":"images_icon/power.png","Children":['
    $sJson &= '{"id":242,"Text":"Data Uploaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7B17DC36A3-5016-4FBF-BACA-303B7BF118FD%7D/data/2","Type":"Data","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":243,"Text":"Data Downloaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7B17DC36A3-5016-4FBF-BACA-303B7BF118FD%7D/data/3","Type":"Data","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":244,"Text":"Throughput","Min":"","Value":"","Max":"","ImageURL":"images_icon/throughput.png","Children":['
    $sJson &= '{"id":245,"Text":"Upload Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"0.0 KB/s","SensorId":"/nic/%7B17DC36A3-5016-4FBF-BACA-303B7BF118FD%7D/throughput/7","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":246,"Text":"Download Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"0.0 KB/s","SensorId":"/nic/%7B17DC36A3-5016-4FBF-BACA-303B7BF118FD%7D/throughput/8","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]}]}]},'
    $sJson &= '{"id":247,"Text":"vEthernet (Internal)","Min":"","Value":"","Max":"","ImageURL":"images_icon/nic.png","Children":['
    $sJson &= '{"id":248,"Text":"Load","Min":"","Value":"","Max":"","ImageURL":"images_icon/load.png","Children":['
    $sJson &= '{"id":249,"Text":"Network Utilization","Min":"0.0 %","Value":"0.0 %","Max":"0.0 %","SensorId":"/nic/%7B53CDE2B8-DD00-463B-B79E-60E0F7E10CF1%7D/load/1","Type":"Load","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":250,"Text":"Data","Min":"","Value":"","Max":"","ImageURL":"images_icon/power.png","Children":['
    $sJson &= '{"id":251,"Text":"Data Uploaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7B53CDE2B8-DD00-463B-B79E-60E0F7E10CF1%7D/data/2","Type":"Data","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":252,"Text":"Data Downloaded","Min":"0.0 GB","Value":"0.0 GB","Max":"0.0 GB","SensorId":"/nic/%7B53CDE2B8-DD00-463B-B79E-60E0F7E10CF1%7D/data/3","Type":"Data","ImageURL":"images/transparent.png","Children":[]}]},'
    $sJson &= '{"id":253,"Text":"Throughput","Min":"","Value":"","Max":"","ImageURL":"images_icon/throughput.png","Children":['
    $sJson &= '{"id":254,"Text":"Upload Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"1.3 KB/s","SensorId":"/nic/%7B53CDE2B8-DD00-463B-B79E-60E0F7E10CF1%7D/throughput/7","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]},'
    $sJson &= '{"id":255,"Text":"Download Speed","Min":"0.0 KB/s","Value":"0.0 KB/s","Max":"0.0 KB/s","SensorId":"/nic/%7B53CDE2B8-DD00-463B-B79E-60E0F7E10CF1%7D/throughput/8","Type":"Throughput","ImageURL":"images/transparent.png","Children":[]}]}]}]}]}'
    Return $sJson
EndFunc   ;==>TheJsonStr

also, the new UDF update may have broken things retuning a nul instead of an empty string ?

IDs between 20 and 44 don't show.

@AspirinJunkie, @SOLVE-SMART, ..help :baby:

Edited by argumentum

Follow the link to my code contribution ( and other things too ).
FAQ - Please Read Before Posting.
autoit_scripter_blue_userbar.png

Posted (edited)

I am sure @AspirinJunkie can help you much more than I can do. I don't have the time to get into the AutoIt code right now or in the next hours, sorry.
I start by providing your json string in the spoiler block, to let others have a better look into the JSON structure.

Spoiler
{
    "id": 0,
    "Text": "Sensor",
    "Min": "Min",
    "Value": "Value",
    "Max": "Max",
    "ImageURL": "",
    "Children": [
        {
            "id": 1,
            "Text": "PEPE-PC",
            "Min": "",
            "Value": "",
            "Max": "",
            "ImageURL": "images_icon/computer.png",
            "Children": [
                {
                    "id": 2,
                    "Text": "AHWSA",
                    "Min": "",
                    "Value": "",
                    "Max": "",
                    "ImageURL": "images_icon/mainboard.png",
                    "Children": [
                        {
                            "id": 3,
                            "Text": "Nuvoton NCT6796D-R",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/chip.png",
                            "Children": [
                                {
                                    "id": 4,
                                    "Text": "Voltages",
                                    "Min": "",
                                    "Value": "",
                                    "Max": "",
                                    "ImageURL": "images_icon/voltage.png",
                                    "Children": [
                                        {
                                            "id": 5,
                                            "Text": "Vcore",
                                            "Min": "0.336 V",
                                            "Value": "0.448 V",
                                            "Max": "0.704 V",
                                            "SensorId": "/lpc/nct6796dr/0/voltage/0",
                                            "Type": "Voltage",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 6,
                                            "Text": "Voltage #2",
                                            "Min": "1.032 V",
                                            "Value": "1.040 V",
                                            "Max": "1.040 V",
                                            "SensorId": "/lpc/nct6796dr/0/voltage/1",
                                            "Type": "Voltage",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 7,
                                            "Text": "AVCC",
                                            "Min": "3.344 V",
                                            "Value": "3.360 V",
                                            "Max": "3.360 V",
                                            "SensorId": "/lpc/nct6796dr/0/voltage/2",
                                            "Type": "Voltage",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 8,
                                            "Text": "+3.3V",
                                            "Min": "3.344 V",
                                            "Value": "3.360 V",
                                            "Max": "3.360 V",
                                            "SensorId": "/lpc/nct6796dr/0/voltage/3",
                                            "Type": "Voltage",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 9,
                                            "Text": "Voltage #5",
                                            "Min": "1.088 V",
                                            "Value": "1.096 V",
                                            "Max": "1.096 V",
                                            "SensorId": "/lpc/nct6796dr/0/voltage/4",
                                            "Type": "Voltage",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 10,
                                            "Text": "Voltage #6",
                                            "Min": "0.152 V",
                                            "Value": "0.168 V",
                                            "Max": "0.168 V",
                                            "SensorId": "/lpc/nct6796dr/0/voltage/5",
                                            "Type": "Voltage",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 11,
                                            "Text": "Voltage #7",
                                            "Min": "0.136 V",
                                            "Value": "0.144 V",
                                            "Max": "0.144 V",
                                            "SensorId": "/lpc/nct6796dr/0/voltage/6",
                                            "Type": "Voltage",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 12,
                                            "Text": "+3V Standby",
                                            "Min": "3.344 V",
                                            "Value": "3.344 V",
                                            "Max": "3.360 V",
                                            "SensorId": "/lpc/nct6796dr/0/voltage/7",
                                            "Type": "Voltage",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 13,
                                            "Text": "CMOS Battery",
                                            "Min": "3.136 V",
                                            "Value": "3.152 V",
                                            "Max": "3.152 V",
                                            "SensorId": "/lpc/nct6796dr/0/voltage/8",
                                            "Type": "Voltage",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 14,
                                            "Text": "CPU Termination",
                                            "Min": "0.504 V",
                                            "Value": "0.512 V",
                                            "Max": "0.512 V",
                                            "SensorId": "/lpc/nct6796dr/0/voltage/9",
                                            "Type": "Voltage",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 15,
                                            "Text": "Voltage #11",
                                            "Min": "0.080 V",
                                            "Value": "0.088 V",
                                            "Max": "0.088 V",
                                            "SensorId": "/lpc/nct6796dr/0/voltage/10",
                                            "Type": "Voltage",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 16,
                                            "Text": "Voltage #12",
                                            "Min": "0.064 V",
                                            "Value": "0.072 V",
                                            "Max": "0.072 V",
                                            "SensorId": "/lpc/nct6796dr/0/voltage/11",
                                            "Type": "Voltage",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 17,
                                            "Text": "Voltage #13",
                                            "Min": "0.992 V",
                                            "Value": "1.000 V",
                                            "Max": "1.008 V",
                                            "SensorId": "/lpc/nct6796dr/0/voltage/12",
                                            "Type": "Voltage",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 18,
                                            "Text": "Voltage #14",
                                            "Min": "0.152 V",
                                            "Value": "0.160 V",
                                            "Max": "0.168 V",
                                            "SensorId": "/lpc/nct6796dr/0/voltage/13",
                                            "Type": "Voltage",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 19,
                                            "Text": "Voltage #15",
                                            "Min": "1.264 V",
                                            "Value": "1.264 V",
                                            "Max": "1.272 V",
                                            "SensorId": "/lpc/nct6796dr/0/voltage/14",
                                            "Type": "Voltage",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        }
                                    ]
                                },
                                {
                                    "id": 20,
                                    "Text": "Temperatures",
                                    "Min": "",
                                    "Value": "",
                                    "Max": "",
                                    "ImageURL": "images_icon/temperature.png",
                                    "Children": [
                                        {
                                            "id": 21,
                                            "Text": "CPU Core",
                                            "Min": "54.0 °C",
                                            "Value": "59.0 °C",
                                            "Max": "89.0 °C",
                                            "SensorId": "/lpc/nct6796dr/0/temperature/0",
                                            "Type": "Temperature",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 22,
                                            "Text": "Temperature #1",
                                            "Min": "50.0 °C",
                                            "Value": "51.0 °C",
                                            "Max": "56.0 °C",
                                            "SensorId": "/lpc/nct6796dr/0/temperature/1",
                                            "Type": "Temperature",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 23,
                                            "Text": "Temperature #2",
                                            "Min": "111.0 °C",
                                            "Value": "112.0 °C",
                                            "Max": "114.0 °C",
                                            "SensorId": "/lpc/nct6796dr/0/temperature/2",
                                            "Type": "Temperature",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 24,
                                            "Text": "Temperature #3",
                                            "Min": "108.0 °C",
                                            "Value": "109.5 °C",
                                            "Max": "111.0 °C",
                                            "SensorId": "/lpc/nct6796dr/0/temperature/3",
                                            "Type": "Temperature",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 25,
                                            "Text": "Temperature #4",
                                            "Min": "109.0 °C",
                                            "Value": "110.0 °C",
                                            "Max": "111.0 °C",
                                            "SensorId": "/lpc/nct6796dr/0/temperature/4",
                                            "Type": "Temperature",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 26,
                                            "Text": "Temperature #5",
                                            "Min": "109.0 °C",
                                            "Value": "110.0 °C",
                                            "Max": "112.0 °C",
                                            "SensorId": "/lpc/nct6796dr/0/temperature/5",
                                            "Type": "Temperature",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 27,
                                            "Text": "Temperature #6",
                                            "Min": "-36.0 °C",
                                            "Value": "-34.0 °C",
                                            "Max": "-30.0 °C",
                                            "SensorId": "/lpc/nct6796dr/0/temperature/6",
                                            "Type": "Temperature",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        }
                                    ]
                                },
                                {
                                    "id": 28,
                                    "Text": "Fans",
                                    "Min": "",
                                    "Value": "",
                                    "Max": "",
                                    "ImageURL": "images_icon/fan.png",
                                    "Children": [
                                        {
                                            "id": 29,
                                            "Text": "Fan #1",
                                            "Min": "2486 RPM",
                                            "Value": "2505 RPM",
                                            "Max": "2567 RPM",
                                            "SensorId": "/lpc/nct6796dr/0/fan/0",
                                            "Type": "Fan",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 30,
                                            "Text": "Fan #2",
                                            "Min": "2202 RPM",
                                            "Value": "2373 RPM",
                                            "Max": "3207 RPM",
                                            "SensorId": "/lpc/nct6796dr/0/fan/1",
                                            "Type": "Fan",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 31,
                                            "Text": "Fan #3",
                                            "Min": "0 RPM",
                                            "Value": "0 RPM",
                                            "Max": "0 RPM",
                                            "SensorId": "/lpc/nct6796dr/0/fan/2",
                                            "Type": "Fan",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 32,
                                            "Text": "Fan #4",
                                            "Min": "0 RPM",
                                            "Value": "0 RPM",
                                            "Max": "0 RPM",
                                            "SensorId": "/lpc/nct6796dr/0/fan/3",
                                            "Type": "Fan",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 33,
                                            "Text": "Fan #5",
                                            "Min": "0 RPM",
                                            "Value": "0 RPM",
                                            "Max": "0 RPM",
                                            "SensorId": "/lpc/nct6796dr/0/fan/4",
                                            "Type": "Fan",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 34,
                                            "Text": "Fan #6",
                                            "Min": "0 RPM",
                                            "Value": "0 RPM",
                                            "Max": "0 RPM",
                                            "SensorId": "/lpc/nct6796dr/0/fan/5",
                                            "Type": "Fan",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 35,
                                            "Text": "Fan #7",
                                            "Min": "0 RPM",
                                            "Value": "0 RPM",
                                            "Max": "0 RPM",
                                            "SensorId": "/lpc/nct6796dr/0/fan/6",
                                            "Type": "Fan",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        }
                                    ]
                                },
                                {
                                    "id": 36,
                                    "Text": "Controls",
                                    "Min": "",
                                    "Value": "",
                                    "Max": "",
                                    "ImageURL": "images_icon/control.png",
                                    "Children": [
                                        {
                                            "id": 37,
                                            "Text": "Fan #1",
                                            "Min": "35.3 %",
                                            "Value": "35.3 %",
                                            "Max": "36.1 %",
                                            "SensorId": "/lpc/nct6796dr/0/control/0",
                                            "Type": "Control",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 38,
                                            "Text": "Fan #2",
                                            "Min": "34.5 %",
                                            "Value": "37.3 %",
                                            "Max": "58.8 %",
                                            "SensorId": "/lpc/nct6796dr/0/control/1",
                                            "Type": "Control",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 39,
                                            "Text": "Fan #3",
                                            "Min": "60.0 %",
                                            "Value": "60.0 %",
                                            "Max": "60.0 %",
                                            "SensorId": "/lpc/nct6796dr/0/control/2",
                                            "Type": "Control",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 40,
                                            "Text": "Fan #4",
                                            "Min": "60.0 %",
                                            "Value": "60.0 %",
                                            "Max": "60.0 %",
                                            "SensorId": "/lpc/nct6796dr/0/control/3",
                                            "Type": "Control",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 41,
                                            "Text": "Fan #5",
                                            "Min": "60.0 %",
                                            "Value": "60.0 %",
                                            "Max": "60.0 %",
                                            "SensorId": "/lpc/nct6796dr/0/control/4",
                                            "Type": "Control",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 42,
                                            "Text": "Fan #6",
                                            "Min": "100.0 %",
                                            "Value": "100.0 %",
                                            "Max": "100.0 %",
                                            "SensorId": "/lpc/nct6796dr/0/control/5",
                                            "Type": "Control",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        },
                                        {
                                            "id": 43,
                                            "Text": "Fan #7",
                                            "Min": "38.4 %",
                                            "Value": "40.0 %",
                                            "Max": "58.8 %",
                                            "SensorId": "/lpc/nct6796dr/0/control/6",
                                            "Type": "Control",
                                            "ImageURL": "images/transparent.png",
                                            "Children": []
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "id": 44,
                    "Text": "12th Gen Intel Core i9-12900H",
                    "Min": "",
                    "Value": "",
                    "Max": "",
                    "ImageURL": "images_icon/cpu.png",
                    "Children": [
                        {
                            "id": 45,
                            "Text": "Voltages",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/voltage.png",
                            "Children": [
                                {
                                    "id": 46,
                                    "Text": "CPU Core",
                                    "Min": "0.632 V",
                                    "Value": "1.234 V",
                                    "Max": "1.463 V",
                                    "SensorId": "/intelcpu/0/voltage/0",
                                    "Type": "Voltage",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 47,
                                    "Text": "CPU Core #1",
                                    "Min": "0.700 V",
                                    "Value": "1.299 V",
                                    "Max": "1.458 V",
                                    "SensorId": "/intelcpu/0/voltage/1",
                                    "Type": "Voltage",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 48,
                                    "Text": "CPU Core #2",
                                    "Min": "0.637 V",
                                    "Value": "1.374 V",
                                    "Max": "1.439 V",
                                    "SensorId": "/intelcpu/0/voltage/2",
                                    "Type": "Voltage",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 49,
                                    "Text": "CPU Core #3",
                                    "Min": "0.581 V",
                                    "Value": "1.334 V",
                                    "Max": "1.413 V",
                                    "SensorId": "/intelcpu/0/voltage/3",
                                    "Type": "Voltage",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 50,
                                    "Text": "CPU Core #4",
                                    "Min": "0.580 V",
                                    "Value": "1.322 V",
                                    "Max": "1.428 V",
                                    "SensorId": "/intelcpu/0/voltage/4",
                                    "Type": "Voltage",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 51,
                                    "Text": "CPU Core #5",
                                    "Min": "0.582 V",
                                    "Value": "1.287 V",
                                    "Max": "1.476 V",
                                    "SensorId": "/intelcpu/0/voltage/5",
                                    "Type": "Voltage",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 52,
                                    "Text": "CPU Core #6",
                                    "Min": "0.606 V",
                                    "Value": "1.262 V",
                                    "Max": "1.487 V",
                                    "SensorId": "/intelcpu/0/voltage/6",
                                    "Type": "Voltage",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 53,
                                    "Text": "CPU Core #7",
                                    "Min": "0.644 V",
                                    "Value": "1.207 V",
                                    "Max": "1.498 V",
                                    "SensorId": "/intelcpu/0/voltage/7",
                                    "Type": "Voltage",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 54,
                                    "Text": "CPU Core #8",
                                    "Min": "0.631 V",
                                    "Value": "1.297 V",
                                    "Max": "1.423 V",
                                    "SensorId": "/intelcpu/0/voltage/8",
                                    "Type": "Voltage",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 55,
                                    "Text": "CPU Core #9",
                                    "Min": "0.632 V",
                                    "Value": "1.297 V",
                                    "Max": "1.443 V",
                                    "SensorId": "/intelcpu/0/voltage/9",
                                    "Type": "Voltage",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 56,
                                    "Text": "CPU Core #10",
                                    "Min": "0.632 V",
                                    "Value": "1.297 V",
                                    "Max": "1.441 V",
                                    "SensorId": "/intelcpu/0/voltage/10",
                                    "Type": "Voltage",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 57,
                                    "Text": "CPU Core #11",
                                    "Min": "0.661 V",
                                    "Value": "1.362 V",
                                    "Max": "1.431 V",
                                    "SensorId": "/intelcpu/0/voltage/11",
                                    "Type": "Voltage",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 58,
                                    "Text": "CPU Core #12",
                                    "Min": "0.691 V",
                                    "Value": "1.362 V",
                                    "Max": "1.411 V",
                                    "SensorId": "/intelcpu/0/voltage/12",
                                    "Type": "Voltage",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 59,
                                    "Text": "CPU Core #13",
                                    "Min": "0.696 V",
                                    "Value": "1.302 V",
                                    "Max": "1.416 V",
                                    "SensorId": "/intelcpu/0/voltage/13",
                                    "Type": "Voltage",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 60,
                                    "Text": "CPU Core #14",
                                    "Min": "0.696 V",
                                    "Value": "1.302 V",
                                    "Max": "1.426 V",
                                    "SensorId": "/intelcpu/0/voltage/14",
                                    "Type": "Voltage",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 61,
                            "Text": "Powers",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/power.png",
                            "Children": [
                                {
                                    "id": 62,
                                    "Text": "CPU Package",
                                    "Min": "8.8 W",
                                    "Value": "17.4 W",
                                    "Max": "53.8 W",
                                    "SensorId": "/intelcpu/0/power/0",
                                    "Type": "Power",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 63,
                                    "Text": "CPU Cores",
                                    "Min": "4.5 W",
                                    "Value": "8.4 W",
                                    "Max": "42.5 W",
                                    "SensorId": "/intelcpu/0/power/1",
                                    "Type": "Power",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 64,
                                    "Text": "CPU Memory",
                                    "Min": "0.0 W",
                                    "Value": "0.0 W",
                                    "Max": "0.0 W",
                                    "SensorId": "/intelcpu/0/power/3",
                                    "Type": "Power",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 65,
                                    "Text": "CPU Platform",
                                    "Min": "0.0 W",
                                    "Value": "0.0 W",
                                    "Max": "0.0 W",
                                    "SensorId": "/intelcpu/0/power/4",
                                    "Type": "Power",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 66,
                            "Text": "Clocks",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/clock.png",
                            "Children": [
                                {
                                    "id": 67,
                                    "Text": "Bus Speed",
                                    "Min": "100.6 MHz",
                                    "Value": "100.6 MHz",
                                    "Max": "100.6 MHz",
                                    "SensorId": "/intelcpu/0/clock/0",
                                    "Type": "Clock",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 68,
                                    "Text": "CPU Core #1",
                                    "Min": "402.5 MHz",
                                    "Value": "4327.3 MHz",
                                    "Max": "4931.5 MHz",
                                    "SensorId": "/intelcpu/0/clock/1",
                                    "Type": "Clock",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 69,
                                    "Text": "CPU Core #2",
                                    "Min": "402.5 MHz",
                                    "Value": "4629.2 MHz",
                                    "Max": "4931.5 MHz",
                                    "SensorId": "/intelcpu/0/clock/2",
                                    "Type": "Clock",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 70,
                                    "Text": "CPU Core #3",
                                    "Min": "402.5 MHz",
                                    "Value": "4327.3 MHz",
                                    "Max": "5032.2 MHz",
                                    "SensorId": "/intelcpu/0/clock/3",
                                    "Type": "Clock",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 71,
                                    "Text": "CPU Core #4",
                                    "Min": "402.5 MHz",
                                    "Value": "4629.2 MHz",
                                    "Max": "4931.6 MHz",
                                    "SensorId": "/intelcpu/0/clock/4",
                                    "Type": "Clock",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 72,
                                    "Text": "CPU Core #5",
                                    "Min": "402.5 MHz",
                                    "Value": "4629.2 MHz",
                                    "Max": "5032.2 MHz",
                                    "SensorId": "/intelcpu/0/clock/5",
                                    "Type": "Clock",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 73,
                                    "Text": "CPU Core #6",
                                    "Min": "402.5 MHz",
                                    "Value": "4629.2 MHz",
                                    "Max": "4931.6 MHz",
                                    "SensorId": "/intelcpu/0/clock/6",
                                    "Type": "Clock",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 74,
                                    "Text": "CPU Core #7",
                                    "Min": "402.5 MHz",
                                    "Value": "3824.1 MHz",
                                    "Max": "3824.5 MHz",
                                    "SensorId": "/intelcpu/0/clock/7",
                                    "Type": "Clock",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 75,
                                    "Text": "CPU Core #8",
                                    "Min": "402.5 MHz",
                                    "Value": "3824.1 MHz",
                                    "Max": "3824.5 MHz",
                                    "SensorId": "/intelcpu/0/clock/8",
                                    "Type": "Clock",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 76,
                                    "Text": "CPU Core #9",
                                    "Min": "402.5 MHz",
                                    "Value": "3824.1 MHz",
                                    "Max": "3824.5 MHz",
                                    "SensorId": "/intelcpu/0/clock/9",
                                    "Type": "Clock",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 77,
                                    "Text": "CPU Core #10",
                                    "Min": "402.5 MHz",
                                    "Value": "3824.1 MHz",
                                    "Max": "3824.5 MHz",
                                    "SensorId": "/intelcpu/0/clock/10",
                                    "Type": "Clock",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 78,
                                    "Text": "CPU Core #11",
                                    "Min": "402.5 MHz",
                                    "Value": "3824.1 MHz",
                                    "Max": "3824.5 MHz",
                                    "SensorId": "/intelcpu/0/clock/11",
                                    "Type": "Clock",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 79,
                                    "Text": "CPU Core #12",
                                    "Min": "402.5 MHz",
                                    "Value": "3824.1 MHz",
                                    "Max": "3824.5 MHz",
                                    "SensorId": "/intelcpu/0/clock/12",
                                    "Type": "Clock",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 80,
                                    "Text": "CPU Core #13",
                                    "Min": "402.5 MHz",
                                    "Value": "3824.1 MHz",
                                    "Max": "3824.5 MHz",
                                    "SensorId": "/intelcpu/0/clock/13",
                                    "Type": "Clock",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 81,
                                    "Text": "CPU Core #14",
                                    "Min": "402.5 MHz",
                                    "Value": "3824.1 MHz",
                                    "Max": "3824.5 MHz",
                                    "SensorId": "/intelcpu/0/clock/14",
                                    "Type": "Clock",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 82,
                            "Text": "Temperatures",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/temperature.png",
                            "Children": [
                                {
                                    "id": 83,
                                    "Text": "Core Max",
                                    "Min": "51.0 °C",
                                    "Value": "85.0 °C",
                                    "Max": "100.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/0",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 84,
                                    "Text": "Core Average",
                                    "Min": "48.6 °C",
                                    "Value": "58.4 °C",
                                    "Max": "74.6 °C",
                                    "SensorId": "/intelcpu/0/temperature/1",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 85,
                                    "Text": "CPU Core #1",
                                    "Min": "44.0 °C",
                                    "Value": "61.0 °C",
                                    "Max": "96.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/2",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 86,
                                    "Text": "CPU Core #2",
                                    "Min": "45.0 °C",
                                    "Value": "51.0 °C",
                                    "Max": "97.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/3",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 87,
                                    "Text": "CPU Core #3",
                                    "Min": "46.0 °C",
                                    "Value": "85.0 °C",
                                    "Max": "100.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/4",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 88,
                                    "Text": "CPU Core #4",
                                    "Min": "44.0 °C",
                                    "Value": "55.0 °C",
                                    "Max": "96.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/5",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 89,
                                    "Text": "CPU Core #5",
                                    "Min": "45.0 °C",
                                    "Value": "80.0 °C",
                                    "Max": "96.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/6",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 90,
                                    "Text": "CPU Core #6",
                                    "Min": "44.0 °C",
                                    "Value": "62.0 °C",
                                    "Max": "96.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/7",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 91,
                                    "Text": "CPU Core #7",
                                    "Min": "45.0 °C",
                                    "Value": "58.0 °C",
                                    "Max": "75.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/8",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 92,
                                    "Text": "CPU Core #8",
                                    "Min": "45.0 °C",
                                    "Value": "58.0 °C",
                                    "Max": "77.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/9",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 93,
                                    "Text": "CPU Core #9",
                                    "Min": "45.0 °C",
                                    "Value": "58.0 °C",
                                    "Max": "77.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/10",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 94,
                                    "Text": "CPU Core #10",
                                    "Min": "45.0 °C",
                                    "Value": "58.0 °C",
                                    "Max": "77.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/11",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 95,
                                    "Text": "CPU Core #11",
                                    "Min": "46.0 °C",
                                    "Value": "48.0 °C",
                                    "Max": "78.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/12",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 96,
                                    "Text": "CPU Core #12",
                                    "Min": "46.0 °C",
                                    "Value": "48.0 °C",
                                    "Max": "78.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/13",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 97,
                                    "Text": "CPU Core #13",
                                    "Min": "46.0 °C",
                                    "Value": "48.0 °C",
                                    "Max": "78.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/14",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 98,
                                    "Text": "CPU Core #14",
                                    "Min": "46.0 °C",
                                    "Value": "48.0 °C",
                                    "Max": "78.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/15",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 99,
                                    "Text": "CPU Package",
                                    "Min": "51.0 °C",
                                    "Value": "85.0 °C",
                                    "Max": "100.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/16",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 100,
                                    "Text": "CPU Core #1 Distance to TjMax",
                                    "Min": "4.0 °C",
                                    "Value": "39.0 °C",
                                    "Max": "56.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/17",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 101,
                                    "Text": "CPU Core #2 Distance to TjMax",
                                    "Min": "3.0 °C",
                                    "Value": "49.0 °C",
                                    "Max": "55.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/18",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 102,
                                    "Text": "CPU Core #3 Distance to TjMax",
                                    "Min": "0.0 °C",
                                    "Value": "15.0 °C",
                                    "Max": "54.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/19",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 103,
                                    "Text": "CPU Core #4 Distance to TjMax",
                                    "Min": "4.0 °C",
                                    "Value": "45.0 °C",
                                    "Max": "56.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/20",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 104,
                                    "Text": "CPU Core #5 Distance to TjMax",
                                    "Min": "4.0 °C",
                                    "Value": "20.0 °C",
                                    "Max": "55.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/21",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 105,
                                    "Text": "CPU Core #6 Distance to TjMax",
                                    "Min": "4.0 °C",
                                    "Value": "38.0 °C",
                                    "Max": "56.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/22",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 106,
                                    "Text": "CPU Core #7 Distance to TjMax",
                                    "Min": "25.0 °C",
                                    "Value": "42.0 °C",
                                    "Max": "55.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/23",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 107,
                                    "Text": "CPU Core #8 Distance to TjMax",
                                    "Min": "23.0 °C",
                                    "Value": "42.0 °C",
                                    "Max": "55.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/24",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 108,
                                    "Text": "CPU Core #9 Distance to TjMax",
                                    "Min": "23.0 °C",
                                    "Value": "42.0 °C",
                                    "Max": "55.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/25",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 109,
                                    "Text": "CPU Core #10 Distance to TjMax",
                                    "Min": "23.0 °C",
                                    "Value": "42.0 °C",
                                    "Max": "55.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/26",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 110,
                                    "Text": "CPU Core #11 Distance to TjMax",
                                    "Min": "22.0 °C",
                                    "Value": "52.0 °C",
                                    "Max": "54.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/27",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 111,
                                    "Text": "CPU Core #12 Distance to TjMax",
                                    "Min": "22.0 °C",
                                    "Value": "52.0 °C",
                                    "Max": "54.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/28",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 112,
                                    "Text": "CPU Core #13 Distance to TjMax",
                                    "Min": "22.0 °C",
                                    "Value": "52.0 °C",
                                    "Max": "54.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/29",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 113,
                                    "Text": "CPU Core #14 Distance to TjMax",
                                    "Min": "22.0 °C",
                                    "Value": "52.0 °C",
                                    "Max": "54.0 °C",
                                    "SensorId": "/intelcpu/0/temperature/30",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 114,
                            "Text": "Load",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/load.png",
                            "Children": [
                                {
                                    "id": 115,
                                    "Text": "CPU Total",
                                    "Min": "0.0 %",
                                    "Value": "2.2 %",
                                    "Max": "32.9 %",
                                    "SensorId": "/intelcpu/0/load/0",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 116,
                                    "Text": "CPU Core Max",
                                    "Min": "0.0 %",
                                    "Value": "24.1 %",
                                    "Max": "84.6 %",
                                    "SensorId": "/intelcpu/0/load/1",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 117,
                                    "Text": "CPU Core #1 Thread #1",
                                    "Min": "0.0 %",
                                    "Value": "1.0 %",
                                    "Max": "69.8 %",
                                    "SensorId": "/intelcpu/0/load/2",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 118,
                                    "Text": "CPU Core #1 Thread #2",
                                    "Min": "0.0 %",
                                    "Value": "0.7 %",
                                    "Max": "45.4 %",
                                    "SensorId": "/intelcpu/0/load/3",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 119,
                                    "Text": "CPU Core #2 Thread #1",
                                    "Min": "0.0 %",
                                    "Value": "0.9 %",
                                    "Max": "67.6 %",
                                    "SensorId": "/intelcpu/0/load/4",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 120,
                                    "Text": "CPU Core #2 Thread #2",
                                    "Min": "0.0 %",
                                    "Value": "0.5 %",
                                    "Max": "48.2 %",
                                    "SensorId": "/intelcpu/0/load/5",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 121,
                                    "Text": "CPU Core #3 Thread #1",
                                    "Min": "0.0 %",
                                    "Value": "24.1 %",
                                    "Max": "79.1 %",
                                    "SensorId": "/intelcpu/0/load/6",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 122,
                                    "Text": "CPU Core #3 Thread #2",
                                    "Min": "0.0 %",
                                    "Value": "0.6 %",
                                    "Max": "84.6 %",
                                    "SensorId": "/intelcpu/0/load/7",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 123,
                                    "Text": "CPU Core #4 Thread #1",
                                    "Min": "0.0 %",
                                    "Value": "1.1 %",
                                    "Max": "60.6 %",
                                    "SensorId": "/intelcpu/0/load/8",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 124,
                                    "Text": "CPU Core #4 Thread #2",
                                    "Min": "0.0 %",
                                    "Value": "0.5 %",
                                    "Max": "47.5 %",
                                    "SensorId": "/intelcpu/0/load/9",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 125,
                                    "Text": "CPU Core #5 Thread #1",
                                    "Min": "0.0 %",
                                    "Value": "8.3 %",
                                    "Max": "81.9 %",
                                    "SensorId": "/intelcpu/0/load/10",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 126,
                                    "Text": "CPU Core #5 Thread #2",
                                    "Min": "0.0 %",
                                    "Value": "0.6 %",
                                    "Max": "79.7 %",
                                    "SensorId": "/intelcpu/0/load/11",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 127,
                                    "Text": "CPU Core #6 Thread #1",
                                    "Min": "0.0 %",
                                    "Value": "1.0 %",
                                    "Max": "64.0 %",
                                    "SensorId": "/intelcpu/0/load/12",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 128,
                                    "Text": "CPU Core #6 Thread #2",
                                    "Min": "0.0 %",
                                    "Value": "0.5 %",
                                    "Max": "51.2 %",
                                    "SensorId": "/intelcpu/0/load/13",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 129,
                                    "Text": "CPU Core #7",
                                    "Min": "0.0 %",
                                    "Value": "0.6 %",
                                    "Max": "45.4 %",
                                    "SensorId": "/intelcpu/0/load/14",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 130,
                                    "Text": "CPU Core #8",
                                    "Min": "0.0 %",
                                    "Value": "0.6 %",
                                    "Max": "14.6 %",
                                    "SensorId": "/intelcpu/0/load/15",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 131,
                                    "Text": "CPU Core #9",
                                    "Min": "0.0 %",
                                    "Value": "0.6 %",
                                    "Max": "21.6 %",
                                    "SensorId": "/intelcpu/0/load/16",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 132,
                                    "Text": "CPU Core #10",
                                    "Min": "0.0 %",
                                    "Value": "0.6 %",
                                    "Max": "27.0 %",
                                    "SensorId": "/intelcpu/0/load/17",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 133,
                                    "Text": "CPU Core #11",
                                    "Min": "0.0 %",
                                    "Value": "0.8 %",
                                    "Max": "74.2 %",
                                    "SensorId": "/intelcpu/0/load/18",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 134,
                                    "Text": "CPU Core #12",
                                    "Min": "0.0 %",
                                    "Value": "0.6 %",
                                    "Max": "60.5 %",
                                    "SensorId": "/intelcpu/0/load/19",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 135,
                                    "Text": "CPU Core #13",
                                    "Min": "0.0 %",
                                    "Value": "0.6 %",
                                    "Max": "36.7 %",
                                    "SensorId": "/intelcpu/0/load/20",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 136,
                                    "Text": "CPU Core #14",
                                    "Min": "0.0 %",
                                    "Value": "0.6 %",
                                    "Max": "17.0 %",
                                    "SensorId": "/intelcpu/0/load/21",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        }
                    ]
                },
                {
                    "id": 137,
                    "Text": "Generic Memory",
                    "Min": "",
                    "Value": "",
                    "Max": "",
                    "ImageURL": "images_icon/ram.png",
                    "Children": [
                        {
                            "id": 138,
                            "Text": "Load",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/load.png",
                            "Children": [
                                {
                                    "id": 139,
                                    "Text": "Memory",
                                    "Min": "46.9 %",
                                    "Value": "48.0 %",
                                    "Max": "48.5 %",
                                    "SensorId": "/ram/load/0",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 140,
                                    "Text": "Virtual Memory",
                                    "Min": "46.7 %",
                                    "Value": "48.1 %",
                                    "Max": "48.6 %",
                                    "SensorId": "/ram/load/1",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 141,
                            "Text": "Data",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/power.png",
                            "Children": [
                                {
                                    "id": 142,
                                    "Text": "Memory Used",
                                    "Min": "44.9 GB",
                                    "Value": "45.9 GB",
                                    "Max": "46.5 GB",
                                    "SensorId": "/ram/data/0",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 143,
                                    "Text": "Memory Available",
                                    "Min": "49.3 GB",
                                    "Value": "49.8 GB",
                                    "Max": "50.9 GB",
                                    "SensorId": "/ram/data/1",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 144,
                                    "Text": "Virtual Memory Used",
                                    "Min": "44.8 GB",
                                    "Value": "46.0 GB",
                                    "Max": "46.6 GB",
                                    "SensorId": "/ram/data/2",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 145,
                                    "Text": "Virtual Memory Available",
                                    "Min": "49.2 GB",
                                    "Value": "49.7 GB",
                                    "Max": "51.0 GB",
                                    "SensorId": "/ram/data/3",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        }
                    ]
                },
                {
                    "id": 146,
                    "Text": "Samsung SSD 990 PRO 4TB",
                    "Min": "",
                    "Value": "",
                    "Max": "",
                    "ImageURL": "images_icon/hdd.png",
                    "Children": [
                        {
                            "id": 147,
                            "Text": "Temperatures",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/temperature.png",
                            "Children": [
                                {
                                    "id": 148,
                                    "Text": "Temperature",
                                    "Min": "0.0 °C",
                                    "Value": "47.0 °C",
                                    "Max": "49.0 °C",
                                    "SensorId": "/nvme/0/temperature/0",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 149,
                                    "Text": "Temperature 1",
                                    "Min": "0.0 °C",
                                    "Value": "47.0 °C",
                                    "Max": "49.0 °C",
                                    "SensorId": "/nvme/0/temperature/6",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 150,
                                    "Text": "Temperature 2",
                                    "Min": "0.0 °C",
                                    "Value": "65.0 °C",
                                    "Max": "73.0 °C",
                                    "SensorId": "/nvme/0/temperature/7",
                                    "Type": "Temperature",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 151,
                            "Text": "Load",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/load.png",
                            "Children": [
                                {
                                    "id": 152,
                                    "Text": "Used Space",
                                    "Min": "23.0 %",
                                    "Value": "23.0 %",
                                    "Max": "23.0 %",
                                    "SensorId": "/nvme/0/load/0",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 153,
                                    "Text": "Read Activity",
                                    "Min": "0.0 %",
                                    "Value": "0.0 %",
                                    "Max": "97.3 %",
                                    "SensorId": "/nvme/0/load/31",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 154,
                                    "Text": "Write Activity",
                                    "Min": "0.0 %",
                                    "Value": "0.2 %",
                                    "Max": "10.4 %",
                                    "SensorId": "/nvme/0/load/32",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 155,
                                    "Text": "Total Activity",
                                    "Min": "0.0 %",
                                    "Value": "0.8 %",
                                    "Max": "100.0 %",
                                    "SensorId": "/nvme/0/load/33",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 156,
                            "Text": "Levels",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/level.png",
                            "Children": [
                                {
                                    "id": 157,
                                    "Text": "Available Spare",
                                    "Min": "0.0 %",
                                    "Value": "100.0 %",
                                    "Max": "100.0 %",
                                    "SensorId": "/nvme/0/level/1",
                                    "Type": "Level",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 158,
                                    "Text": "Available Spare Threshold",
                                    "Min": "0.0 %",
                                    "Value": "10.0 %",
                                    "Max": "10.0 %",
                                    "SensorId": "/nvme/0/level/2",
                                    "Type": "Level",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 159,
                                    "Text": "Percentage Used",
                                    "Min": "0.0 %",
                                    "Value": "3.0 %",
                                    "Max": "3.0 %",
                                    "SensorId": "/nvme/0/level/3",
                                    "Type": "Level",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 160,
                            "Text": "Data",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/power.png",
                            "Children": [
                                {
                                    "id": 161,
                                    "Text": "Data Read",
                                    "Min": "0.0 GB",
                                    "Value": "5877.0 GB",
                                    "Max": "5877.0 GB",
                                    "SensorId": "/nvme/0/data/4",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 162,
                                    "Text": "Data Written",
                                    "Min": "0.0 GB",
                                    "Value": "7136.0 GB",
                                    "Max": "7136.0 GB",
                                    "SensorId": "/nvme/0/data/5",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 163,
                            "Text": "Throughput",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/throughput.png",
                            "Children": [
                                {
                                    "id": 164,
                                    "Text": "Read Rate",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "184.2 MB/s",
                                    "SensorId": "/nvme/0/throughput/34",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 165,
                                    "Text": "Write Rate",
                                    "Min": "0.0 KB/s",
                                    "Value": "273.4 KB/s",
                                    "Max": "261.5 MB/s",
                                    "SensorId": "/nvme/0/throughput/35",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        }
                    ]
                },
                {
                    "id": 166,
                    "Text": "Bluetooth Network Connection",
                    "Min": "",
                    "Value": "",
                    "Max": "",
                    "ImageURL": "images_icon/nic.png",
                    "Children": [
                        {
                            "id": 167,
                            "Text": "Load",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/load.png",
                            "Children": [
                                {
                                    "id": 168,
                                    "Text": "Network Utilization",
                                    "Min": "0.0 %",
                                    "Value": "0.0 %",
                                    "Max": "0.0 %",
                                    "SensorId": "/nic/%7B5EB07683-663D-4FFF-9BF9-53AB66DB234E%7D/load/1",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 169,
                            "Text": "Data",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/power.png",
                            "Children": [
                                {
                                    "id": 170,
                                    "Text": "Data Uploaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7B5EB07683-663D-4FFF-9BF9-53AB66DB234E%7D/data/2",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 171,
                                    "Text": "Data Downloaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7B5EB07683-663D-4FFF-9BF9-53AB66DB234E%7D/data/3",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 172,
                            "Text": "Throughput",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/throughput.png",
                            "Children": [
                                {
                                    "id": 173,
                                    "Text": "Upload Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "0.0 KB/s",
                                    "SensorId": "/nic/%7B5EB07683-663D-4FFF-9BF9-53AB66DB234E%7D/throughput/7",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 174,
                                    "Text": "Download Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "0.0 KB/s",
                                    "SensorId": "/nic/%7B5EB07683-663D-4FFF-9BF9-53AB66DB234E%7D/throughput/8",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        }
                    ]
                },
                {
                    "id": 175,
                    "Text": "Local Area Connection* 10",
                    "Min": "",
                    "Value": "",
                    "Max": "",
                    "ImageURL": "images_icon/nic.png",
                    "Children": [
                        {
                            "id": 176,
                            "Text": "Load",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/load.png",
                            "Children": [
                                {
                                    "id": 177,
                                    "Text": "Network Utilization",
                                    "Min": "0.0 %",
                                    "Value": "0.0 %",
                                    "Max": "0.0 %",
                                    "SensorId": "/nic/%7B3203B47A-CD12-4559-9988-CBE4A293B134%7D/load/1",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 178,
                            "Text": "Data",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/power.png",
                            "Children": [
                                {
                                    "id": 179,
                                    "Text": "Data Uploaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7B3203B47A-CD12-4559-9988-CBE4A293B134%7D/data/2",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 180,
                                    "Text": "Data Downloaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7B3203B47A-CD12-4559-9988-CBE4A293B134%7D/data/3",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 181,
                            "Text": "Throughput",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/throughput.png",
                            "Children": [
                                {
                                    "id": 182,
                                    "Text": "Upload Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "0.0 KB/s",
                                    "SensorId": "/nic/%7B3203B47A-CD12-4559-9988-CBE4A293B134%7D/throughput/7",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 183,
                                    "Text": "Download Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "0.0 KB/s",
                                    "SensorId": "/nic/%7B3203B47A-CD12-4559-9988-CBE4A293B134%7D/throughput/8",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        }
                    ]
                },
                {
                    "id": 184,
                    "Text": "Local Area Connection* 9",
                    "Min": "",
                    "Value": "",
                    "Max": "",
                    "ImageURL": "images_icon/nic.png",
                    "Children": [
                        {
                            "id": 185,
                            "Text": "Load",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/load.png",
                            "Children": [
                                {
                                    "id": 186,
                                    "Text": "Network Utilization",
                                    "Min": "0.0 %",
                                    "Value": "0.0 %",
                                    "Max": "0.0 %",
                                    "SensorId": "/nic/%7BE631063B-F124-4320-A55E-10F6FBFA8809%7D/load/1",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 187,
                            "Text": "Data",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/power.png",
                            "Children": [
                                {
                                    "id": 188,
                                    "Text": "Data Uploaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7BE631063B-F124-4320-A55E-10F6FBFA8809%7D/data/2",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 189,
                                    "Text": "Data Downloaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7BE631063B-F124-4320-A55E-10F6FBFA8809%7D/data/3",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 190,
                            "Text": "Throughput",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/throughput.png",
                            "Children": [
                                {
                                    "id": 191,
                                    "Text": "Upload Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "0.0 KB/s",
                                    "SensorId": "/nic/%7BE631063B-F124-4320-A55E-10F6FBFA8809%7D/throughput/7",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 192,
                                    "Text": "Download Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "0.0 KB/s",
                                    "SensorId": "/nic/%7BE631063B-F124-4320-A55E-10F6FBFA8809%7D/throughput/8",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        }
                    ]
                },
                {
                    "id": 193,
                    "Text": "vEthernet (Default Switch)",
                    "Min": "",
                    "Value": "",
                    "Max": "",
                    "ImageURL": "images_icon/nic.png",
                    "Children": [
                        {
                            "id": 194,
                            "Text": "Load",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/load.png",
                            "Children": [
                                {
                                    "id": 195,
                                    "Text": "Network Utilization",
                                    "Min": "0.0 %",
                                    "Value": "0.0 %",
                                    "Max": "0.0 %",
                                    "SensorId": "/nic/%7B6E0870E1-CCF6-4BF0-BBEB-5DEBD5E4CA20%7D/load/1",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 196,
                            "Text": "Data",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/power.png",
                            "Children": [
                                {
                                    "id": 197,
                                    "Text": "Data Uploaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7B6E0870E1-CCF6-4BF0-BBEB-5DEBD5E4CA20%7D/data/2",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 198,
                                    "Text": "Data Downloaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7B6E0870E1-CCF6-4BF0-BBEB-5DEBD5E4CA20%7D/data/3",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 199,
                            "Text": "Throughput",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/throughput.png",
                            "Children": [
                                {
                                    "id": 200,
                                    "Text": "Upload Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "0.2 KB/s",
                                    "SensorId": "/nic/%7B6E0870E1-CCF6-4BF0-BBEB-5DEBD5E4CA20%7D/throughput/7",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 201,
                                    "Text": "Download Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "0.0 KB/s",
                                    "SensorId": "/nic/%7B6E0870E1-CCF6-4BF0-BBEB-5DEBD5E4CA20%7D/throughput/8",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        }
                    ]
                },
                {
                    "id": 202,
                    "Text": "vEthernet (External-10G1)",
                    "Min": "",
                    "Value": "",
                    "Max": "",
                    "ImageURL": "images_icon/nic.png",
                    "Children": [
                        {
                            "id": 203,
                            "Text": "Load",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/load.png",
                            "Children": [
                                {
                                    "id": 204,
                                    "Text": "Network Utilization",
                                    "Min": "0.0 %",
                                    "Value": "0.0 %",
                                    "Max": "1.2 %",
                                    "SensorId": "/nic/%7B3A2A9FA7-B791-4A10-BD96-0F42901DA286%7D/load/1",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 205,
                            "Text": "Data",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/power.png",
                            "Children": [
                                {
                                    "id": 206,
                                    "Text": "Data Uploaded",
                                    "Min": "0.2 GB",
                                    "Value": "0.3 GB",
                                    "Max": "0.3 GB",
                                    "SensorId": "/nic/%7B3A2A9FA7-B791-4A10-BD96-0F42901DA286%7D/data/2",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 207,
                                    "Text": "Data Downloaded",
                                    "Min": "1.6 GB",
                                    "Value": "1.7 GB",
                                    "Max": "1.7 GB",
                                    "SensorId": "/nic/%7B3A2A9FA7-B791-4A10-BD96-0F42901DA286%7D/data/3",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 208,
                            "Text": "Throughput",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/throughput.png",
                            "Children": [
                                {
                                    "id": 209,
                                    "Text": "Upload Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.1 KB/s",
                                    "Max": "329.2 KB/s",
                                    "SensorId": "/nic/%7B3A2A9FA7-B791-4A10-BD96-0F42901DA286%7D/throughput/7",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 210,
                                    "Text": "Download Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.1 KB/s",
                                    "Max": "14.5 MB/s",
                                    "SensorId": "/nic/%7B3A2A9FA7-B791-4A10-BD96-0F42901DA286%7D/throughput/8",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        }
                    ]
                },
                {
                    "id": 211,
                    "Text": "vEthernet (External-10G2)",
                    "Min": "",
                    "Value": "",
                    "Max": "",
                    "ImageURL": "images_icon/nic.png",
                    "Children": [
                        {
                            "id": 212,
                            "Text": "Load",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/load.png",
                            "Children": [
                                {
                                    "id": 213,
                                    "Text": "Network Utilization",
                                    "Min": "NaN %",
                                    "Value": "NaN %",
                                    "Max": "NaN %",
                                    "SensorId": "/nic/%7B3B737EFB-82A0-455A-BAEE-AE96F07A8468%7D/load/1",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 214,
                            "Text": "Data",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/power.png",
                            "Children": [
                                {
                                    "id": 215,
                                    "Text": "Data Uploaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7B3B737EFB-82A0-455A-BAEE-AE96F07A8468%7D/data/2",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 216,
                                    "Text": "Data Downloaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7B3B737EFB-82A0-455A-BAEE-AE96F07A8468%7D/data/3",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 217,
                            "Text": "Throughput",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/throughput.png",
                            "Children": [
                                {
                                    "id": 218,
                                    "Text": "Upload Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "0.0 KB/s",
                                    "SensorId": "/nic/%7B3B737EFB-82A0-455A-BAEE-AE96F07A8468%7D/throughput/7",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 219,
                                    "Text": "Download Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "0.0 KB/s",
                                    "SensorId": "/nic/%7B3B737EFB-82A0-455A-BAEE-AE96F07A8468%7D/throughput/8",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        }
                    ]
                },
                {
                    "id": 220,
                    "Text": "vEthernet (External-1G-LM)",
                    "Min": "",
                    "Value": "",
                    "Max": "",
                    "ImageURL": "images_icon/nic.png",
                    "Children": [
                        {
                            "id": 221,
                            "Text": "Load",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/load.png",
                            "Children": [
                                {
                                    "id": 222,
                                    "Text": "Network Utilization",
                                    "Min": "0.0 %",
                                    "Value": "0.0 %",
                                    "Max": "0.0 %",
                                    "SensorId": "/nic/%7B66E1E14F-15F1-43B8-860E-8D1F67C4D1E0%7D/load/1",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 223,
                            "Text": "Data",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/power.png",
                            "Children": [
                                {
                                    "id": 224,
                                    "Text": "Data Uploaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7B66E1E14F-15F1-43B8-860E-8D1F67C4D1E0%7D/data/2",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 225,
                                    "Text": "Data Downloaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7B66E1E14F-15F1-43B8-860E-8D1F67C4D1E0%7D/data/3",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 226,
                            "Text": "Throughput",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/throughput.png",
                            "Children": [
                                {
                                    "id": 227,
                                    "Text": "Upload Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "0.0 KB/s",
                                    "SensorId": "/nic/%7B66E1E14F-15F1-43B8-860E-8D1F67C4D1E0%7D/throughput/7",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 228,
                                    "Text": "Download Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "0.0 KB/s",
                                    "SensorId": "/nic/%7B66E1E14F-15F1-43B8-860E-8D1F67C4D1E0%7D/throughput/8",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        }
                    ]
                },
                {
                    "id": 229,
                    "Text": "vEthernet (External-1G-V)",
                    "Min": "",
                    "Value": "",
                    "Max": "",
                    "ImageURL": "images_icon/nic.png",
                    "Children": [
                        {
                            "id": 230,
                            "Text": "Load",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/load.png",
                            "Children": [
                                {
                                    "id": 231,
                                    "Text": "Network Utilization",
                                    "Min": "0.0 %",
                                    "Value": "0.0 %",
                                    "Max": "0.0 %",
                                    "SensorId": "/nic/%7B32D010F6-B973-4762-BDAC-FA4266A2D4D4%7D/load/1",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 232,
                            "Text": "Data",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/power.png",
                            "Children": [
                                {
                                    "id": 233,
                                    "Text": "Data Uploaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7B32D010F6-B973-4762-BDAC-FA4266A2D4D4%7D/data/2",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 234,
                                    "Text": "Data Downloaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7B32D010F6-B973-4762-BDAC-FA4266A2D4D4%7D/data/3",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 235,
                            "Text": "Throughput",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/throughput.png",
                            "Children": [
                                {
                                    "id": 236,
                                    "Text": "Upload Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "0.0 KB/s",
                                    "SensorId": "/nic/%7B32D010F6-B973-4762-BDAC-FA4266A2D4D4%7D/throughput/7",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 237,
                                    "Text": "Download Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "0.0 KB/s",
                                    "SensorId": "/nic/%7B32D010F6-B973-4762-BDAC-FA4266A2D4D4%7D/throughput/8",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        }
                    ]
                },
                {
                    "id": 238,
                    "Text": "vEthernet (External-WiFi)",
                    "Min": "",
                    "Value": "",
                    "Max": "",
                    "ImageURL": "images_icon/nic.png",
                    "Children": [
                        {
                            "id": 239,
                            "Text": "Load",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/load.png",
                            "Children": [
                                {
                                    "id": 240,
                                    "Text": "Network Utilization",
                                    "Min": "0.0 %",
                                    "Value": "0.0 %",
                                    "Max": "0.0 %",
                                    "SensorId": "/nic/%7B17DC36A3-5016-4FBF-BACA-303B7BF118FD%7D/load/1",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 241,
                            "Text": "Data",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/power.png",
                            "Children": [
                                {
                                    "id": 242,
                                    "Text": "Data Uploaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7B17DC36A3-5016-4FBF-BACA-303B7BF118FD%7D/data/2",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 243,
                                    "Text": "Data Downloaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7B17DC36A3-5016-4FBF-BACA-303B7BF118FD%7D/data/3",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 244,
                            "Text": "Throughput",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/throughput.png",
                            "Children": [
                                {
                                    "id": 245,
                                    "Text": "Upload Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "0.0 KB/s",
                                    "SensorId": "/nic/%7B17DC36A3-5016-4FBF-BACA-303B7BF118FD%7D/throughput/7",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 246,
                                    "Text": "Download Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "0.0 KB/s",
                                    "SensorId": "/nic/%7B17DC36A3-5016-4FBF-BACA-303B7BF118FD%7D/throughput/8",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        }
                    ]
                },
                {
                    "id": 247,
                    "Text": "vEthernet (Internal)",
                    "Min": "",
                    "Value": "",
                    "Max": "",
                    "ImageURL": "images_icon/nic.png",
                    "Children": [
                        {
                            "id": 248,
                            "Text": "Load",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/load.png",
                            "Children": [
                                {
                                    "id": 249,
                                    "Text": "Network Utilization",
                                    "Min": "0.0 %",
                                    "Value": "0.0 %",
                                    "Max": "0.0 %",
                                    "SensorId": "/nic/%7B53CDE2B8-DD00-463B-B79E-60E0F7E10CF1%7D/load/1",
                                    "Type": "Load",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 250,
                            "Text": "Data",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/power.png",
                            "Children": [
                                {
                                    "id": 251,
                                    "Text": "Data Uploaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7B53CDE2B8-DD00-463B-B79E-60E0F7E10CF1%7D/data/2",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 252,
                                    "Text": "Data Downloaded",
                                    "Min": "0.0 GB",
                                    "Value": "0.0 GB",
                                    "Max": "0.0 GB",
                                    "SensorId": "/nic/%7B53CDE2B8-DD00-463B-B79E-60E0F7E10CF1%7D/data/3",
                                    "Type": "Data",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        },
                        {
                            "id": 253,
                            "Text": "Throughput",
                            "Min": "",
                            "Value": "",
                            "Max": "",
                            "ImageURL": "images_icon/throughput.png",
                            "Children": [
                                {
                                    "id": 254,
                                    "Text": "Upload Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "1.3 KB/s",
                                    "SensorId": "/nic/%7B53CDE2B8-DD00-463B-B79E-60E0F7E10CF1%7D/throughput/7",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                },
                                {
                                    "id": 255,
                                    "Text": "Download Speed",
                                    "Min": "0.0 KB/s",
                                    "Value": "0.0 KB/s",
                                    "Max": "0.0 KB/s",
                                    "SensorId": "/nic/%7B53CDE2B8-DD00-463B-B79E-60E0F7E10CF1%7D/throughput/8",
                                    "Type": "Throughput",
                                    "ImageURL": "images/transparent.png",
                                    "Children": []
                                }
                            ]
                        }
                    ]
                }
            ]
        }
    ]
}

 

I hope this will help a tiny bit 🤞 (other folks here).
Maybe I can have a look tomorrow, but I don't think so - very busy (stressful time) at the moment.

Update:
Let use know how your target structure should look like.
Maybe you can show a small result string/table/csv whatever, of your keys (values) to be get extracted, to get a better view, thanks.

Best regards
Sven

Edited by SOLVE-SMART

==> AutoIt related: 🔗 GitHub, 🔗 Discord Server, 🔗 Cheat Sheet🔗 autoit-webdriver-boilerplate

Spoiler

🌍 Au3Forums

🎲 AutoIt (en) Cheat Sheet

📊 AutoIt limits/defaults

💎 Code Katas: [...] (comming soon)

🎭 Collection of GitHub users with AutoIt projects

🐞 False-Positives

🔮 Me on GitHub

💬 Opinion about new forum sub category

📑 UDF wiki list

✂ VSCode-AutoItSnippets

📑 WebDriver FAQs

👨‍🏫 WebDriver Tutorial (coming soon)

Posted
57 minutes ago, SOLVE-SMART said:

Maybe you can show a small result...

ok:

Spoiler
- Row 0   |(0)                      |(1)                                                                     |(2)                           |(3)                         |(4)                            |(5)             |(6)     |(7) |(8) |(9) 
- Row 1   |images_icon/computer.png |1                                                                       |                              |                            |                               |                |        |    |    |1   
- Row 2   |0,0                      |images_icon/mainboard.png                                               |AHWSA                         |                            |                               |                |        |    |    |2   
- Row 3   |0,0,0                    |                                                                        |images_icon/chip.png          |Nuvoton NCT6796D-R          |                               |                |        |    |    |3   
- Row 4   |0,0,0,0                  |Children[0].Children[0].Children[0].Children[0].($iIndex4)              |                              |images_icon/voltage.png     |Voltages                       |                |        |    |    |4   
- Row 5   |0,0,0,0,0                |Children[0].Children[0].Children[0].Children[0].Children[0].($iIndex5)  |                              |                            |images/transparent.png         |Vcore           |0.448 V |    |    |5   
- Row 6   |0,0,0,0,1                |Children[0].Children[0].Children[0].Children[0].Children[1].($iIndex5)  |                              |                            |images/transparent.png         |Voltage #2      |1.040 V |    |    |6   
- Row 7   |0,0,0,0,2                |Children[0].Children[0].Children[0].Children[0].Children[2].($iIndex5)  |                              |                            |images/transparent.png         |AVCC            |3.360 V |    |    |7   
- Row 8   |0,0,0,0,3                |Children[0].Children[0].Children[0].Children[0].Children[3].($iIndex5)  |                              |                            |images/transparent.png         |+3.3V           |3.360 V |    |    |8   
- Row 9   |0,0,0,0,4                |Children[0].Children[0].Children[0].Children[0].Children[4].($iIndex5)  |                              |                            |images/transparent.png         |Voltage #5      |1.096 V |    |    |9   
- Row 10  |0,0,0,0,5                |Children[0].Children[0].Children[0].Children[0].Children[5].($iIndex5)  |                              |                            |images/transparent.png         |Voltage #6      |0.168 V |    |    |10  
- Row 11  |0,0,0,0,6                |Children[0].Children[0].Children[0].Children[0].Children[6].($iIndex5)  |                              |                            |images/transparent.png         |Voltage #7      |0.144 V |    |    |11  
- Row 12  |0,0,0,0,7                |Children[0].Children[0].Children[0].Children[0].Children[7].($iIndex5)  |                              |                            |images/transparent.png         |+3V Standby     |3.344 V |    |    |12  
- Row 13  |0,0,0,0,8                |Children[0].Children[0].Children[0].Children[0].Children[8].($iIndex5)  |                              |                            |images/transparent.png         |CMOS Battery    |3.152 V |    |    |13  
- Row 14  |0,0,0,0,9                |Children[0].Children[0].Children[0].Children[0].Children[9].($iIndex5)  |                              |                            |images/transparent.png         |CPU Termination |0.512 V |    |    |14  
- Row 15  |0,0,0,0,10               |Children[0].Children[0].Children[0].Children[0].Children[10].($iIndex5) |                              |                            |images/transparent.png         |Voltage #11     |0.088 V |    |    |15  
- Row 16  |0,0,0,0,11               |Children[0].Children[0].Children[0].Children[0].Children[11].($iIndex5) |                              |                            |images/transparent.png         |Voltage #12     |0.072 V |    |    |16  
- Row 17  |0,0,0,0,12               |Children[0].Children[0].Children[0].Children[0].Children[12].($iIndex5) |                              |                            |images/transparent.png         |Voltage #13     |1.000 V |    |    |17  
- Row 18  |0,0,0,0,13               |Children[0].Children[0].Children[0].Children[0].Children[13].($iIndex5) |                              |                            |images/transparent.png         |Voltage #14     |0.160 V |    |    |18  
- Row 19  |0,0,0,0,14               |Children[0].Children[0].Children[0].Children[0].Children[14].($iIndex5) |                              |                            |images/transparent.png         |Voltage #15     |1.264 V |    |    |19  
- Row 20  |0,0,0,1                  |Children[0].Children[0].Children[0].Children[1].($iIndex4)              |                              |images_icon/temperature.png |Temperatures                   |                |        |    |    |20  
- Row 21  |0,0,0,2                  |Children[0].Children[0].Children[0].Children[2].($iIndex4)              |                              |images_icon/fan.png         |Fans                           |                |        |    |    |28  
- Row 22  |0,0,0,3                  |Children[0].Children[0].Children[0].Children[3].($iIndex4)              |                              |images_icon/control.png     |Controls                       |                |        |    |    |36  
- Row 23  |0,1                      |images_icon/cpu.png                                                     |12th Gen Intel Core i9-12900H |                            |                               |                |        |    |    |44  
- Row 24  |0,1,0                    |                                                                        |images_icon/voltage.png       |Voltages                    |                               |                |        |    |    |45  
- Row 25  |0,1,0,0                  |Children[0].Children[1].Children[0].Children[0].($iIndex4)              |                              |images/transparent.png      |CPU Core                       |1.234 V         |        |    |    |46  
- Row 26  |0,1,0,1                  |Children[0].Children[1].Children[0].Children[1].($iIndex4)              |                              |images/transparent.png      |CPU Core #1                    |1.299 V         |        |    |    |47  
- Row 27  |0,1,0,2                  |Children[0].Children[1].Children[0].Children[2].($iIndex4)              |                              |images/transparent.png      |CPU Core #2                    |1.374 V         |        |    |    |48  
- Row 28  |0,1,0,3                  |Children[0].Children[1].Children[0].Children[3].($iIndex4)              |                              |images/transparent.png      |CPU Core #3                    |1.334 V         |        |    |    |49  
- Row 29  |0,1,0,4                  |Children[0].Children[1].Children[0].Children[4].($iIndex4)              |                              |images/transparent.png      |CPU Core #4                    |1.322 V         |        |    |    |50  
- Row 30  |0,1,0,5                  |Children[0].Children[1].Children[0].Children[5].($iIndex4)              |                              |images/transparent.png      |CPU Core #5                    |1.287 V         |        |    |    |51  
- Row 31  |0,1,0,6                  |Children[0].Children[1].Children[0].Children[6].($iIndex4)              |                              |images/transparent.png      |CPU Core #6                    |1.262 V         |        |    |    |52  
- Row 32  |0,1,0,7                  |Children[0].Children[1].Children[0].Children[7].($iIndex4)              |                              |images/transparent.png      |CPU Core #7                    |1.207 V         |        |    |    |53  
- Row 33  |0,1,0,8                  |Children[0].Children[1].Children[0].Children[8].($iIndex4)              |                              |images/transparent.png      |CPU Core #8                    |1.297 V         |        |    |    |54  
- Row 34  |0,1,0,9                  |Children[0].Children[1].Children[0].Children[9].($iIndex4)              |                              |images/transparent.png      |CPU Core #9                    |1.297 V         |        |    |    |55  
- Row 35  |0,1,0,10                 |Children[0].Children[1].Children[0].Children[10].($iIndex4)             |                              |images/transparent.png      |CPU Core #10                   |1.297 V         |        |    |    |56  
- Row 36  |0,1,0,11                 |Children[0].Children[1].Children[0].Children[11].($iIndex4)             |                              |images/transparent.png      |CPU Core #11                   |1.362 V         |        |    |    |57  
- Row 37  |0,1,0,12                 |Children[0].Children[1].Children[0].Children[12].($iIndex4)             |                              |images/transparent.png      |CPU Core #12                   |1.362 V         |        |    |    |58  
- Row 38  |0,1,0,13                 |Children[0].Children[1].Children[0].Children[13].($iIndex4)             |                              |images/transparent.png      |CPU Core #13                   |1.302 V         |        |    |    |59  
- Row 39  |0,1,0,14                 |Children[0].Children[1].Children[0].Children[14].($iIndex4)             |                              |images/transparent.png      |CPU Core #14                   |1.302 V         |        |    |    |60  
- Row 40  |0,1,1                    |                                                                        |images_icon/power.png         |Powers                      |                               |                |        |    |    |61  
- Row 41  |0,1,1,0                  |Children[0].Children[1].Children[1].Children[0].($iIndex4)              |                              |images/transparent.png      |CPU Package                    |17.4 W          |        |    |    |62  
- Row 42  |0,1,1,1                  |Children[0].Children[1].Children[1].Children[1].($iIndex4)              |                              |images/transparent.png      |CPU Cores                      |8.4 W           |        |    |    |63  
- Row 43  |0,1,1,2                  |Children[0].Children[1].Children[1].Children[2].($iIndex4)              |                              |images/transparent.png      |CPU Memory                     |0.0 W           |        |    |    |64  
- Row 44  |0,1,1,3                  |Children[0].Children[1].Children[1].Children[3].($iIndex4)              |                              |images/transparent.png      |CPU Platform                   |0.0 W           |        |    |    |65  
- Row 45  |0,1,2                    |                                                                        |images_icon/clock.png         |Clocks                      |                               |                |        |    |    |66  
- Row 46  |0,1,2,0                  |Children[0].Children[1].Children[2].Children[0].($iIndex4)              |                              |images/transparent.png      |Bus Speed                      |100.6 MHz       |        |    |    |67  
- Row 47  |0,1,2,1                  |Children[0].Children[1].Children[2].Children[1].($iIndex4)              |                              |images/transparent.png      |CPU Core #1                    |4327.3 MHz      |        |    |    |68  
- Row 48  |0,1,2,2                  |Children[0].Children[1].Children[2].Children[2].($iIndex4)              |                              |images/transparent.png      |CPU Core #2                    |4629.2 MHz      |        |    |    |69  
- Row 49  |0,1,2,3                  |Children[0].Children[1].Children[2].Children[3].($iIndex4)              |                              |images/transparent.png      |CPU Core #3                    |4327.3 MHz      |        |    |    |70  
- Row 50  |0,1,2,4                  |Children[0].Children[1].Children[2].Children[4].($iIndex4)              |                              |images/transparent.png      |CPU Core #4                    |4629.2 MHz      |        |    |    |71  
- Row 51  |0,1,2,5                  |Children[0].Children[1].Children[2].Children[5].($iIndex4)              |                              |images/transparent.png      |CPU Core #5                    |4629.2 MHz      |        |    |    |72  
- Row 52  |0,1,2,6                  |Children[0].Children[1].Children[2].Children[6].($iIndex4)              |                              |images/transparent.png      |CPU Core #6                    |4629.2 MHz      |        |    |    |73  
- Row 53  |0,1,2,7                  |Children[0].Children[1].Children[2].Children[7].($iIndex4)              |                              |images/transparent.png      |CPU Core #7                    |3824.1 MHz      |        |    |    |74  
- Row 54  |0,1,2,8                  |Children[0].Children[1].Children[2].Children[8].($iIndex4)              |                              |images/transparent.png      |CPU Core #8                    |3824.1 MHz      |        |    |    |75  
- Row 55  |0,1,2,9                  |Children[0].Children[1].Children[2].Children[9].($iIndex4)              |                              |images/transparent.png      |CPU Core #9                    |3824.1 MHz      |        |    |    |76  
- Row 56  |0,1,2,10                 |Children[0].Children[1].Children[2].Children[10].($iIndex4)             |                              |images/transparent.png      |CPU Core #10                   |3824.1 MHz      |        |    |    |77  
- Row 57  |0,1,2,11                 |Children[0].Children[1].Children[2].Children[11].($iIndex4)             |                              |images/transparent.png      |CPU Core #11                   |3824.1 MHz      |        |    |    |78  
- Row 58  |0,1,2,12                 |Children[0].Children[1].Children[2].Children[12].($iIndex4)             |                              |images/transparent.png      |CPU Core #12                   |3824.1 MHz      |        |    |    |79  
- Row 59  |0,1,2,13                 |Children[0].Children[1].Children[2].Children[13].($iIndex4)             |                              |images/transparent.png      |CPU Core #13                   |3824.1 MHz      |        |    |    |80  
- Row 60  |0,1,2,14                 |Children[0].Children[1].Children[2].Children[14].($iIndex4)             |                              |images/transparent.png      |CPU Core #14                   |3824.1 MHz      |        |    |    |81  
- Row 61  |0,1,3                    |                                                                        |images_icon/temperature.png   |Temperatures                |                               |                |        |    |    |82  
- Row 62  |0,1,3,0                  |Children[0].Children[1].Children[3].Children[0].($iIndex4)              |                              |images/transparent.png      |Core Max                       |85.0 °C        |        |    |    |83  
- Row 63  |0,1,3,1                  |Children[0].Children[1].Children[3].Children[1].($iIndex4)              |                              |images/transparent.png      |Core Average                   |58.4 °C        |        |    |    |84  
- Row 64  |0,1,3,2                  |Children[0].Children[1].Children[3].Children[2].($iIndex4)              |                              |images/transparent.png      |CPU Core #1                    |61.0 °C        |        |    |    |85  
- Row 65  |0,1,3,3                  |Children[0].Children[1].Children[3].Children[3].($iIndex4)              |                              |images/transparent.png      |CPU Core #2                    |51.0 °C        |        |    |    |86  
- Row 66  |0,1,3,4                  |Children[0].Children[1].Children[3].Children[4].($iIndex4)              |                              |images/transparent.png      |CPU Core #3                    |85.0 °C        |        |    |    |87  
- Row 67  |0,1,3,5                  |Children[0].Children[1].Children[3].Children[5].($iIndex4)              |                              |images/transparent.png      |CPU Core #4                    |55.0 °C        |        |    |    |88  
- Row 68  |0,1,3,6                  |Children[0].Children[1].Children[3].Children[6].($iIndex4)              |                              |images/transparent.png      |CPU Core #5                    |80.0 °C        |        |    |    |89  
- Row 69  |0,1,3,7                  |Children[0].Children[1].Children[3].Children[7].($iIndex4)              |                              |images/transparent.png      |CPU Core #6                    |62.0 °C        |        |    |    |90  
- Row 70  |0,1,3,8                  |Children[0].Children[1].Children[3].Children[8].($iIndex4)              |                              |images/transparent.png      |CPU Core #7                    |58.0 °C        |        |    |    |91  
- Row 71  |0,1,3,9                  |Children[0].Children[1].Children[3].Children[9].($iIndex4)              |                              |images/transparent.png      |CPU Core #8                    |58.0 °C        |        |    |    |92  
- Row 72  |0,1,3,10                 |Children[0].Children[1].Children[3].Children[10].($iIndex4)             |                              |images/transparent.png      |CPU Core #9                    |58.0 °C        |        |    |    |93  
- Row 73  |0,1,3,11                 |Children[0].Children[1].Children[3].Children[11].($iIndex4)             |                              |images/transparent.png      |CPU Core #10                   |58.0 °C        |        |    |    |94  
- Row 74  |0,1,3,12                 |Children[0].Children[1].Children[3].Children[12].($iIndex4)             |                              |images/transparent.png      |CPU Core #11                   |48.0 °C        |        |    |    |95  
- Row 75  |0,1,3,13                 |Children[0].Children[1].Children[3].Children[13].($iIndex4)             |                              |images/transparent.png      |CPU Core #12                   |48.0 °C        |        |    |    |96  
- Row 76  |0,1,3,14                 |Children[0].Children[1].Children[3].Children[14].($iIndex4)             |                              |images/transparent.png      |CPU Core #13                   |48.0 °C        |        |    |    |97  
- Row 77  |0,1,3,15                 |Children[0].Children[1].Children[3].Children[15].($iIndex4)             |                              |images/transparent.png      |CPU Core #14                   |48.0 °C        |        |    |    |98  
- Row 78  |0,1,3,16                 |Children[0].Children[1].Children[3].Children[16].($iIndex4)             |                              |images/transparent.png      |CPU Package                    |85.0 °C        |        |    |    |99  
- Row 79  |0,1,3,17                 |Children[0].Children[1].Children[3].Children[17].($iIndex4)             |                              |images/transparent.png      |CPU Core #1 Distance to TjMax  |39.0 °C        |        |    |    |100 
- Row 80  |0,1,3,18                 |Children[0].Children[1].Children[3].Children[18].($iIndex4)             |                              |images/transparent.png      |CPU Core #2 Distance to TjMax  |49.0 °C        |        |    |    |101 
- Row 81  |0,1,3,19                 |Children[0].Children[1].Children[3].Children[19].($iIndex4)             |                              |images/transparent.png      |CPU Core #3 Distance to TjMax  |15.0 °C        |        |    |    |102 
- Row 82  |0,1,3,20                 |Children[0].Children[1].Children[3].Children[20].($iIndex4)             |                              |images/transparent.png      |CPU Core #4 Distance to TjMax  |45.0 °C        |        |    |    |103 
- Row 83  |0,1,3,21                 |Children[0].Children[1].Children[3].Children[21].($iIndex4)             |                              |images/transparent.png      |CPU Core #5 Distance to TjMax  |20.0 °C        |        |    |    |104 
- Row 84  |0,1,3,22                 |Children[0].Children[1].Children[3].Children[22].($iIndex4)             |                              |images/transparent.png      |CPU Core #6 Distance to TjMax  |38.0 °C        |        |    |    |105 
- Row 85  |0,1,3,23                 |Children[0].Children[1].Children[3].Children[23].($iIndex4)             |                              |images/transparent.png      |CPU Core #7 Distance to TjMax  |42.0 °C        |        |    |    |106 
- Row 86  |0,1,3,24                 |Children[0].Children[1].Children[3].Children[24].($iIndex4)             |                              |images/transparent.png      |CPU Core #8 Distance to TjMax  |42.0 °C        |        |    |    |107 
- Row 87  |0,1,3,25                 |Children[0].Children[1].Children[3].Children[25].($iIndex4)             |                              |images/transparent.png      |CPU Core #9 Distance to TjMax  |42.0 °C        |        |    |    |108 
- Row 88  |0,1,3,26                 |Children[0].Children[1].Children[3].Children[26].($iIndex4)             |                              |images/transparent.png      |CPU Core #10 Distance to TjMax |42.0 °C        |        |    |    |109 
- Row 89  |0,1,3,27                 |Children[0].Children[1].Children[3].Children[27].($iIndex4)             |                              |images/transparent.png      |CPU Core #11 Distance to TjMax |52.0 °C        |        |    |    |110 
- Row 90  |0,1,3,28                 |Children[0].Children[1].Children[3].Children[28].($iIndex4)             |                              |images/transparent.png      |CPU Core #12 Distance to TjMax |52.0 °C        |        |    |    |111 
- Row 91  |0,1,3,29                 |Children[0].Children[1].Children[3].Children[29].($iIndex4)             |                              |images/transparent.png      |CPU Core #13 Distance to TjMax |52.0 °C        |        |    |    |112 
- Row 92  |0,1,3,30                 |Children[0].Children[1].Children[3].Children[30].($iIndex4)             |                              |images/transparent.png      |CPU Core #14 Distance to TjMax |52.0 °C        |        |    |    |113 
- Row 93  |0,1,4                    |                                                                        |images_icon/load.png          |Load                        |                               |                |        |    |    |114 
- Row 94  |0,1,4,0                  |Children[0].Children[1].Children[4].Children[0].($iIndex4)              |                              |images/transparent.png      |CPU Total                      |2.2 %           |        |    |    |115 
- Row 95  |0,1,4,1                  |Children[0].Children[1].Children[4].Children[1].($iIndex4)              |                              |images/transparent.png      |CPU Core Max                   |24.1 %          |        |    |    |116 
- Row 96  |0,1,4,2                  |Children[0].Children[1].Children[4].Children[2].($iIndex4)              |                              |images/transparent.png      |CPU Core #1 Thread #1          |1.0 %           |        |    |    |117 
- Row 97  |0,1,4,3                  |Children[0].Children[1].Children[4].Children[3].($iIndex4)              |                              |images/transparent.png      |CPU Core #1 Thread #2          |0.7 %           |        |    |    |118 
- Row 98  |0,1,4,4                  |Children[0].Children[1].Children[4].Children[4].($iIndex4)              |                              |images/transparent.png      |CPU Core #2 Thread #1          |0.9 %           |        |    |    |119 
- Row 99  |0,1,4,5                  |Children[0].Children[1].Children[4].Children[5].($iIndex4)              |                              |images/transparent.png      |CPU Core #2 Thread #2          |0.5 %           |        |    |    |120 
- Row 100 |0,1,4,6                  |Children[0].Children[1].Children[4].Children[6].($iIndex4)              |                              |images/transparent.png      |CPU Core #3 Thread #1          |24.1 %          |        |    |    |121 
- Row 101 |0,1,4,7                  |Children[0].Children[1].Children[4].Children[7].($iIndex4)              |                              |images/transparent.png      |CPU Core #3 Thread #2          |0.6 %           |        |    |    |122 
- Row 102 |0,1,4,8                  |Children[0].Children[1].Children[4].Children[8].($iIndex4)              |                              |images/transparent.png      |CPU Core #4 Thread #1          |1.1 %           |        |    |    |123 
- Row 103 |0,1,4,9                  |Children[0].Children[1].Children[4].Children[9].($iIndex4)              |                              |images/transparent.png      |CPU Core #4 Thread #2          |0.5 %           |        |    |    |124 
- Row 104 |0,1,4,10                 |Children[0].Children[1].Children[4].Children[10].($iIndex4)             |                              |images/transparent.png      |CPU Core #5 Thread #1          |8.3 %           |        |    |    |125 
- Row 105 |0,1,4,11                 |Children[0].Children[1].Children[4].Children[11].($iIndex4)             |                              |images/transparent.png      |CPU Core #5 Thread #2          |0.6 %           |        |    |    |126 
- Row 106 |0,1,4,12                 |Children[0].Children[1].Children[4].Children[12].($iIndex4)             |                              |images/transparent.png      |CPU Core #6 Thread #1          |1.0 %           |        |    |    |127 
- Row 107 |0,1,4,13                 |Children[0].Children[1].Children[4].Children[13].($iIndex4)             |                              |images/transparent.png      |CPU Core #6 Thread #2          |0.5 %           |        |    |    |128 
- Row 108 |0,1,4,14                 |Children[0].Children[1].Children[4].Children[14].($iIndex4)             |                              |images/transparent.png      |CPU Core #7                    |0.6 %           |        |    |    |129 
- Row 109 |0,1,4,15                 |Children[0].Children[1].Children[4].Children[15].($iIndex4)             |                              |images/transparent.png      |CPU Core #8                    |0.6 %           |        |    |    |130 
- Row 110 |0,1,4,16                 |Children[0].Children[1].Children[4].Children[16].($iIndex4)             |                              |images/transparent.png      |CPU Core #9                    |0.6 %           |        |    |    |131 
- Row 111 |0,1,4,17                 |Children[0].Children[1].Children[4].Children[17].($iIndex4)             |                              |images/transparent.png      |CPU Core #10                   |0.6 %           |        |    |    |132 
- Row 112 |0,1,4,18                 |Children[0].Children[1].Children[4].Children[18].($iIndex4)             |                              |images/transparent.png      |CPU Core #11                   |0.8 %           |        |    |    |133 
- Row 113 |0,1,4,19                 |Children[0].Children[1].Children[4].Children[19].($iIndex4)             |                              |images/transparent.png      |CPU Core #12                   |0.6 %           |        |    |    |134 
- Row 114 |0,1,4,20                 |Children[0].Children[1].Children[4].Children[20].($iIndex4)             |                              |images/transparent.png      |CPU Core #13                   |0.6 %           |        |    |    |135 
- Row 115 |0,1,4,21                 |Children[0].Children[1].Children[4].Children[21].($iIndex4)             |                              |images/transparent.png      |CPU Core #14                   |0.6 %           |        |    |    |136 
- Row 116 |0,2                      |images_icon/ram.png                                                     |Generic Memory                |                            |                               |                |        |    |    |137 
- Row 117 |0,2,0                    |                                                                        |images_icon/load.png          |Load                        |                               |                |        |    |    |138 
- Row 118 |0,2,0,0                  |Children[0].Children[2].Children[0].Children[0].($iIndex4)              |                              |images/transparent.png      |Memory                         |48.0 %          |        |    |    |139 
- Row 119 |0,2,0,1                  |Children[0].Children[2].Children[0].Children[1].($iIndex4)              |                              |images/transparent.png      |Virtual Memory                 |48.1 %          |        |    |    |140 
- Row 120 |0,2,1                    |                                                                        |images_icon/power.png         |Data                        |                               |                |        |    |    |141 
- Row 121 |0,2,1,0                  |Children[0].Children[2].Children[1].Children[0].($iIndex4)              |                              |images/transparent.png      |Memory Used                    |45.9 GB         |        |    |    |142 
- Row 122 |0,2,1,1                  |Children[0].Children[2].Children[1].Children[1].($iIndex4)              |                              |images/transparent.png      |Memory Available               |49.8 GB         |        |    |    |143 
- Row 123 |0,2,1,2                  |Children[0].Children[2].Children[1].Children[2].($iIndex4)              |                              |images/transparent.png      |Virtual Memory Used            |46.0 GB         |        |    |    |144 
- Row 124 |0,2,1,3                  |Children[0].Children[2].Children[1].Children[3].($iIndex4)              |                              |images/transparent.png      |Virtual Memory Available       |49.7 GB         |        |    |    |145 
- Row 125 |0,3                      |images_icon/hdd.png                                                     |Samsung SSD 990 PRO 4TB       |                            |                               |                |        |    |    |146 
- Row 126 |0,3,0                    |                                                                        |images_icon/temperature.png   |Temperatures                |                               |                |        |    |    |147 
- Row 127 |0,3,0,0                  |Children[0].Children[3].Children[0].Children[0].($iIndex4)              |                              |images/transparent.png      |Temperature                    |47.0 °C        |        |    |    |148 
- Row 128 |0,3,0,1                  |Children[0].Children[3].Children[0].Children[1].($iIndex4)              |                              |images/transparent.png      |Temperature 1                  |47.0 °C        |        |    |    |149 
- Row 129 |0,3,0,2                  |Children[0].Children[3].Children[0].Children[2].($iIndex4)              |                              |images/transparent.png      |Temperature 2                  |65.0 °C        |        |    |    |150 
- Row 130 |0,3,1                    |                                                                        |images_icon/load.png          |Load                        |                               |                |        |    |    |151 
- Row 131 |0,3,1,0                  |Children[0].Children[3].Children[1].Children[0].($iIndex4)              |                              |images/transparent.png      |Used Space                     |23.0 %          |        |    |    |152 
- Row 132 |0,3,1,1                  |Children[0].Children[3].Children[1].Children[1].($iIndex4)              |                              |images/transparent.png      |Read Activity                  |0.0 %           |        |    |    |153 
- Row 133 |0,3,1,2                  |Children[0].Children[3].Children[1].Children[2].($iIndex4)              |                              |images/transparent.png      |Write Activity                 |0.2 %           |        |    |    |154 
- Row 134 |0,3,1,3                  |Children[0].Children[3].Children[1].Children[3].($iIndex4)              |                              |images/transparent.png      |Total Activity                 |0.8 %           |        |    |    |155 
- Row 135 |0,3,2                    |                                                                        |images_icon/level.png         |Levels                      |                               |                |        |    |    |156 
- Row 136 |0,3,2,0                  |Children[0].Children[3].Children[2].Children[0].($iIndex4)              |                              |images/transparent.png      |Available Spare                |100.0 %         |        |    |    |157 
- Row 137 |0,3,2,1                  |Children[0].Children[3].Children[2].Children[1].($iIndex4)              |                              |images/transparent.png      |Available Spare Threshold      |10.0 %          |        |    |    |158 
- Row 138 |0,3,2,2                  |Children[0].Children[3].Children[2].Children[2].($iIndex4)              |                              |images/transparent.png      |Percentage Used                |3.0 %           |        |    |    |159 
- Row 139 |0,3,3                    |                                                                        |images_icon/power.png         |Data                        |                               |                |        |    |    |160 
- Row 140 |0,3,3,0                  |Children[0].Children[3].Children[3].Children[0].($iIndex4)              |                              |images/transparent.png      |Data Read                      |5877.0 GB       |        |    |    |161 
- Row 141 |0,3,3,1                  |Children[0].Children[3].Children[3].Children[1].($iIndex4)              |                              |images/transparent.png      |Data Written                   |7136.0 GB       |        |    |    |162 
- Row 142 |0,3,4                    |                                                                        |images_icon/throughput.png    |Throughput                  |                               |                |        |    |    |163 
- Row 143 |0,3,4,0                  |Children[0].Children[3].Children[4].Children[0].($iIndex4)              |                              |images/transparent.png      |Read Rate                      |0.0 KB/s        |        |    |    |164 
- Row 144 |0,3,4,1                  |Children[0].Children[3].Children[4].Children[1].($iIndex4)              |                              |images/transparent.png      |Write Rate                     |273.4 KB/s      |        |    |    |165 
- Row 145 |0,4                      |images_icon/nic.png                                                     |Bluetooth Network Connection  |                            |                               |                |        |    |    |166 
- Row 146 |0,4,0                    |                                                                        |images_icon/load.png          |Load                        |                               |                |        |    |    |167 
- Row 147 |0,4,0,0                  |Children[0].Children[4].Children[0].Children[0].($iIndex4)              |                              |images/transparent.png      |Network Utilization            |0.0 %           |        |    |    |168 
- Row 148 |0,4,1                    |                                                                        |images_icon/power.png         |Data                        |                               |                |        |    |    |169 
- Row 149 |0,4,1,0                  |Children[0].Children[4].Children[1].Children[0].($iIndex4)              |                              |images/transparent.png      |Data Uploaded                  |0.0 GB          |        |    |    |170 
- Row 150 |0,4,1,1                  |Children[0].Children[4].Children[1].Children[1].($iIndex4)              |                              |images/transparent.png      |Data Downloaded                |0.0 GB          |        |    |    |171 
- Row 151 |0,4,2                    |                                                                        |images_icon/throughput.png    |Throughput                  |                               |                |        |    |    |172 
- Row 152 |0,4,2,0                  |Children[0].Children[4].Children[2].Children[0].($iIndex4)              |                              |images/transparent.png      |Upload Speed                   |0.0 KB/s        |        |    |    |173 
- Row 153 |0,4,2,1                  |Children[0].Children[4].Children[2].Children[1].($iIndex4)              |                              |images/transparent.png      |Download Speed                 |0.0 KB/s        |        |    |    |174 
- Row 154 |0,5                      |images_icon/nic.png                                                     |Local Area Connection* 10     |                            |                               |                |        |    |    |175 
- Row 155 |0,5,0                    |                                                                        |images_icon/load.png          |Load                        |                               |                |        |    |    |176 
- Row 156 |0,5,0,0                  |Children[0].Children[5].Children[0].Children[0].($iIndex4)              |                              |images/transparent.png      |Network Utilization            |0.0 %           |        |    |    |177 
- Row 157 |0,5,1                    |                                                                        |images_icon/power.png         |Data                        |                               |                |        |    |    |178 
- Row 158 |0,5,1,0                  |Children[0].Children[5].Children[1].Children[0].($iIndex4)              |                              |images/transparent.png      |Data Uploaded                  |0.0 GB          |        |    |    |179 
- Row 159 |0,5,1,1                  |Children[0].Children[5].Children[1].Children[1].($iIndex4)              |                              |images/transparent.png      |Data Downloaded                |0.0 GB          |        |    |    |180 
- Row 160 |0,5,2                    |                                                                        |images_icon/throughput.png    |Throughput                  |                               |                |        |    |    |181 
- Row 161 |0,5,2,0                  |Children[0].Children[5].Children[2].Children[0].($iIndex4)              |                              |images/transparent.png      |Upload Speed                   |0.0 KB/s        |        |    |    |182 
- Row 162 |0,5,2,1                  |Children[0].Children[5].Children[2].Children[1].($iIndex4)              |                              |images/transparent.png      |Download Speed                 |0.0 KB/s        |        |    |    |183 
- Row 163 |0,6                      |images_icon/nic.png                                                     |Local Area Connection* 9      |                            |                               |                |        |    |    |184 
- Row 164 |0,6,0                    |                                                                        |images_icon/load.png          |Load                        |                               |                |        |    |    |185 
- Row 165 |0,6,0,0                  |Children[0].Children[6].Children[0].Children[0].($iIndex4)              |                              |images/transparent.png      |Network Utilization            |0.0 %           |        |    |    |186 
- Row 166 |0,6,1                    |                                                                        |images_icon/power.png         |Data                        |                               |                |        |    |    |187 
- Row 167 |0,6,1,0                  |Children[0].Children[6].Children[1].Children[0].($iIndex4)              |                              |images/transparent.png      |Data Uploaded                  |0.0 GB          |        |    |    |188 
- Row 168 |0,6,1,1                  |Children[0].Children[6].Children[1].Children[1].($iIndex4)              |                              |images/transparent.png      |Data Downloaded                |0.0 GB          |        |    |    |189 
- Row 169 |0,6,2                    |                                                                        |images_icon/throughput.png    |Throughput                  |                               |                |        |    |    |190 
- Row 170 |0,6,2,0                  |Children[0].Children[6].Children[2].Children[0].($iIndex4)              |                              |images/transparent.png      |Upload Speed                   |0.0 KB/s        |        |    |    |191 
- Row 171 |0,6,2,1                  |Children[0].Children[6].Children[2].Children[1].($iIndex4)              |                              |images/transparent.png      |Download Speed                 |0.0 KB/s        |        |    |    |192 
- Row 172 |0,7                      |images_icon/nic.png                                                     |vEthernet (Default Switch)    |                            |                               |                |        |    |    |193 
- Row 173 |0,7,0                    |                                                                        |images_icon/load.png          |Load                        |                               |                |        |    |    |194 
- Row 174 |0,7,0,0                  |Children[0].Children[7].Children[0].Children[0].($iIndex4)              |                              |images/transparent.png      |Network Utilization            |0.0 %           |        |    |    |195 
- Row 175 |0,7,1                    |                                                                        |images_icon/power.png         |Data                        |                               |                |        |    |    |196 
- Row 176 |0,7,1,0                  |Children[0].Children[7].Children[1].Children[0].($iIndex4)              |                              |images/transparent.png      |Data Uploaded                  |0.0 GB          |        |    |    |197 
- Row 177 |0,7,1,1                  |Children[0].Children[7].Children[1].Children[1].($iIndex4)              |                              |images/transparent.png      |Data Downloaded                |0.0 GB          |        |    |    |198 
- Row 178 |0,7,2                    |                                                                        |images_icon/throughput.png    |Throughput                  |                               |                |        |    |    |199 
- Row 179 |0,7,2,0                  |Children[0].Children[7].Children[2].Children[0].($iIndex4)              |                              |images/transparent.png      |Upload Speed                   |0.0 KB/s        |        |    |    |200 
- Row 180 |0,7,2,1                  |Children[0].Children[7].Children[2].Children[1].($iIndex4)              |                              |images/transparent.png      |Download Speed                 |0.0 KB/s        |        |    |    |201 
- Row 181 |0,8                      |images_icon/nic.png                                                     |vEthernet (External-10G1)     |                            |                               |                |        |    |    |202 
- Row 182 |0,8,0                    |                                                                        |images_icon/load.png          |Load                        |                               |                |        |    |    |203 
- Row 183 |0,8,0,0                  |Children[0].Children[8].Children[0].Children[0].($iIndex4)              |                              |images/transparent.png      |Network Utilization            |0.0 %           |        |    |    |204 
- Row 184 |0,8,1                    |                                                                        |images_icon/power.png         |Data                        |                               |                |        |    |    |205 
- Row 185 |0,8,1,0                  |Children[0].Children[8].Children[1].Children[0].($iIndex4)              |                              |images/transparent.png      |Data Uploaded                  |0.3 GB          |        |    |    |206 
- Row 186 |0,8,1,1                  |Children[0].Children[8].Children[1].Children[1].($iIndex4)              |                              |images/transparent.png      |Data Downloaded                |1.7 GB          |        |    |    |207 
- Row 187 |0,8,2                    |                                                                        |images_icon/throughput.png    |Throughput                  |                               |                |        |    |    |208 
- Row 188 |0,8,2,0                  |Children[0].Children[8].Children[2].Children[0].($iIndex4)              |                              |images/transparent.png      |Upload Speed                   |0.1 KB/s        |        |    |    |209 
- Row 189 |0,8,2,1                  |Children[0].Children[8].Children[2].Children[1].($iIndex4)              |                              |images/transparent.png      |Download Speed                 |0.1 KB/s        |        |    |    |210 
- Row 190 |0,9                      |images_icon/nic.png                                                     |vEthernet (External-10G2)     |                            |                               |                |        |    |    |211 
- Row 191 |0,9,0                    |                                                                        |images_icon/load.png          |Load                        |                               |                |        |    |    |212 
- Row 192 |0,9,0,0                  |Children[0].Children[9].Children[0].Children[0].($iIndex4)              |                              |images/transparent.png      |Network Utilization            |NaN %           |        |    |    |213 
- Row 193 |0,9,1                    |                                                                        |images_icon/power.png         |Data                        |                               |                |        |    |    |214 
- Row 194 |0,9,1,0                  |Children[0].Children[9].Children[1].Children[0].($iIndex4)              |                              |images/transparent.png      |Data Uploaded                  |0.0 GB          |        |    |    |215 
- Row 195 |0,9,1,1                  |Children[0].Children[9].Children[1].Children[1].($iIndex4)              |                              |images/transparent.png      |Data Downloaded                |0.0 GB          |        |    |    |216 
- Row 196 |0,9,2                    |                                                                        |images_icon/throughput.png    |Throughput                  |                               |                |        |    |    |217 
- Row 197 |0,9,2,0                  |Children[0].Children[9].Children[2].Children[0].($iIndex4)              |                              |images/transparent.png      |Upload Speed                   |0.0 KB/s        |        |    |    |218 
- Row 198 |0,9,2,1                  |Children[0].Children[9].Children[2].Children[1].($iIndex4)              |                              |images/transparent.png      |Download Speed                 |0.0 KB/s        |        |    |    |219 
- Row 199 |0,10                     |images_icon/nic.png                                                     |vEthernet (External-1G-LM)    |                            |                               |                |        |    |    |220 
- Row 200 |0,10,0                   |                                                                        |images_icon/load.png          |Load                        |                               |                |        |    |    |221 
- Row 201 |0,10,0,0                 |Children[0].Children[10].Children[0].Children[0].($iIndex4)             |                              |images/transparent.png      |Network Utilization            |0.0 %           |        |    |    |222 
- Row 202 |0,10,1                   |                                                                        |images_icon/power.png         |Data                        |                               |                |        |    |    |223 
- Row 203 |0,10,1,0                 |Children[0].Children[10].Children[1].Children[0].($iIndex4)             |                              |images/transparent.png      |Data Uploaded                  |0.0 GB          |        |    |    |224 
- Row 204 |0,10,1,1                 |Children[0].Children[10].Children[1].Children[1].($iIndex4)             |                              |images/transparent.png      |Data Downloaded                |0.0 GB          |        |    |    |225 
- Row 205 |0,10,2                   |                                                                        |images_icon/throughput.png    |Throughput                  |                               |                |        |    |    |226 
- Row 206 |0,10,2,0                 |Children[0].Children[10].Children[2].Children[0].($iIndex4)             |                              |images/transparent.png      |Upload Speed                   |0.0 KB/s        |        |    |    |227 
- Row 207 |0,10,2,1                 |Children[0].Children[10].Children[2].Children[1].($iIndex4)             |                              |images/transparent.png      |Download Speed                 |0.0 KB/s        |        |    |    |228 
- Row 208 |0,11                     |images_icon/nic.png                                                     |vEthernet (External-1G-V)     |                            |                               |                |        |    |    |229 
- Row 209 |0,11,0                   |                                                                        |images_icon/load.png          |Load                        |                               |                |        |    |    |230 
- Row 210 |0,11,0,0                 |Children[0].Children[11].Children[0].Children[0].($iIndex4)             |                              |images/transparent.png      |Network Utilization            |0.0 %           |        |    |    |231 
- Row 211 |0,11,1                   |                                                                        |images_icon/power.png         |Data                        |                               |                |        |    |    |232 
- Row 212 |0,11,1,0                 |Children[0].Children[11].Children[1].Children[0].($iIndex4)             |                              |images/transparent.png      |Data Uploaded                  |0.0 GB          |        |    |    |233 
- Row 213 |0,11,1,1                 |Children[0].Children[11].Children[1].Children[1].($iIndex4)             |                              |images/transparent.png      |Data Downloaded                |0.0 GB          |        |    |    |234 
- Row 214 |0,11,2                   |                                                                        |images_icon/throughput.png    |Throughput                  |                               |                |        |    |    |235 
- Row 215 |0,11,2,0                 |Children[0].Children[11].Children[2].Children[0].($iIndex4)             |                              |images/transparent.png      |Upload Speed                   |0.0 KB/s        |        |    |    |236 
- Row 216 |0,11,2,1                 |Children[0].Children[11].Children[2].Children[1].($iIndex4)             |                              |images/transparent.png      |Download Speed                 |0.0 KB/s        |        |    |    |237 
- Row 217 |0,12                     |images_icon/nic.png                                                     |vEthernet (External-WiFi)     |                            |                               |                |        |    |    |238 
- Row 218 |0,12,0                   |                                                                        |images_icon/load.png          |Load                        |                               |                |        |    |    |239 
- Row 219 |0,12,0,0                 |Children[0].Children[12].Children[0].Children[0].($iIndex4)             |                              |images/transparent.png      |Network Utilization            |0.0 %           |        |    |    |240 
- Row 220 |0,12,1                   |                                                                        |images_icon/power.png         |Data                        |                               |                |        |    |    |241 
- Row 221 |0,12,1,0                 |Children[0].Children[12].Children[1].Children[0].($iIndex4)             |                              |images/transparent.png      |Data Uploaded                  |0.0 GB          |        |    |    |242 
- Row 222 |0,12,1,1                 |Children[0].Children[12].Children[1].Children[1].($iIndex4)             |                              |images/transparent.png      |Data Downloaded                |0.0 GB          |        |    |    |243 
- Row 223 |0,12,2                   |                                                                        |images_icon/throughput.png    |Throughput                  |                               |                |        |    |    |244 
- Row 224 |0,12,2,0                 |Children[0].Children[12].Children[2].Children[0].($iIndex4)             |                              |images/transparent.png      |Upload Speed                   |0.0 KB/s        |        |    |    |245 
- Row 225 |0,12,2,1                 |Children[0].Children[12].Children[2].Children[1].($iIndex4)             |                              |images/transparent.png      |Download Speed                 |0.0 KB/s        |        |    |    |246 
- Row 226 |0,13                     |images_icon/nic.png                                                     |vEthernet (Internal)          |                            |                               |                |        |    |    |247 
- Row 227 |0,13,0                   |                                                                        |images_icon/load.png          |Load                        |                               |                |        |    |    |248 
- Row 228 |0,13,0,0                 |Children[0].Children[13].Children[0].Children[0].($iIndex4)             |                              |images/transparent.png      |Network Utilization            |0.0 %           |        |    |    |249 
- Row 229 |0,13,1                   |                                                                        |images_icon/power.png         |Data                        |                               |                |        |    |    |250 
- Row 230 |0,13,1,0                 |Children[0].Children[13].Children[1].Children[0].($iIndex4)             |                              |images/transparent.png      |Data Uploaded                  |0.0 GB          |        |    |    |251 
- Row 231 |0,13,1,1                 |Children[0].Children[13].Children[1].Children[1].($iIndex4)             |                              |images/transparent.png      |Data Downloaded                |0.0 GB          |        |    |    |252 
- Row 232 |0,13,2                   |                                                                        |images_icon/throughput.png    |Throughput                  |                               |                |        |    |    |253 
- Row 233 |0,13,2,0                 |Children[0].Children[13].Children[2].Children[0].($iIndex4)             |                              |images/transparent.png      |Upload Speed                   |0.0 KB/s        |        |    |    |254 
- Row 234 |0,13,2,1                 |Children[0].Children[13].Children[2].Children[1].($iIndex4)             |                              |images/transparent.png      |Download Speed                 |0.0 KB/s        |        |    |    |255

   click POPUP to see it clerly

 

Follow the link to my code contribution ( and other things too ).
FAQ - Please Read Before Posting.
autoit_scripter_blue_userbar.png

  • Solution
Posted

Wow, that looks wild.
To be honest, I haven't delved deep enough into your script to really understand how the path strings for _JSON_Get() are constructed there.
As I understand it, you want to map this highly hierarchical structure to a 2D array—is that correct?

From my point of view, neither manual fixed loops nor the use of _JSON_Get() are the ideal way to do this.
Instead of manual nested loops, the format here literally cries out for recursion.
And since _JSON_Get starts from the beginning again with each call and you can quickly get confused with the path string, you don't really need it here.
You have the structure available as AutoIt data structures. So you can also process it directly to access it – you don't need _JSON_Get() for that.
That is more for conveniently accessing certain values whose path you know in advance.
On the other hand, first putting together a path and then using _JSON_Get to retrieve the element is artificially cumbersome, since you basically already have the element when you put the path together.

So I simply implemented the whole thing recursively, and from my point of view, it seems to make sense:

#include <JSON.au3>
#include <Array.au3>

; extract array of devices from the json structure
Global $aDevices = _extractDevices(_JSON_Parse(FileRead('Argumentum.json')))

; display the result
_ArrayDisplay($aDevices, "Devices", "", 64, "|", "Index|JSON-Path|ID|Text|Min|Value|Max|SensorID|Type|ImageURL")


Func _extractDevices($mDevice, $bMaster = True, $sIndex = 0)
    Local Static $aDevices[0][0], $iElements
    Local Enum $eIdx, $ePath, $eID, $eText, $eMin, $eValue, $eMax, $eSensorID, $eType, $eImg

    ; check Input validity
    If Not IsMap($mDevice) Then Return SetError(1, 0, Null)

    ; first recursion level has to initialize things
    If $bMaster Then
        Redim $aDevices[8][$eImg + 1]
        $iElements = 0
    EndIf

    ; add current device to result array
    If UBound($aDevices) <= $iElements Then Redim $aDevices[UBound($aDevices) * 2][$eImg + 1] ; resize array if necessary
    $aDevices[$iElements][$eIdx]      = $sIndex
    $aDevices[$iElements][$ePath]     = StringReplace(StringRegExpReplace(StringTrimLeft($sIndex, 2), "(\d+)", 'Children[$1]'), ',', '.')
    $aDevices[$iElements][$eID]       = $mDevice["id"]
    $aDevices[$iElements][$eText]     = $mDevice["Text"]
    $aDevices[$iElements][$eMin]      = $mDevice["Min"]
    $aDevices[$iElements][$eValue]    = $mDevice["Value"]
    $aDevices[$iElements][$eMax]      = $mDevice["Max"]
    $aDevices[$iElements][$eSensorID] = $mDevice["SensorId"]
    $aDevices[$iElements][$eType]     = $mDevice["Type"]
    $aDevices[$iElements][$eImg]      = $mDevice["ImageURL"]
    $iElements += 1

    ; process the childrens
    Local $aChildren = $mDevice["Children"]
    If IsArray($aChildren) And UBound($aChildren, 1) > 0 And UBound($aChildren, 0) = 1 Then
        For $i = 0 To UBound($aChildren) - 1
            _extractDevices($aChildren[$i], False, $sIndex & "," & $i)
        Next
    EndIf

    If $bMaster Then 
        Redim $aDevices[$iElements][$eImg + 1]
        Return $aDevices
    EndIf
EndFunc

I am therefore unable to assess where the problem lies in your script or whether there may even be a bug in the JSON UDF.
In my script, I have therefore generated the query string for _JSON_Get() for each element in parallel, and when I use these with _JSON_Get(), it works as desired.

14 hours ago, argumentum said:

also, the new UDF update may have broken things retuning a nul instead of an empty string ?

Yes, that was highly unprofessional of me - I agree with you there.
To me, it seemed logical to adjust the function to return a null instead of an empty string in the event of an error, so I simply changed it without further ado.
Of course, I completely ignored the fact that this was a script-breaking change and didn't even mention it in the commit message.
That's really not acceptable - sorry!
I have therefore rolled it back in the GitHub repo.

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   1 member

×
×
  • Create New...