Harmattan Ready, Fremantle Testing Pending
authorSudheer K <scifi.guy@hotmail.com>
Thu, 1 Dec 2011 07:34:18 +0000 (23:34 -0800)
committerSudheer K <scifi.guy@hotmail.com>
Thu, 1 Dec 2011 07:34:18 +0000 (23:34 -0800)
src/qml/ConfigParametersComponent.qml
src/qml/MarketsTodayApp.qml
src/qml/StockDetailsComponent.qml
src/qrc_resources.cpp

index 62ff0e8..c1d7b83 100644 (file)
@@ -80,11 +80,80 @@ Item {
         }
 
         Text {
-            id: autoUpdateSectionLabel
+            id: newsSectionLabel
             anchors.top: parent.top
+            anchors.left: parent.left
+            anchors.leftMargin: 35
+            height: 50
+            horizontalAlignment: Text.AlignLeft; verticalAlignment: Text.AlignVCenter
+            font.pixelSize: 22; font.bold: true; elide: Text.ElideRight; color: "#B8B8B8"; style: Text.Raised; styleColor: "black"
+            text: "News Feed"
+        }
+
+        Rectangle {
+            id: newsSection
+            border.width: 1
+            border.color: "#BFBFBF"
+            color:"#2E2E2E"
+            anchors.top: newsSectionLabel.bottom
+            anchors.topMargin: 10
+            anchors.left: parent.left
+            anchors.leftMargin: 30
+            anchors.right: parent.right
+            anchors.rightMargin: 30
+            height: 60
+            radius: 15
+
+            Row {
+                id: rowRSSURL
+                //anchors.top: parent.top
+                //anchors.topMargin: 5
+                anchors.verticalCenter: parent.verticalCenter
+                anchors.left: parent.left
+                anchors.leftMargin: 5
+                anchors.right: parent.right
+                height: 50
+                spacing: 5
+
+                Text{
+                    height:parent.height
+                    horizontalAlignment: Text.AlignLeft; verticalAlignment: Text.AlignVCenter
+                    font.pixelSize: 20; font.bold: false; elide: Text.ElideRight; style: Text.Raised; styleColor: "black"
+                    text: "RSS URL: "
+                    color: "#ffffff";
+                }
+
+                Item {
+                    height: 40
+                    //updateConfig.width > updateConfig.height?
+                    width:  parent.width*3/4
+                    BorderImage { source: "Library/images/lineedit.sci"; anchors.fill: parent }
+                    TextInput{
+                        id: txtRSSURL
+                        height: parent.height
+                        anchors.left: parent.left
+                        anchors.leftMargin: 10
+                        anchors.right: parent.right
+                        anchors.verticalCenter: parent.verticalCenter
+                        focus: true
+                        text: configParametersComponent.rssURL
+                        horizontalAlignment: Text.AlignLeft
+                        font.pixelSize: 18
+                        inputMethodHints: Qt.ImhNoAutoUppercase | Qt.ImhPreferLowercase
+                        onTextChanged: {
+                            configParametersComponent.rssURL = txtRSSURL.text;
+                        }
+                    }
+                }
+            }
+        }
+
+        Text {
+            id: autoUpdateSectionLabel
+            anchors.top: newsSection.bottom
             //anchors.topMargin: 10
             anchors.left: parent.left
-            anchors.leftMargin: 45
+            anchors.leftMargin: 35
             height: 50
             horizontalAlignment: Text.AlignLeft; verticalAlignment: Text.AlignVCenter
             font.pixelSize: 22; font.bold: true; elide: Text.ElideRight; color: "#B8B8B8"; style: Text.Raised; styleColor: "black"
@@ -99,9 +168,9 @@ Item {
             anchors.top: autoUpdateSectionLabel.bottom
             anchors.topMargin: 10
             anchors.left: parent.left
-            anchors.leftMargin: 40
+            anchors.leftMargin: 30
             anchors.right: parent.right
-            anchors.rightMargin: 40
+            anchors.rightMargin: 30
             height: 120
             radius: 15
 
@@ -226,72 +295,6 @@ Item {
             }
 */
         }
-
-        Text {
-            id: newsSectionLabel
-            anchors.top: autoUpdateSection.bottom
-            //anchors.topMargin: 10
-            anchors.left: parent.left
-            anchors.leftMargin: 45
-            height: 50
-            horizontalAlignment: Text.AlignLeft; verticalAlignment: Text.AlignVCenter
-            font.pixelSize: 22; font.bold: true; elide: Text.ElideRight; color: "#B8B8B8"; style: Text.Raised; styleColor: "black"
-            text: "RSS - News Feed"
-        }
-
-        Rectangle {
-            id: newsSection
-            border.width: 1
-            border.color: "#BFBFBF"
-            color:"#2E2E2E"
-            anchors.top: newsSectionLabel.bottom
-            anchors.topMargin: 10
-            anchors.left: parent.left
-            anchors.leftMargin: 40
-            anchors.right: parent.right
-            anchors.rightMargin: 40
-            height: 60
-            radius: 15
-
-            Row {
-                id: rowRSSURL
-                anchors.top: parent.top
-                anchors.topMargin: 5
-                anchors.left: parent.left
-                anchors.leftMargin: 5
-                anchors.right: parent.right
-                height: 50
-                spacing: 5
-
-                Text{
-                    height:parent.height
-                    horizontalAlignment: Text.AlignLeft; verticalAlignment: Text.AlignVCenter
-                    font.pixelSize: 20; font.bold: false; elide: Text.ElideRight; style: Text.Raised; styleColor: "black"
-                    text: "RSS URL: "
-                    color: "#ffffff";
-                }
-
-                Item {
-                    height: 40
-                    width: parent.width*4/5
-                    BorderImage { source: "Library/images/lineedit.sci"; anchors.fill: parent }
-                    TextInput{
-                        id: txtRSSURL
-                        height: parent.height
-                        anchors.left: parent.left
-                        anchors.leftMargin: 10
-                        anchors.right: parent.right
-                        focus: true
-                        text: configParametersComponent.rssURL                        
-                        horizontalAlignment: Text.AlignLeft
-                        font.pixelSize: 18
-                        inputMethodHints: Qt.ImhNoAutoUppercase | Qt.ImhPreferLowercase
-                        onTextChanged: {
-                            configParametersComponent.rssURL = txtRSSURL.text;
-                        }
-                    }
-                }
-            }
-        }
+    //Here
     }
 }
index deb094e..315d911 100644 (file)
@@ -373,11 +373,39 @@ PageStackWindow {
             Component{
                 id: stockDetailsComponent
                 StockDetailsComponent {
+                    id: detailsComponent
                     symbol: selectedSymbol
                     onLogRequest: logUtility.logMessage(strMessage)
-                    onLockInLandscape: mainPage.orientationLock = PageOrientation.LockLandscape
-                    onUnlockOrientation: mainPage.orientationLock = PageOrientation.Automatic
-                }
+                    orientation: (appWindow.inPortrait)? "Portrait":"Landscape";  //Initial Orientation
+                    states: [
+                                State {
+                                    name: "inLandscape"
+                                    when: !appWindow.inPortrait
+                                    PropertyChanges {
+                                        target: detailsComponent
+                                        orientation: "Landscape"
+                                    }
+                                },
+                                State {
+                                    name: "inPortrait"
+                                    when: appWindow.inPortrait
+                                    PropertyChanges {
+                                        target: detailsComponent
+                                        orientation: "Portrait"
+                                    }
+                                }
+                    ]
+
+                    Component.onCompleted: {
+                        if (appWindow.inPortrait){
+                            logUtility.logMessage("Initial orientation is Portrait");
+                        }
+                        else
+                        {
+                            logUtility.logMessage("Initial orientation is Landscape");
+                        }
+                    }
+                }                
             }
 
             Component {
index 322f9e9..28b1354 100644 (file)
@@ -29,13 +29,12 @@ Item {
     property string baseChartURL: "http://chart.finance.yahoo.com/z?q=&l=&z=m&p=s&a=v&p=s&lang=en-US&region=US"
     property string chartURL: ""
     property string rssURL: ""
+    property string orientation: "Portrait"
 
     property int currentScreenIndex: 1
 
     signal logRequest(string strMessage)
     signal loadChart(string duration)
-    signal lockInLandscape()
-    signal unlockOrientation()
 
     Rectangle {
         anchors.fill: parent
@@ -59,12 +58,10 @@ Item {
         function switchScreen(){
             switch (currentScreenIndex){
             case 1:
-                stockDetailsScreen.lockInLandscape();
-                stockDetailsLoader.sourceComponent = stockChartComponent;
+                stockDetailsLoader.sourceComponent = (stockDetailsScreen.width > stockDetailsScreen.height)? stockChartComponentLandscape : stockChartComponentPortrait;
                 currentScreenIndex = currentScreenIndex + 1;
                 break;
             case 2:
-                stockDetailsScreen.unlockOrientation();
                 stockDetailsLoader.sourceComponent = stockDetailsComponent;
                 currentScreenIndex = currentScreenIndex - 1;
                 break;
@@ -345,18 +342,33 @@ Item {
                   left: parent.left; leftMargin: 10
                   right:  parent.right; rightMargin: 10}
           sourceComponent: stockDetailsComponent
-        }
 
+          Connections{
+              target: stockDetailsScreen
+              onOrientationChanged: {
+                  logRequest("Orientation Changed");
+                  logRequest("New orientation is "+stockDetailsScreen.orientation);
+                  logRequest("Margins for StockDetailsLoader are "+stockDetailsLoader.anchors.leftMargin+", "+stockDetailsLoader.anchors.rightMargin);
+
+                  if (currentScreenIndex === 2){
+                      if (stockDetailsScreen.orientation == "Landscape")
+                          stockDetailsLoader.sourceComponent = stockChartComponentLandscape;
+                      else
+                          stockDetailsLoader.sourceComponent = stockChartComponentPortrait;
+                  }
+              }
+          }
+        }
 
         Component{
-            id: stockChartComponent
+            id: stockChartComponentLandscape
 
             Item {
-                id: chartAreaWrapper
+                id: chartAreaWrapperLand
                 anchors.fill: parent
 
                 Rectangle {
-                    id: chartArea
+                    id: chartAreaLand
                     border.width: 1
                     border.color: "#BFBFBF"
                     //color:"#2E2E2E"
@@ -407,14 +419,13 @@ Item {
                         width: 130
                         spacing: 20
                         anchors {top: parent.top; topMargin: 40; bottom: parent.bottom;
-                                 right: chartArea.right;rightMargin: 10}
+                                 right: chartAreaLand.right;rightMargin: 10}
 
                         Row {
                             height: 40
                             spacing: 20
                             anchors.horizontalCenter: parent.horizontalCenter
                             Library.Button {
-                                id: oneDayButton
                                 text:  "1d"
                                 anchors { verticalCenter: parent.verticalCenter}
                                 width: 50; height: 32
@@ -422,7 +433,6 @@ Item {
                             }
 
                             Library.Button {
-                                id: fiveDayButton
                                 text:  "5d"
                                 anchors { verticalCenter: parent.verticalCenter}
                                 width: 50; height: 32
@@ -435,7 +445,6 @@ Item {
                             spacing: 20
                             anchors.horizontalCenter: parent.horizontalCenter
                             Library.Button {
-                                id: threeMonthButton
                                 text:  "3m"
                                 anchors { verticalCenter: parent.verticalCenter}
                                 width: 50; height: 32
@@ -443,7 +452,6 @@ Item {
                             }
 
                             Library.Button {
-                                id: sixMonthButton
                                 text:  "6m"
                                 anchors { verticalCenter: parent.verticalCenter}
                                 width: 50; height: 32
@@ -455,7 +463,6 @@ Item {
                             spacing: 20
                             anchors.horizontalCenter: parent.horizontalCenter
                             Library.Button {
-                                id: oneYearButton
                                 text:  "1y"
                                 anchors { verticalCenter: parent.verticalCenter}
                                 width: 50; height: 32
@@ -463,7 +470,6 @@ Item {
                             }
 
                             Library.Button {
-                                id: twoYearButton
                                 text:  "2y"
                                 anchors { verticalCenter: parent.verticalCenter}
                                 width: 50; height: 32
@@ -475,7 +481,6 @@ Item {
                             spacing: 20
                             anchors.horizontalCenter: parent.horizontalCenter
                             Library.Button {
-                                id: fiveYearButton
                                 text:  "5y"
                                 anchors { verticalCenter: parent.verticalCenter}
                                 width: 50; height: 32
@@ -483,7 +488,6 @@ Item {
                             }
 
                             Library.Button {
-                                id: maxButton
                                 text:  "max"
                                 anchors { verticalCenter: parent.verticalCenter}
                                 width: 50; height: 32
@@ -494,5 +498,138 @@ Item {
                 }
             }
         }
+
+        Component{
+            id: stockChartComponentPortrait
+
+            Item {
+                id: chartAreaWrapperPort
+                anchors.fill: parent
+
+                Rectangle {
+                    id: chartAreaPort
+                    border.width: 1
+                    border.color: "#BFBFBF"
+                    //color:"#2E2E2E"
+                    color:"white"
+                    anchors { top: parent.top;topMargin: 40;
+                              bottom: parent.bottom; bottomMargin: 40;
+                              left: parent.left; right: parent.right}
+                    radius: 10
+
+                    Library.Loading { anchors.centerIn: parent; visible: chartImgPort.status == Image.Loading}
+
+                    Image {
+                        id: chartImgPort
+                        //anchors {left: parent.left; leftMargin: 10; horizontalCenter: parent.horizontalCenter}
+                        anchors {horizontalCenter: parent.horizontalCenter; top: parent.top; topMargin: 40}
+                        source: chartURL
+                        sourceSize.width: 512
+                        sourceSize.height: 288
+                        smooth: true
+                        fillMode: Image.PreserveAspectFit
+                        width: parent.width - 20
+                        onStatusChanged: {
+                            switch(status){
+                                case Image.Ready:
+                                    logRequest("Image is ready");
+                                    break;
+                                case Image.Loading:
+                                    logRequest("Image is loading");
+                                    break;
+                                case Image.Error:
+                                    logRequest("Image loading failed");
+                                    break;
+                                default:
+                                    logRequest("No image specified");
+                                    break;
+                            }
+
+                        }
+
+                        Connections{
+                            target: stockDetailsScreen
+                            onLoadChart: {
+                                chartURL = baseChartURL+"&t="+duration+"&s="+symbol;
+                                logRequest(chartURL);
+                            }
+                        }
+                    }
+
+                    Column {
+                        width: 280
+                        spacing: 20
+                        anchors {verticalCenter: parent.verticalCenter;verticalCenterOffset: 80; horizontalCenter: parent.horizontalCenter}
+
+                        Row {
+                            height: 40
+                            spacing: 20
+                            anchors.horizontalCenter: parent.horizontalCenter
+                            Library.Button {
+                                text:  "1d"
+                                anchors { verticalCenter: parent.verticalCenter}
+                                width: 50; height: 32
+                                onClicked: loadChart("1d");
+                            }
+
+                            Library.Button {
+                                text:  "5d"
+                                anchors { verticalCenter: parent.verticalCenter}
+                                width: 50; height: 32
+                                onClicked: loadChart("5d");
+                            }
+
+                            Library.Button {
+                                text:  "3m"
+                                anchors { verticalCenter: parent.verticalCenter}
+                                width: 50; height: 32
+                                onClicked: loadChart("3m");
+                            }
+
+                            Library.Button {
+                                text:  "6m"
+                                anchors { verticalCenter: parent.verticalCenter}
+                                width: 50; height: 32
+                                onClicked: loadChart("6m");
+                            }
+                        }
+
+                        Row {
+                            height: 40
+                            spacing: 20
+                            anchors.horizontalCenter: parent.horizontalCenter
+                            Library.Button {
+                                text:  "1y"
+                                anchors { verticalCenter: parent.verticalCenter}
+                                width: 50; height: 32
+                                onClicked: loadChart("1y");
+                            }
+
+                            Library.Button {
+                                text:  "2y"
+                                anchors { verticalCenter: parent.verticalCenter}
+                                width: 50; height: 32
+                                onClicked: loadChart("2y");
+                            }
+
+                            Library.Button {
+                                text:  "5y"
+                                anchors { verticalCenter: parent.verticalCenter}
+                                width: 50; height: 32
+                                onClicked: loadChart("5y");
+                            }
+
+                            Library.Button {
+                                text:  "max"
+                                anchors { verticalCenter: parent.verticalCenter}
+                                width: 50; height: 32
+                                onClicked: loadChart("my");
+                            }
+                        }
+                    }
+                }
+            }
+        }
+
     }
 }
index 982a19a..c7f72bc 100644 (file)
@@ -1,7 +1,7 @@
 /****************************************************************************
 ** Resource object code
 **
-** Created: Mon Nov 28 19:51:13 2011
+** Created: Wed Nov 30 23:26:47 2011
 **      by: The Resource Compiler for Qt version 4.7.4
 **
 ** WARNING! All changes made in this file will be lost!
@@ -435,336 +435,354 @@ static const unsigned char qt_resource_data[] = {
   0x19,0x59,0xfe,0x4,0x45,0xbe,0xf9,0x2b,0xfb,0x23,0xf5,0xdb,0xc1,0x7f,0x1,0xb3,
   0xa7,0xe6,0x3d,
     // /home/sudheer/marketstoday/marketstoday-0.3/src/qml/ConfigParametersComponent.qml
-  0x0,0x0,0x6,0xd0,
+  0x0,0x0,0x6,0xf7,
   0x0,
-  0x0,0x2e,0x63,0x78,0x9c,0xed,0x5a,0x5b,0x77,0xd3,0x38,0x10,0x7e,0xcf,0xaf,0x10,
-  0xe6,0xa5,0xed,0x1,0xbb,0xd7,0x85,0x4d,0x97,0x85,0xd2,0x16,0xe8,0xa1,0x2d,0x25,
-  0xd9,0x2e,0x8f,0x7b,0x14,0x5b,0x49,0x44,0x1d,0x29,0x48,0x4a,0xd3,0x0,0xfd,0xef,
-  0x3b,0xf2,0x25,0xf1,0x45,0x72,0x9c,0x36,0xed,0x9e,0xb3,0x64,0x72,0x28,0xb1,0x34,
-  0x9e,0x91,0x66,0x46,0xdf,0x8c,0xa4,0x78,0x1b,0x8d,0x37,0xd7,0x44,0x48,0xca,0x59,
-  0x13,0x6d,0xba,0xdb,0x8d,0x37,0x78,0xa4,0xfa,0x5c,0x34,0x51,0x7b,0x14,0xf4,0x9,
-  0x11,0xe8,0xa3,0x8b,0xfe,0x90,0x3e,0xed,0xd2,0xad,0xdf,0x77,0x5f,0x20,0xac,0x50,
-  0x6f,0x80,0x69,0xe8,0xfa,0x7c,0xf0,0x67,0xe3,0x4d,0x48,0x7d,0xc2,0x24,0x69,0xa2,
-  0xf7,0xe7,0x97,0xe8,0x3d,0x61,0x44,0xe0,0x10,0x5d,0x8c,0x3a,0xd0,0x8e,0x4e,0xe3,
-  0xbe,0xc6,0x86,0xd7,0x68,0xd0,0xc1,0x90,0xb,0x85,0x3e,0x2b,0xb4,0xeb,0xbe,0x48,
-  0x9f,0x9c,0x53,0xda,0x11,0x58,0x4c,0xbc,0xaf,0xd2,0x3b,0x7a,0x7b,0xa9,0x68,0x48,
-  0xd5,0xc4,0xfd,0x2a,0x1d,0x84,0x25,0x9a,0x36,0x34,0x1a,0x27,0x8a,0xc,0xd0,0x8f,
-  0x6,0x2,0xa2,0x41,0x13,0xf9,0x9c,0x75,0x69,0xef,0x2,0xb,0x3c,0x20,0xa,0x86,
-  0x7e,0xc8,0x41,0x1c,0x23,0x4c,0x45,0x1c,0x43,0xc1,0x87,0x44,0xa8,0x9,0xea,0x70,
-  0x1e,0xa2,0xd1,0x30,0xc0,0x8a,0xbc,0x13,0xe4,0xdb,0x31,0xc3,0x9d,0x90,0x4,0x79,
-  0x1e,0xa9,0x4,0x65,0x3d,0x94,0x61,0x3b,0xa3,0xcc,0x2a,0xe6,0xb,0x21,0x57,0x1,
-  0x9e,0xc8,0x4f,0x2c,0x9c,0x44,0x4c,0x9e,0x67,0x62,0xfb,0xc4,0xda,0xf8,0x9a,0x4,
-  0xe7,0x44,0x8d,0xb9,0xb8,0x9a,0x71,0x97,0xb4,0xa,0x29,0x2f,0x5b,0xa7,0x4d,0xe4,
-  0xf4,0x95,0x1a,0x36,0x3d,0xaf,0x4b,0x19,0x66,0x3e,0x71,0x27,0xb8,0xcf,0xb9,0x36,
-  0xb0,0x7,0x1c,0x9e,0xe2,0x43,0xe8,0x90,0x8a,0xb,0x4a,0xa4,0x13,0x49,0x92,0xb4,
-  0xc7,0xc0,0xce,0x21,0xef,0xb5,0xc8,0xb7,0x11,0x91,0x6a,0x2d,0x11,0x9,0xff,0x9d,
-  0x11,0x29,0x71,0x8f,0xac,0x37,0x22,0xce,0x16,0xf1,0x15,0x66,0xbd,0x90,0x24,0xf6,
-  0x4b,0x6d,0x18,0x8f,0xf4,0x30,0xb2,0xe4,0xb4,0x3,0x94,0x83,0xe7,0xa5,0xdb,0xa5,
-  0x61,0xd8,0x44,0x43,0x2c,0x52,0x9b,0x6a,0xf2,0x79,0x8,0x51,0xe1,0x3c,0xdd,0xd9,
-  0xd5,0x1f,0xa7,0x31,0xed,0x98,0x9a,0xdf,0xe5,0x4c,0x7f,0xf,0xc1,0x29,0xa0,0x61,
-  0xa6,0x2f,0xa5,0x99,0x8b,0x29,0xa3,0x8a,0xe2,0x90,0x7e,0x27,0x6b,0xeb,0xfb,0x25,
-  0xbe,0x90,0xe3,0xa0,0x4d,0x94,0x82,0x9,0xc9,0x6c,0xff,0xad,0x59,0xe7,0x11,0xcc,
-  0x5f,0x8c,0x7c,0xa5,0x23,0x38,0xaf,0x34,0x63,0x1f,0x7,0x5c,0x12,0x19,0x28,0x91,
-  0xeb,0x14,0xf4,0x4a,0xf0,0xd8,0x1c,0x9d,0xdd,0x11,0x8b,0x94,0x14,0xc6,0x97,0x57,
-  0x79,0x8d,0x5,0xfc,0xb,0x47,0x64,0xbf,0xd0,0xc,0x4d,0x8,0xbd,0xca,0xd8,0xa0,
-  0x47,0x54,0x22,0x64,0xcd,0xb9,0x9c,0x86,0x1f,0x61,0xfe,0xa4,0x38,0x36,0xda,0x45,
-  0x6b,0x4f,0x62,0x9,0x3f,0x7f,0x26,0xa2,0x5e,0xbd,0x42,0xce,0xa6,0xbb,0xe9,0x64,
-  0x5b,0xa0,0x29,0x7a,0xa6,0xf2,0x1c,0x9f,0xaf,0x45,0xad,0xeb,0xeb,0x65,0x37,0x58,
-  0x97,0x8f,0x5b,0x5a,0x2c,0x30,0xe0,0x2e,0xe,0x65,0x61,0x32,0xb7,0xb9,0x27,0x2,
-  0xfd,0xf7,0x55,0x2,0xfe,0x23,0xe5,0x38,0xa8,0x23,0x3,0x96,0x2b,0xbc,0xf,0xa1,
-  0x2a,0xc9,0x9,0x53,0xc9,0xa4,0xab,0x86,0x5b,0xcb,0x13,0xd9,0x85,0x7e,0x1f,0x6f,
-  0xdc,0xc1,0xfa,0x59,0xd5,0xf,0x67,0xfe,0x82,0x96,0xb2,0xfd,0x21,0xee,0xbd,0x8d,
-  0xc5,0xd,0x67,0x80,0xbe,0x47,0xb6,0x9f,0x61,0x4,0xf,0x67,0x46,0xb3,0x32,0x93,
-  0x35,0x75,0xe,0x5c,0xc0,0x9a,0xad,0x76,0x1b,0x32,0x43,0x5d,0xd3,0x5d,0xb2,0x2b,
-  0xc6,0xc7,0xac,0x8e,0xf9,0x3c,0xcf,0x3e,0xa7,0x38,0x1d,0xc1,0x98,0xec,0x2c,0x1,
-  0xe9,0xe2,0x51,0xa8,0x60,0x78,0xef,0x8,0x9,0x96,0x69,0xd0,0xa9,0x72,0x3,0x7a,
-  0xde,0x56,0xc2,0x71,0x1e,0xba,0x7f,0x94,0x2c,0x16,0xc3,0x61,0x4d,0x30,0x59,0x5f,
-  0xaf,0x48,0x5b,0xd2,0xe,0xd9,0xcf,0x9c,0xa2,0xb3,0xb4,0x1,0xee,0x28,0xab,0xee,
-  0x58,0xf7,0xf3,0x31,0x55,0x25,0x3c,0x87,0x68,0xcf,0xe6,0x5a,0x23,0xcb,0xfe,0x7a,
-  0xab,0xb9,0xb9,0x5e,0x98,0x9c,0xe7,0x55,0x29,0x33,0xa1,0xc0,0x7c,0x9d,0x86,0xb7,
-  0x4c,0xaa,0xcd,0x8a,0x93,0x5,0x53,0x61,0xba,0x38,0xc0,0xcc,0xa9,0xfd,0x2f,0x72,
-  0xa3,0xa,0x5,0x8b,0x2e,0x92,0xa0,0x12,0xe6,0xf1,0x8c,0xda,0x24,0x8a,0xb5,0x53,
-  0xdc,0x21,0x61,0x8e,0x2d,0x2d,0x99,0xa0,0x48,0x4b,0x2b,0x26,0xfd,0xbd,0x60,0xac,
-  0xc,0xd7,0x19,0x16,0x3d,0xa,0xa5,0xf6,0xd6,0xa6,0x51,0x4e,0x48,0xba,0x6a,0x2a,
-  0x48,0x3f,0x58,0xb9,0x52,0x41,0xbb,0x7b,0x39,0x96,0x3e,0xa1,0xbd,0x3e,0x88,0xd8,
-  0xcb,0xcb,0x87,0xd7,0xe8,0x77,0xce,0x14,0xe,0xf,0x42,0x28,0x1e,0x7,0x20,0xbe,
-  0x19,0x4d,0xdb,0x8d,0x9e,0x4f,0x41,0xe0,0x3e,0x82,0x7d,0x80,0xa2,0xbe,0x85,0xe5,
-  0xef,0x43,0x68,0x20,0x22,0x27,0xb5,0xb,0x12,0xdd,0x21,0xbd,0x21,0x61,0x1b,0x6a,
-  0xb9,0x26,0xda,0xde,0xde,0x8f,0xdb,0x3a,0x3c,0x4,0xfb,0x45,0x40,0x8,0xb,0x81,
-  0x6,0x24,0x91,0x74,0xac,0xbf,0xb7,0xf4,0x8,0xf7,0x93,0x82,0x12,0x39,0x4f,0xdf,
-  0xbe,0xd4,0x1f,0x67,0x1f,0xaa,0xd7,0x49,0x98,0x72,0xb6,0x30,0x95,0x80,0x30,0x71,
-  0xdb,0x61,0xc2,0xda,0x9,0xb1,0x7f,0xe5,0xe4,0x86,0xa0,0x80,0x19,0x7a,0xe,0xc0,
-  0x55,0xcf,0x63,0x5f,0x39,0x26,0xf,0x9b,0xea,0x60,0xab,0x9b,0x73,0x1c,0x1d,0x2e,
-  0x2,0x22,0xdc,0x31,0xd,0x54,0x1f,0xdc,0x66,0xea,0x9b,0xcd,0xe4,0x9d,0xfe,0xe4,
-  0x7,0x98,0xd6,0xcd,0xdb,0xc7,0xfa,0xe3,0xd8,0xa3,0xc7,0x1c,0x6d,0x60,0x4a,0xa5,
-  0xf8,0xc0,0xf6,0xda,0xf2,0xc3,0xc9,0x2c,0x48,0xc4,0x51,0x95,0x48,0x8a,0x9e,0xec,
-  0x7c,0x16,0x59,0x69,0x68,0x6e,0x6d,0xe7,0xdb,0x5,0xe,0xe8,0x48,0x42,0xfb,0x5e,
-  0x1e,0xcf,0x5a,0x7c,0x6c,0xd8,0x45,0x68,0x8f,0x9,0x3e,0x9e,0x61,0x66,0x89,0xa3,
-  0xce,0x9a,0xb4,0x98,0x71,0xcf,0xca,0x54,0x6d,0x49,0x9b,0x35,0xed,0xf2,0xe6,0x19,
-  0x34,0x6b,0xb0,0xc2,0x5a,0xd6,0x24,0x87,0xd8,0x7,0xe0,0xd3,0x1a,0x4a,0x7d,0x27,
-  0x3,0xd8,0xff,0x19,0x2c,0xa7,0x29,0xda,0x3f,0xf7,0x89,0x7f,0xd5,0xe1,0x37,0x33,
-  0x13,0x9e,0xc,0x7a,0x46,0x6e,0xc9,0x47,0xc2,0x27,0x15,0x3b,0xee,0x72,0x35,0xff,
-  0x7a,0xb6,0xab,0xa7,0x7a,0x1c,0xd2,0x4b,0xd5,0xfd,0x13,0x7d,0x21,0x81,0x3b,0x64,
-  0x3d,0xa7,0x69,0xe5,0x82,0xb4,0x9e,0xe1,0x33,0xe,0x2b,0x59,0x8b,0x3b,0x80,0x36,
-  0xa9,0x89,0x76,0xb6,0x8d,0x9c,0x67,0x7c,0x24,0xc9,0x81,0x20,0xd8,0x62,0xe,0x4d,
-  0xa6,0x5d,0x6f,0x79,0x33,0x92,0x12,0xec,0x71,0x43,0xaa,0x87,0x67,0xda,0xe1,0x66,
-  0x69,0xb1,0x1d,0xd0,0x93,0x5,0xd8,0xed,0x83,0xd3,0x14,0x15,0x89,0xb,0x48,0x33,
-  0x14,0x89,0x45,0x52,0x37,0xea,0x32,0x5b,0x78,0xb8,0x1a,0x74,0x91,0xae,0x30,0xab,
-  0x87,0x52,0xc7,0xc,0xf3,0xf7,0x3b,0x45,0xba,0xb5,0xf6,0x9a,0x7b,0xca,0xad,0xb7,
-  0xe5,0x35,0xa3,0x73,0x8e,0xd9,0x10,0x49,0x84,0x25,0xb,0x35,0x7e,0x32,0x33,0x3e,
-  0x48,0x8a,0x4d,0xa9,0x94,0x6a,0x37,0x73,0xa9,0x36,0xb6,0x9b,0x35,0xd7,0xde,0x25,
-  0xb3,0xa6,0x94,0x64,0xd8,0x63,0x18,0xfa,0x4,0x99,0x59,0x92,0x4,0xb8,0x18,0x4c,
-  0x3c,0xed,0x46,0xe4,0xa0,0xe6,0xac,0x4,0x30,0xb8,0xaa,0xd8,0x92,0x39,0xc,0xb4,
-  0xb8,0xaa,0x98,0x77,0x52,0x4a,0x60,0xe3,0xa5,0xb9,0xf7,0x6d,0x94,0xcb,0x13,0xec,
-  0x9c,0x22,0x5f,0x11,0xa6,0x42,0xca,0x60,0xe3,0x43,0x95,0x2b,0x7d,0xa,0x15,0x8b,
-  0x9,0x3b,0x2c,0x61,0xa8,0x6d,0x7f,0xc2,0x86,0x23,0xf5,0xc3,0xd4,0xab,0xc9,0x1a,
-  0xd7,0x1a,0xb4,0x8b,0x6b,0x70,0x21,0x38,0xb3,0x32,0x77,0xb9,0xaf,0x33,0xaf,0x2e,
-  0xd4,0xac,0x3c,0xb1,0xff,0x6b,0xee,0x49,0xac,0x52,0xe6,0xac,0x8e,0xf,0x15,0xa1,
-  0x1f,0xf,0x34,0x1f,0xfe,0x5b,0x2f,0xed,0xd6,0xd2,0x46,0x3e,0x23,0xaa,0xcf,0x83,
-  0xf,0x94,0x29,0x98,0xde,0x67,0xe5,0x9e,0xc,0xfa,0x47,0xb4,0x47,0x55,0x8c,0x33,
-  0x3f,0x93,0xa6,0x73,0x7e,0x21,0xc0,0x9b,0x50,0x6d,0x5d,0x13,0x3d,0x96,0xa,0xd4,
-  0xd7,0xdd,0x87,0x7d,0x28,0x21,0x97,0x83,0xfc,0xf1,0xb9,0x95,0x11,0x58,0xed,0xe8,
-  0x57,0x1f,0xdf,0x8a,0x2d,0x2b,0x78,0x9b,0x7,0x6f,0x68,0x40,0xd9,0x48,0xa5,0x7,
-  0xec,0x45,0x7a,0x2c,0x80,0xcb,0x3f,0xd5,0x28,0x80,0x8f,0x20,0x75,0x56,0x17,0xc0,
-  0xb9,0x5a,0xd9,0xb4,0x9b,0x28,0xbc,0xf1,0xb,0x97,0xc2,0x69,0x2d,0x72,0xaf,0x5a,
-  0x38,0x77,0x74,0xb2,0x2a,0x86,0x63,0x5a,0xb0,0xa,0x9c,0x5b,0xbf,0x66,0xf9,0x97,
-  0x81,0x97,0x2b,0xc0,0x5c,0x18,0x30,0x23,0x57,0x71,0x86,0xc6,0x89,0x2b,0xee,0x5,
-  0x9c,0x85,0x45,0x73,0x27,0xe4,0x2c,0xdc,0x57,0xd4,0x0,0xcf,0x43,0xce,0x58,0x7c,
-  0xd4,0x52,0x17,0x43,0x35,0xdc,0xae,0x30,0x74,0x46,0x65,0xc,0xfd,0xa8,0x6f,0x22,
-  0xaa,0xc,0x1b,0xa9,0xab,0x89,0xa5,0xa6,0x23,0xe1,0x15,0xa4,0xc6,0x74,0xb7,0xbb,
-  0xa9,0xb9,0xc8,0x6a,0x78,0x6d,0x5,0xb0,0xff,0x29,0xc0,0xea,0xfb,0xad,0x0,0x7d,
-  0xa1,0x5d,0xaa,0x7d,0x9e,0xae,0xab,0x7b,0xc1,0xad,0x79,0x5d,0xdd,0x9,0x75,0x37,
-  0x3c,0xd3,0x71,0xbb,0xe5,0x42,0x85,0x91,0xb1,0xac,0x77,0x95,0x52,0x3a,0xc,0x37,
-  0xa1,0xee,0xea,0x62,0xe5,0xe1,0x2f,0x56,0x5a,0xed,0x36,0x7a,0x8e,0xce,0xc1,0x71,
-  0x48,0x5f,0xf9,0x2e,0x7c,0xb9,0x92,0x71,0x79,0xae,0xef,0xd1,0xae,0x55,0x8a,0x31,
-  0xf7,0x3f,0xbc,0x50,0xf9,0x6d,0x9,0xf7,0x29,0xf1,0x5,0x6a,0x75,0x19,0xf4,0xb,
-  0xde,0xa5,0xac,0xd2,0xd4,0xbc,0x34,0xa5,0x1,0x22,0xfe,0x15,0x63,0x55,0x46,0x9a,
-  0x26,0x17,0x53,0x46,0x59,0xfe,0x19,0x6f,0xe2,0x95,0xe8,0x69,0x63,0xd7,0x2b,0x87,
-  0x8e,0xa6,0xc7,0x3b,0xf1,0x9d,0x77,0xb2,0x6b,0x59,0x7c,0xc5,0x39,0xcf,0x8f,0x35,
-  0x4d,0xf5,0x57,0x99,0xe9,0xd,0xb,0xfe,0x99,0xd8,0xeb,0x2c,0xbb,0x94,0x96,0x71,
-  0xd0,0x9c,0xfc,0x44,0xc8,0x42,0x77,0x3d,0x79,0x3e,0xad,0xb2,0xcc,0x12,0x8e,0x9d,
-  0xcf,0xf9,0x41,0x54,0xcb,0xc,0x89,0xf0,0xb1,0x24,0xd3,0xb3,0xe7,0xb,0x41,0xba,
-  0x44,0x9c,0xf2,0x71,0xdc,0xfe,0xd0,0x47,0xcf,0xd3,0xdf,0x57,0x4d,0xc3,0xed,0x41,
-  0xe,0x9b,0xb3,0x3f,0xd5,0x8a,0xff,0xde,0x36,0xfe,0x5,0xd8,0xff,0xb1,0xc1,
+  0x0,0x2e,0xef,0x78,0x9c,0xed,0x5a,0x5b,0x77,0xd3,0x38,0x10,0x7e,0xf7,0xaf,0x10,
+  0xe6,0xa5,0xe9,0x61,0xed,0xf4,0x6,0x6c,0xba,0x5c,0xd3,0x2,0x3d,0xb4,0x5,0xda,
+  0xed,0xf2,0xb8,0x47,0xb1,0x95,0x44,0xd4,0x91,0x82,0x24,0x37,0xd,0xd0,0xff,0xbe,
+  0x23,0x5f,0x12,0x5f,0xe4,0xd8,0x49,0x5b,0x38,0xbb,0x9b,0xc9,0xe9,0x69,0x2c,0x8d,
+  0x47,0xf2,0xcc,0xe8,0xd3,0x37,0x8a,0xdd,0x4d,0xeb,0xe5,0x15,0x11,0x92,0x72,0xd6,
+  0x41,0x6d,0x67,0xdb,0x7a,0x89,0x43,0x35,0xe4,0xa2,0x83,0xce,0x43,0x7f,0x48,0x88,
+  0x40,0xef,0x1d,0xf4,0x87,0xf4,0x68,0x9f,0x6e,0xfd,0xbe,0xfb,0x4,0x61,0x85,0x6,
+  0x23,0x4c,0x3,0xc7,0xe3,0xa3,0xe7,0xd6,0xcb,0x80,0x7a,0x84,0x49,0xd2,0x41,0x6f,
+  0x4f,0x2f,0xd0,0x5b,0xc2,0x88,0xc0,0x1,0xfa,0x18,0xf6,0xa0,0x1d,0x1d,0xc7,0x7d,
+  0xd6,0xa6,0x6b,0x59,0x74,0x34,0xe6,0x42,0xa1,0x4f,0xa,0xed,0x3a,0x4f,0xd2,0x2b,
+  0xfb,0x98,0xf6,0x4,0x16,0x53,0xf7,0x8b,0x74,0xf,0x5e,0x5f,0x28,0x1a,0x50,0x35,
+  0x75,0xbe,0x48,0x1b,0x61,0x89,0x66,0xd,0x96,0x75,0xa4,0xc8,0x8,0x7d,0xb7,0x10,
+  0x8,0xf5,0x3b,0xc8,0xe3,0xac,0x4f,0x7,0x1f,0xb1,0xc0,0x23,0xa2,0x60,0xea,0x5d,
+  0xe,0xe6,0x18,0x61,0x2a,0xd2,0x18,0xb,0x3e,0x26,0x42,0x4d,0x51,0x8f,0xf3,0x0,
+  0x85,0x63,0x1f,0x2b,0xf2,0x46,0x90,0xaf,0x87,0xc,0xf7,0x2,0xe2,0xe7,0x75,0xa4,
+  0x12,0x94,0xd,0x50,0x46,0xed,0x84,0xb2,0x4a,0x33,0x9f,0x9,0xb9,0xf4,0xf1,0x54,
+  0x7e,0x60,0xc1,0x34,0x52,0x72,0x5d,0x93,0xda,0x7,0x76,0x8e,0xaf,0x88,0x7f,0x4a,
+  0xd4,0x84,0x8b,0xcb,0xb9,0x76,0x69,0x54,0x21,0xe5,0xc5,0xd9,0x71,0x7,0xd9,0x43,
+  0xa5,0xc6,0x1d,0xd7,0xed,0x53,0x86,0x99,0x47,0x9c,0x29,0x1e,0x72,0xae,0x1d,0xec,
+  0x82,0x86,0xab,0xf8,0x18,0x3a,0xa4,0xe2,0x82,0x12,0x69,0x47,0x96,0x24,0x1d,0x30,
+  0xf0,0x73,0xc0,0x7,0x67,0xe4,0x6b,0x48,0xa4,0xda,0x48,0x4c,0xc2,0xbf,0x13,0x22,
+  0x25,0x1e,0x90,0x96,0x15,0x69,0x9e,0x11,0x4f,0x61,0x36,0x8,0x48,0xe2,0xbf,0xd4,
+  0x87,0xf1,0x4c,0xbb,0x91,0x27,0x67,0x1d,0x30,0x38,0x44,0x5e,0x3a,0x7d,0x1a,0x4,
+  0x1d,0x34,0xc6,0x22,0xf5,0xa9,0x16,0x8f,0x7,0x90,0x15,0xf6,0xc3,0x9d,0x5d,0xfd,
+  0xb1,0xad,0x59,0xc7,0xcc,0xfd,0xe,0x67,0xfa,0x7b,0x0,0x41,0x81,0x11,0xe6,0xe3,
+  0xa5,0x32,0xf,0x31,0x65,0x54,0x51,0x1c,0xd0,0x6f,0x64,0xa3,0xb5,0x5f,0xd2,0xb,
+  0x38,0xf6,0xcf,0x89,0x52,0xf0,0x40,0x32,0xdb,0x7f,0x63,0x1e,0xf3,0x0,0x9e,0x5f,
+  0x84,0x9e,0xd2,0x19,0x9c,0x1f,0x34,0xe3,0x1f,0x1b,0x42,0x12,0x39,0x28,0xb1,0x6b,
+  0x17,0xc6,0x95,0x10,0xb1,0x9a,0x31,0xfb,0x21,0x8b,0x6,0x29,0xcc,0x2f,0x3f,0xe4,
+  0x15,0x16,0xf0,0x17,0x84,0x64,0xbf,0xd0,0xc,0x4d,0x8,0x3d,0xcb,0xf8,0x60,0x40,
+  0x54,0x62,0x64,0xc3,0xbe,0x98,0xa5,0x1f,0x61,0xde,0xb4,0x38,0x37,0xda,0x47,0x1b,
+  0xf,0x62,0xb,0x3f,0x7e,0x24,0xa6,0x9e,0x3d,0x43,0x76,0xdb,0x69,0xdb,0xd9,0x16,
+  0x68,0x8a,0xae,0xa9,0x3c,0xc5,0xa7,0x1b,0x51,0x6b,0xab,0x55,0xe,0x43,0xe5,0xf2,
+  0x71,0x4a,0x8b,0x5,0x26,0xdc,0xc7,0x81,0x2c,0x3c,0xcc,0x4d,0xee,0x8a,0x40,0xff,
+  0x6d,0x7,0x81,0xf8,0x91,0x72,0x1e,0x34,0xb1,0x1,0xcb,0x15,0xee,0x87,0x54,0x95,
+  0xe4,0x88,0xa9,0xe4,0xa1,0x17,0x4d,0xb7,0x51,0x24,0xb2,0xb,0xfd,0x36,0xd1,0x58,
+  0xc1,0xfb,0xd9,0xa1,0xef,0xcf,0xfd,0x85,0x51,0xca,0xfe,0x87,0xbc,0x77,0x37,0x97,
+  0x77,0x9c,0x1,0xfa,0x7e,0xb2,0xff,0xc,0x33,0xb8,0x3f,0x37,0x9a,0x7,0x33,0x79,
+  0x53,0xef,0x81,0x4b,0x78,0xf3,0xec,0xfc,0x1c,0x76,0x86,0xa6,0xae,0xbb,0x60,0x97,
+  0x8c,0x4f,0x58,0x13,0xf7,0xb9,0x6e,0xf5,0x33,0xc5,0xdb,0x11,0xcc,0xa9,0x5a,0xc5,
+  0x27,0x7d,0x1c,0x6,0xa,0xa6,0xf7,0x86,0x10,0xff,0x2e,0x1d,0x3a,0x1b,0xdc,0x80,
+  0x9e,0x37,0xb,0xe1,0x38,0xf,0xdd,0xdf,0x4b,0x1e,0x8b,0xe1,0xb0,0x21,0x98,0xb4,
+  0x5a,0xb,0xb6,0x2d,0x59,0xd,0xd9,0x8f,0xec,0x62,0xb0,0xb4,0x3,0x56,0xb4,0xd5,
+  0x74,0xae,0xfb,0xf9,0x9c,0x5a,0x64,0x3c,0x87,0x68,0x8f,0x6a,0xbd,0x91,0x55,0x7f,
+  0xb1,0xd5,0x69,0xb7,0xa,0xf,0xe7,0xba,0x8b,0x6,0x33,0xa1,0x40,0xfd,0x98,0x86,
+  0xbb,0x4c,0x43,0x9b,0x7,0x4e,0x16,0xcc,0x2,0xd7,0xc5,0x9,0x66,0xde,0xda,0xff,
+  0x24,0xd7,0xaa,0x40,0x58,0x34,0x49,0x62,0x64,0x22,0xcf,0x49,0x94,0x65,0xc7,0xb8,
+  0x47,0x82,0x9c,0x42,0x4a,0x96,0x80,0x9e,0xa5,0x5c,0x49,0x7f,0x37,0xea,0x4,0xa4,
+  0xaf,0x66,0x4a,0xfa,0xa2,0x52,0xeb,0x4,0x8b,0x1,0x5,0x26,0xbe,0xb3,0x97,0x53,
+  0x19,0x12,0x3a,0x18,0x82,0x89,0xbd,0x76,0xbe,0x19,0x38,0xe1,0x37,0xce,0x14,0xe,
+  0x5e,0x5,0x40,0x9,0x47,0x60,0xbe,0x13,0x3d,0x8c,0x13,0x5d,0x1f,0x83,0xc1,0x7d,
+  0x4,0xec,0x5e,0x51,0xaf,0x42,0xe5,0xaf,0x2e,0x34,0x10,0x91,0xb3,0xda,0x7,0x8b,
+  0xce,0x98,0x5e,0x93,0xe0,0x1c,0x18,0x5a,0x7,0x6d,0x6f,0xef,0xc7,0x6d,0x3d,0x1e,
+  0x80,0x57,0x22,0x78,0x83,0xf4,0xa6,0x3e,0x49,0x2c,0x1d,0xea,0xef,0x67,0x7a,0x86,
+  0xfb,0x9,0x4d,0x44,0xf6,0xc3,0xd7,0x4f,0xf5,0xc7,0xde,0x7,0x4e,0x3a,0xd,0x52,
+  0xcd,0x33,0x4c,0x25,0xe0,0x46,0xdc,0xd6,0x4d,0x54,0x7b,0x1,0xf6,0x2e,0xed,0xdc,
+  0x14,0x14,0x28,0x43,0xcf,0x29,0x4,0x0,0x69,0xa4,0xb1,0x4d,0x51,0x33,0x71,0x5b,
+  0x43,0xe8,0x72,0x7d,0x3d,0x2e,0x7c,0x22,0x9c,0x9,0xf5,0xd5,0xb0,0x83,0xb6,0x4c,
+  0x7d,0xf3,0x27,0x78,0xa3,0x3f,0xf9,0x89,0xa5,0x2c,0x78,0xfb,0x50,0x7f,0xec,0xea,
+  0x8c,0x28,0xe6,0xe,0x38,0x4f,0x29,0x3e,0xaa,0xba,0x21,0x8d,0xfb,0x56,0xfb,0xae,
+  0x12,0xc8,0x6c,0x48,0xc4,0x79,0x94,0x58,0x8a,0xae,0xaa,0xf5,0x2a,0x6c,0xa5,0xc9,
+  0xf8,0x38,0xdf,0x2c,0xb0,0x4f,0x43,0x9,0x8f,0xb0,0x97,0x87,0xa5,0x33,0x3e,0x31,
+  0x14,0x3,0x3a,0x48,0x82,0x4f,0xe2,0x75,0x6b,0xd8,0xa6,0x9a,0x2c,0xaf,0x92,0x66,
+  0x3a,0xe1,0xbd,0x92,0x5a,0xaa,0x94,0x2e,0x86,0x38,0xed,0x67,0x96,0xf3,0xcd,0x95,
+  0x77,0x2f,0xe,0x43,0x51,0xb3,0x7e,0x36,0x75,0xd1,0xd0,0x52,0xb1,0xf4,0xb5,0xc8,
+  0x31,0xf6,0x0,0xfd,0xf4,0x8,0xa5,0x3e,0xbd,0xdc,0xca,0x5e,0xcf,0x18,0x4c,0x6,
+  0x8d,0xaf,0xcc,0x8a,0xf7,0x82,0x2e,0xa9,0x94,0x50,0xa6,0x9d,0x43,0x99,0x98,0xb1,
+  0x55,0xc2,0xcc,0x2a,0xa0,0x92,0x4a,0x2,0x2e,0x90,0x7a,0x28,0x2e,0xbf,0x8d,0x5a,
+  0x33,0x18,0xe8,0x47,0x62,0x97,0xeb,0x93,0x9b,0xb2,0xd7,0x33,0x27,0x15,0x15,0x6e,
+  0x47,0xbb,0xe5,0x38,0x6a,0x71,0xdd,0x6c,0x49,0x1e,0x3,0x14,0x7a,0x9e,0xab,0xd3,
+  0x93,0x58,0xbd,0x30,0xde,0x9f,0x20,0x5a,0x9a,0x4b,0xd1,0xe5,0xe6,0x8e,0xbb,0x6b,
+  0x54,0x7e,0x1d,0x21,0xdd,0xd1,0x8,0xf,0x0,0x3b,0x91,0xe4,0xa1,0xf0,0xc0,0x99,
+  0xb3,0xe3,0x18,0xaa,0x3b,0xa4,0x1b,0x50,0x6,0xd0,0x4b,0x95,0x23,0x3d,0xa,0x38,
+  0x6e,0x3a,0x1d,0x28,0x90,0xbe,0x54,0x74,0x58,0x8e,0xd8,0x38,0xac,0xc8,0x40,0x2d,
+  0x7a,0xfd,0xab,0x6b,0x55,0xb1,0xfe,0x8b,0x4e,0xab,0x4f,0x56,0x2d,0xcd,0x97,0xa9,
+  0xe9,0x8e,0xa,0x8,0x36,0xa9,0x37,0x59,0xb7,0xc5,0x7b,0x56,0x43,0x9e,0x54,0xfa,
+  0xdc,0xd3,0xd8,0xaa,0xf7,0xde,0x4a,0x9d,0x38,0xaf,0xeb,0x18,0x50,0xb5,0xaf,0xeb,
+  0x97,0xfb,0x82,0xe9,0xe5,0x17,0xf3,0xd6,0xd3,0xea,0xc0,0xeb,0xbc,0x38,0x21,0x6a,
+  0xc8,0xfd,0x77,0x94,0x29,0x78,0xa8,0x4f,0xca,0x39,0x1a,0xd,0x4f,0xf9,0xab,0x50,
+  0xf1,0x8b,0xf1,0x98,0x8,0xf,0x4b,0xa8,0x70,0x92,0xf6,0x8f,0x82,0xf4,0x89,0x38,
+  0xe6,0x93,0xb8,0xbd,0xd2,0x2e,0x67,0x7a,0xae,0xdd,0x21,0x30,0x2,0xf3,0xf1,0x53,
+  0x56,0x1a,0xd4,0x21,0xb3,0xe4,0x74,0xb4,0x5f,0xcb,0xab,0x3f,0x15,0xf3,0xa,0x28,
+  0xb7,0xe6,0x5b,0x8c,0x25,0x4d,0x5,0xd,0xc5,0x91,0x5f,0x34,0xe,0x34,0x23,0xa3,
+  0x19,0xea,0x61,0x62,0x1d,0xc6,0x1d,0xf3,0xee,0x78,0xc7,0x9a,0xb8,0x42,0x8f,0x4e,
+  0xe5,0xdf,0xe2,0x98,0x2d,0x4d,0x5d,0x4b,0xe1,0xfe,0x35,0x4,0xd6,0x9c,0x75,0xff,
+  0x41,0x1a,0xbb,0xb5,0x7d,0x7,0x3c,0x76,0x5e,0xc2,0x57,0x92,0xbd,0x3a,0x26,0xbb,
+  0x14,0x8f,0xfd,0x17,0x31,0xd1,0x84,0x66,0x18,0x61,0x32,0xfa,0x39,0x67,0x48,0xbc,
+  0xcb,0x1e,0xbf,0x9e,0xbb,0xf0,0x68,0x34,0x30,0x6a,0xa7,0x44,0x65,0x89,0xc3,0xe5,
+  0x17,0x25,0x56,0x93,0xe,0xf7,0x77,0xf4,0x85,0xf8,0xce,0x98,0xd,0xec,0x4e,0xa5,
+  0x56,0xc8,0xb2,0x7a,0x8b,0xa8,0xd7,0xe,0xa0,0x4d,0xea,0xa2,0x9d,0x6d,0xa3,0xe6,
+  0x9,0xf,0x25,0x79,0x25,0x8,0x5e,0xb0,0x3d,0x99,0x68,0x56,0xf5,0xee,0xc3,0x59,
+  0x37,0xa0,0x7a,0x7a,0xab,0xef,0x78,0xa6,0x3,0xf9,0x7,0x4b,0xa8,0x57,0x4f,0x4e,
+  0x4b,0x74,0x66,0xb9,0x84,0x35,0xc3,0x99,0x65,0x51,0x60,0x67,0xbe,0xc8,0x9e,0x83,
+  0x45,0x1b,0x34,0xd2,0x7,0x9e,0x8b,0xa7,0xd2,0xc4,0xd,0xf5,0xc7,0xef,0x45,0x31,
+  0xef,0xff,0xd5,0x3d,0x26,0x66,0xb0,0xae,0xde,0x96,0xae,0xde,0xe,0x61,0xea,0xd3,
+  0xc5,0xa5,0xdb,0x72,0x30,0x91,0xd6,0x79,0xa8,0x33,0xa7,0x0,0x35,0x24,0x4e,0xcb,
+  0xea,0x15,0x5f,0x2,0x1b,0x4f,0xcd,0xbd,0x3f,0xaf,0x44,0x33,0xf5,0x6a,0xa9,0x2b,
+  0xdd,0x72,0x6b,0x70,0x29,0x38,0xbb,0xd7,0x2a,0xa7,0xfc,0x53,0xbe,0x49,0x6a,0x56,
+  0xc7,0xbb,0xda,0x72,0xec,0xd6,0xf5,0xce,0x1,0x1d,0x50,0x15,0xe3,0xcc,0x8f,0x59,
+  0x9,0x4,0xc5,0x8e,0x4f,0x81,0x6d,0x5d,0x11,0x3d,0x97,0xfb,0xae,0x75,0x8a,0x3f,
+  0xa3,0x1a,0x81,0xf5,0xae,0x2b,0x1f,0x2d,0x6b,0x78,0xab,0x83,0x37,0x34,0xa2,0x2c,
+  0x54,0xe9,0xfb,0x1e,0x45,0xf9,0x59,0x0,0x97,0xbf,0x6a,0x40,0x80,0xf,0x60,0xeb,
+  0x5c,0x4c,0x80,0x73,0x5c,0xd9,0x54,0x4d,0x14,0xee,0xf8,0x1f,0x53,0xe1,0x94,0x8b,
+  0xdc,0x8a,0xb,0xe7,0x7e,0xc9,0x5b,0x93,0xe1,0x58,0x96,0x64,0x81,0xb5,0xfc,0x35,
+  0xab,0x7f,0x17,0x78,0xb9,0x6,0xcc,0xa5,0x1,0x33,0xa,0x15,0x67,0x68,0x92,0x84,
+  0xe2,0x56,0xc0,0x59,0x58,0x34,0x2b,0x21,0x67,0xe1,0xf5,0x99,0x6,0xe0,0xd9,0xe5,
+  0x8c,0xc5,0x47,0x2d,0x4d,0x31,0x54,0xc3,0xed,0x1a,0x43,0xe7,0x52,0xc6,0xd0,0xf7,
+  0xfa,0xc5,0x98,0x45,0x8e,0x8d,0x86,0x6b,0x88,0xa5,0xa6,0x37,0x14,0xd6,0x90,0x1a,
+  0xcb,0x6a,0xaf,0x4a,0xd5,0x22,0xab,0xe1,0xb6,0x35,0xc0,0xfe,0x52,0x80,0xd5,0xaf,
+  0x5b,0xf9,0xe8,0x33,0xed,0x53,0x1d,0xf3,0x74,0x5d,0xdd,0xa,0x6e,0xcd,0xeb,0x6a,
+  0x25,0xd4,0xdd,0x74,0xad,0x7c,0x97,0xeb,0xbe,0x23,0x22,0xae,0x26,0x6f,0xac,0x1b,
+  0xeb,0x1f,0x71,0xc7,0xdf,0x75,
     // /home/sudheer/marketstoday/marketstoday-0.3/src/qml/StockDetailsComponent.qml
-  0x0,0x0,0xd,0x72,
+  0x0,0x0,0xe,0x64,
   0x0,
-  0x0,0x50,0x4d,0x78,0x9c,0xed,0x1b,0x6b,0x73,0xdb,0x36,0xf2,0xbb,0x7e,0x5,0xca,
-  0xce,0xd9,0x72,0xe5,0xe8,0x15,0xbb,0x4d,0xa5,0xaa,0x69,0x6b,0xbb,0x89,0xa7,0xb6,
-  0x93,0xda,0x4e,0x72,0x9d,0xce,0x7d,0xa0,0x44,0x48,0x42,0x4d,0x91,0xa,0x41,0xd9,
-  0x56,0x32,0xfe,0xef,0xb7,0xb,0x10,0x14,0x1f,0x0,0x49,0xa9,0x4e,0x62,0x5f,0xf,
-  0x9a,0xb1,0x25,0x62,0x1,0xec,0xb,0xfb,0x2,0xd8,0xfa,0xa6,0xf6,0xd3,0x35,0xd,
-  0x38,0xf3,0xbd,0x1e,0x69,0x37,0xbb,0xb5,0x9f,0xec,0x45,0x38,0xf5,0x83,0x1e,0xb9,
-  0x58,0x38,0x53,0x4a,0x3,0xf2,0x5b,0x93,0xfc,0xc0,0x47,0x6c,0xcc,0x3a,0xdf,0xef,
-  0x7d,0x47,0xec,0x90,0x4c,0x66,0x36,0x73,0x9b,0x23,0x7f,0xf6,0x63,0xed,0x27,0x97,
-  0x8d,0xa8,0xc7,0x69,0x8f,0xbc,0x38,0x7b,0x43,0x5e,0x50,0x8f,0x6,0xb6,0x4b,0x5e,
-  0x2f,0x86,0xf0,0x9c,0x9c,0xc8,0xbe,0xda,0x37,0xad,0x5a,0x8d,0xcd,0xe6,0x7e,0x10,
-  0x92,0xdf,0x43,0xb2,0xd7,0xfc,0x4e,0xfd,0xb2,0x4e,0xd8,0x30,0xb0,0x83,0xa5,0x45,
-  0x6c,0x4e,0xa2,0xef,0xb5,0xda,0x71,0x48,0x67,0xe4,0x63,0xad,0x46,0xa0,0xdd,0x30,
-  0x27,0x9c,0xf6,0xc8,0xb3,0x76,0x5b,0xfc,0x9c,0x52,0x36,0x99,0x86,0x3d,0xf2,0xf4,
-  0x59,0x5b,0xf6,0x33,0xa7,0x47,0x78,0xe8,0x8f,0xae,0xe,0x69,0x8,0x48,0xf1,0x8b,
-  0x51,0x40,0xa9,0x27,0xba,0xe6,0x81,0x3f,0xa7,0x41,0xb8,0x24,0xcc,0xb,0x9,0x20,
-  0x3b,0xf7,0x3d,0xea,0x85,0xef,0xe4,0x84,0x62,0xde,0x3c,0x18,0x83,0xa5,0x5f,0x46,
-  0x6b,0xec,0xb7,0xd3,0xfd,0x3c,0xc,0x98,0x37,0x21,0x7c,0x39,0x1b,0xfa,0x6e,0x8f,
-  0x58,0x7f,0xbc,0x7c,0xf5,0xca,0xd2,0x83,0x20,0x42,0x67,0xf6,0xc,0xb8,0x62,0xe9,
-  0x21,0x5c,0x9b,0x87,0x97,0x81,0xed,0x50,0xe7,0x75,0x0,0x4c,0xaa,0x0,0x77,0x68,
-  0x87,0xf4,0x92,0x15,0x4c,0x39,0x9a,0xda,0xde,0xa4,0xac,0xfb,0x35,0xd,0x40,0x24,
-  0xa1,0x5d,0x0,0xe8,0xd8,0x4b,0x7e,0x5e,0x38,0xd5,0x92,0xda,0x41,0x31,0xc4,0xcc,
-  0xe,0xae,0x68,0xf8,0xd6,0x77,0x17,0x5,0x8,0xcf,0x3,0x7a,0x7d,0xe0,0xfa,0xbc,
-  0x6c,0x9a,0x3,0x7b,0x6e,0x84,0x18,0xda,0x9c,0x1e,0x4c,0xed,0x20,0x7c,0x73,0x7e,
-  0x2,0x40,0xd3,0x30,0x9c,0xf7,0x5a,0xad,0x11,0x3e,0x69,0x8e,0x99,0x67,0x7b,0x23,
-  0xda,0x5c,0xda,0x53,0xdf,0x47,0x6d,0x6d,0x7d,0x78,0xfe,0x7e,0xb0,0xe5,0xe,0xb6,
-  0x3e,0xc,0x66,0x5b,0xf3,0x1,0xdf,0xb2,0x7,0xd7,0xe2,0xbf,0xb,0xc4,0xc,0xa8,
-  0xf7,0xe4,0xcd,0xc5,0x56,0x40,0x27,0xb0,0x11,0x6,0x6f,0x2e,0x8c,0x5c,0x54,0x6b,
-  0xe9,0x1,0x2,0xce,0x55,0xb7,0x46,0x9,0x17,0x41,0x0,0xdc,0x97,0x3a,0x7a,0xec,
-  0x39,0xf4,0xb6,0x47,0x3a,0x12,0x8e,0xb3,0x89,0x7,0x1b,0xc7,0xf5,0x27,0xe7,0xf4,
-  0xfd,0x82,0xf2,0xb0,0x1e,0xeb,0x52,0x70,0x4a,0x39,0x7,0x89,0xed,0xa4,0x1,0x6d,
-  0x47,0x10,0xae,0xe0,0x9c,0x45,0x60,0x87,0x80,0x7a,0x6,0x6a,0x74,0x75,0xec,0x9d,
-  0xd8,0x9e,0xc3,0x47,0xf6,0x9c,0xd6,0x53,0x9d,0xb,0xf,0xbb,0x5f,0x5,0xc,0x15,
-  0x2,0x87,0x42,0xb7,0xe8,0x3f,0xa7,0xa3,0x10,0x38,0xe2,0x52,0xd8,0x84,0x24,0x6a,
-  0xc0,0x49,0xb0,0x9,0x1c,0x98,0xea,0x82,0xee,0xcf,0x6d,0xa4,0x23,0xee,0x1c,0xf9,
-  0x2e,0xd8,0xb,0xeb,0xeb,0xa7,0x7b,0xf8,0xb1,0xe2,0xe7,0xb8,0x39,0x1d,0xb9,0x2f,
-  0x71,0xce,0x5a,0xdc,0x11,0x6d,0xf5,0xe6,0xc1,0x2,0xb6,0xca,0xec,0x5,0x90,0xbb,
-  0x8,0xe8,0xcf,0x1,0xb5,0x13,0x2b,0x96,0xae,0x8a,0xcd,0xf7,0x2e,0x6e,0xd8,0x9c,
-  0x9e,0xd0,0x71,0x98,0x5a,0xaa,0xc9,0x6f,0x58,0x38,0x9a,0x4a,0x4e,0x47,0x64,0x67,
-  0xc6,0x9c,0xcb,0x5d,0x5e,0x61,0xd0,0xdd,0xa,0xf1,0x3,0x65,0x46,0x9a,0xbe,0x87,
-  0xdf,0x5d,0x1a,0x52,0x20,0xf2,0x23,0x29,0x6f,0x29,0x1c,0xd8,0x98,0xd4,0xa5,0x21,
-  0x21,0x5f,0xd,0x6,0xa0,0x2d,0x3b,0x19,0xca,0xb1,0xa1,0x8c,0x23,0xb3,0x56,0xdf,
-  0xe9,0x6b,0xbb,0xcf,0xe8,0x8d,0xb6,0x4f,0xe9,0x29,0x19,0xa4,0xb6,0x48,0xc3,0xda,
-  0xa,0x7,0x1d,0x67,0x8b,0xf,0xac,0x86,0x5c,0x3e,0x3d,0xf4,0x4e,0x47,0xf3,0x78,
-  0xe1,0x8d,0x50,0x3d,0x48,0x9a,0x3d,0x69,0x7c,0x65,0x1f,0xa9,0xe7,0x55,0x3c,0x3,
-  0x38,0x2,0x74,0x48,0xa7,0x97,0xc3,0x38,0x6f,0xc4,0x9b,0x39,0xed,0xcd,0xd3,0x99,
-  0x1c,0x75,0x2,0xfc,0xa0,0x41,0x93,0xfb,0xb,0xb0,0x71,0xb1,0xa0,0x80,0x3,0x2,
-  0x48,0xb0,0x20,0x7e,0xaa,0xe1,0x58,0xe,0x71,0x18,0xa9,0x79,0xd8,0x20,0x9d,0xfc,
-  0xe0,0x21,0xa8,0xee,0x55,0x3f,0x4f,0x67,0xb7,0x12,0x9d,0x9a,0x8d,0xf8,0x77,0x28,
-  0x8d,0x80,0xee,0x81,0xd6,0x27,0x15,0x69,0x75,0xe8,0xd8,0x5e,0xb8,0x61,0x9e,0xd8,
-  0x56,0xeb,0xd0,0x27,0x67,0x7e,0x38,0x5,0xb,0x65,0x50,0x34,0x6c,0x9,0xab,0x67,
-  0x69,0x71,0xb3,0x1a,0x1a,0xbd,0xea,0x17,0x2a,0x6b,0x6a,0xf3,0xa4,0x55,0xf0,0xda,
-  0xe,0x8,0xac,0x16,0x2c,0xe5,0x6,0xd9,0x8e,0xbc,0x86,0x78,0x24,0xbd,0x85,0x3d,
-  0x67,0x5c,0x78,0x8c,0xeb,0x4e,0x6b,0x2e,0x62,0x99,0xd6,0xf2,0xbd,0xb,0xde,0x83,
-  0x53,0x17,0xc,0x5,0xb9,0x10,0x7b,0x67,0x17,0x5d,0xfc,0xee,0x89,0x72,0xd1,0xc2,
-  0x93,0xbf,0xf2,0xdc,0xe5,0xea,0x11,0x3a,0xed,0xd5,0x2f,0x74,0xdf,0xbb,0x7,0xc2,
-  0xf,0x47,0xff,0x98,0x17,0x39,0xe4,0xdd,0x43,0xe5,0x75,0x77,0xff,0x50,0xde,0x75,
-  0x57,0xfa,0xcf,0xdd,0xd7,0xe0,0x27,0x99,0xbf,0xe0,0xc2,0x57,0xee,0x9e,0x2a,0x9f,
-  0xc8,0x42,0xdb,0x65,0x1f,0x84,0xbe,0x90,0x71,0xe0,0xcf,0x88,0xf4,0x73,0xca,0xeb,
-  0xbd,0x5f,0xf8,0x21,0xe5,0xe4,0x66,0x4a,0x3,0x1a,0xc5,0x2c,0xe0,0x83,0x48,0xdd,
-  0xda,0x8e,0x76,0x7e,0x63,0xdb,0xda,0xd9,0xa2,0xde,0xf5,0x0,0x94,0x26,0xa0,0x40,
-  0xbf,0x63,0x83,0xf6,0xd9,0x43,0x97,0xf2,0xa6,0x1f,0x4c,0x5a,0xb6,0xeb,0xca,0x5f,
-  0xb0,0xb3,0xa7,0x57,0x74,0xc9,0xb7,0xfb,0x46,0xa1,0xa1,0x42,0xc6,0x81,0x8f,0x32,
-  0xa9,0x12,0x2b,0xab,0xa1,0x58,0x9d,0x51,0x6a,0x94,0x42,0x40,0x39,0xe8,0x28,0x6c,
-  0x94,0x1,0xf1,0xe8,0xd,0xf9,0xf7,0xe9,0xc9,0x4b,0x90,0x85,0x9a,0x36,0x33,0x40,
-  0x1,0x83,0xe9,0x5,0x15,0x74,0x96,0x1c,0xd0,0xa5,0x32,0xac,0x81,0xf1,0x4a,0xf0,
-  0x75,0x9d,0x25,0x45,0x73,0x1b,0xf,0x17,0x83,0x2f,0x70,0x30,0x1,0xd3,0x9b,0x5e,
-  0xb3,0x79,0xf8,0xea,0xec,0x48,0x37,0x83,0x44,0x60,0xc,0x93,0x4c,0x95,0x56,0x25,
-  0x26,0x94,0x5f,0x60,0x2a,0xcd,0xc6,0xbd,0xcb,0x28,0xbe,0x81,0xa6,0x39,0xd8,0x54,
-  0xeb,0xc5,0xd1,0xa5,0xb5,0x4b,0xc,0xc,0x8b,0x61,0x39,0xf5,0x9c,0x7a,0x5,0xf5,
-  0x97,0xce,0x21,0x4d,0x8b,0x8c,0x4f,0x70,0x4b,0x45,0x5a,0x3f,0xa6,0xd4,0xe1,0x9a,
-  0x58,0x9,0x0,0x5b,0xdd,0x66,0xbb,0x35,0x5,0x6e,0xb9,0xcc,0xa3,0xcf,0xe3,0xc8,
-  0x28,0x19,0x2e,0x99,0x1c,0x89,0x4e,0x39,0x40,0xc2,0xb1,0x4e,0x48,0x34,0xfe,0x57,
-  0x34,0x2,0x19,0x7d,0xea,0x3b,0xd4,0xfd,0x74,0x3a,0xa1,0x65,0xd8,0x5a,0x1a,0x61,
-  0xd0,0x5e,0x44,0x30,0x4d,0x1c,0xb2,0xe6,0xab,0x64,0x37,0xc,0x85,0xf8,0xcc,0xcb,
-  0xb,0xeb,0x76,0xe6,0x1e,0xfa,0x23,0x60,0x75,0x2,0xba,0xe9,0xf8,0x23,0xb0,0x5a,
-  0x5e,0x78,0xe4,0xd2,0x59,0xce,0xfb,0x44,0x22,0x6,0x67,0xc1,0x61,0x98,0x1c,0xf,
-  0xca,0x17,0xf0,0xf0,0x60,0xca,0x5c,0xa7,0x5f,0xcb,0x61,0x12,0x41,0xeb,0x24,0x20,
-  0xed,0x38,0x98,0xb9,0x33,0xe0,0x3d,0x97,0x68,0x20,0x6c,0x73,0x84,0x73,0x89,0x87,
-  0x79,0xd6,0xe3,0x9c,0xab,0x41,0x3b,0x7a,0xb9,0xa6,0x81,0x9a,0x2e,0xf5,0x26,0xe1,
-  0x14,0x74,0x63,0x40,0xda,0x26,0x55,0xc0,0x96,0xd4,0xfa,0x33,0x3f,0x26,0x74,0xec,
-  0x7,0x91,0x65,0x14,0x73,0x2a,0xfb,0x68,0x69,0x14,0x3,0xdb,0x9d,0xf6,0x29,0x75,
-  0x39,0x35,0xaf,0xdc,0x6a,0xbd,0xa3,0x4,0xc2,0x63,0x8,0x6e,0xdd,0x25,0xa1,0xb7,
-  0x73,0xf0,0x52,0xb8,0xe7,0x20,0x0,0x88,0x16,0xf5,0x80,0x12,0x2,0xa9,0x48,0xe4,
-  0xb,0x9a,0xc6,0xa9,0x62,0xae,0x46,0x2,0x44,0xc6,0xae,0x78,0xf1,0x67,0xfb,0x3f,
-  0x85,0xec,0x4d,0xce,0xf2,0x17,0x8c,0x6c,0x17,0x83,0xa4,0xf3,0x5b,0x34,0x4b,0xa0,
-  0xeb,0xab,0x87,0xe8,0x31,0xc9,0xc0,0xb2,0xcc,0x93,0x20,0x6f,0xeb,0x72,0x21,0x58,
-  0xef,0x87,0x34,0xe6,0x91,0xe0,0xa0,0xa7,0xd1,0xd8,0xf9,0x58,0x33,0x4e,0x82,0x2d,
-  0x16,0xb9,0x1a,0xfc,0xe7,0x5f,0x49,0x4a,0x81,0xee,0x22,0xc9,0xab,0xa6,0xc2,0xe0,
-  0xdc,0x4c,0xc8,0x7e,0xc,0x17,0xc,0xa,0x97,0x6d,0x22,0x7a,0xdc,0xc6,0x1,0xdb,
-  0xf9,0xa8,0xca,0xb8,0xb8,0x2a,0x3b,0x28,0x89,0x19,0x49,0x11,0xe8,0xbc,0xb5,0xdd,
-  0x5,0x35,0x73,0x36,0xdb,0x34,0x71,0x5f,0x31,0xf6,0xf9,0xc0,0x68,0xd,0x5a,0x32,
-  0x5,0x92,0x7,0x46,0x11,0x2a,0xeb,0x46,0xc4,0x44,0x5a,0xfe,0x90,0x68,0xc1,0x3d,
-  0xb6,0x11,0x2d,0x72,0x73,0x3e,0x4,0x5a,0x64,0x30,0xbd,0x6,0x11,0x71,0x8c,0xf0,
-  0x60,0x90,0x8f,0x33,0x81,0xb5,0xa9,0x58,0x95,0xf4,0x1e,0x6,0x3d,0x71,0x26,0xb3,
-  0x6,0x25,0x71,0xcd,0xf1,0x61,0x90,0x10,0xa7,0x60,0x6b,0x90,0x10,0x17,0x45,0x1f,
-  0x6,0x9,0x32,0x77,0x5c,0x3,0xff,0x64,0xc9,0xf6,0x61,0x90,0x90,0xca,0x7b,0xd7,
-  0xa0,0x24,0xae,0x2b,0x3f,0xc,0x32,0x74,0x9,0xfb,0xda,0x72,0x81,0xe1,0x5f,0x9a,
-  0x1a,0x63,0x91,0x27,0xdb,0xf4,0xf1,0x6b,0x79,0xaf,0xb9,0x7,0x63,0xb3,0x8c,0xf,
-  0x55,0x55,0xd3,0xfc,0x1,0x9,0xf0,0x29,0x3,0xdb,0x20,0x16,0x7c,0x1a,0x19,0xd7,
-  0x55,0x35,0xf8,0xce,0xe6,0x6a,0xab,0x6f,0xc6,0x1c,0x2b,0x9f,0xf,0x1a,0xb2,0xac,
-  0x64,0x3f,0xd9,0xda,0x8a,0x22,0x38,0x18,0xd,0x78,0xdb,0x62,0x86,0x9d,0x55,0xf6,
-  0x75,0x4f,0xe9,0x17,0x7a,0xd,0x8f,0xba,0x15,0xd2,0xaf,0x56,0xeb,0xcc,0xf,0x49,
-  0x38,0xa5,0x64,0x8,0x29,0xd,0x19,0x61,0x6,0x71,0x4c,0xe8,0x35,0x24,0x11,0x37,
-  0x1,0x68,0xe2,0x2e,0x19,0x2e,0x42,0x32,0x1,0x18,0xcf,0x87,0x69,0x7d,0x88,0xd3,
-  0x32,0xe3,0xcf,0xe9,0x18,0x80,0x43,0x9f,0x9c,0xd2,0x99,0x1f,0x2c,0x89,0xb,0xda,
-  0x46,0x18,0xe7,0xb,0x4a,0xb0,0xaa,0x84,0xa9,0xf6,0x9,0xe3,0xa1,0xa0,0x94,0x3c,
-  0x79,0xf2,0x23,0x89,0x8a,0x12,0xc3,0xc5,0x24,0xa0,0x78,0x42,0xc8,0x9b,0xef,0x43,
-  0xd0,0xeb,0x2b,0x66,0x8b,0xa2,0xc4,0x30,0xf0,0x6f,0x38,0x6d,0xfd,0x7e,0xf9,0xcb,
-  0x9b,0x17,0x4f,0x3a,0xfb,0x9d,0xef,0x3b,0xf9,0x84,0x31,0xa2,0xcf,0x94,0x30,0xe2,
-  0x9,0x9f,0xca,0x17,0x23,0xd0,0xd2,0x7c,0x31,0x1e,0x63,0x4a,0x22,0x92,0x89,0xdf,
-  0x1,0x10,0x29,0x4e,0x64,0x50,0x8e,0x44,0x90,0x66,0xca,0xf4,0xf2,0xe2,0x6e,0x8e,
-  0x70,0x34,0xa6,0xf2,0xda,0x1,0x82,0x0,0x73,0x56,0x25,0x92,0x21,0xd9,0xf,0x60,
-  0x3f,0xac,0x68,0x8d,0x13,0x21,0x6,0x89,0x10,0x29,0xc8,0x84,0x52,0xd4,0xfe,0xc9,
-  0x56,0x79,0x8b,0x48,0x7e,0xb7,0xb1,0x6b,0xbb,0x24,0x85,0x41,0x1c,0xb1,0xd4,0x93,
-  0x48,0x1f,0x53,0x33,0x56,0xc9,0x1e,0xd5,0x3c,0x25,0x19,0x64,0x72,0xb9,0x4b,0x16,
-  0xba,0x74,0x17,0xbf,0x9d,0x30,0xef,0xaa,0x70,0x48,0x36,0x67,0x4c,0x62,0xbb,0x4e,
-  0xca,0x88,0x4d,0x25,0x7c,0xc9,0x39,0x36,0xce,0xf7,0x42,0xa4,0x61,0xd,0xdf,0x10,
-  0xd3,0x2d,0xab,0x65,0xfc,0xcb,0x3a,0x3a,0x17,0xf8,0xbe,0x26,0xf2,0x28,0xaa,0x2f,
-  0x8c,0xfb,0x27,0x77,0x6b,0xd8,0x34,0x1b,0xdd,0x9e,0xcf,0xb1,0x68,0xf7,0xd1,0x12,
-  0x42,0xb7,0x7a,0x2b,0x1d,0xb6,0x90,0x91,0xf2,0x1,0xf2,0xe7,0xce,0x60,0x3c,0xcc,
-  0xab,0x6e,0xe4,0xc3,0x62,0x3b,0x9c,0x71,0x53,0xea,0x7e,0x45,0xa,0x7b,0xdd,0x4,
-  0xab,0x73,0xa8,0xa2,0x19,0xa8,0x4b,0x27,0xe0,0x93,0xd3,0x1b,0x2b,0xba,0xf0,0x91,
-  0xc5,0x1a,0x47,0x22,0x17,0xde,0x5,0xc8,0xac,0xa0,0xaf,0x2e,0x83,0x68,0x8e,0xc2,
-  0x44,0x4f,0x3f,0xbe,0x1e,0xb2,0xba,0xc6,0x91,0x9b,0xd4,0xb0,0x16,0xb6,0xd2,0xd3,
-  0x66,0xd5,0x12,0x7,0xe4,0xd1,0xd9,0x37,0xb1,0x86,0xae,0x3d,0xba,0xb2,0xfa,0xc4,
-  0x9f,0xdb,0x23,0x16,0x2e,0x1,0x7,0x71,0x76,0xf5,0x2f,0xd2,0x25,0xcf,0xf1,0x5a,
-  0xd,0xc1,0xcb,0x35,0x7b,0x2b,0x14,0x13,0x84,0x35,0xe5,0x33,0xf2,0x84,0x74,0x63,
-  0x1a,0x93,0xdd,0x11,0x71,0x30,0x67,0xc7,0x20,0xf1,0x4b,0x7a,0x9b,0x65,0xbb,0x86,
-  0x30,0xf2,0x11,0x5c,0x77,0xc8,0x46,0xb6,0x7b,0x0,0x94,0xd1,0x40,0xd1,0xd8,0x4c,
-  0x3f,0xee,0xbb,0xe2,0x34,0x3d,0xea,0xc3,0x1f,0xe2,0x9,0xc4,0xb1,0x13,0xe6,0x1,
-  0xe,0xed,0x7e,0x20,0x49,0x88,0x20,0xc4,0x2f,0xb3,0xfe,0x87,0x80,0x5b,0x8f,0x8,
-  0x2d,0xef,0x83,0xe9,0x85,0x1,0x73,0x76,0x4b,0xdd,0xb,0xf6,0x81,0xc2,0x64,0x7b,
-  0x5,0x95,0x3d,0x0,0x1d,0xfa,0x2e,0x28,0xc1,0xd8,0x76,0x79,0xc1,0xee,0x57,0xe8,
-  0xff,0xec,0xb2,0x89,0x87,0x46,0xa4,0x27,0x18,0xd2,0x14,0xbf,0xdf,0x4a,0xa2,0x8c,
-  0x83,0x81,0x31,0xec,0x3,0x2c,0x65,0x18,0x8e,0x37,0xb,0x8c,0x63,0xa9,0xcb,0x1c,
-  0x1a,0x41,0x1f,0xe1,0x77,0x71,0xa7,0xc0,0x8c,0xa8,0xd2,0x95,0x9b,0x29,0x28,0x68,
-  0x41,0x51,0x93,0x87,0x4b,0x57,0xcd,0x7b,0x6e,0x33,0x4e,0x9d,0x12,0xd8,0x83,0x94,
-  0x12,0xae,0x51,0x55,0xae,0x7a,0x11,0x23,0xd9,0x2a,0x6f,0x13,0x6c,0xbe,0x77,0xe8,
-  0x2f,0x86,0x80,0xa1,0xcb,0x46,0x57,0xe2,0xaa,0x44,0xa1,0xa1,0x4c,0x6,0x52,0xaf,
-  0xc0,0x40,0xc6,0xe7,0x46,0x36,0x8a,0x18,0x99,0x62,0x35,0xd0,0x3c,0x16,0xd8,0x44,
-  0x6c,0xbf,0x87,0xe2,0xf0,0xe4,0x4d,0xe0,0x1e,0xdd,0x82,0xf0,0x3d,0xdb,0x75,0x97,
-  0xf5,0x92,0x71,0x66,0xd,0xde,0xe4,0x92,0x89,0x66,0x7c,0xf5,0xb,0x27,0xc5,0x68,
-  0x55,0x30,0xe6,0xa5,0xb6,0x38,0x7b,0x47,0xa0,0x92,0x3d,0xd6,0xa,0x3e,0x7,0x55,
-  0x60,0x8b,0x56,0xae,0x0,0x22,0xa3,0x13,0x7b,0x98,0x70,0x24,0xba,0x75,0x42,0x7f,
-  0x1e,0x1b,0x19,0xf8,0xae,0x85,0x8d,0xcc,0x65,0x4,0xb5,0xba,0xd5,0x67,0x9a,0x73,
-  0xb5,0xdd,0x33,0x36,0x30,0xdb,0xa1,0x9d,0x25,0xbe,0x7e,0xd8,0xd6,0x77,0x17,0xdb,
-  0x92,0x97,0x91,0x7d,0xdd,0xdc,0x60,0xe5,0xcc,0xe7,0xb3,0x7e,0xd2,0x4e,0x86,0x1,
-  0x4,0x49,0x79,0xab,0x74,0xca,0x1c,0x7,0x8d,0xaf,0x32,0x3f,0x5f,0xff,0xf2,0xc,
-  0x3f,0xe0,0xac,0x34,0x86,0xa6,0xb2,0x41,0x91,0x76,0xbd,0xbe,0x3a,0x74,0xf8,0x4a,
-  0x64,0xe4,0xcf,0x93,0x8f,0x1a,0x16,0xa9,0xab,0x3,0xe2,0x86,0xb5,0x63,0xed,0xf4,
-  0xe4,0x77,0x8d,0x4e,0xe7,0x15,0x49,0x77,0xd,0x2d,0xd9,0x72,0x57,0x3f,0xa9,0x48,
-  0xc2,0xb5,0xb0,0x43,0x3f,0x88,0xc3,0x4,0xbc,0x73,0x57,0x0,0xb3,0xe2,0xd2,0xaf,
-  0xf8,0xd1,0x13,0xaf,0x6e,0xbc,0x75,0x8f,0xf0,0xa3,0x87,0x89,0xbd,0xae,0xd0,0xe3,
-  0xb4,0xde,0x83,0xc0,0x42,0x30,0xb8,0x1a,0x57,0x5b,0xd9,0xb7,0x2a,0x5d,0xec,0x74,
-  0xf7,0xb5,0xfd,0x81,0xed,0xb0,0x5,0x87,0xfe,0x7d,0x7d,0x16,0x73,0x80,0xa5,0x3e,
-  0xcf,0x6c,0x8e,0xf3,0xb6,0x2,0xe1,0xcb,0x63,0x8c,0xcc,0xae,0xed,0x93,0x3c,0x8d,
-  0x24,0x1d,0x4f,0x98,0x2d,0xaf,0x6e,0x77,0x1b,0x81,0x2f,0x12,0xc8,0x9e,0xfb,0x37,
-  0x25,0x8e,0x6,0xa5,0xd0,0x1,0x31,0xe3,0x39,0x8,0x91,0x55,0x21,0xbd,0x18,0x55,
-  0xbb,0xc6,0x14,0x4,0x46,0x64,0x4e,0xa6,0xa,0xc7,0x8c,0xa8,0xeb,0x76,0xde,0xe5,
-  0xa3,0x56,0xc9,0x4b,0x49,0x50,0xab,0x5b,0x9c,0x65,0xa,0x4c,0xbb,0x80,0xe9,0xa1,
-  0xbd,0xdc,0xe6,0x44,0xd4,0x98,0x2b,0x60,0xa,0x23,0xe2,0xaa,0x7a,0x29,0x8e,0xdd,
-  0x72,0x1c,0x4d,0xc3,0xef,0x3e,0x9d,0x40,0x8,0x96,0xe9,0xd6,0x15,0x8a,0x2a,0x3,
-  0x7e,0x3e,0xb9,0xec,0x77,0x6f,0xd6,0x91,0x4a,0x7c,0x50,0xf0,0xa8,0xa4,0x22,0x4f,
-  0xa9,0xaa,0x9,0xa3,0x5e,0x8f,0xce,0xd7,0x84,0x47,0xc0,0xba,0x66,0xee,0xa4,0x4a,
-  0xf9,0x8a,0x8,0x10,0x2b,0xb4,0xe0,0x28,0xb2,0x60,0xe8,0x32,0x7a,0x0,0xf7,0xf9,
-  0x64,0x29,0xcf,0x3f,0xaa,0x9,0x32,0x79,0x62,0xf2,0xa8,0x64,0x89,0x7,0x2b,0x4d,
-  0x22,0x8e,0x48,0xaa,0x9,0x34,0x3e,0x51,0xf9,0x7c,0x82,0x90,0xa7,0x26,0xe4,0xc0,
-  0x9e,0xaf,0x23,0xc,0x0,0xff,0xb4,0x92,0xa8,0xf6,0x54,0x23,0xb1,0x38,0x98,0xd1,
-  0xcb,0xe8,0x4b,0xc4,0x27,0x6b,0x86,0xce,0xc9,0x38,0x26,0x1d,0x71,0xa9,0x60,0x6,
-  0xfa,0x95,0x53,0xdf,0x2f,0x29,0xbe,0xc9,0x11,0xf1,0xe2,0xd1,0x4,0xc5,0x63,0xf2,
-  0x71,0x44,0x31,0x7c,0xe5,0x48,0xa,0x4b,0x5f,0x6f,0x19,0xbd,0x29,0xc8,0x4d,0xc7,
-  0x98,0xbe,0x1e,0x52,0xd0,0x1f,0x2a,0x5f,0xb3,0xc0,0xd7,0x83,0xf4,0x49,0x0,0xb6,
-  0xb5,0x52,0xe4,0x19,0x56,0xd4,0xa,0xab,0x6c,0xd9,0xe6,0x44,0x55,0x34,0x5d,0x61,
-  0xcd,0x48,0x81,0x3f,0x82,0x68,0x10,0x33,0x4,0x73,0x29,0xc1,0xb3,0xe7,0xb8,0x70,
-  0x2f,0xe6,0x48,0xf3,0x2,0x1e,0x5d,0xfa,0x98,0xf,0x6e,0xa6,0xfa,0xfa,0x52,0xa3,
-  0xa8,0xd9,0xa5,0xb8,0x9d,0xd,0x36,0x25,0x48,0x2,0x20,0xe2,0x68,0x3e,0xba,0xd4,
-  0x6a,0x92,0x6,0xd9,0xd2,0x28,0x54,0x33,0x26,0xd2,0xa0,0x94,0xa,0xf5,0xe5,0x53,
-  0x7d,0xf4,0x9a,0xb9,0x91,0x6f,0x4a,0xb6,0x13,0x3c,0xc9,0xa7,0xec,0x86,0x8c,0x3d,
-  0xfd,0xfe,0x42,0xe5,0xfa,0xa9,0x78,0x11,0x4,0xb,0x3a,0x51,0x31,0x71,0xc3,0xa4,
-  0xbe,0x4a,0x2e,0x16,0x2f,0xf5,0x59,0x2c,0x5c,0xab,0x55,0xc5,0xc6,0x45,0x30,0xb2,
-  0xe0,0x56,0x6c,0xdd,0x48,0x56,0xb5,0x12,0xe6,0x6c,0xaf,0xe4,0x10,0xca,0x64,0xd0,
-  0xa2,0xc7,0xd5,0xa7,0xd1,0x68,0x69,0x65,0x33,0x16,0x27,0x7c,0x6d,0xbd,0x8f,0x55,
-  0xb5,0x3e,0x75,0x1f,0xfb,0x63,0x2c,0xfb,0x91,0xa8,0x38,0x1c,0x7b,0x6a,0x95,0x3e,
-  0xb9,0x66,0x9c,0xd,0xb1,0x34,0x20,0x84,0x7a,0x3c,0x9b,0x34,0xf1,0x6e,0xf5,0x82,
-  0xe3,0xfd,0xe8,0xe3,0x19,0x84,0x66,0x6a,0x16,0x43,0x70,0x22,0x60,0xa,0xec,0x69,
-  0xac,0x2f,0x30,0x75,0x79,0x4a,0x59,0xba,0x77,0x57,0x25,0x95,0xc2,0xca,0xb6,0x39,
-  0xd1,0x94,0x1b,0xb7,0x17,0xbf,0x37,0x55,0x2,0x88,0xd5,0x17,0xa5,0xca,0xfb,0x1d,
-  0x73,0xc0,0x90,0x80,0x56,0xe9,0x7a,0xf7,0xd9,0x33,0x33,0xf8,0xcc,0xf7,0x71,0xca,
-  0x42,0x2b,0x8d,0x1b,0x55,0x5a,0x69,0x29,0x8,0x88,0xe6,0x38,0xd,0xae,0xe9,0xcf,
-  0x1c,0x2f,0xfd,0xfe,0xca,0x8a,0x6a,0xb1,0x17,0x42,0x88,0x32,0x96,0x2f,0xad,0xc5,
-  0xca,0xe2,0x64,0x5d,0xa,0xbe,0xc2,0x39,0xa6,0x38,0x5,0x94,0x38,0x9d,0xe3,0x85,
-  0xfa,0x6a,0x47,0x81,0xc9,0x8a,0xaf,0xd4,0x1a,0xc6,0x89,0xb8,0x90,0x6f,0x3a,0x35,
-  0xcf,0xb6,0x8a,0x87,0x7d,0x9,0xf4,0x22,0xdd,0xfd,0x1b,0x8,0xba,0x72,0x86,0x4f,
-  0x87,0xe2,0x51,0x10,0x80,0xe1,0xda,0x10,0xc1,0x8,0x3b,0x32,0x6,0xb7,0x43,0x9d,
-  0x7b,0x46,0xb2,0xf2,0x81,0x69,0x16,0xb7,0x33,0x9f,0x30,0x81,0x1e,0x2a,0x2a,0x1b,
-  0xb3,0x7b,0xc5,0xac,0x20,0x49,0x2a,0xe8,0x3a,0xf0,0x3d,0x4f,0xc6,0xb0,0xbc,0x58,
-  0xbf,0x43,0x30,0x35,0x34,0x34,0xbe,0x6a,0x6e,0x6a,0xbe,0x77,0xa2,0xde,0xd3,0x2d,
-  0xdb,0x6d,0xd8,0x8a,0xde,0xda,0xb4,0x1a,0xea,0xd,0x5f,0xf8,0x69,0x7a,0xed,0x46,
-  0xd7,0x12,0x22,0x50,0xf3,0x97,0xb0,0x7d,0xdd,0x2b,0x5a,0x6,0x6,0xcb,0xa4,0xaa,
-  0x80,0x6c,0x15,0xb,0x18,0xaa,0xe9,0xd8,0x38,0x9e,0xa6,0xc2,0x4e,0x25,0xdd,0xd2,
-  0x60,0x5b,0x53,0x79,0x4c,0x7b,0xf0,0x8d,0x92,0xe,0x6c,0x91,0x7,0x8e,0xe3,0x9b,
-  0x28,0x10,0xcc,0xc5,0x81,0xc6,0x99,0x20,0x35,0x2f,0x91,0xbe,0xf2,0xe,0x7b,0x66,
-  0x32,0xab,0xb2,0x3,0xdb,0xfd,0x9c,0x76,0xa8,0xa6,0x2,0x87,0x5f,0x16,0xc0,0xb0,
-  0x22,0x81,0xaa,0x86,0xde,0x1d,0xc2,0xd4,0x43,0x7b,0x29,0x87,0x94,0xe,0x90,0x67,
-  0x9,0xc4,0xea,0x94,0xd4,0x60,0x13,0xb4,0x41,0xf8,0xf2,0x37,0x7d,0xbe,0x6a,0xca,
-  0x8f,0xb7,0x57,0x87,0xf3,0x4f,0xcd,0x2e,0x5d,0x35,0xdf,0x8b,0x8f,0x34,0x57,0xef,
-  0xe2,0x23,0x1,0xa5,0x9b,0xeb,0xfe,0x79,0x3d,0x66,0xd7,0x1b,0x30,0x7b,0xff,0xb1,
-  0x33,0x7b,0xbf,0x2,0xb3,0xcd,0x3d,0xff,0xdf,0xad,0x51,0x43,0xd,0xa,0xa7,0xe0,
-  0xcb,0x4e,0x61,0x89,0xe9,0x9a,0x4a,0xf4,0x74,0xf6,0xc8,0x95,0x8,0x8,0xf8,0x2,
-  0x3b,0x96,0xb3,0xdb,0x4d,0xb8,0xfd,0xed,0x63,0xe7,0xf6,0xb7,0x15,0xb8,0xbd,0x7e,
-  0xcf,0x3f,0x71,0xc7,0x82,0x7f,0xc5,0xd7,0x54,0xd6,0x75,0xb0,0xcb,0x47,0xae,0x40,
-  0x9d,0xd2,0xb4,0xf0,0x53,0x6c,0xd7,0xf0,0xc6,0xdf,0x80,0xd9,0xdd,0xc7,0xce,0xec,
-  0x6e,0x5,0x66,0xaf,0xdf,0xf3,0x4f,0xdc,0xad,0x18,0xa1,0x6d,0xa0,0x41,0xfb,0x8f,
-  0x5d,0x83,0xf6,0xbf,0xc8,0x76,0x9d,0xd9,0xb7,0x6b,0x32,0x1a,0x46,0x3c,0x72,0x4e,
-  0xcf,0xee,0x7d,0xaf,0xae,0x73,0xf3,0x50,0xfe,0xbd,0xab,0xfd,0x17,0x29,0x61,0x88,
-  0x3a,
+  0x0,0x67,0xee,0x78,0x9c,0xed,0x1c,0xdb,0x76,0xdb,0x36,0xf2,0x5d,0x5f,0x81,0xb2,
+  0x67,0x6d,0xb9,0x72,0x74,0x8b,0xdd,0xba,0x52,0xd5,0xb4,0xb5,0xdd,0x24,0x67,0x1d,
+  0x3b,0xb5,0x9d,0x64,0xf7,0xf4,0xec,0x3,0x25,0x41,0x12,0x6a,0x8a,0x54,0x8,0xca,
+  0xb6,0x92,0xe3,0x7f,0xdf,0x19,0x80,0xa0,0x78,0x1,0x48,0x4a,0x89,0x13,0xbb,0x15,
+  0xfc,0x10,0x91,0x18,0x0,0x73,0xc3,0xdc,0x0,0xa6,0xf1,0x5d,0xe5,0x97,0x6b,0xea,
+  0x73,0xe6,0xb9,0x1d,0xd2,0xac,0xb7,0x2b,0xbf,0xd8,0xf3,0x60,0xe2,0xf9,0x1d,0x72,
+  0x31,0x1f,0x4e,0x28,0xf5,0xc9,0xbf,0xeb,0xe4,0x27,0x3e,0x60,0x23,0xd6,0xfa,0x71,
+  0xef,0x7,0x62,0x7,0x64,0x3c,0xb5,0x99,0x53,0x1f,0x78,0xd3,0x9f,0x2b,0xbf,0x38,
+  0x6c,0x40,0x5d,0x4e,0x3b,0xe4,0xf9,0xe9,0x1b,0xf2,0x9c,0xba,0xd4,0xb7,0x1d,0xf2,
+  0x7a,0xde,0x87,0xf7,0xe4,0x44,0xf6,0x55,0xbe,0x6b,0x54,0x2a,0x6c,0x3a,0xf3,0xfc,
+  0x80,0xfc,0x11,0x90,0xbd,0xfa,0xf,0xea,0xc9,0x3a,0x61,0x7d,0xdf,0xf6,0x17,0x16,
+  0xb1,0x39,0x9,0x7f,0x57,0x2a,0x2f,0x3,0x3a,0x25,0x1f,0x2b,0x15,0x2,0xed,0x86,
+  0xd,0x83,0x49,0x87,0x1c,0x34,0x9b,0xe2,0x71,0x42,0xd9,0x78,0x12,0x74,0xc8,0xd3,
+  0x83,0xa6,0xec,0x67,0xc3,0xe,0xe1,0x81,0x37,0xb8,0x3a,0xa2,0x1,0x20,0xc5,0x2f,
+  0x6,0x3e,0xa5,0xae,0xe8,0x9a,0xf9,0xde,0x8c,0xfa,0xc1,0x82,0x30,0x37,0x20,0x80,
+  0xec,0xcc,0x73,0xa9,0x1b,0xbc,0x93,0x13,0x8a,0x79,0xb3,0x60,0xc,0x96,0x7e,0x11,
+  0xae,0xb1,0xdf,0x4c,0xf6,0xf3,0xc0,0x67,0xee,0x98,0xf0,0xc5,0xb4,0xef,0x39,0x1d,
+  0x62,0xfd,0xf7,0xc5,0xd9,0x99,0xa5,0x7,0x41,0x84,0x4e,0xed,0x29,0x70,0xc5,0xd2,
+  0x43,0x38,0x36,0xf,0x2e,0x7d,0x7b,0x48,0x87,0xaf,0x7d,0x60,0x52,0x9,0xb8,0x23,
+  0x3b,0xa0,0x97,0x2c,0x67,0xca,0xc1,0xc4,0x76,0xc7,0x45,0xdd,0xaf,0xa9,0xf,0x22,
+  0x9,0xec,0x1c,0xc0,0xa1,0xbd,0xe0,0xe7,0xb9,0x53,0x2d,0xa8,0xed,0xe7,0x43,0x4c,
+  0x6d,0xff,0x8a,0x6,0x6f,0x3d,0x67,0x9e,0x83,0xf0,0xcc,0xa7,0xd7,0x87,0x8e,0xc7,
+  0x8b,0xa6,0x39,0xb4,0x67,0x46,0x88,0xbe,0xcd,0xe9,0xe1,0xc4,0xf6,0x83,0x37,0xe7,
+  0x27,0x0,0x34,0x9,0x82,0x59,0xa7,0xd1,0x18,0xe0,0x9b,0xfa,0x88,0xb9,0xb6,0x3b,
+  0xa0,0xf5,0x85,0x3d,0xf1,0x3c,0xd4,0xd6,0xc6,0x87,0x67,0xef,0x7b,0x5b,0x4e,0x6f,
+  0xeb,0x43,0x6f,0xba,0x35,0xeb,0xf1,0x2d,0xbb,0x77,0x2d,0xfe,0x75,0x80,0x98,0x1e,
+  0x75,0x9f,0xbc,0xb9,0xd8,0xf2,0xe9,0x18,0x36,0x42,0xef,0xcd,0x85,0x91,0x8b,0x6a,
+  0x2d,0x3d,0x80,0xcf,0x79,0x5e,0xb7,0xe7,0x33,0x64,0x7f,0x20,0x36,0x9b,0xf5,0x1a,
+  0xf6,0x80,0x6f,0xb3,0xc0,0xaa,0x68,0x14,0x76,0xee,0xfb,0x0,0x2a,0xf5,0xf9,0xa5,
+  0x3b,0xa4,0xb7,0x1d,0xd2,0x92,0x70,0x9c,0x8d,0x5d,0xd8,0x64,0x8e,0x37,0x3e,0xa7,
+  0xef,0xe7,0x94,0x7,0xd5,0x48,0xef,0xfc,0x57,0x94,0x73,0x90,0xee,0x4e,0x12,0xd0,
+  0x1e,0xa,0x26,0x29,0xb8,0xe1,0xdc,0x17,0x28,0xec,0xc8,0xf9,0xce,0xe9,0x20,0x0,
+  0xe,0x38,0x14,0x36,0x1d,0x9,0x1b,0x70,0xe,0x6c,0x0,0x7,0x26,0x3a,0xa0,0xeb,
+  0x33,0x1b,0x71,0x89,0x3a,0x7,0x9e,0x3,0xf6,0xc1,0xfa,0xf6,0xe9,0x1e,0xfe,0x59,
+  0xd1,0x7b,0xdc,0x8c,0x43,0xb9,0xf,0x71,0xce,0x4a,0xd4,0x11,0x6e,0xed,0xfa,0xe1,
+  0x1c,0xb6,0xc6,0xf4,0x39,0xa0,0x3c,0xf7,0xe9,0xaf,0x3e,0xb5,0x63,0x2b,0x16,0xae,
+  0x8a,0xcd,0x73,0x2f,0x6e,0xd8,0x8c,0x9e,0xd0,0x51,0x90,0x58,0xaa,0xce,0x6f,0x58,
+  0x30,0x98,0x48,0x6e,0x55,0x77,0x74,0x63,0xce,0xe5,0xae,0x2e,0x31,0xe8,0x6e,0x89,
+  0xf8,0xa1,0x32,0x1b,0x75,0xcf,0xc5,0xdf,0xe,0xd,0x28,0x10,0xf9,0x91,0x14,0xb7,
+  0x4,0xe,0x6c,0x44,0xaa,0xd2,0x70,0x90,0x6f,0x7a,0x3d,0xd0,0x8e,0x9d,0x14,0xe5,
+  0xd8,0x50,0x4e,0xa1,0x19,0xab,0xee,0x74,0xb5,0xdd,0xa7,0xf4,0x46,0xdb,0xa7,0xf4,
+  0x92,0xf4,0x12,0x5b,0xa2,0x66,0x6d,0x5,0xbd,0xd6,0x70,0x8b,0xf7,0xac,0x9a,0x5c,
+  0x3e,0x39,0xf4,0x4e,0x47,0xf3,0x68,0xee,0xe,0x50,0x3b,0x48,0x92,0x3d,0x49,0x7c,
+  0x65,0x1f,0xa9,0x66,0xd5,0x34,0x5,0x38,0x0,0x74,0x48,0xab,0x93,0xc1,0x38,0x6e,
+  0xb4,0x4f,0x80,0x32,0xea,0xd7,0xb9,0x37,0x7,0xeb,0x14,0xb1,0x1c,0x68,0xa9,0x66,
+  0x4d,0x7b,0x5d,0x58,0x6e,0xf2,0xb3,0xc6,0xea,0xd7,0xa5,0x77,0xd8,0x79,0x26,0xfb,
+  0x4,0x13,0xa2,0xd9,0x4e,0x6c,0x77,0xc8,0x7,0xf6,0x8c,0x92,0x8e,0xae,0x5b,0x6d,
+  0x45,0xd,0x6b,0x33,0x14,0x2,0x62,0x9a,0x97,0x35,0xd2,0xca,0xe,0xee,0x83,0x8e,
+  0x5f,0x75,0xb3,0xc,0x69,0xaf,0xc9,0x90,0x38,0x50,0xf4,0x7e,0x7d,0x9c,0x9f,0x94,
+  0xc4,0x79,0x48,0x47,0xf6,0xdc,0x9,0xb2,0x48,0x37,0x1a,0x47,0x1e,0x39,0xf5,0x82,
+  0x9,0x98,0x15,0x83,0x66,0x61,0x8b,0x99,0x2a,0x4b,0x8b,0x9b,0x55,0xd3,0x28,0x52,
+  0x37,0x57,0x3b,0x13,0xbb,0x25,0xa9,0x73,0xd7,0xb6,0x4f,0x60,0x35,0x7f,0x21,0x77,
+  0xc4,0x76,0xe8,0x16,0xc4,0x2b,0xe9,0xe,0xec,0x19,0xe3,0xc2,0x25,0x5c,0xb7,0x1a,
+  0x33,0x11,0xac,0x34,0x16,0xef,0x1d,0x70,0xf,0x9c,0x3a,0x60,0x19,0xc8,0x85,0xd8,
+  0x2c,0xbb,0xe8,0xc3,0x77,0x4f,0x94,0xf,0x16,0xae,0xfa,0xcc,0x75,0x16,0xcb,0x57,
+  0xe8,0x95,0x97,0x4f,0xe8,0x9f,0x77,0xf,0x85,0xa3,0xd,0xff,0x61,0x6e,0xe8,0x71,
+  0x77,0x8f,0x94,0x5b,0xdd,0xfd,0xaf,0x72,0x9f,0xbb,0xd2,0x41,0xee,0xbe,0x6,0x47,
+  0xc8,0xbc,0x39,0x17,0xce,0x70,0xf7,0x95,0x72,0x7a,0x2c,0xb0,0x1d,0xf6,0x41,0x18,
+  0x6a,0x32,0xf2,0xbd,0x29,0x91,0x8e,0x4c,0xb9,0xb5,0xf7,0x73,0x2f,0xa0,0x9c,0xdc,
+  0x4c,0xa8,0x4f,0xc3,0xa0,0x4,0x1c,0x7,0xa9,0x5a,0xdb,0xe1,0x56,0xaf,0x6d,0x5b,
+  0x3b,0x5b,0xd4,0xbd,0xee,0x81,0xd2,0xf8,0x14,0xe8,0x1f,0xda,0xe0,0x79,0xec,0xbe,
+  0x43,0x79,0xdd,0xf3,0xc7,0xd,0xdb,0x71,0xe4,0x13,0x6c,0xe5,0xc9,0x15,0x5d,0xf0,
+  0xed,0xae,0x51,0x68,0xa8,0x90,0x51,0x64,0xa3,0x6c,0xa8,0xc4,0xca,0xaa,0x29,0x56,
+  0xa7,0xec,0x12,0x4a,0xc1,0xa7,0x1c,0x74,0x14,0x14,0xbe,0x47,0x5c,0x7a,0x43,0xfe,
+  0xf3,0xea,0xe4,0x5,0xc8,0x42,0x4d,0x9b,0x1a,0xa0,0x80,0xc1,0xd6,0x82,0xa,0xe,
+  0x17,0x1c,0xd0,0xa5,0x32,0x6e,0x81,0xf1,0x4a,0xf0,0x55,0x9d,0xe9,0x44,0xfb,0x1a,
+  0xd,0x17,0x83,0x2f,0x70,0x30,0x1,0x5b,0x9b,0x5c,0xb3,0x7e,0x74,0x76,0x7a,0xac,
+  0x9b,0x41,0x22,0x30,0x82,0x49,0x26,0x4a,0xab,0x62,0x13,0xca,0x1f,0x30,0x95,0xc6,
+  0xf6,0xde,0xa5,0x14,0xdf,0x40,0xd3,0xc,0x8c,0xa8,0xf5,0xfc,0xf8,0xd2,0xda,0x25,
+  0x6,0x86,0x45,0xb0,0x9c,0xba,0xc3,0x6a,0x9,0xf5,0x97,0xde,0x20,0x49,0x8b,0xc,
+  0x40,0x70,0x4b,0x85,0x5a,0x3f,0xa2,0x74,0xc8,0x35,0xc1,0x10,0x0,0x36,0xda,0xf5,
+  0x66,0x63,0x2,0xdc,0x72,0x98,0x4b,0x9f,0x45,0xa1,0x4f,0x3c,0x1e,0x32,0x79,0xe,
+  0x9d,0x72,0x80,0x84,0x23,0x9d,0x90,0x68,0xfc,0x5d,0x34,0x2,0x19,0xfd,0xca,0x1b,
+  0x52,0xe7,0xfe,0x74,0x42,0xcb,0xb0,0x95,0x34,0xc2,0xa0,0xbd,0x88,0x60,0x92,0x38,
+  0x64,0xcd,0x37,0xf1,0x6e,0x18,0xa,0x1,0x99,0x9b,0x15,0xd6,0xed,0xd4,0x39,0xf2,
+  0x6,0xc0,0xea,0x18,0x74,0x7d,0xe8,0xd,0xc0,0x6a,0xb9,0xc1,0xb1,0x43,0xa7,0x19,
+  0xef,0x13,0x8a,0x18,0x9c,0x5,0x87,0x61,0x72,0x3c,0x28,0x9f,0xcf,0x83,0xc3,0x9,
+  0x73,0x86,0xdd,0x4a,0x6,0x93,0x10,0x5a,0x27,0x1,0x69,0xc7,0xc1,0xcc,0x9d,0x2,
+  0xef,0xb9,0x44,0x3,0x61,0xeb,0x3,0x9c,0x4b,0xbc,0xcc,0xb2,0x1e,0xe7,0x5c,0xe,
+  0xda,0xd1,0xcb,0x35,0x9,0x54,0x77,0xa8,0x3b,0x86,0xa0,0xa2,0x7,0xca,0xd1,0x34,
+  0xa9,0x2,0xb6,0xb8,0xd6,0x9f,0x7a,0x11,0xa1,0x23,0xcf,0xf,0x2d,0xa3,0x98,0x53,
+  0xd9,0x47,0x4b,0xa3,0x18,0xd8,0xee,0xb4,0x6f,0xa9,0xc3,0xa9,0x79,0xe5,0x46,0xe3,
+  0x1d,0x25,0x10,0xf,0x43,0x34,0xeb,0x2c,0x8,0xbd,0x9d,0x81,0x97,0x12,0x9,0x85,
+  0x4b,0xc3,0x45,0x5d,0xa0,0x84,0x40,0xfe,0x10,0xfa,0x82,0xba,0x71,0xaa,0x88,0xab,
+  0xa1,0x0,0x91,0xb1,0x4b,0x5e,0xfc,0xd9,0xfc,0x5f,0x2e,0x7b,0xe3,0xb3,0xfc,0x5,
+  0x23,0x9b,0xf9,0x20,0xc9,0x4,0x16,0xcd,0x12,0xe8,0xfa,0xf2,0x25,0x7a,0x4c,0xd2,
+  0xb3,0x2c,0xf3,0x24,0xc8,0xdb,0xaa,0x5c,0x8,0xd6,0xfb,0x29,0x89,0x79,0x28,0x38,
+  0xe8,0xa9,0xd5,0x76,0x3e,0x56,0x8c,0x93,0x60,0x8b,0x44,0xae,0x6,0xff,0xf9,0x57,
+  0x9c,0x52,0xa0,0x3b,0x4f,0xf2,0xaa,0xa9,0xb8,0x37,0x33,0x13,0xb2,0x1f,0xc3,0x5,
+  0x83,0xc2,0xa5,0x9b,0x88,0x2,0xb7,0x71,0xc0,0x76,0x36,0xaa,0x32,0x2e,0xae,0xea,
+  0xa,0x4a,0x62,0x46,0x52,0x4,0x3a,0x6f,0x6d,0x67,0x4e,0xcd,0x9c,0x4d,0x37,0x4d,
+  0xdc,0x97,0x8f,0x7d,0x36,0x30,0x5a,0x81,0x96,0x54,0x5,0xe4,0x81,0x51,0x84,0xca,
+  0xba,0x16,0x31,0xa1,0x96,0x3f,0x24,0x5a,0x70,0x8f,0xad,0x45,0x8b,0xdc,0x9c,0xf,
+  0x81,0x16,0x19,0x4c,0xaf,0x40,0x44,0x14,0x23,0x3c,0x18,0xe4,0xa3,0x4c,0x60,0x65,
+  0x2a,0x96,0x35,0xbb,0x87,0x41,0x4f,0x94,0xc9,0xac,0x40,0x49,0x54,0x54,0x7c,0x18,
+  0x24,0x44,0x29,0xd8,0xa,0x24,0x44,0x55,0xcf,0x87,0x41,0x82,0xcc,0x1d,0x57,0xc0,
+  0x3f,0x5e,0x93,0x7d,0x18,0x24,0x24,0xf2,0xde,0x15,0x28,0x89,0xa,0xc7,0xf,0x83,
+  0xc,0x5d,0xc2,0xbe,0xb2,0x5c,0x60,0xf8,0xd7,0xa6,0xc6,0x58,0xe4,0x49,0x37,0x7d,
+  0xfc,0x5a,0xdc,0x6b,0xee,0xc1,0xd8,0x2c,0xe5,0x43,0x55,0x99,0x34,0x7b,0x2,0x2,
+  0x7c,0x4a,0xc1,0xd6,0x88,0x5,0x7f,0xb5,0x94,0xeb,0x2a,0x1b,0x7c,0xa7,0x73,0xb5,
+  0xe5,0x2f,0x63,0x8e,0x95,0xcd,0x7,0xd,0x59,0x56,0xbc,0x9f,0x6c,0x6d,0x85,0x11,
+  0x1c,0x8c,0x6,0xbc,0x6d,0x31,0xc3,0xce,0x32,0xfb,0xfa,0x4c,0xe9,0x17,0x7a,0xd,
+  0x97,0x3a,0x25,0xd2,0xaf,0x46,0xe3,0xd4,0xb,0x48,0x30,0xa1,0xa4,0xf,0x29,0xd,
+  0x19,0x60,0x6,0xf1,0x92,0xd0,0x6b,0x48,0x22,0x6e,0x7c,0xd0,0xc4,0x5d,0xd2,0x9f,
+  0x7,0x64,0xc,0x30,0xae,0x7,0xd3,0x7a,0x10,0xa7,0xa5,0xc6,0x9f,0xd3,0x11,0x0,
+  0x7,0x1e,0x79,0x45,0xa7,0x9e,0xbf,0x20,0xe,0x68,0x1b,0x61,0x9c,0xcf,0x29,0xc1,
+  0xaa,0x12,0xa6,0xda,0x27,0x8c,0x7,0x82,0x52,0xf2,0xe4,0xc9,0xcf,0x24,0x2c,0x4a,
+  0xf4,0xe7,0x63,0x9f,0xe2,0x11,0x20,0xaf,0xbf,0xf,0x40,0xaf,0xaf,0x98,0x2d,0x8a,
+  0x12,0x7d,0xdf,0xbb,0xe1,0xb4,0xf1,0xc7,0xe5,0x6f,0x6f,0x9e,0x3f,0x69,0xed,0xb7,
+  0x7e,0x6c,0x65,0x13,0xc6,0x90,0x3e,0x53,0xc2,0x88,0x47,0x78,0x2a,0x5f,0xc,0x41,
+  0xb,0xf3,0xc5,0x68,0x8c,0x29,0x89,0x88,0x27,0x7e,0x87,0x40,0xa4,0x38,0x46,0x41,
+  0x39,0x12,0x41,0x9a,0x29,0xd3,0xcb,0x8a,0xbb,0x3e,0xc0,0xd1,0x98,0xca,0x6b,0x7,
+  0x8,0x2,0xcc,0x59,0x95,0x48,0x86,0x64,0x3f,0x80,0xfd,0xb4,0xa4,0x35,0x4a,0x84,
+  0x18,0x24,0x42,0x24,0x27,0x13,0x4a,0x50,0xfb,0x27,0x5b,0xe6,0x2d,0x22,0xf9,0xdd,
+  0xc6,0xae,0xed,0x82,0x14,0x6,0x71,0xc4,0x52,0x4f,0x2c,0x7d,0x4c,0xcc,0x58,0x26,
+  0x7b,0x54,0xf3,0x14,0x64,0x90,0xf1,0xe5,0x2e,0x59,0xe0,0xd0,0x5d,0xfc,0x75,0xc2,
+  0xdc,0xab,0xdc,0x21,0xe9,0x9c,0x31,0x8e,0xed,0x2a,0x29,0x23,0x36,0x95,0xf0,0xc5,
+  0xe7,0x58,0x3b,0xdf,0xb,0x90,0x86,0x15,0x7c,0x43,0x44,0xb7,0xac,0x96,0xf1,0xaf,
+  0xeb,0xe8,0x1c,0xe0,0xfb,0x8a,0xc8,0xa3,0xa8,0xbe,0x32,0xee,0xf7,0xee,0xd6,0xb0,
+  0x69,0x36,0xba,0x3d,0x9b,0x61,0xd1,0xee,0xa3,0x25,0x84,0x6e,0x75,0x96,0x3a,0x6c,
+  0x21,0x23,0xe5,0xb,0xe4,0xcf,0x9d,0xc1,0x78,0x98,0x57,0x5d,0xcb,0x87,0x45,0x76,
+  0x38,0xe5,0xa6,0xd4,0x5,0x8a,0x4,0xf6,0xba,0x9,0x96,0xe7,0x50,0x79,0x33,0x50,
+  0x87,0x8e,0xc1,0x27,0x27,0x37,0x56,0x78,0xa3,0x23,0x8d,0x35,0x8e,0x44,0x2e,0xbc,
+  0xf3,0x91,0x59,0x7e,0x57,0xdd,0xf6,0xd0,0x1c,0x85,0x89,0x9e,0x6e,0x74,0xff,0x63,
+  0x79,0x4f,0x23,0x33,0xa9,0x61,0x2d,0x6c,0x85,0xc7,0xcb,0xaa,0xc5,0x4e,0xc4,0xc3,
+  0xc3,0x6e,0x62,0xf5,0x1d,0x7b,0x70,0x65,0x75,0x89,0x37,0xb3,0x7,0x2c,0x58,0x0,
+  0xe,0xe2,0xec,0xea,0x5f,0xa4,0x4d,0x9e,0xe1,0xbd,0x19,0x82,0xb7,0x67,0xf6,0x96,
+  0x28,0xc6,0x8,0xb,0xf,0x26,0xc9,0x13,0xd2,0x8e,0x68,0x8c,0x77,0x87,0xc4,0xc1,
+  0x9c,0x2d,0x83,0xc4,0x2f,0xe9,0x6d,0x9a,0xed,0x1a,0xc2,0xc8,0x47,0x70,0xdd,0x1,
+  0x1b,0xd8,0xce,0x21,0x50,0x46,0x7d,0x45,0x63,0x3d,0xf9,0xba,0xeb,0x88,0xe3,0xf3,
+  0xb0,0xf,0x1f,0xc4,0x1b,0x88,0x63,0xc7,0xcc,0x5,0x1c,0x9a,0x5d,0x5f,0x92,0x10,
+  0x42,0x88,0x27,0xb3,0xfe,0x7,0x80,0x5b,0x87,0x8,0x2d,0xef,0x82,0xe9,0x85,0x1,
+  0x33,0x76,0x4b,0x9d,0xb,0xf6,0x81,0xc2,0x64,0x7b,0x39,0x95,0x3d,0x0,0xed,0x7b,
+  0xe,0x28,0xc1,0xc8,0x76,0x78,0xce,0xee,0x57,0xe8,0xff,0xea,0xb0,0xb1,0x8b,0x46,
+  0xa4,0x23,0x18,0x52,0x17,0xcf,0x6f,0x25,0x51,0xc6,0xc1,0xc0,0x18,0xf6,0x1,0x96,
+  0x32,0xc,0xc7,0xab,0x4,0xc6,0xb1,0xd4,0x61,0x43,0x1a,0x42,0x1f,0xe3,0x6f,0x71,
+  0x89,0xc0,0x8c,0xa8,0xd2,0x95,0x9b,0x9,0x28,0x68,0x4e,0x51,0x93,0x7,0xb,0x47,
+  0xcd,0x7b,0x6e,0x33,0x4e,0x87,0x5,0xb0,0x87,0x9,0x25,0x5c,0xa1,0xaa,0x5c,0xf6,
+  0xe6,0x45,0xbc,0x95,0xde,0x26,0xd8,0x3c,0xf7,0xc8,0x9b,0xf7,0x1,0x43,0x87,0xd,
+  0xae,0xc4,0xdd,0x88,0x5c,0x43,0x19,0xf,0xa4,0xce,0xc0,0x40,0x46,0xe7,0x46,0x36,
+  0x8a,0x18,0x99,0x62,0xd5,0xd0,0x3c,0xe6,0xd8,0x44,0x6c,0x7f,0x4,0xe2,0xf0,0xe4,
+  0x8d,0xef,0x1c,0xdf,0x82,0xf0,0x5d,0xdb,0x71,0x16,0xd5,0x82,0x71,0x66,0xd,0x5e,
+  0xe7,0x56,0x89,0x66,0x7c,0xf9,0x1b,0x26,0xf9,0x68,0x95,0x30,0xe6,0x85,0xb6,0x38,
+  0x7d,0x47,0xa0,0x94,0x3d,0xd6,0xa,0x3e,0x3,0x95,0x63,0x8b,0x96,0xae,0x0,0x22,
+  0xa3,0x13,0xbb,0x1f,0x73,0x24,0xba,0x75,0x2,0x6f,0x16,0x19,0x19,0xf8,0xad,0x85,
+  0xd,0xcd,0x65,0x8,0xb5,0xbc,0xb6,0x67,0x9a,0x73,0xb9,0xdd,0x53,0x36,0x30,0xdd,
+  0xa1,0x9d,0x25,0xba,0x5f,0xd8,0xd4,0x77,0xe7,0xdb,0x92,0x17,0xa1,0x7d,0x5d,0xdf,
+  0x60,0x65,0xcc,0xe7,0x41,0x37,0x6e,0x27,0x3,0x1f,0x82,0xa4,0xac,0x55,0x7a,0xc5,
+  0x86,0x43,0x34,0xbe,0xca,0xfc,0x7c,0xfb,0xdb,0x1,0xfe,0x81,0xb3,0xd2,0x18,0x9a,
+  0xd2,0x6,0x45,0xda,0xf5,0xea,0xf2,0xd0,0xe1,0x1b,0x91,0x91,0x3f,0x8b,0xbf,0xaa,
+  0x59,0xa4,0xaa,0xe,0x88,0x6b,0xd6,0x8e,0xb5,0xd3,0x91,0xbf,0x35,0x3a,0x9d,0x55,
+  0x24,0xdd,0xbd,0xb3,0x78,0xcb,0xdc,0xed,0xa4,0x22,0x9,0xd7,0xc2,0xf6,0x3d,0x3f,
+  0xa,0x13,0xf0,0xa2,0x5c,0xe,0xcc,0x92,0x4b,0xbf,0xe3,0x9f,0x9e,0x78,0x75,0xc5,
+  0xad,0x7d,0x8c,0x7f,0x7a,0x98,0xc8,0xeb,0xa,0x3d,0x4e,0xea,0x3d,0x8,0x2c,0x0,
+  0x83,0xab,0x71,0xb5,0xa5,0x7d,0xab,0xd2,0xc5,0x56,0x7b,0x5f,0xdb,0xef,0xdb,0x43,
+  0x36,0xe7,0xd0,0xbf,0xaf,0xcf,0x62,0xe,0xb1,0xd4,0xe7,0x9a,0xcd,0x71,0xd6,0x56,
+  0x20,0x7c,0x71,0x8c,0x91,0xda,0xb5,0x5d,0x92,0xa5,0x91,0x24,0xe3,0x9,0xb3,0xe5,
+  0xd5,0xed,0x6e,0x23,0xf0,0x45,0xc,0xd9,0x73,0xef,0xa6,0xc0,0xd1,0xa0,0x14,0x5a,
+  0x20,0x66,0x3c,0x7,0x21,0xb2,0x2a,0xa4,0x17,0xa3,0x6a,0xd7,0x98,0x82,0xc0,0x88,
+  0xd4,0xc9,0x54,0xee,0x98,0x1,0x75,0x9c,0xd6,0xbb,0x6c,0xd4,0x2a,0x79,0x29,0x9,
+  0x6a,0xb4,0xf3,0xb3,0x4c,0x81,0x69,0x1b,0x30,0x3d,0xb2,0x17,0xdb,0x9c,0x88,0x1a,
+  0x73,0x9,0x4c,0x61,0x44,0x54,0x55,0x2f,0xc4,0xb1,0x5d,0x8c,0xa3,0x69,0xf8,0xdd,
+  0xfd,0x9,0x84,0x60,0x99,0x6e,0x55,0xa1,0xa8,0x32,0xe0,0x97,0x93,0xcb,0x7e,0xfb,
+  0x66,0x15,0xa9,0x44,0x7,0x5,0x8f,0x4a,0x2a,0xf2,0x94,0xaa,0x9c,0x30,0xaa,0xd5,
+  0xf0,0x7c,0x4d,0x78,0x4,0xac,0x6b,0x66,0x4e,0xaa,0x94,0xaf,0x8,0x1,0xb1,0x42,
+  0xb,0x8e,0x22,0xd,0x86,0x2e,0xa3,0x3,0x70,0x5f,0x4e,0x96,0xf2,0xfc,0xa3,0x9c,
+  0x20,0xe3,0x27,0x26,0x8f,0x4a,0x96,0x78,0xb0,0x52,0x27,0xe2,0x88,0xa4,0x9c,0x40,
+  0xa3,0x13,0x95,0x2f,0x27,0x8,0x79,0x6a,0x42,0xe,0xed,0xd9,0x2a,0xc2,0x0,0xf0,
+  0xfb,0x95,0x44,0xb9,0xb7,0x1a,0x89,0x45,0xc1,0x8c,0x5e,0x46,0x5f,0x23,0x3e,0x59,
+  0x31,0x74,0x8e,0xc7,0x31,0xc9,0x88,0x4b,0x5,0x33,0xd0,0xaf,0x9c,0xfa,0x7e,0x41,
+  0xf1,0x4d,0x8e,0x88,0x16,0xf,0x27,0xc8,0x1f,0x93,0x8d,0x23,0xf2,0xe1,0x4b,0x47,
+  0x52,0x58,0xfa,0x7a,0xcb,0xe8,0x4d,0x4e,0x6e,0x3a,0xc2,0xf4,0xf5,0x88,0x82,0xfe,
+  0x50,0x3f,0xfc,0x3c,0x63,0xbf,0xa9,0x4f,0x2,0xb0,0xad,0x94,0x22,0x4f,0xb1,0xa2,
+  0x96,0x5b,0x65,0x4b,0xb7,0x61,0x58,0x45,0xd3,0x15,0xd6,0x8c,0x14,0x78,0x3,0x88,
+  0x6,0x31,0x43,0x30,0x97,0x12,0x5c,0x7b,0x86,0xb,0x77,0x22,0x8e,0xd4,0x2f,0xe0,
+  0xd5,0xa5,0x87,0xf9,0xe0,0x7a,0xaa,0xaf,0x2f,0x35,0x8a,0x9a,0x5d,0x82,0xdb,0xe9,
+  0x60,0x53,0x82,0xc4,0x0,0x42,0x8e,0x66,0xa3,0x4b,0xad,0x26,0x69,0x90,0x2d,0x8c,
+  0x42,0x35,0x63,0x42,0xd,0x4a,0xa8,0x50,0x57,0xbe,0xd5,0x47,0xaf,0xa9,0x1b,0xf9,
+  0x25,0x92,0xed,0x43,0xcf,0x75,0xe5,0x2e,0xe2,0x69,0xed,0xb,0x60,0x9,0x1a,0x18,
+  0xbf,0x5f,0x5b,0x36,0xcf,0x3d,0x5b,0x7e,0x37,0x24,0x1d,0xb5,0xa1,0xd0,0x92,0x28,
+  0xaf,0x2c,0xc7,0x90,0x70,0x90,0xfe,0x9c,0x2a,0x71,0xab,0x11,0x76,0x49,0xec,0x23,
+  0x25,0xc2,0x38,0x81,0xfc,0x2e,0xfb,0xa9,0x45,0xc,0xa6,0x70,0x4e,0xc9,0x4a,0x79,
+  0x4d,0xf2,0x22,0xa3,0x3,0xe2,0x56,0x63,0x72,0x8d,0xb0,0xe6,0xab,0x36,0xd9,0x52,
+  0x8c,0x35,0x6b,0x37,0x1f,0x34,0x26,0x3a,0xfd,0x11,0x9b,0x38,0x40,0xd4,0x7c,0x81,
+  0xd0,0xeb,0x91,0xb6,0xf1,0x28,0x47,0x7c,0xbd,0x93,0xcb,0x3,0xbc,0x56,0x6c,0x45,
+  0x9f,0x98,0xe4,0x6,0x34,0xe5,0xbf,0xf3,0x30,0x7c,0xc0,0x62,0xb2,0x8a,0x78,0x81,
+  0xf4,0x1e,0xd6,0x35,0x7f,0x19,0x93,0x35,0xf,0xf1,0xe7,0xfc,0xba,0x95,0xa1,0x6c,
+  0x65,0x20,0xb9,0xf4,0x69,0x82,0xf8,0xe,0xa,0xcb,0x9b,0x61,0x69,0x1d,0x67,0x58,
+  0xb3,0xcc,0x55,0xa6,0x3a,0x11,0x2d,0xa7,0x5d,0x7,0xdb,0xe7,0xf6,0xfb,0x8d,0x46,
+  0x19,0xcf,0x1f,0xc2,0xc8,0x32,0x74,0xbe,0xcf,0x27,0x69,0x83,0x1b,0x73,0xf2,0x7b,
+  0x5,0x47,0xb3,0x26,0x37,0x1f,0xbe,0x2e,0x3f,0x8d,0xc6,0x76,0x97,0x76,0xee,0x51,
+  0x19,0xa4,0xa9,0x8f,0x3c,0x55,0x5,0x5c,0x7d,0xa5,0xf0,0x31,0x92,0xff,0x40,0xd4,
+  0xe1,0x5e,0xba,0x6a,0x95,0x2e,0xb9,0x66,0x9c,0xf5,0xb1,0x60,0x26,0x4,0xfb,0x72,
+  0x3a,0xae,0xe3,0x17,0x7,0x73,0x8e,0xdb,0xfb,0xe5,0x14,0x12,0x16,0x35,0x8b,0x21,
+  0x64,0x17,0x30,0x39,0x51,0x46,0xa4,0x33,0x30,0x75,0x71,0xa1,0xa5,0xd0,0xa3,0x2d,
+  0xb,0x8d,0xb9,0xe7,0x3d,0xe6,0xf2,0x8b,0x34,0x0,0x9d,0xe8,0xf3,0xc1,0x2,0x40,
+  0xac,0x49,0x2a,0x55,0xde,0x6f,0x99,0xc3,0xe8,0x18,0xb4,0x2a,0x62,0xb5,0xf,0xe,
+  0xcc,0xe0,0x53,0xcf,0xc3,0x29,0x73,0x63,0x17,0xdc,0xac,0x32,0x76,0x91,0x82,0x80,
+  0x1c,0x87,0x53,0xff,0x9a,0xfe,0xca,0xf1,0x2a,0xfc,0xef,0x2c,0xef,0x84,0xe2,0x42,
+  0x8,0x31,0xd7,0x71,0xc6,0xb0,0x11,0x25,0xfb,0xaa,0x14,0x7c,0x89,0xd3,0x7d,0x71,
+  0x36,0x2e,0x71,0x3a,0xc7,0xcf,0x4c,0xca,0x1d,0x90,0xc7,0xfd,0xa3,0xd4,0x1a,0xf0,
+  0xb4,0xe2,0x33,0x15,0xd3,0x5d,0x92,0x74,0x2b,0x79,0x4,0x1e,0x43,0x2f,0xd4,0xdd,
+  0x4f,0x40,0xd0,0x91,0x33,0xdc,0x1f,0x8a,0xc7,0xbe,0xf,0x86,0x6b,0x4d,0x4,0x43,
+  0xec,0xc8,0x8,0x5c,0x9c,0x29,0xd6,0x59,0x1b,0xc9,0xd2,0xd7,0x8,0xd2,0xb8,0x9d,
+  0x7a,0x84,0x9,0xf4,0x50,0x51,0xd9,0x88,0x7d,0x56,0xcc,0x72,0x4a,0x7,0x39,0x5d,
+  0x39,0x31,0x69,0xb2,0x95,0x8e,0x50,0x93,0xcd,0x73,0x4f,0xd4,0x27,0xe7,0x45,0xbb,
+  0xd,0x5b,0xde,0xc7,0xcb,0x56,0x4d,0x7d,0xac,0xe,0x8f,0xa6,0x8f,0xd1,0x74,0x2d,
+  0x26,0x2,0x35,0x7f,0x1,0xdb,0x57,0xbd,0xb8,0x68,0x60,0xb0,0x2c,0x35,0xe4,0x90,
+  0xad,0x62,0x1,0xc3,0x19,0x13,0x36,0x8e,0x77,0xc,0x60,0xa7,0x92,0x76,0x61,0xa,
+  0xaa,0xa9,0xc7,0x27,0x3d,0xf8,0x5a,0xa9,0x38,0xb6,0xd0,0x3,0x27,0x62,0x9c,0x30,
+  0x45,0xca,0x64,0x48,0xc6,0xd9,0xce,0xbd,0xbc,0xac,0x1b,0x9b,0xf2,0x10,0x7b,0x66,
+  0x52,0xcb,0xb2,0x4,0xdb,0xe7,0x39,0x7,0x54,0x4d,0x5,0xf,0xbf,0xcd,0x81,0x69,
+  0x79,0x42,0x55,0x4d,0x1e,0x9a,0x11,0xab,0x55,0x70,0xd8,0x10,0x43,0x15,0x22,0x92,
+  0x4f,0x74,0xe3,0xaa,0x29,0xd7,0xdc,0x5c,0xde,0x42,0x79,0x6a,0xf6,0xd2,0xaa,0x41,
+  0x4a,0xa9,0xce,0xee,0x97,0xff,0x53,0x4,0x12,0x50,0xb8,0x5f,0xee,0x87,0x75,0xfb,
+  0x8f,0x9d,0x75,0xfb,0x25,0x58,0x67,0xee,0xd9,0x6c,0xa5,0xb0,0x29,0x7d,0x78,0x3a,
+  0x7d,0xe4,0xfa,0x0,0x4,0x7c,0xa5,0xad,0xf4,0xfd,0x63,0x67,0xdd,0xf7,0x25,0x58,
+  0xb7,0x7a,0xcf,0x3f,0x75,0x27,0xb5,0x16,0x8f,0x5c,0x1d,0x5a,0x85,0xd9,0xd1,0x7d,
+  0xed,0xa4,0xf6,0x63,0x67,0x5d,0xbb,0x4,0xeb,0x56,0xef,0xf9,0xa7,0xee,0xa4,0xfd,
+  0xc7,0xae,0xe,0xfb,0x5f,0x6d,0x27,0x4d,0xed,0xdb,0x47,0xce,0xbb,0xe9,0x67,0xdf,
+  0x4a,0x9f,0x76,0x7,0xb4,0x54,0x2d,0x5d,0x95,0xf1,0xd7,0x2e,0xa5,0xe3,0x4,0x5f,
+  0xa2,0x94,0xae,0x5d,0x7,0xdb,0xa6,0x94,0xfe,0xa8,0x4b,0xe9,0x28,0xd7,0x7b,0x2c,
+  0xa7,0x1b,0xd5,0x6,0x5b,0xa3,0xb1,0x4a,0x51,0xbd,0xb4,0x6f,0x31,0x6f,0xf3,0x68,
+  0xb9,0xd2,0x73,0x75,0x33,0xda,0x93,0xac,0xe3,0xfc,0xc3,0x8b,0xf8,0x9a,0xbb,0x2c,
+  0xf8,0x39,0x8d,0x39,0x58,0xd8,0x54,0xfd,0x37,0x55,0xff,0x4f,0x47,0x72,0x53,0xf5,
+  0xdf,0x54,0xfd,0xd3,0x6f,0x3f,0xa9,0xea,0xdf,0x3e,0xf8,0x4c,0x55,0xff,0x72,0x5f,
+  0xfa,0x25,0x1f,0xcf,0x46,0x23,0x8e,0x82,0x3d,0x58,0xcd,0xc9,0x6d,0xb2,0xbf,0xb0,
+  0x6d,0x8a,0xfb,0xaa,0x6d,0x8a,0xfb,0xe6,0x76,0x5f,0xac,0xdb,0xd4,0xc1,0x37,0x75,
+  0x70,0x73,0xdb,0x1c,0x29,0x6d,0xa,0xe1,0xf1,0xb6,0x29,0x84,0x7f,0x42,0x21,0x7c,
+  0x53,0x34,0xde,0x14,0x8d,0xc9,0xdf,0xae,0x68,0x7c,0x57,0xb9,0xab,0xfc,0x1f,0xfa,
+  0xa6,0xc,0xfa,
     // /home/sudheer/marketstoday/marketstoday-0.3/src/qml/StockDetailsRow.qml
   0x0,0x0,0x3,0xc5,
   0x2f,
@@ -1214,192 +1232,201 @@ static const unsigned char qt_resource_data[] = {
   0xa0,0x13,0x8f,0x89,0xbd,0x17,0xea,0xb8,0x29,0x2a,0x9e,0x78,0x75,0xf,0xe4,0xbf,
   0x1c,0xaa,0x8c,0xb8,0xb2,0xe2,0xb2,0xf7,0x1f,0xa1,0x82,0xe4,0xd4,
     // /home/sudheer/marketstoday/marketstoday-0.3/src/qml/MarketsTodayApp.qml
-  0x0,0x0,0xb,0x80,
+  0x0,0x0,0xc,0x3,
   0x0,
-  0x0,0x4c,0x1,0x78,0x9c,0xed,0x1c,0x6b,0x73,0xdb,0x36,0xf2,0xbb,0x7f,0x5,0xca,
-  0x9b,0x9b,0xb1,0x9b,0x2b,0x65,0x3b,0x71,0xae,0x95,0x2e,0x49,0x1d,0xbb,0xd3,0x78,
-  0xce,0xaf,0xf8,0xd1,0xcc,0x7d,0x84,0x49,0x48,0x42,0x45,0x1,0x2c,0x0,0x59,0x51,
-  0x32,0xfe,0xef,0xb7,0x20,0x48,0x8a,0xf,0x80,0xa4,0x6c,0x39,0xaf,0x66,0xfd,0x45,
-  0x4,0x16,0xb,0xec,0x62,0x77,0xb1,0xb,0x2e,0xdd,0xfb,0x71,0xe3,0xd7,0x5b,0x22,
-  0x24,0xe5,0xac,0x8f,0xb6,0xfd,0xdd,0x8d,0x5f,0xf1,0x4c,0x8d,0xb9,0xe8,0xa3,0xcb,
-  0x59,0x38,0x26,0x44,0xa0,0xff,0xfa,0xe8,0x3f,0x32,0xa0,0x43,0xba,0xf3,0xcb,0xb3,
-  0x7f,0x23,0xac,0xd0,0x68,0x8a,0x69,0xe4,0x7,0x7c,0xfa,0x72,0xe3,0xd7,0x88,0x6,
-  0x84,0x49,0xd2,0x47,0xbf,0x9f,0x5e,0xa3,0xdf,0x9,0x23,0x2,0x47,0xe8,0x7c,0x76,
-  0x3,0xed,0xe8,0xd8,0xf4,0x6d,0xfc,0xd8,0xdb,0xd8,0xa0,0xd3,0x98,0xb,0x85,0xde,
-  0xaa,0xb7,0x33,0x1a,0x4c,0xd0,0x8e,0xbf,0x93,0x35,0x1,0x1d,0x9f,0xf1,0x9,0xc5,
-  0xfe,0x94,0x90,0x11,0x87,0xae,0xed,0x1c,0xdd,0x3b,0xa6,0x37,0x2,0x8b,0x85,0x87,
-  0xb0,0x44,0xe9,0xef,0x6a,0x5f,0xef,0x4f,0xd9,0x3b,0xba,0x3c,0x3b,0xc4,0x8a,0xf8,
-  0x7f,0xca,0x4,0x53,0xff,0x86,0x5e,0x1b,0xe6,0xe1,0xeb,0x6b,0x45,0x23,0xaa,0x16,
-  0x39,0x6e,0xd6,0x60,0xc3,0x3e,0xe0,0xd3,0x29,0x67,0x19,0xaa,0x79,0xb2,0xe3,0x9,
-  0x72,0xcc,0x47,0x34,0x58,0xa2,0x8a,0x64,0x5,0x1b,0xe7,0x78,0x44,0x2e,0x15,0xe,
-  0x26,0xef,0x28,0xb,0xf9,0x1c,0x7d,0xdc,0x40,0x0,0x34,0xec,0x23,0x1c,0xc7,0xa6,
-  0xcd,0xb4,0x30,0xaa,0x28,0x8e,0x34,0x7a,0x1f,0x81,0x7c,0x99,0xfe,0x95,0xf4,0xc8,
-  0x31,0x9f,0x5f,0x71,0x1e,0xbd,0xc6,0xb0,0x27,0x43,0x1c,0xc9,0x65,0x33,0x10,0x56,
-  0x33,0x59,0xe8,0x48,0x7a,0x62,0xc1,0x63,0x22,0xd4,0x2,0x68,0x2a,0x4,0x9b,0xc9,
-  0xaf,0xe3,0x10,0x4,0x72,0xc4,0x14,0x11,0xb7,0x38,0xea,0xa3,0xa7,0xdb,0x1a,0xca,
-  0xb8,0x37,0x30,0x3,0x9a,0x25,0x88,0xef,0x8,0x99,0x1c,0xe2,0x85,0x3c,0x63,0xd1,
-  0xa2,0x38,0xa3,0xd,0xf7,0x8c,0x5d,0xe2,0x5b,0x12,0x9e,0x12,0x35,0xe7,0x62,0xe2,
-  0x1e,0x22,0x95,0xa0,0x6c,0x84,0x84,0x94,0xd7,0x17,0xc7,0x7d,0xe4,0x8d,0x95,0x8a,
-  0xfb,0xbd,0xde,0x90,0x32,0xcc,0x2,0xe2,0x2f,0xf0,0x98,0x73,0xad,0x51,0x3d,0xc0,
-  0xe8,0x29,0x1e,0x43,0x87,0x54,0x5c,0x50,0x22,0x3d,0x2b,0xa1,0x8,0x4b,0x65,0xd8,
-  0xa,0xaf,0xe8,0x54,0x4b,0x78,0x1a,0x5b,0x16,0x49,0xe5,0x21,0x91,0x13,0xa0,0xf7,
-  0x8e,0x86,0x23,0xa2,0x12,0x8c,0x5e,0xaf,0x4a,0x4c,0x92,0x88,0x4,0x40,0xe9,0x72,
-  0x31,0xbd,0xe1,0x51,0xdf,0xfb,0xdf,0x9b,0xb3,0x33,0xfb,0xb4,0x15,0x4c,0x39,0xc6,
-  0x82,0x84,0x7,0x1c,0x24,0xfb,0x5e,0xf9,0x30,0xc1,0xa5,0xe2,0xc1,0xc4,0x74,0x6e,
-  0x6e,0x99,0xdd,0x90,0x74,0xc4,0xc0,0x24,0xf4,0x76,0x1,0xe2,0x90,0x8e,0x8e,0xd8,
-  0x29,0x99,0x17,0x76,0xbe,0x80,0x90,0xc,0x3f,0x24,0xa,0xcc,0x4b,0x6e,0x66,0x53,
-  0x2a,0x61,0x8,0x6e,0x15,0xb1,0xff,0x9a,0x71,0x45,0x2e,0xc8,0x50,0x10,0x39,0x6,
-  0xe6,0x5,0xac,0xc9,0xd5,0xd,0x5a,0x1b,0x47,0x4,0x10,0x36,0x13,0x91,0xc8,0x59,
-  0x10,0x10,0x29,0xff,0x85,0x96,0xf4,0x4f,0xe0,0x19,0xb4,0xad,0x34,0x1,0x23,0x73,
-  0x79,0x41,0x22,0x8e,0xc3,0xfb,0x8d,0xf,0xc6,0x24,0x98,0xa4,0x6a,0x61,0xd4,0xd4,
-  0x88,0x63,0x38,0x63,0x81,0x2,0x5f,0x93,0x29,0x3c,0xfd,0x40,0x36,0xb7,0x8c,0x51,
-  0x68,0xc8,0x34,0xdf,0x5f,0x76,0xeb,0xc7,0xcd,0xad,0x41,0x82,0x72,0x67,0x88,0xe8,
-  0x26,0xb4,0x1c,0xa4,0xad,0x29,0x37,0x99,0xbc,0xb5,0x64,0x6,0x54,0x91,0xe9,0x1b,
-  0x42,0x47,0x63,0xd5,0x47,0x7b,0xdb,0x76,0x1c,0x45,0x55,0x44,0xc0,0x98,0x32,0xbc,
-  0xe7,0x2e,0x3c,0x63,0x8c,0x19,0xda,0x33,0x7,0x1a,0x68,0x73,0xcc,0x19,0x61,0xa,
-  0x74,0x4f,0x8d,0x97,0x2b,0xf4,0xe7,0xfa,0x79,0xb9,0xce,0x5c,0x22,0x22,0x11,0x37,
-  0xf8,0x2e,0x5c,0x94,0x88,0x86,0xd4,0x9b,0xf8,0x6,0xe3,0xad,0xde,0x5c,0x99,0x89,
-  0xc4,0x8e,0x3,0x2a,0x56,0xc2,0xb8,0xb3,0xcc,0x57,0x15,0x71,0x79,0xce,0x5b,0x2c,
-  0x96,0x2c,0x5c,0xf1,0x43,0x2a,0xe3,0x8,0x2f,0xd0,0xb,0x54,0x53,0xfa,0x83,0x1a,
-  0x56,0x75,0x6d,0x74,0x88,0x36,0x6d,0xb4,0x5e,0xbc,0x40,0x5e,0xa2,0xf3,0x9,0x4b,
-  0xa9,0xe2,0x7b,0x95,0x85,0x68,0x98,0xd1,0x63,0x60,0x8a,0x8,0x5f,0xf2,0x99,0x8,
-  0x48,0x3e,0xa3,0x5e,0x4e,0xc1,0x66,0xf2,0xf6,0x41,0x8d,0x42,0xb6,0xb9,0xfe,0xcd,
-  0x4c,0x29,0xce,0xae,0x16,0x31,0x81,0xc1,0xde,0x41,0xc4,0x25,0xf1,0x1a,0xd0,0x43,
-  0xb3,0xd6,0x13,0xc2,0x66,0x80,0x9f,0x78,0x36,0xb,0xb6,0xd1,0x88,0xc,0xf9,0x28,
-  0xe0,0x4c,0xda,0xb1,0xef,0x4a,0x4f,0x4,0xfa,0xeb,0xcc,0x2e,0x8f,0xa8,0xa2,0x8d,
-  0xd4,0x67,0x6d,0x13,0x8a,0xd1,0x93,0xeb,0xa3,0x6,0xa9,0x64,0x4a,0xe3,0x9e,0xe8,
-  0xce,0xa6,0x42,0x39,0x45,0x9f,0xb3,0xdc,0x3d,0xf4,0x51,0x99,0x15,0xbb,0x5,0x57,
-  0x28,0x69,0xe7,0x2d,0xaa,0x3,0xf5,0xe1,0x98,0x1f,0x5b,0x9,0x46,0x85,0x70,0x76,
-  0x90,0xd5,0xf,0xb7,0x12,0x62,0xaf,0x27,0x66,0x8c,0x81,0x93,0xea,0xa3,0xcd,0x3a,
-  0x2a,0xa8,0x1f,0xda,0x7e,0x65,0x36,0xa9,0xaf,0xc4,0x2c,0xf5,0x5f,0x19,0x8,0x12,
-  0x13,0xc,0xe6,0xad,0x7b,0x4a,0x1d,0xa0,0x3c,0x82,0x8e,0x46,0x44,0xd4,0x59,0x4e,
-  0x56,0x7,0xba,0xfe,0x43,0xfd,0x20,0xb5,0x28,0xb5,0x86,0x88,0x8f,0xb2,0xcd,0x86,
-  0x9f,0xa9,0x23,0xdd,0xf4,0xf6,0xa3,0x88,0xcf,0x49,0x8,0x8a,0x95,0x9e,0xb3,0x8,
-  0x47,0x11,0xa,0x81,0x16,0xe2,0x43,0xa4,0xc6,0x4,0xcd,0x81,0xb6,0x67,0x51,0xa,
-  0xd,0xb9,0xa7,0x29,0x7a,0x14,0x3b,0x6a,0xaf,0x57,0x77,0xd4,0x36,0xdc,0xbb,0x5a,
-  0x8b,0xd6,0xdd,0x84,0xd9,0x34,0x46,0xa2,0xf2,0x8a,0xc3,0x2,0xf7,0x53,0xa6,0x37,
-  0xb7,0x56,0xe3,0x38,0x19,0xc,0xe7,0x35,0xc2,0x9,0x6b,0xf0,0xf0,0xd9,0xb9,0x5b,
-  0x69,0xfd,0x46,0xb7,0x10,0xe3,0x70,0x3e,0x2c,0xd5,0x23,0xe7,0x4a,0xb7,0x37,0x72,
-  0x76,0xd7,0x6e,0x75,0xc7,0x54,0xaa,0x13,0x1e,0x92,0xa8,0x6e,0x2e,0x4b,0x7b,0xd7,
-  0xe2,0x48,0x90,0x1a,0x29,0x58,0x2c,0x4e,0x1f,0xf8,0x8d,0x83,0x2f,0x20,0xf2,0xc1,
-  0x6c,0x14,0x11,0xcb,0xe0,0x1b,0x8,0x70,0x47,0x82,0xcf,0x58,0x58,0xea,0x82,0xd8,
-  0xe,0x32,0x9,0xe9,0xf,0x69,0x4,0xd6,0x1a,0xc3,0xb9,0x51,0x75,0x42,0x1,0x8f,
-  0x74,0xaa,0xe1,0xfd,0xe3,0xe9,0x33,0xfd,0xe7,0x95,0x3b,0x23,0x1a,0xa7,0x6,0x58,
-  0x39,0xea,0x32,0x4f,0x67,0x31,0xbf,0x92,0x34,0x20,0xfc,0x8b,0xc8,0x48,0x67,0x3,
-  0x98,0x85,0x32,0xc0,0x71,0x85,0x92,0x86,0x23,0x8,0xd,0x2c,0x84,0x32,0x62,0x73,
-  0x1,0x81,0x3a,0x11,0x3,0x34,0xaf,0x1c,0xe3,0xe5,0xf3,0x7d,0x80,0xc6,0x69,0x3c,
-  0xb0,0xc,0x61,0xf2,0x98,0xc3,0x4a,0xbc,0x61,0x5e,0xd,0x5,0x71,0xe7,0x52,0xba,
-  0x89,0x40,0xce,0xde,0x0,0xf1,0x18,0x7,0xa0,0x80,0x7d,0x70,0x85,0x21,0x79,0x8f,
-  0xfe,0x89,0x76,0xd1,0x2b,0x9d,0xbb,0x21,0x9d,0xc1,0x3d,0x5b,0x2e,0x25,0x5d,0xbb,
-  0x6f,0x9e,0xd1,0x4f,0x68,0x37,0x67,0x23,0xeb,0x9a,0x9b,0xc5,0x3,0xad,0x1d,0xe7,
-  0x52,0x34,0x9c,0xf0,0x99,0x24,0xfb,0x82,0xe0,0x86,0x25,0x67,0x60,0xdb,0xf6,0xd6,
-  0x41,0x9c,0x1d,0x72,0x48,0x1b,0xc9,0x1,0x64,0x8e,0x13,0xbb,0x6b,0xb5,0xce,0x95,
-  0x65,0x51,0x7e,0x39,0x36,0xd7,0x87,0x60,0xf2,0xc3,0xee,0x19,0xaa,0xf0,0xf0,0x0,
-  0xc3,0x6,0x8e,0xa0,0xe3,0x75,0xb2,0x8b,0xab,0x51,0xe8,0x14,0x87,0x58,0x29,0x74,
-  0x8e,0x4d,0x6c,0x50,0xf7,0x8c,0xdd,0x7a,0xef,0xea,0x76,0x96,0xc1,0x45,0x9e,0x5,
-  0xbb,0xe0,0xbd,0x4e,0x51,0x7,0x5a,0x25,0xf7,0x9a,0x57,0xd8,0x6c,0x92,0xa0,0xef,
-  0xcf,0xb7,0x9b,0x9,0x48,0x6d,0x48,0x3a,0x3e,0xd8,0x73,0xaf,0x57,0xc3,0x15,0x84,
-  0xba,0x60,0x87,0x3a,0xe2,0x4d,0xdd,0xcb,0x29,0x9e,0x92,0xdc,0x98,0x8c,0x8a,0x1b,
-  0x5b,0x42,0x3f,0xc2,0xe2,0x7b,0x3b,0xdb,0xdb,0x3,0x34,0x84,0x18,0xd9,0x8f,0xe9,
-  0x7b,0x12,0x5d,0x42,0x14,0x4,0xec,0xfc,0x9c,0xb6,0x81,0x5a,0x86,0xc6,0xb1,0xd,
-  0xe0,0xa4,0xa1,0x21,0xf4,0xe9,0x19,0xfc,0xdf,0xf4,0xef,0xb,0x6d,0xab,0x83,0xdc,
-  0xe6,0xe7,0x63,0xf0,0x23,0x60,0xf3,0x52,0x2d,0xa2,0xc,0xef,0x2,0x53,0x49,0xc2,
-  0xb4,0xed,0xa0,0xe4,0x1c,0x5a,0x76,0xac,0xc4,0x88,0x4e,0xa2,0xaf,0x4,0xa8,0x7d,
-  0x78,0x2e,0x68,0xe0,0x64,0x67,0x67,0xcf,0xcd,0xe,0xd8,0x39,0xfd,0x0,0xed,0x38,
-  0xda,0x8f,0x20,0xf1,0x9b,0xc2,0xb8,0x74,0x8d,0xc9,0xf3,0x31,0x19,0x2a,0xb,0x8b,
-  0xa6,0x39,0xf7,0xfd,0x41,0x2,0x8f,0xc3,0x63,0x30,0x6,0x27,0x4a,0xd0,0xf,0x3a,
-  0xd5,0xf0,0x5e,0x41,0x1a,0x62,0x9e,0x9f,0x20,0xf,0x6d,0x7a,0x4f,0xcc,0xd3,0x39,
-  0x1,0x93,0x7,0x1e,0x46,0xe4,0x89,0xb7,0xe5,0x6d,0xf5,0x3d,0xcf,0x25,0x8a,0xdd,
-  0x54,0x14,0x6b,0x94,0xc5,0x85,0xf3,0x80,0xa8,0x42,0x2a,0x2f,0x3a,0xcc,0x98,0x78,
-  0x9,0x1,0xec,0xd6,0x47,0x6f,0x24,0x8,0x61,0xde,0xe0,0xce,0x84,0x64,0x1f,0x3d,
-  0x88,0x3c,0xe0,0xa9,0x13,0x49,0xd,0x8f,0x20,0xf4,0x5b,0x1e,0xcd,0xdc,0xe6,0xf1,
-  0x55,0xeb,0xd3,0x14,0x8b,0x9,0xa4,0xbc,0x38,0xfe,0x16,0xb8,0xb3,0xf7,0xd4,0x5b,
-  0xab,0xc1,0xe9,0x43,0xa3,0xb1,0x73,0x2e,0x94,0xc0,0x54,0xdd,0x37,0x18,0xd3,0x58,
-  0x5f,0x73,0x40,0xa6,0x67,0x6a,0x8,0xca,0x92,0xee,0x42,0x60,0xe6,0x5a,0x91,0x86,
-  0xef,0x41,0xdb,0xf7,0xa0,0xad,0xa,0x9f,0x2b,0x68,0xdb,0x59,0x4f,0xd0,0xd6,0x32,
-  0x3e,0x8f,0xd9,0x9e,0xae,0x33,0x66,0x7b,0xb6,0xfb,0x4d,0xc5,0x6c,0xbb,0xd,0x21,
-  0xe8,0x97,0x76,0xa,0x69,0x38,0xd0,0x11,0x3,0xeb,0xe0,0x3e,0x40,0xc1,0x7e,0x6a,
-  0xd3,0x30,0xd,0x8e,0xc3,0xf9,0x67,0x23,0x96,0xcc,0x1f,0xa7,0xdd,0x63,0xf7,0xa1,
-  0x50,0x84,0x5c,0xf3,0x76,0x5b,0x51,0x2d,0x31,0xa8,0x65,0x33,0x9e,0xff,0xcd,0x83,
-  0x46,0x87,0xa4,0x96,0xf1,0xf8,0xda,0x65,0xd6,0xcd,0xfd,0x7e,0xd1,0x42,0x5b,0x5b,
-  0x1c,0xfe,0x35,0xf9,0x88,0x4f,0x12,0xa9,0x26,0x57,0xa0,0x69,0x88,0xba,0x72,0x68,
-  0xaa,0x7,0xbf,0xfb,0x4c,0x77,0x85,0x2b,0xc5,0x6e,0xeb,0x88,0x63,0xb,0xcc,0xda,
-  0xe2,0xd8,0x62,0x77,0x31,0x8e,0x75,0xef,0xaf,0x51,0xdb,0x46,0xcd,0xce,0x98,0xbc,
-  0x25,0x42,0xd1,0x0,0x47,0x7,0x44,0xbf,0xc8,0xc9,0xb5,0xba,0xdc,0xdc,0x89,0x52,
-  0x4,0xea,0x9a,0x8f,0xd7,0xf,0x9d,0x47,0x9d,0x60,0x31,0xa2,0x4c,0x47,0x3c,0x9d,
-  0x86,0x88,0xd2,0x69,0x23,0x5a,0x9d,0xb7,0xb1,0xde,0x24,0x8c,0xb4,0x99,0x67,0xe3,
-  0xd8,0x42,0xb0,0xd2,0x21,0x5c,0xcc,0xa4,0x66,0xb5,0xf2,0x3f,0x3a,0xc8,0xb2,0x83,
-  0xa3,0x68,0x1c,0x7f,0x1f,0x37,0x5d,0x9,0xb3,0x9a,0xa3,0xc5,0xba,0xeb,0x69,0xc7,
-  0x2f,0xbb,0xa5,0x15,0x9d,0x92,0x86,0x3c,0xf1,0xea,0xa6,0xd2,0x9d,0x73,0x2e,0xce,
-  0xf2,0x4c,0xeb,0xad,0xf2,0x79,0x4c,0xd8,0xb5,0x88,0x7e,0x7b,0xf,0x9b,0xc4,0x70,
-  0x14,0x2d,0x36,0x23,0xca,0x26,0x8e,0x77,0x61,0xee,0x5,0xaf,0xe8,0x45,0xd3,0xb2,
-  0x27,0xff,0x2a,0xcd,0x72,0x1c,0xce,0x34,0x4b,0x82,0xea,0xab,0xb1,0x9c,0x46,0x16,
-  0x8f,0x58,0xae,0xc6,0xa8,0x53,0xc9,0x64,0xa7,0x78,0x9c,0xd3,0x82,0xdf,0x35,0xbc,
-  0x84,0xe,0xec,0xe5,0x49,0x72,0x71,0x23,0xcd,0x2b,0x39,0x8b,0xd2,0x2c,0xb3,0xbd,
-  0xbe,0xbb,0x2c,0xe0,0x43,0x1f,0xed,0x25,0xef,0x95,0xc9,0x5f,0x33,0x2a,0xcc,0xb,
-  0xda,0x9,0x21,0x31,0x4a,0x84,0x71,0x3,0xc2,0xc0,0x2c,0x44,0x49,0xbe,0x67,0xe8,
-  0x49,0xd8,0x32,0x40,0x8a,0xf5,0x6b,0x5b,0x2,0xc6,0xb6,0x50,0x63,0x5d,0x34,0x43,
-  0xf2,0x62,0xad,0x22,0xe8,0xdd,0x85,0x79,0x8b,0x5b,0xc,0xd3,0xa8,0xac,0x92,0xa8,
-  0x8c,0x7a,0xa5,0x91,0x84,0x6c,0xc9,0xbc,0x1b,0x52,0xe4,0x20,0xa9,0x46,0xca,0xc8,
-  0x34,0xe7,0xc8,0xab,0xe7,0xc4,0xab,0xe7,0xc0,0xab,0xe5,0xbc,0x96,0x5c,0x95,0xb3,
-  0xb3,0x58,0x17,0xb6,0x3c,0x58,0x26,0xe7,0x58,0xe0,0xe9,0x37,0x22,0x12,0xbd,0x9e,
-  0xfb,0xcb,0xa3,0x6b,0x1d,0x49,0x83,0x40,0x5c,0xa6,0xb4,0x56,0x89,0x24,0x69,0xb9,
-  0x75,0x40,0x4b,0x41,0x59,0x59,0x7e,0xd,0xd2,0x34,0x22,0x72,0xf8,0xba,0x4c,0x82,
-  0x5d,0x5c,0x5d,0xb3,0x23,0x5b,0xa,0x91,0x83,0x10,0xa7,0x4e,0x64,0xd3,0xdd,0xcf,
-  0xe5,0x51,0xf5,0x7c,0x2e,0x9f,0x6d,0xd0,0xed,0x6c,0xa4,0xb4,0xee,0xeb,0xaf,0x8b,
-  0x55,0x71,0xad,0xeb,0x4e,0x89,0x39,0xb8,0xcc,0xc3,0xd0,0x6d,0xff,0x97,0x5a,0x67,
-  0xba,0xf5,0xa7,0xf8,0x96,0x42,0xa0,0x9e,0x94,0x2d,0x2f,0xb,0x4e,0x4b,0x54,0x98,
-  0x29,0x60,0x7c,0x9d,0xe8,0x63,0x6e,0x4,0x8e,0xfa,0x11,0xcb,0x70,0x5d,0x44,0x57,
-  0x19,0xbc,0xb2,0x5,0xe9,0x50,0xb8,0xcd,0x70,0x56,0xd5,0xe9,0x7c,0xd3,0x21,0xa,
-  0xd5,0xe5,0x77,0x10,0xa4,0x31,0x95,0xd9,0x5b,0x52,0x4f,0x27,0x2d,0x6,0x67,0x75,
-  0xf,0x6,0xfb,0xa1,0x4c,0xae,0xe4,0x26,0xd6,0xca,0xad,0xde,0x22,0x3b,0xaf,0xb5,
-  0x36,0x18,0xc9,0x48,0x52,0xf9,0x28,0x1d,0x1c,0x9a,0x19,0xaa,0x95,0xd9,0x75,0xa1,
-  0xbd,0xad,0x17,0xdf,0xf6,0xdd,0x81,0x5e,0x52,0x10,0x96,0x31,0x61,0xaa,0xb9,0xce,
-  0x9,0xb,0x21,0xc,0xd8,0x42,0xd6,0xe6,0x46,0x69,0xd8,0x43,0xb8,0xf2,0x9a,0x96,
-  0x25,0x79,0xee,0x55,0xb9,0x66,0x6e,0xf0,0xbd,0x1d,0xe2,0xc4,0x7b,0xbf,0x19,0x2a,
-  0xa8,0xcd,0x2a,0x89,0x77,0x9e,0xcb,0x36,0x88,0x1f,0x26,0x8a,0xa8,0x54,0x7f,0x50,
-  0x32,0x4f,0x73,0x52,0x27,0x6e,0x17,0x77,0x9d,0x41,0xd7,0xf8,0xb3,0x8a,0x9f,0x79,
-  0xc0,0x21,0x7,0xbe,0x45,0x92,0x97,0x34,0xd,0xab,0x15,0x48,0x39,0x31,0x8f,0x53,
-  0x26,0x5b,0xd2,0xe8,0x8a,0xe0,0xf5,0x88,0xf5,0xe6,0x28,0x43,0xed,0x46,0xe,0x49,
-  0x40,0x22,0x22,0x52,0xff,0xbc,0xb7,0xdd,0x9c,0x27,0x4f,0x75,0xcd,0x59,0x73,0x15,
-  0x9b,0xd,0xc2,0xf4,0xae,0xa6,0x8f,0xaa,0x3b,0x9c,0x5d,0x4a,0xbc,0xac,0x75,0x98,
-  0xcb,0xaf,0x57,0x4d,0x6f,0x25,0x51,0x4b,0x5,0x59,0x23,0xf3,0x3c,0x98,0xc9,0x7e,
-  0xad,0x66,0xb4,0xa,0x92,0xe1,0x58,0xf3,0xd7,0xcf,0x77,0xcd,0xbf,0x84,0xa6,0x2b,
-  0xae,0x75,0x7d,0xe5,0xf4,0xad,0xd9,0x34,0x1a,0xf4,0x21,0xd7,0x5,0x53,0x1a,0x79,
-  0x22,0x47,0x3a,0x67,0x75,0xa2,0x67,0x67,0xfe,0x4e,0xc3,0x76,0x36,0x16,0xf4,0x15,
-  0x21,0xd5,0x2b,0xf4,0xb1,0x76,0xb,0x33,0x40,0xa5,0x2b,0x96,0xbd,0x1,0xb2,0xdc,
-  0x9f,0xa4,0x8d,0x5,0xac,0xd6,0x6b,0xd8,0x4e,0x17,0x47,0xee,0x9c,0xfe,0x96,0x4a,
-  0x7a,0xa3,0x53,0xc9,0xc2,0xa7,0x36,0x36,0xe8,0x70,0x95,0x55,0x91,0xbb,0x1e,0xb1,
-  0x5e,0x1b,0x34,0x17,0x48,0x9e,0x3e,0xb0,0xb5,0x5b,0x4f,0x3e,0x7,0x91,0xbe,0xef,
-  0xde,0xd,0xd,0x2d,0x57,0x39,0x6f,0x8c,0x80,0x6,0xf,0xbf,0x33,0xb2,0x6,0x94,
-  0xb6,0x8b,0xfe,0xda,0xe5,0xd0,0x29,0x9c,0x10,0xdd,0xee,0x86,0xb2,0xcb,0xe7,0xe6,
-  0x85,0x88,0xcc,0xc,0x93,0x29,0xb4,0x8f,0xd8,0x57,0xef,0xb8,0x8,0x5f,0xeb,0x52,
-  0x56,0x8,0x98,0xcf,0xc4,0x3e,0x5b,0xcc,0xc7,0x44,0xb4,0x98,0x73,0xb7,0xfb,0xed,
-  0xe6,0xf7,0x95,0xed,0xf1,0x49,0x11,0xba,0xc5,0x2a,0x45,0x70,0xc5,0x8,0x1d,0xdf,
-  0xd9,0xeb,0x30,0x26,0xfd,0xf6,0xc7,0x51,0xd9,0x6d,0x83,0xba,0x77,0xf1,0x53,0x3b,
-  0x5a,0xed,0x85,0x78,0xb7,0x97,0x2c,0xee,0xaa,0xed,0x96,0xb5,0x99,0x63,0x58,0x1b,
-  0xee,0x8b,0xc2,0x7,0x4d,0xdd,0x96,0x56,0x21,0x55,0x67,0xd3,0x1d,0xcc,0x55,0xa1,
-  0x9d,0xcb,0xfb,0xbf,0xda,0xb7,0xb7,0x3e,0x24,0xaa,0x5a,0x46,0x30,0x6b,0x9,0xa8,
-  0xb2,0xd3,0x65,0x77,0x6f,0x6d,0x87,0x4b,0xc7,0x74,0x33,0x83,0x8e,0x9e,0x5b,0x95,
-  0x3e,0x38,0x6c,0x5b,0xc2,0x8a,0x3e,0xdb,0xf9,0x61,0xa3,0xb,0x5a,0xbc,0x76,0x5a,
-  0x99,0xf0,0x89,0x7c,0xf6,0xee,0xfd,0xde,0xbb,0xae,0xe4,0xb4,0xbf,0x6a,0x67,0xdb,
-  0xcd,0x3b,0xe5,0x1a,0x96,0xf9,0x24,0x9b,0x56,0x3c,0x66,0x1d,0x50,0xb7,0xd6,0x6e,
-  0x2f,0x5b,0x1b,0x72,0xbf,0x6a,0x81,0x56,0xd,0xf3,0xd2,0x86,0xe5,0xd8,0x30,0x53,
-  0x39,0xd6,0xaf,0x7c,0xa3,0xeb,0x48,0x97,0x8f,0xf9,0xe8,0x82,0xfc,0x35,0x23,0x52,
-  0x9b,0x9c,0xf5,0x8b,0x9e,0xea,0x77,0xad,0x36,0x1a,0xc1,0xe4,0x88,0xe5,0x79,0x41,
-  0xe1,0x66,0x49,0x7f,0xb8,0xc,0x16,0xa9,0xd5,0x4b,0x23,0xc1,0x6,0xea,0xe6,0xb3,
-  0x65,0xab,0xaf,0x9b,0x9b,0x33,0xa,0xce,0xae,0x59,0x4,0x58,0x85,0x51,0x2b,0xcd,
-  0xb0,0x3f,0x3,0x57,0x7,0x3f,0x83,0x7b,0x6e,0x5b,0xc3,0x3b,0xf2,0xc7,0x4c,0xd5,
-  0x35,0x7d,0x9d,0xf,0x35,0x26,0x22,0x9f,0x32,0x4f,0xef,0x76,0x74,0x3c,0x4a,0x9a,
-  0x9e,0xc9,0xe2,0x4b,0xc9,0xcf,0xed,0x9f,0x88,0xd9,0xa0,0x90,0x99,0x97,0x8a,0x2a,
-  0x1a,0xd7,0xf5,0xd5,0xa5,0xce,0x9a,0xb5,0xef,0x99,0xf3,0x27,0xcf,0x9c,0x97,0x62,
-  0x7f,0xf4,0xc4,0x59,0x4f,0xf5,0x3d,0x6d,0xae,0x2d,0xe4,0xef,0x95,0x36,0x9f,0xd6,
-  0xff,0x15,0xc6,0xe3,0x26,0xcd,0x35,0xbf,0x72,0xbf,0x9c,0x39,0x23,0x95,0x1d,0xa7,
-  0x8f,0x94,0x92,0x6a,0x58,0x2d,0xf1,0x2e,0x1b,0xf0,0x43,0xf2,0x6e,0x7,0x7b,0xf7,
-  0x10,0xd2,0x37,0x91,0xbc,0x3f,0x28,0xb2,0xb3,0xd7,0x83,0x58,0xdf,0xa3,0x59,0xf0,
-  0x1c,0x85,0x91,0x85,0x7f,0xbb,0xd2,0xb5,0xd6,0xd1,0xf9,0x7f,0x53,0xca,0x1d,0x8f,
-  0x12,0xd8,0xaf,0x41,0x80,0x95,0xe2,0x11,0x87,0xf8,0x12,0x2c,0xf0,0x24,0xad,0x12,
-  0x5c,0x37,0x47,0xe5,0x5f,0x77,0x1b,0x77,0x1b,0xff,0x7,0xfc,0x2c,0x65,0xbb,
+  0x0,0x50,0xe5,0x78,0x9c,0xed,0x1c,0x6b,0x73,0xdb,0x36,0xf2,0xbb,0x7f,0x5,0xc2,
+  0x9b,0x9b,0xb1,0xfb,0xa0,0x6c,0x37,0xce,0xb5,0xd4,0xe5,0x69,0x77,0x5a,0x4f,0xfd,
+  0x8a,0xed,0x34,0x73,0x73,0x73,0x1f,0x68,0x12,0x92,0x50,0x53,0x0,0xb,0x40,0x56,
+  0x94,0x8c,0xff,0xfb,0x2d,0x8,0x82,0xe2,0x3,0x20,0x29,0x5b,0x4e,0x9a,0x34,0xeb,
+  0x2f,0x22,0xb0,0x78,0xec,0x62,0x77,0xb1,0xbb,0x5c,0x7a,0xf0,0xcd,0xc6,0x8b,0x1b,
+  0xcc,0x5,0x61,0x34,0x40,0xdb,0xfe,0xee,0xc6,0x8b,0x70,0x26,0x27,0x8c,0x7,0xe8,
+  0x62,0x16,0x4f,0x30,0xe6,0xe8,0x37,0x1f,0xfd,0x5b,0x44,0x64,0x44,0x76,0x7e,0x7a,
+  0xfc,0x2f,0x14,0x4a,0x34,0x9e,0x86,0x24,0xf1,0x23,0x36,0x7d,0xb6,0xf1,0x22,0x21,
+  0x11,0xa6,0x2,0x7,0xe8,0x97,0x93,0x37,0xe8,0x17,0x4c,0x31,0xf,0x13,0x74,0x36,
+  0xbb,0x82,0x76,0x74,0xa4,0xfb,0x36,0xbe,0x19,0x6c,0x6c,0x90,0x69,0xca,0xb8,0x44,
+  0xaf,0xe5,0xeb,0x19,0x89,0xae,0xd1,0x8e,0xbf,0x63,0x9a,0x60,0x1e,0x9f,0xb2,0x6b,
+  0x12,0xfa,0x53,0x8c,0xc7,0xc,0xba,0xb6,0xb,0x74,0xef,0x88,0x5c,0xf1,0x90,0x2f,
+  0x3c,0x14,0xa,0x94,0xff,0xae,0xf7,0xd,0xfe,0x10,0x83,0xc3,0x8b,0xd3,0x83,0x50,
+  0x62,0xff,0xf,0x91,0x61,0xaa,0xdf,0xd0,0x6b,0xc3,0x3c,0x78,0xf5,0x46,0x92,0x84,
+  0xc8,0x45,0x81,0x6b,0x1a,0x6c,0xd8,0xfb,0x6c,0x3a,0x65,0xd4,0xa0,0xea,0x27,0x3b,
+  0x1e,0xc7,0x47,0x6c,0x4c,0xa2,0x25,0x2a,0xcf,0x76,0xb0,0x71,0x16,0x8e,0xf1,0x85,
+  0xc,0xa3,0xeb,0xb7,0x84,0xc6,0x6c,0x8e,0x3e,0x6c,0x20,0x0,0x12,0x7,0x28,0x4c,
+  0x53,0xdd,0xa6,0x5b,0x28,0x91,0x24,0x4c,0x14,0x7a,0x80,0x80,0xbf,0x54,0xfd,0xca,
+  0x7a,0xc4,0x84,0xcd,0x2f,0x19,0x4b,0x5e,0x85,0x70,0x26,0xa3,0x30,0x11,0xcb,0x66,
+  0x98,0x58,0xce,0x44,0xa9,0x23,0xeb,0x49,0x39,0x4b,0x31,0x97,0xb,0x98,0x53,0x22,
+  0x38,0x4c,0xf6,0x26,0x8d,0x81,0x21,0x87,0x54,0x62,0x7e,0x13,0x26,0x1,0xfa,0x61,
+  0x5b,0x41,0x15,0xf7,0xa,0x56,0x40,0xb3,0xc,0xf1,0x2d,0xc6,0xd7,0x7,0xe1,0x42,
+  0x9c,0xd2,0x64,0x51,0x5e,0xd1,0x86,0x7b,0x4a,0x2f,0xc2,0x1b,0x1c,0x9f,0x60,0x39,
+  0x67,0xfc,0xda,0x3d,0x44,0x48,0x4e,0xe8,0x18,0x71,0x21,0xde,0x9c,0x1f,0x5,0xc8,
+  0x9b,0x48,0x99,0x6,0x83,0xc1,0x88,0xd0,0x90,0x46,0xd8,0x5f,0x84,0x13,0xc6,0x94,
+  0x44,0xd,0x0,0x63,0x20,0x59,0xa,0x1d,0x42,0x32,0x4e,0xb0,0xf0,0xac,0x13,0x25,
+  0xa1,0x90,0x9a,0xac,0xf8,0x92,0x4c,0x15,0x87,0xa7,0xa9,0x65,0x93,0x44,0x1c,0x60,
+  0x71,0xd,0xf3,0xbd,0x25,0xf1,0x18,0xcb,0xc,0x63,0x30,0xa8,0x4f,0x26,0x70,0x82,
+  0x23,0x98,0xe9,0x62,0x31,0xbd,0x62,0x49,0xe0,0xfd,0xe7,0xd7,0xd3,0x53,0xfb,0xb2,
+  0x35,0x4c,0x31,0x9,0x39,0x8e,0xf7,0x19,0x70,0xf6,0x9d,0xf4,0x61,0x81,0xb,0xc9,
+  0xa2,0x6b,0xdd,0xb9,0xb9,0xa5,0x4f,0x43,0x90,0x31,0x5,0x95,0x50,0xc7,0x5,0x88,
+  0x23,0x32,0x3e,0xa4,0x27,0x78,0x5e,0x3a,0xf9,0x12,0x42,0x36,0xfc,0x0,0x4b,0x50,
+  0x2f,0xb1,0x69,0x96,0x94,0x5c,0x4f,0xb8,0x55,0xc6,0xfe,0x73,0xc6,0x24,0x3e,0xc7,
+  0x23,0x8e,0xc5,0x4,0x88,0xe7,0xb0,0x27,0x57,0x37,0x48,0x6d,0x9a,0x60,0x40,0xd8,
+  0xcc,0x58,0x22,0x66,0x51,0x84,0x85,0xf8,0xe,0x2d,0xe7,0x3f,0x86,0x67,0x90,0xb6,
+  0xca,0x2,0x14,0xcf,0xc5,0x39,0x4e,0x58,0x18,0xdf,0x6d,0x7c,0x34,0xc1,0xd1,0x75,
+  0x2e,0x16,0x5a,0x4c,0x35,0x3b,0x46,0x33,0x1a,0x49,0xb0,0x35,0x46,0xe0,0xc9,0x7b,
+  0xbc,0xb9,0xa5,0x95,0x42,0x81,0x91,0x7c,0x7f,0xd9,0xad,0x1e,0x37,0xb7,0x86,0x19,
+  0xca,0xad,0x9e,0x44,0x35,0xa1,0xe5,0x20,0xa5,0x4d,0x85,0xca,0x14,0xad,0x15,0x35,
+  0x20,0x12,0x4f,0x7f,0xc5,0x64,0x3c,0x91,0x1,0xda,0xdb,0xb6,0xe3,0x48,0x22,0x13,
+  0xc,0xca,0x64,0xf0,0x9e,0xb8,0xf0,0xb4,0x32,0x1a,0xb4,0xc7,0xe,0x34,0x90,0xe6,
+  0x94,0x51,0x4c,0x25,0xc8,0x9e,0x9c,0x2c,0x77,0xe8,0xcf,0xd5,0xf3,0x72,0x9f,0x5,
+  0x47,0x78,0xc6,0x6e,0xb0,0x5d,0x61,0x99,0x23,0xa,0x72,0x6b,0xe2,0x6b,0x8c,0xd7,
+  0xea,0x70,0x85,0x61,0x89,0x1d,0x7,0x44,0xac,0x82,0x71,0x6b,0x59,0xaf,0xce,0xe2,
+  0xea,0x9a,0x37,0x21,0x5f,0x92,0x70,0xc9,0xe,0x88,0x48,0x93,0x70,0x81,0x9e,0xa2,
+  0x86,0xd0,0xef,0x37,0xb0,0xea,0x7b,0x23,0x23,0xb4,0x69,0x9b,0xeb,0xe9,0x53,0xe4,
+  0x65,0x32,0x9f,0x91,0x94,0xb,0xbe,0x57,0xdb,0x88,0x82,0x19,0x39,0x2,0xa2,0x30,
+  0xf7,0x5,0x9b,0xf1,0x8,0x17,0x2b,0xaa,0xed,0x94,0x74,0xa6,0x68,0x1f,0x36,0x66,
+  0x30,0x87,0xeb,0x5f,0xcd,0xa4,0x64,0xf4,0x72,0x91,0x62,0x18,0xec,0xed,0x27,0x4c,
+  0x60,0xaf,0x5,0x3d,0xd6,0x7b,0x3d,0xc6,0x74,0x6,0xf8,0x99,0x65,0xb3,0x60,0x6b,
+  0x89,0x30,0xc8,0x87,0x11,0xa3,0xc2,0x8e,0x7d,0x5b,0x79,0xc2,0xd0,0xdf,0x24,0x76,
+  0x79,0x45,0x95,0x75,0xa4,0xb9,0x6a,0x17,0x53,0xb4,0x9c,0xbc,0x39,0x6c,0xe1,0x8a,
+  0x11,0x1a,0xf7,0x42,0xb7,0x36,0x11,0x2a,0x66,0xf4,0x19,0x2d,0xcc,0x43,0x80,0xaa,
+  0xa4,0xd8,0x35,0xb8,0x36,0x93,0x32,0xde,0xbc,0x3e,0x50,0x5d,0x8e,0xc5,0xb5,0x95,
+  0x61,0xd4,0x26,0x36,0x17,0x59,0xf3,0x72,0xab,0x20,0xe,0x6,0x7c,0x46,0x29,0x18,
+  0xa9,0x0,0x6d,0x36,0x51,0x41,0xfc,0xd0,0xf6,0x73,0x7d,0x48,0x81,0xe4,0xb3,0xdc,
+  0x7e,0x19,0xe0,0x38,0xc5,0x21,0xa8,0xb7,0xea,0xa9,0x74,0x80,0xf0,0x70,0x32,0x1e,
+  0x63,0xde,0x24,0x39,0xdb,0x1d,0xc8,0xfa,0xa3,0xe6,0x45,0x6a,0x11,0x6a,0x5,0x9,
+  0x1b,0x9b,0xc3,0x86,0x9f,0xb9,0x21,0xdd,0xf4,0x5e,0x26,0x9,0x9b,0xe3,0x18,0x4,
+  0x2b,0xbf,0x67,0x51,0x98,0x24,0x28,0x86,0xb9,0x10,0x1b,0x21,0x39,0xc1,0x68,0xe,
+  0x73,0x7b,0x16,0xa1,0x50,0x50,0x58,0x9a,0xb2,0x45,0xb1,0xa3,0xe,0x6,0x4d,0x43,
+  0x6d,0xc3,0xbd,0x6d,0xb4,0x28,0xd9,0xcd,0x88,0xcd,0x7d,0x24,0x22,0x2e,0x19,0x6c,
+  0xf0,0x65,0x4e,0xf4,0xe6,0xd6,0x6a,0x14,0x67,0x83,0xe1,0xbe,0x46,0x61,0x46,0x1a,
+  0x3c,0x7c,0x72,0xea,0x56,0xda,0xbf,0x96,0x2d,0x44,0x19,0xdc,0xf,0x4b,0xf1,0x28,
+  0xa8,0x52,0xed,0xad,0x94,0xdd,0x76,0x6b,0xdd,0x11,0x11,0xf2,0x98,0xc5,0x38,0x69,
+  0xaa,0xcb,0x52,0xdf,0x15,0x3b,0x32,0xa4,0xd6,0x19,0x2c,0x1a,0xa7,0x2e,0xfc,0xd6,
+  0xc1,0xe7,0xe0,0xf9,0x84,0x74,0x9c,0x60,0xcb,0xe0,0x2b,0x70,0x70,0xc7,0x9c,0xcd,
+  0x68,0x5c,0xe9,0x2,0xdf,0xe,0x22,0x9,0xe1,0x8f,0x48,0x2,0xda,0x9a,0xc2,0xbd,
+  0x51,0x37,0x42,0x11,0x4b,0x54,0xa8,0xe1,0xfd,0xe3,0x87,0xc7,0xea,0xcf,0xab,0x76,
+  0x26,0x24,0xcd,0x15,0xb0,0x76,0xd5,0x19,0x4b,0x67,0x51,0xbf,0xa,0x37,0xc0,0xfd,
+  0x4b,0xf0,0x58,0x45,0x3,0x21,0x8d,0x45,0x14,0xa6,0xb5,0x99,0x14,0x1c,0x82,0x6b,
+  0x60,0x99,0xc8,0x4c,0x36,0xe7,0xe0,0xa8,0x63,0x3e,0x44,0xf3,0xda,0x35,0x5e,0xbd,
+  0xdf,0x87,0x68,0x92,0xfb,0x3,0x4b,0x17,0xa6,0xf0,0x39,0xac,0x93,0xb7,0xac,0xab,
+  0xa0,0xc4,0xee,0x82,0x4b,0x57,0x9,0xf0,0xd9,0x1b,0x22,0x96,0x86,0x11,0x8,0x60,
+  0x0,0xa6,0x30,0xc6,0xef,0xd0,0x3f,0xd1,0x2e,0x7a,0xae,0x62,0x37,0xa4,0x22,0xb8,
+  0xc7,0xcb,0xad,0xe4,0x7b,0xf7,0xf5,0x33,0xfa,0x1e,0xed,0x16,0x64,0x98,0xae,0xb9,
+  0xde,0x3c,0xcc,0xb5,0xe3,0xdc,0x8a,0x82,0x63,0x36,0x13,0xf8,0x25,0xc7,0x61,0xcb,
+  0x96,0xd,0xd8,0x8e,0xbd,0x73,0x10,0xa3,0x7,0xc,0xc2,0x46,0xbc,0xf,0x91,0xe3,
+  0xb5,0xdd,0xb4,0x5a,0xd7,0x32,0x51,0x94,0x5f,0xf5,0xcd,0xd5,0x25,0x98,0xfd,0xb0,
+  0x5b,0x86,0x3a,0xdc,0xdf,0xc1,0xb0,0x81,0xc3,0xe9,0x78,0x95,0x9d,0xe2,0x6a,0x33,
+  0xf4,0xf2,0x43,0xac,0x33,0xf4,0xf6,0x4d,0x6c,0xd0,0xb4,0x8c,0xfd,0x7a,0x6f,0x9b,
+  0x7a,0x66,0xe0,0xbc,0x88,0x82,0x5d,0xf0,0x4e,0x85,0xa8,0x43,0x25,0x92,0x7b,0xed,
+  0x3b,0x6c,0x57,0x49,0x90,0xf7,0x27,0xdb,0xed,0x13,0x8,0xa5,0x48,0xca,0x3f,0xd8,
+  0x73,0xef,0x57,0xc1,0x25,0xb8,0xba,0xa0,0x87,0xca,0xe3,0xcd,0xcd,0xcb,0x49,0x38,
+  0xc5,0x85,0x32,0x69,0x11,0xd7,0xba,0x84,0xbe,0x81,0xcd,0xf,0x76,0xb6,0xb7,0x87,
+  0x68,0x4,0x3e,0xb2,0x9f,0x92,0x77,0x38,0xb9,0x0,0x2f,0x8,0xc8,0xf9,0x31,0x6f,
+  0x3,0xb1,0x8c,0xb5,0x61,0x1b,0xc2,0x4d,0x43,0x62,0xe8,0x53,0x2b,0xf8,0x3f,0xab,
+  0xdf,0xe7,0x4a,0x57,0x87,0x85,0xce,0xcf,0x27,0x60,0x47,0x40,0xe7,0x85,0x5c,0x24,
+  0x6,0xef,0x3c,0x24,0x2,0xc7,0x79,0xdb,0x7e,0xc5,0x38,0x74,0x9c,0x58,0x85,0x10,
+  0x15,0x44,0x5f,0x72,0x10,0xfb,0xf8,0x8c,0x93,0xc8,0x49,0xce,0xce,0x9e,0x9b,0x1c,
+  0xd0,0x73,0xf2,0x1e,0xda,0xc3,0xe4,0x65,0x2,0x81,0xdf,0x14,0xc6,0xe5,0x7b,0xcc,
+  0x9e,0x8f,0xf0,0x48,0x5a,0x48,0xd4,0xcd,0x85,0xed,0x8f,0x32,0x78,0x18,0x1a,0xa3,
+  0x9,0x18,0x51,0x8c,0x1e,0xa9,0x50,0xc3,0x7b,0xe,0x61,0x88,0x7e,0xfe,0x16,0x79,
+  0x68,0xd3,0xfb,0x56,0x3f,0x9d,0x61,0x50,0x79,0xa0,0x61,0x8c,0xbf,0xf5,0xb6,0xbc,
+  0xad,0xc0,0xf3,0x5c,0xac,0xd8,0xcd,0x59,0xb1,0x46,0x5e,0x9c,0x3b,0x2f,0x88,0x3a,
+  0xe4,0xfc,0x22,0x23,0x43,0xc4,0x33,0x70,0x60,0xb7,0x3e,0x78,0x63,0x8e,0x31,0xf5,
+  0x86,0xb7,0xda,0x25,0xfb,0xe0,0x81,0xe7,0x1,0x4f,0xbd,0xa6,0x54,0xf0,0x0,0x4c,
+  0xbf,0x61,0xc9,0xcc,0xad,0x1e,0x9f,0xb5,0x3c,0x4d,0x43,0x7e,0xd,0x21,0x6f,0x98,
+  0x7e,0x9,0xd4,0xd9,0x7b,0x9a,0xad,0x75,0xe7,0xf4,0xbe,0xde,0xd8,0x19,0xe3,0x92,
+  0x87,0x44,0xde,0xd5,0x19,0x53,0x58,0x9f,0xb3,0x43,0xa6,0x56,0x6a,0x71,0xca,0xb2,
+  0xee,0x92,0x63,0xe6,0xda,0x91,0x82,0xaf,0x4e,0xdb,0x57,0xa7,0xad,0xe,0x9f,0xca,
+  0x69,0xdb,0x59,0x8f,0xd3,0xd6,0x31,0xbe,0xf0,0xd9,0x7e,0x58,0xa7,0xcf,0xf6,0x78,
+  0xf7,0x8b,0xf2,0xd9,0x76,0x5b,0x5c,0xd0,0xbf,0xda,0x2d,0xa4,0x60,0x5f,0x79,0xc,
+  0xb4,0x87,0xf9,0x0,0x1,0xfb,0xbe,0x4b,0xc2,0x14,0x38,0x2e,0xe7,0x1f,0x35,0x5b,
+  0x8c,0x3d,0xce,0xbb,0x27,0xee,0x4b,0xa1,0xc,0x85,0xe4,0xed,0x76,0xa2,0x5a,0x7c,
+  0x50,0xcb,0x61,0x3c,0xf9,0x9b,0x3b,0x8d,0xe,0x4e,0x2d,0xfd,0xf1,0xb5,0xf3,0xac,
+  0x9f,0xf9,0xfd,0x4b,0x33,0x6d,0x6d,0x7e,0xf8,0xe7,0x64,0x23,0x3e,0x8a,0xa7,0x9a,
+  0xa5,0x40,0x73,0x17,0x75,0x65,0xd7,0x54,0xd,0x7e,0xfb,0x89,0x72,0x85,0x2b,0xf9,
+  0x6e,0xeb,0xf0,0x63,0x4b,0xc4,0xda,0xfc,0xd8,0x72,0x77,0xd9,0x8f,0x75,0x9f,0xaf,
+  0x16,0xdb,0x56,0xc9,0x36,0x44,0xde,0x60,0x2e,0x49,0x14,0x26,0xfb,0x58,0xbd,0xc8,
+  0x29,0xa4,0xba,0xda,0xdc,0x6b,0xa6,0x4,0xc4,0xb5,0x18,0xaf,0x1e,0x7a,0x8f,0x3a,
+  0xe,0xf9,0x98,0x50,0xe5,0xf1,0xf4,0x1a,0xc2,0x2b,0xb7,0xd,0xef,0x34,0xde,0x5a,
+  0x7b,0x33,0x37,0xd2,0xa6,0x9e,0xad,0x63,0x4b,0xce,0x4a,0xf,0x77,0xd1,0x70,0xcd,
+  0xaa,0xe5,0xbf,0xf7,0xe0,0x65,0xf,0x43,0xd1,0x3a,0xfe,0x2e,0x66,0xba,0xe6,0x66,
+  0xb5,0x7b,0x8b,0x4d,0xd3,0xd3,0x8d,0x5f,0x35,0x4b,0x2b,0x1a,0x25,0x5,0x45,0xe0,
+  0xd5,0x4f,0xa4,0x7b,0xc7,0x5c,0x8c,0x16,0x91,0xd6,0x6b,0xe9,0xb3,0x14,0xd3,0x37,
+  0x3c,0xf9,0xf9,0x1d,0x1c,0x12,0xd,0x93,0x64,0xb1,0x99,0x10,0x7a,0xed,0x78,0x17,
+  0xe6,0xde,0xf0,0x8a,0x56,0x34,0x2f,0x7b,0xf2,0x2f,0xf3,0x28,0xc7,0x61,0x4c,0x4d,
+  0x10,0xd4,0xdc,0x8d,0xe5,0x36,0xb2,0x58,0xc4,0x6a,0x35,0x46,0x73,0x16,0xc3,0x3b,
+  0xc9,0xd2,0x62,0x2e,0xf8,0xdd,0xc0,0xcb,0xe6,0x81,0xb3,0x3c,0xce,0x12,0x37,0x42,
+  0xbf,0x92,0xb3,0x8,0xcd,0x32,0xda,0xb,0xdc,0x65,0x1,0xef,0x3,0xb4,0x97,0xbd,
+  0x57,0xc6,0x7f,0xce,0x8,0xd7,0x2f,0x68,0xaf,0x31,0x4e,0x51,0xc6,0x8c,0x2b,0x60,
+  0x46,0x48,0x63,0x94,0xc5,0x7b,0x7a,0x3e,0x1,0x47,0x6,0x48,0xa9,0x7a,0x6d,0x8b,
+  0x41,0xd9,0x16,0x72,0xa2,0x8a,0x66,0x70,0x51,0xac,0x55,0x6,0x75,0xba,0xb0,0x6e,
+  0xf9,0x88,0x61,0x19,0x69,0x2a,0x89,0xaa,0xa8,0x97,0xa,0x89,0x8b,0x8e,0xc8,0xbb,
+  0x25,0x44,0x8e,0xb2,0x6a,0x24,0x33,0x4d,0x7b,0x8c,0xbc,0x7a,0x4c,0xbc,0x7a,0xc,
+  0xbc,0x5a,0xcc,0x6b,0x89,0x55,0x19,0x3d,0x4d,0x55,0x61,0xcb,0xbd,0x79,0x72,0x16,
+  0xf2,0x70,0xfa,0x85,0xb0,0x44,0xed,0xe7,0xee,0xfc,0xe8,0x5b,0x47,0xd2,0xc2,0x10,
+  0x97,0x2a,0xad,0x95,0x23,0x59,0x58,0x6e,0x1d,0xd0,0x51,0x50,0x56,0xe5,0x5f,0xb,
+  0x37,0x35,0x8b,0x1c,0xb6,0xce,0x70,0xb0,0x8f,0xa9,0x6b,0x37,0x64,0x4b,0x26,0x32,
+  0x60,0xe2,0xd4,0x89,0xac,0xbb,0x83,0x82,0x1f,0x75,0xcb,0xe7,0xb2,0xd9,0x1a,0xdd,
+  0x4e,0x46,0x3e,0xd7,0x5d,0xed,0x75,0xb9,0x2a,0xae,0x73,0xdf,0xf9,0x64,0xe,0x2a,
+  0xb,0x37,0x74,0xdb,0xff,0xa9,0xd1,0x99,0x1f,0xfd,0x49,0x78,0x43,0xc0,0x51,0xcf,
+  0xca,0x96,0x97,0x5,0xa7,0x95,0x59,0xa8,0x2e,0x60,0x7c,0x95,0xc9,0x63,0xa1,0x4,
+  0x8e,0xfa,0x11,0xcb,0x70,0x55,0x44,0x57,0x1b,0xbc,0xb2,0x6,0x29,0x57,0xb8,0x4b,
+  0x71,0x56,0x95,0xe9,0xe2,0xd0,0xc1,0xb,0x55,0xe5,0x77,0xe0,0xa4,0x51,0x69,0xf4,
+  0x2d,0xab,0xa7,0x13,0x16,0x85,0xb3,0x9a,0x7,0x8d,0x7d,0x5f,0x22,0x57,0x32,0x13,
+  0x6b,0xa5,0x56,0x1d,0x91,0x9d,0xd6,0x46,0x1b,0x8c,0xa4,0x38,0xab,0x7c,0x14,0xe,
+  0xa,0xf5,0xa,0xf5,0xca,0xec,0x26,0xd3,0x5e,0x37,0x8b,0x6f,0x3,0xb7,0xa3,0x97,
+  0x15,0x84,0x19,0x22,0x74,0x35,0xd7,0x19,0xa6,0x31,0xb8,0x1,0x5b,0xc8,0xda,0xdc,
+  0xca,0xd,0xbb,0xb,0x57,0xdd,0xd3,0xb2,0x24,0xcf,0xbd,0x2b,0xd7,0xca,0x2d,0xb6,
+  0xb7,0x87,0x9f,0x78,0xe7,0x37,0x43,0x25,0xb1,0x59,0x25,0xf0,0x2e,0x62,0xd9,0x16,
+  0xf6,0xc3,0x42,0x9,0x11,0xf2,0x77,0x82,0xe7,0x79,0x4c,0xea,0xc4,0xed,0x63,0xae,
+  0xd,0xf4,0xf5,0x3f,0xeb,0xf8,0xc6,0x2,0x8e,0x18,0xd0,0xcd,0xb3,0xb8,0xa4,0x6d,
+  0x58,0xa3,0x40,0xca,0x89,0x79,0x94,0x13,0xd9,0x11,0x46,0xd7,0x18,0xaf,0x46,0xac,
+  0x37,0x46,0x19,0x29,0x33,0x72,0x80,0x23,0x9c,0x60,0x9e,0xdb,0xe7,0xbd,0xed,0xf6,
+  0x38,0x79,0xaa,0x6a,0xce,0xda,0xab,0xd8,0x6c,0x10,0xe7,0xb9,0x9a,0x0,0xd5,0x4f,
+  0xd8,0x24,0x25,0x9e,0x35,0x3a,0x74,0xf2,0xeb,0x79,0xdb,0x5b,0x49,0xd4,0x51,0x41,
+  0xd6,0x4a,0x3c,0x8b,0x66,0x22,0x68,0xd4,0x8c,0xd6,0x41,0xd0,0x30,0x55,0xf4,0x5,
+  0xc5,0xa9,0xf9,0x17,0xd0,0x74,0xc9,0x94,0xac,0xaf,0x1c,0xbe,0xb5,0xab,0x46,0x8b,
+  0x3c,0x14,0xb2,0xa0,0x4b,0x23,0x8f,0xc5,0x58,0xc5,0xac,0x4e,0x74,0x73,0xe7,0xef,
+  0xb4,0x1c,0x67,0x6b,0x41,0x5f,0x19,0x72,0xb9,0x42,0x1f,0x1a,0x59,0x98,0x21,0xaa,
+  0xa4,0x58,0xf6,0x86,0xc8,0x92,0x3f,0xc9,0x1b,0x4b,0x58,0x9d,0x69,0xd8,0x5e,0x89,
+  0x23,0x77,0x4c,0x7f,0x43,0x4,0xb9,0x52,0xa1,0x64,0xe9,0x53,0x1b,0x1b,0xf4,0x48,
+  0x65,0xd5,0xf8,0xae,0x46,0xac,0x57,0x7,0x75,0x2,0xc9,0x53,0x17,0xb6,0x32,0xeb,
+  0xd9,0xe7,0x20,0xc2,0xf7,0xdd,0xa7,0xa1,0xa0,0x23,0x95,0xf3,0xab,0x66,0xd0,0xf0,
+  0xfe,0x39,0x23,0xab,0x43,0x69,0x4b,0xf4,0x37,0x92,0x43,0x27,0x70,0x43,0xf4,0xcb,
+  0xd,0x99,0xe4,0x73,0xfb,0x46,0xb8,0x51,0xc3,0x6c,0x9,0x65,0x23,0x5e,0xca,0xb7,
+  0x8c,0xc7,0xaf,0x54,0x29,0x2b,0x38,0xcc,0xa7,0xfc,0x25,0x5d,0xcc,0x27,0x98,0x77,
+  0xa8,0x73,0xbf,0xfc,0x76,0xfb,0xfb,0xca,0x6e,0xff,0xa4,0xc,0xfd,0x7c,0x95,0x32,
+  0xb8,0x7c,0x84,0x9e,0xef,0xec,0x95,0x1b,0x93,0x7f,0xfb,0xe3,0xa8,0xec,0xb6,0x41,
+  0xd3,0xba,0xf8,0xb9,0x1e,0xad,0xf6,0x42,0xbc,0xdf,0x4b,0x16,0x77,0xd5,0x76,0xc7,
+  0xde,0xf4,0x35,0xac,0x14,0xf7,0x69,0xe9,0x83,0xa6,0x7e,0x5b,0xab,0x4d,0xd5,0x24,
+  0xd3,0xed,0xcc,0xd5,0xa1,0x9b,0xca,0xbb,0xbf,0xda,0xb7,0xb7,0xde,0xc7,0xab,0x5a,
+  0x7a,0x30,0x6b,0x71,0xa8,0xcc,0xed,0xb2,0xbb,0xb7,0xb6,0xcb,0xa5,0x67,0xb8,0x69,
+  0xa0,0xa7,0xe5,0x96,0x95,0xf,0xe,0xbb,0xb6,0xb0,0xa2,0xcd,0x76,0x7e,0xd8,0xe8,
+  0x82,0xe,0xab,0x9d,0x57,0x26,0x7c,0x24,0x9b,0xbd,0x7b,0xb7,0xf7,0xae,0x2b,0x19,
+  0xed,0xcf,0xda,0xd8,0xf6,0xb3,0x4e,0x85,0x84,0x19,0x9b,0x64,0x93,0x8a,0x87,0xac,
+  0x3,0xea,0xd7,0xda,0xef,0x65,0x6b,0x4b,0xec,0x57,0x2f,0xd0,0x6a,0x60,0x5e,0xd8,
+  0xb0,0x5a,0x5e,0xc2,0xc6,0x5d,0x13,0x2a,0xd0,0x25,0x66,0x41,0xed,0x63,0x5e,0x47,
+  0x5c,0x7d,0xc4,0xc6,0xe7,0xf8,0xcf,0x19,0x16,0x4a,0x37,0xad,0x9f,0xfe,0xd4,0x3f,
+  0x80,0x6d,0xcc,0xc1,0x89,0x2a,0x66,0xd0,0x91,0xd0,0xe6,0xb2,0xf4,0x8d,0x50,0x13,
+  0x70,0x6c,0x3d,0x47,0x9e,0xf9,0xed,0x5,0x5e,0x11,0x69,0x78,0x43,0xf5,0xae,0xe1,
+  0x50,0x27,0x2e,0xd1,0xe9,0x72,0x1e,0x3b,0x59,0xd0,0x87,0x45,0x80,0xfe,0xdb,0x29,
+  0x17,0xea,0xa2,0x6a,0xb,0xb,0xca,0x40,0xc3,0xa9,0x7a,0x21,0x42,0xe8,0x72,0x57,
+  0xbd,0xc6,0x81,0xd3,0x4,0xe4,0x3e,0xb2,0x91,0xdb,0x6b,0xfc,0x59,0xfe,0x29,0xed,
+  0x7e,0x56,0x80,0xd1,0x47,0x49,0xd,0x18,0x65,0xed,0x25,0xb,0x36,0xa8,0x1c,0x98,
+  0xb7,0x22,0xdd,0x3d,0xae,0xf0,0xef,0x1e,0xe6,0x80,0xa,0x9,0x5a,0xe1,0x7c,0x3e,
+  0xff,0xe3,0x59,0x8d,0xea,0xbb,0x3a,0x58,0xff,0xb3,0xdf,0x26,0xbd,0xbe,0x83,0x2d,
+  0x83,0x72,0xa2,0xad,0x16,0xa0,0x9d,0x7f,0x8e,0x6f,0xe,0x8d,0x65,0x28,0x71,0x44,
+  0x7d,0x6b,0x58,0xb0,0x64,0xe5,0x37,0xc1,0xa,0xb0,0x2d,0x95,0x6e,0x60,0x9d,0xdb,
+  0x5c,0x2a,0xd6,0x3a,0xde,0x58,0xd7,0x1b,0x7a,0x5d,0x4d,0x2d,0x75,0x40,0xf,0x99,
+  0x8e,0x54,0xf3,0xab,0x9c,0x4f,0x6b,0xb2,0xe5,0x63,0xe6,0x22,0xfb,0xb9,0xc7,0xf,
+  0x92,0x8a,0x34,0xbc,0xf8,0xab,0xe4,0x20,0xed,0x9f,0xc1,0xda,0xa0,0x94,0x7d,0xac,
+  0x14,0x8e,0xb5,0xee,0xeb,0xb3,0x4b,0xf,0x2a,0xd2,0xbe,0x66,0x7,0x3f,0x7a,0x76,
+  0x70,0xc9,0xf6,0x7,0x4f,0xe,0xaa,0xa5,0xbe,0xa6,0x6,0x1b,0x1b,0xf9,0x7b,0xa5,
+  0x6,0x4f,0x9a,0xff,0xee,0xe7,0x61,0x13,0x83,0xd,0xbb,0x72,0xb7,0xbc,0xa0,0x99,
+  0xca,0x5c,0xa7,0xf,0x94,0x76,0x53,0xb0,0x5a,0x72,0xb1,0xaa,0xc0,0xf7,0xc9,0x2d,
+  0x3a,0xc8,0xbb,0x3,0x93,0xbe,0x88,0x4,0xe5,0xbd,0x2a,0xbc,0xed,0x35,0x6f,0xd6,
+  0x5a,0x1,0xb,0x9e,0x23,0xef,0x50,0xfa,0xd7,0x52,0x7d,0xeb,0xb9,0x9d,0xff,0x1b,
+  0xaa,0xda,0xf1,0x20,0x39,0x89,0x35,0x30,0xb0,0x56,0x20,0xe7,0x60,0x5f,0x86,0x5,
+  0x96,0xa4,0x93,0x83,0xeb,0xa6,0xa8,0xfa,0xeb,0x76,0xe3,0x76,0xe3,0xff,0x98,0x45,
+  0x5d,0x94,
     // /home/sudheer/marketstoday/marketstoday-0.3/src/qml/Library/ToolBar.qml
   0x0,0x0,0x3,0xe0,
   0x0,
@@ -7774,105 +7801,105 @@ static const unsigned char qt_resource_struct[] = {
   // :/qml/Library
   0x0,0x0,0x0,0x8a,0x0,0x2,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0xd,
   // :/qml/MarketsTodayLegacyApp.qml
-  0x0,0x0,0x1,0x74,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x31,0xf2,
+  0x0,0x0,0x1,0x74,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x33,0xb,
   // :/qml/StockDetailsComponent.qml
-  0x0,0x0,0x1,0x10,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x20,0xb3,
+  0x0,0x0,0x1,0x10,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x20,0xda,
   // :/qml/ConfigParametersComponent.qml
   0x0,0x0,0x0,0xd0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x19,0xdf,
   // :/qml/MarketsTodayApp.qml
-  0x0,0x0,0x2,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x49,0x61,
+  0x0,0x0,0x2,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x4a,0x7a,
   // :/qml/StockDetailsRow.qml
-  0x0,0x0,0x1,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2e,0x29,
+  0x0,0x0,0x1,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2f,0x42,
   // :/qml/Config.qml
-  0x0,0x0,0x1,0xac,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3b,0xad,
+  0x0,0x0,0x1,0xac,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3c,0xc6,
   // :/qml/ConfigOptionsComponent.qml
   0x0,0x0,0x0,0xc,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
   // :/qml/ConfigTickersComponent.qml
-  0x0,0x0,0x1,0xc6,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x43,0x1f,
+  0x0,0x0,0x1,0xc6,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x44,0x38,
   // :/qml/MarketsTodayWidget.qml
   0x0,0x0,0x0,0x9e,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x10,0x27,
   // :/qml/Library/js
   0x0,0x0,0x2,0xb0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x32,
   // :/qml/Library/Loading.qml
-  0x0,0x0,0x2,0x64,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5c,0xbc,
+  0x0,0x0,0x2,0x64,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5e,0x58,
   // :/qml/Library/TitleBar.qml
-  0x0,0x0,0x2,0x80,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x63,0x71,
+  0x0,0x0,0x2,0x80,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x65,0xd,
   // :/qml/Library/images
   0x0,0x0,0x2,0x9e,0x0,0x2,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x15,
   // :/qml/Library/CustomGestureArea.qml
-  0x0,0x0,0x2,0xd4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x77,0x57,
+  0x0,0x0,0x2,0xd4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x78,0xf3,
   // :/qml/Library/MenuBar.qml
-  0x0,0x0,0x2,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x58,0xc9,
+  0x0,0x0,0x2,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5a,0x65,
   // :/qml/Library/ToolBar.qml
-  0x0,0x0,0x2,0x2c,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x54,0xe5,
+  0x0,0x0,0x2,0x2c,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x56,0x81,
   // :/qml/Library/Button.qml
-  0x0,0x0,0x2,0xba,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x6c,0x53,
+  0x0,0x0,0x2,0xba,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x6d,0xef,
   // :/qml/Library/images/loading.png
-  0x0,0x0,0x5,0x92,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x89,0x38,
+  0x0,0x0,0x5,0x92,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x8a,0xd4,
   // :/qml/Library/images/checkbox_unchecked.png
-  0x0,0x0,0x6,0x4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x9d,0xa6,
+  0x0,0x0,0x6,0x4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x9f,0x42,
   // :/qml/Library/images/menu_icon.png
-  0x0,0x0,0x5,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x2e,0xf6,
+  0x0,0x0,0x5,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x30,0x92,
   // :/qml/Library/images/tab_news.png
-  0x0,0x0,0x6,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xaf,0x9a,
+  0x0,0x0,0x6,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xb1,0x36,
   // :/qml/Library/images/lineedit.png
-  0x0,0x0,0x6,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xaa,0xf,
+  0x0,0x0,0x6,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xab,0xab,
   // :/qml/Library/images/lineedit.sci
-  0x0,0x0,0x4,0xe4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x2e,0x9b,
+  0x0,0x0,0x4,0xe4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x30,0x37,
   // :/qml/Library/images/reload.png
-  0x0,0x0,0x4,0xa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xd5,0xb0,
+  0x0,0x0,0x4,0xa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xd7,0x4c,
   // :/qml/Library/images/close.png
-  0x0,0x0,0x3,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x92,0xee,
+  0x0,0x0,0x3,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x94,0x8a,
   // :/qml/Library/images/gloss.png
-  0x0,0x0,0x5,0xca,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x91,0xb6,
+  0x0,0x0,0x5,0xca,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x93,0x52,
   // :/qml/Library/images/icon_stocks.png
-  0x0,0x0,0x4,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xff,0x60,
+  0x0,0x0,0x4,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0xfc,
   // :/qml/Library/images/information.png
-  0x0,0x0,0x4,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xee,0x82,
+  0x0,0x0,0x4,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xf0,0x1e,
   // :/qml/Library/images/remove.png
-  0x0,0x0,0x6,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xc6,0x12,
+  0x0,0x0,0x6,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xc7,0xae,
   // :/qml/Library/images/down.png
-  0x0,0x0,0x3,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xa3,0x98,
+  0x0,0x0,0x3,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xa5,0x34,
   // :/qml/Library/images/back.png
-  0x0,0x0,0x6,0x8e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xb6,0x38,
+  0x0,0x0,0x6,0x8e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xb7,0xd4,
   // :/qml/Library/images/toolbutton.png
-  0x0,0x0,0x6,0xa4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xbc,0x18,
+  0x0,0x0,0x6,0xa4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xbd,0xb4,
   // :/qml/Library/images/toolbutton.sci
-  0x0,0x0,0x3,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xb6,0x84,
+  0x0,0x0,0x3,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xb8,0x20,
   // :/qml/Library/images/add.png
-  0x0,0x0,0x3,0xa0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xb2,0xc0,
+  0x0,0x0,0x3,0xa0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xb4,0x5c,
   // :/qml/Library/images/up.png
-  0x0,0x0,0x3,0xf8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xc6,0x5b,
+  0x0,0x0,0x3,0xf8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xc7,0xf7,
   // :/qml/Library/images/titlebar.png
-  0x0,0x0,0x4,0xae,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x23,0xa8,
+  0x0,0x0,0x4,0xae,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x25,0x44,
   // :/qml/Library/images/titlebar.sci
-  0x0,0x0,0x4,0x24,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xe6,0xf4,
+  0x0,0x0,0x4,0x24,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xe8,0x90,
   // :/qml/Library/images/checkbox_checked.png
-  0x0,0x0,0x5,0x64,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x7b,0x70,
+  0x0,0x0,0x5,0x64,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x7d,0xc,
   // :/qml/Library/images/icon_settings.png
-  0x0,0x0,0x5,0x3c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x39,0x64,
+  0x0,0x0,0x5,0x3c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x3b,0x0,
   // :/qml/Library/images/toolbar.sci
-  0x0,0x0,0x6,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xb5,0xde,
+  0x0,0x0,0x6,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xb7,0x7a,
   // :/qml/Library/images/toolbar.png
-  0x0,0x0,0x5,0xae,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x8c,0x69,
+  0x0,0x0,0x5,0xae,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x8e,0x5,
   // :/qml/Library/images/arrow_left.png
-  0x0,0x0,0x5,0xe2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x96,0x8e,
+  0x0,0x0,0x5,0xe2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x98,0x2a,
   // :/qml/Library/images/tab_stocks.png
-  0x0,0x0,0x3,0xd6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xb6,0xdf,
+  0x0,0x0,0x3,0xd6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xb8,0x7b,
   // :/qml/Library/images/paste.png
-  0x0,0x0,0x4,0xcc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x29,0x48,
+  0x0,0x0,0x4,0xcc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x2a,0xe4,
   // :/qml/Library/images/config.png
-  0x0,0x0,0x5,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x30,0xd0,
+  0x0,0x0,0x5,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x32,0x6c,
   // :/qml/Library/images/arrow_right.png
-  0x0,0x0,0x4,0x42,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xe7,0x4f,
+  0x0,0x0,0x4,0x42,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xe8,0xeb,
   // :/qml/Library/js/Common.js
-  0x0,0x0,0x3,0x4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x7b,0xaf,
+  0x0,0x0,0x3,0x4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x7d,0x4b,
   // :/qml/Library/js/DBUtility.js
-  0x0,0x0,0x3,0x54,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x8e,0xe1,
+  0x0,0x0,0x3,0x54,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x90,0x7d,
   // :/qml/Library/js/ISODate.js
-  0x0,0x0,0x3,0x1c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x7c,0xbf,
+  0x0,0x0,0x3,0x1c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x7e,0x5b,
   // :/qml/Library/js/CoreLogic.js
-  0x0,0x0,0x3,0x36,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x83,0xcf,
+  0x0,0x0,0x3,0x36,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x85,0x6b,
 
 };