├── darkorange ├── images │ ├── handle.png │ ├── checkbox.png │ └── down_arrow.png ├── darkorange.qrc ├── __init__.py ├── darkorange.qss └── darkorange.py └── README.md /darkorange/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lumyo/darkorange-pyside-stylesheet/HEAD/darkorange/images/handle.png -------------------------------------------------------------------------------- /darkorange/images/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lumyo/darkorange-pyside-stylesheet/HEAD/darkorange/images/checkbox.png -------------------------------------------------------------------------------- /darkorange/images/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lumyo/darkorange-pyside-stylesheet/HEAD/darkorange/images/down_arrow.png -------------------------------------------------------------------------------- /darkorange/darkorange.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | images/checkbox.png 4 | images/down_arrow.png 5 | images/handle.png 6 | darkorange.qss 7 | 8 | -------------------------------------------------------------------------------- /darkorange/__init__.py: -------------------------------------------------------------------------------- 1 | import darkorange 2 | from PySide import QtCore 3 | 4 | def getStyleSheet(): 5 | stream = QtCore.QFile(':/darkorange.qss') 6 | if stream.open(QtCore.QFile.ReadOnly): 7 | st = str(stream.readAll()) 8 | stream.close() 9 | else: 10 | print(stream.errorString()) 11 | 12 | return st -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # darkorange-pyside-stylesheet 2 | 3 | This stylesheet has been made by LoneWolf ( http://tech-artists.org/forum/showthread.php?2359-Release-Qt-dark-orange-stylesheet ) 4 |
I compiled the the images and the stylesheet into a ressource file to make it easier to use. 5 |
6 |
Example of use : 7 |
8 |
from PySide import QtGui 9 |
import darkorange 10 |
import sys 11 |
12 |
app = QtGui.QApplication(sys.argv) 13 |
app.setStyleSheet(darkorange.getStyleSheet()) 14 |
app.setStyle("plastique") 15 |
16 |
win = QtGui.QColorDialog() 17 |
win.show() 18 |
19 |
app.exec_() 20 |
sys.exit() 21 | -------------------------------------------------------------------------------- /darkorange/darkorange.qss: -------------------------------------------------------------------------------- 1 | QToolTip 2 | { 3 | border: 1px solid black; 4 | background-color: #ffa02f; 5 | padding: 1px; 6 | border-radius: 3px; 7 | opacity: 100; 8 | } 9 | 10 | QWidget 11 | { 12 | color: #b1b1b1; 13 | background-color: #323232; 14 | } 15 | 16 | QWidget:item:hover 17 | { 18 | background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 1 #ca0619); 19 | } 20 | 21 | QWidget:item:selected 22 | { 23 | background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 1 #d7801a); 24 | } 25 | 26 | QMenuBar::item 27 | { 28 | background: transparent; 29 | } 30 | 31 | QMenuBar::item:selected 32 | { 33 | background: transparent; 34 | border: 1px solid #ffaa00; 35 | } 36 | 37 | QMenuBar::item:pressed 38 | { 39 | background: #444; 40 | border: 1px solid #000; 41 | background-color: QLinearGradient( 42 | x1:0, y1:0, 43 | x2:0, y2:1, 44 | stop:1 #212121, 45 | stop:0.4 #343434/*, 46 | stop:0.2 #343434, 47 | stop:0.1 #ffaa00*/ 48 | ); 49 | margin-bottom:-1px; 50 | padding-bottom:1px; 51 | } 52 | 53 | QMenu 54 | { 55 | border: 1px solid #000; 56 | } 57 | 58 | QMenu::item 59 | { 60 | padding: 2px 20px 2px 20px; 61 | } 62 | 63 | QMenu::item:selected 64 | { 65 | color: #000000; 66 | } 67 | 68 | QWidget:disabled 69 | { 70 | color: #404040; 71 | background-color: #323232; 72 | } 73 | 74 | QAbstractItemView 75 | { 76 | background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #4d4d4d, stop: 0.1 #646464, stop: 1 #5d5d5d); 77 | } 78 | 79 | QWidget:focus 80 | { 81 | /*border: 2px solid QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 1 #d7801a);*/ 82 | } 83 | 84 | QLineEdit 85 | { 86 | background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #4d4d4d, stop: 0 #646464, stop: 1 #5d5d5d); 87 | padding: 1px; 88 | border-style: solid; 89 | border: 1px solid #1e1e1e; 90 | border-radius: 5; 91 | } 92 | 93 | QPushButton 94 | { 95 | color: #b1b1b1; 96 | background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #565656, stop: 0.1 #525252, stop: 0.5 #4e4e4e, stop: 0.9 #4a4a4a, stop: 1 #464646); 97 | border-width: 1px; 98 | border-color: #1e1e1e; 99 | border-style: solid; 100 | border-radius: 6; 101 | padding: 3px; 102 | font-size: 12px; 103 | padding-left: 5px; 104 | padding-right: 5px; 105 | } 106 | 107 | QPushButton:pressed 108 | { 109 | background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #2d2d2d, stop: 0.1 #2b2b2b, stop: 0.5 #292929, stop: 0.9 #282828, stop: 1 #252525); 110 | } 111 | 112 | QComboBox 113 | { 114 | selection-background-color: #ffaa00; 115 | background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #565656, stop: 0.1 #525252, stop: 0.5 #4e4e4e, stop: 0.9 #4a4a4a, stop: 1 #464646); 116 | border-style: solid; 117 | border: 1px solid #1e1e1e; 118 | border-radius: 5; 119 | } 120 | 121 | QComboBox:hover,QPushButton:hover 122 | { 123 | border: 2px solid QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 1 #d7801a); 124 | } 125 | 126 | 127 | QComboBox:on 128 | { 129 | padding-top: 3px; 130 | padding-left: 4px; 131 | background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #2d2d2d, stop: 0.1 #2b2b2b, stop: 0.5 #292929, stop: 0.9 #282828, stop: 1 #252525); 132 | selection-background-color: #ffaa00; 133 | } 134 | 135 | QComboBox QAbstractItemView 136 | { 137 | border: 2px solid darkgray; 138 | selection-background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 1 #d7801a); 139 | } 140 | 141 | QComboBox::drop-down 142 | { 143 | subcontrol-origin: padding; 144 | subcontrol-position: top right; 145 | width: 15px; 146 | 147 | border-left-width: 0px; 148 | border-left-color: darkgray; 149 | border-left-style: solid; /* just a single line */ 150 | border-top-right-radius: 3px; /* same radius as the QComboBox */ 151 | border-bottom-right-radius: 3px; 152 | } 153 | 154 | QComboBox::down-arrow 155 | { 156 | image: url(:/down_arrow.png); 157 | } 158 | 159 | QGroupBox:focus 160 | { 161 | border: 2px solid QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 1 #d7801a); 162 | } 163 | 164 | QTextEdit:focus 165 | { 166 | border: 2px solid QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 1 #d7801a); 167 | } 168 | 169 | QScrollBar:horizontal { 170 | border: 1px solid #222222; 171 | background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0.0 #121212, stop: 0.2 #282828, stop: 1 #484848); 172 | height: 7px; 173 | margin: 0px 16px 0 16px; 174 | } 175 | 176 | QScrollBar::handle:horizontal 177 | { 178 | background: QLinearGradient( x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #ffa02f, stop: 0.5 #d7801a, stop: 1 #ffa02f); 179 | min-height: 20px; 180 | border-radius: 2px; 181 | } 182 | 183 | QScrollBar::add-line:horizontal { 184 | border: 1px solid #1b1b19; 185 | border-radius: 2px; 186 | background: QLinearGradient( x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #ffa02f, stop: 1 #d7801a); 187 | width: 14px; 188 | subcontrol-position: right; 189 | subcontrol-origin: margin; 190 | } 191 | 192 | QScrollBar::sub-line:horizontal { 193 | border: 1px solid #1b1b19; 194 | border-radius: 2px; 195 | background: QLinearGradient( x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #ffa02f, stop: 1 #d7801a); 196 | width: 14px; 197 | subcontrol-position: left; 198 | subcontrol-origin: margin; 199 | } 200 | 201 | QScrollBar::right-arrow:horizontal, QScrollBar::left-arrow:horizontal 202 | { 203 | border: 1px solid black; 204 | width: 1px; 205 | height: 1px; 206 | background: white; 207 | } 208 | 209 | QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal 210 | { 211 | background: none; 212 | } 213 | 214 | QScrollBar:vertical 215 | { 216 | background: QLinearGradient( x1: 0, y1: 0, x2: 1, y2: 0, stop: 0.0 #121212, stop: 0.2 #282828, stop: 1 #484848); 217 | width: 7px; 218 | margin: 16px 0 16px 0; 219 | border: 1px solid #222222; 220 | } 221 | 222 | QScrollBar::handle:vertical 223 | { 224 | background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 0.5 #d7801a, stop: 1 #ffa02f); 225 | min-height: 20px; 226 | border-radius: 2px; 227 | } 228 | 229 | QScrollBar::add-line:vertical 230 | { 231 | border: 1px solid #1b1b19; 232 | border-radius: 2px; 233 | background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 1 #d7801a); 234 | height: 14px; 235 | subcontrol-position: bottom; 236 | subcontrol-origin: margin; 237 | } 238 | 239 | QScrollBar::sub-line:vertical 240 | { 241 | border: 1px solid #1b1b19; 242 | border-radius: 2px; 243 | background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #d7801a, stop: 1 #ffa02f); 244 | height: 14px; 245 | subcontrol-position: top; 246 | subcontrol-origin: margin; 247 | } 248 | 249 | QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical 250 | { 251 | border: 1px solid black; 252 | width: 1px; 253 | height: 1px; 254 | background: white; 255 | } 256 | 257 | 258 | QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical 259 | { 260 | background: none; 261 | } 262 | 263 | QTextEdit 264 | { 265 | background-color: #242424; 266 | } 267 | 268 | QPlainTextEdit 269 | { 270 | background-color: #242424; 271 | } 272 | 273 | QHeaderView::section 274 | { 275 | background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #616161, stop: 0.5 #505050, stop: 0.6 #434343, stop:1 #656565); 276 | color: white; 277 | padding-left: 4px; 278 | border: 1px solid #6c6c6c; 279 | } 280 | 281 | QCheckBox:disabled 282 | { 283 | color: #414141; 284 | } 285 | 286 | QDockWidget::title 287 | { 288 | text-align: center; 289 | spacing: 3px; /* spacing between items in the tool bar */ 290 | background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #323232, stop: 0.5 #242424, stop:1 #323232); 291 | } 292 | 293 | QDockWidget::close-button, QDockWidget::float-button 294 | { 295 | text-align: center; 296 | spacing: 1px; /* spacing between items in the tool bar */ 297 | background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #323232, stop: 0.5 #242424, stop:1 #323232); 298 | } 299 | 300 | QDockWidget::close-button:hover, QDockWidget::float-button:hover 301 | { 302 | background: #242424; 303 | } 304 | 305 | QDockWidget::close-button:pressed, QDockWidget::float-button:pressed 306 | { 307 | padding: 1px -1px -1px 1px; 308 | } 309 | 310 | QMainWindow::separator 311 | { 312 | background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #161616, stop: 0.5 #151515, stop: 0.6 #212121, stop:1 #343434); 313 | color: white; 314 | padding-left: 4px; 315 | border: 1px solid #4c4c4c; 316 | spacing: 3px; /* spacing between items in the tool bar */ 317 | } 318 | 319 | QMainWindow::separator:hover 320 | { 321 | 322 | background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #d7801a, stop:0.5 #b56c17 stop:1 #ffa02f); 323 | color: white; 324 | padding-left: 4px; 325 | border: 1px solid #6c6c6c; 326 | spacing: 3px; /* spacing between items in the tool bar */ 327 | } 328 | 329 | QToolBar::handle 330 | { 331 | spacing: 3px; /* spacing between items in the tool bar */ 332 | background: url(:/images/handle.png); 333 | } 334 | 335 | QMenu::separator 336 | { 337 | height: 2px; 338 | background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #161616, stop: 0.5 #151515, stop: 0.6 #212121, stop:1 #343434); 339 | color: white; 340 | padding-left: 4px; 341 | margin-left: 10px; 342 | margin-right: 5px; 343 | } 344 | 345 | QProgressBar 346 | { 347 | border: 2px solid grey; 348 | border-radius: 5px; 349 | text-align: center; 350 | } 351 | 352 | QProgressBar::chunk 353 | { 354 | background-color: #d7801a; 355 | width: 2.15px; 356 | margin: 0.5px; 357 | } 358 | 359 | QTabBar::tab { 360 | color: #b1b1b1; 361 | border: 1px solid #444; 362 | border-bottom-style: none; 363 | background-color: #323232; 364 | padding-left: 10px; 365 | padding-right: 10px; 366 | padding-top: 3px; 367 | padding-bottom: 2px; 368 | margin-right: -1px; 369 | } 370 | 371 | QTabWidget::pane { 372 | border: 1px solid #444; 373 | top: 1px; 374 | } 375 | 376 | QTabBar::tab:last 377 | { 378 | margin-right: 0; /* the last selected tab has nothing to overlap with on the right */ 379 | border-top-right-radius: 3px; 380 | } 381 | 382 | QTabBar::tab:first:!selected 383 | { 384 | margin-left: 0px; /* the last selected tab has nothing to overlap with on the right */ 385 | 386 | 387 | border-top-left-radius: 3px; 388 | } 389 | 390 | QTabBar::tab:!selected 391 | { 392 | color: #b1b1b1; 393 | border-bottom-style: solid; 394 | margin-top: 3px; 395 | background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:1 #212121, stop:.4 #343434); 396 | } 397 | 398 | QTabBar::tab:selected 399 | { 400 | border-top-left-radius: 3px; 401 | border-top-right-radius: 3px; 402 | margin-bottom: 0px; 403 | } 404 | 405 | QTabBar::tab:!selected:hover 406 | { 407 | /*border-top: 2px solid #ffaa00; 408 | padding-bottom: 3px;*/ 409 | border-top-left-radius: 3px; 410 | border-top-right-radius: 3px; 411 | background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:1 #212121, stop:0.4 #343434, stop:0.2 #343434, stop:0.1 #ffaa00); 412 | } 413 | 414 | QRadioButton::indicator:checked, QRadioButton::indicator:unchecked{ 415 | color: #b1b1b1; 416 | background-color: #323232; 417 | border: 1px solid #b1b1b1; 418 | border-radius: 6px; 419 | } 420 | 421 | QRadioButton::indicator:checked 422 | { 423 | background-color: qradialgradient( 424 | cx: 0.5, cy: 0.5, 425 | fx: 0.5, fy: 0.5, 426 | radius: 1.0, 427 | stop: 0.25 #ffaa00, 428 | stop: 0.3 #323232 429 | ); 430 | } 431 | 432 | QCheckBox::indicator{ 433 | color: #b1b1b1; 434 | background-color: #323232; 435 | border: 1px solid #b1b1b1; 436 | width: 9px; 437 | height: 9px; 438 | } 439 | 440 | QRadioButton::indicator 441 | { 442 | border-radius: 6px; 443 | } 444 | 445 | QRadioButton::indicator:hover, QCheckBox::indicator:hover 446 | { 447 | border: 1px solid #ffaa00; 448 | } 449 | 450 | QCheckBox::indicator:checked, 451 | QMenu::indicator:non-exclusive:checked, 452 | QGroupBox::indicator:checked, 453 | QTreeView::indicator:checked, 454 | QListView::indicator:checked, 455 | QTableView::indicator:checked, 456 | QColumnView::indicator:checked 457 | { 458 | image:url(:/images/checkbox.png); 459 | } 460 | 461 | QCheckBox::indicator:disabled, QRadioButton::indicator:disabled 462 | { 463 | border: 1px solid #444; 464 | } -------------------------------------------------------------------------------- /darkorange/darkorange.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | # Resource object code 4 | # 5 | # Created: Tue Feb 21 22:17:38 2017 6 | # by: The Resource Compiler for PySide (Qt v4.8.7) 7 | # 8 | # WARNING! All changes made in this file will be lost! 9 | 10 | from PySide import QtCore 11 | 12 | qt_resource_data = "\x00\x00\x03\xf0\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x07\x00\x00\x00\x05\x08\x04\x00\x00\x00#\x93>S\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x03\x18iCCPPhotoshop ICC profile\x00\x00x\xdac``\x9e\xe0\xe8\xe2\xe4\xca$\xc0\xc0PPTR\xe4\x1e\xe4\x18\x19\x11\x19\xa5\xc0~\x9e\x81\x8d\x81\x99\x81\x81\x81\x81\x81!1\xb9\xb8\xc01 \xc0\x87\x81\x81\x81!/?/\x95\x01\x15020|\xbb\xc6\xc0\xc8\xc0\xc0\xc0pY\xd7\xd1\xc5\xc9\x95\x814\xc0\x9a\x5cPT\xc2\xc0\xc0p\x80\x81\x81\xc1(%\xb58\x99\x81\x81\xe1\x0b\x03\x03CzyIA\x09\x03\x03c\x0c\x03\x03\x83HRvA\x09\x03\x03c\x01\x03\x03\x83HvH\x903\x03\x03c\x0b\x03\x03\x13OIjE\x09\x03\x03\x03\x83s~AeQfzF\x89\x82\xa1\xa5\xa5\xa5\x82cJ~R\xaaBpeqIjn\xb1\x82g^r~QA~QbIj\x0a\x03\x03\x03\xd4\x0e\x06\x06\x06\x06^\x97\xfc\x12\x05\xf7\xc4\xcc<\x05#\x03U\x06*\x83\x88\xc8(\x05\x08\x0b\x11>\x081\x04H.-*\x83\x07%\x03\x83\x00\x83\x02\x83\x01\x83\x03C\x00C\x22C=\xc3\x02\x86\xa3\x0co\x18\xc5\x19]\x18K\x19W0\xdec\x12c\x0ab\x9a\xc0t\x81Y\x989\x92y!\xf3\x1b\x16K\x96\x0e\x96[\xacz\xac\xad\xac\xf7\xd8,\xd9\xa6\xb1}c\x0fg\xdf\xcd\xa1\xc4\xd1\xc5\xf1\x853\x91\xf3\x02\x97#\xd7\x16nM\xee\x054}2\xfd\xfc\xea\xeb\x82\xef\xe1?\x05~\x9d\xfa\xd3\xfa\xcf\xf1\xff\x7f\x00\x0d\x00\x0f4\xfa\x96\xf1]\x00\x00\x00 cHRM\x00\x00z%\x00\x00\x80\x83\x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00u0\x00\x00\xea`\x00\x00:\x98\x00\x00\x17o\x92_\xc5F\x00\x00\x00RIDATx\xdabX\xf5\xe9\xca?\x18\x5c\xfe\x9e!\xd3\xff\xc4\x8f\xab\xbf\xaf\xfe\xbe\xfa\xfb\xd0\x97hc\x86\xff\x0c\x85k\xf7~\xdc\xfbq\xf3\x87\xcc\xbc\xff\x0c\x0c\xff\x19\x18\x98s\xce\xce\xbd\x1f9\xff?\xc3\x7f\x06\x86\xff\x0c\xff\x19\x14\xdd,\xb6\xfeg\xf8\xcf\xf0\x9f\x010\x00j_,gt\xda\xec\xfb\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00*\xb5QToolTip\x0d\x0a{\x0d\x0a border: 1px solid black;\x0d\x0a background-color: #ffa02f;\x0d\x0a padding: 1px;\x0d\x0a border-radius: 3px;\x0d\x0a opacity: 100;\x0d\x0a}\x0d\x0a\x0d\x0aQWidget\x0d\x0a{\x0d\x0a color: #b1b1b1;\x0d\x0a background-color: #323232;\x0d\x0a}\x0d\x0a\x0d\x0aQWidget:item:hover\x0d\x0a{\x0d\x0a background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 1 #ca0619);\x0d\x0a color: #000000;\x0d\x0a}\x0d\x0a\x0d\x0aQWidget:item:selected\x0d\x0a{\x0d\x0a background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 1 #d7801a);\x0d\x0a}\x0d\x0a\x0d\x0aQMenuBar::item\x0d\x0a{\x0d\x0a background: transparent;\x0d\x0a}\x0d\x0a\x0d\x0aQMenuBar::item:selected\x0d\x0a{\x0d\x0a background: transparent;\x0d\x0a border: 1px solid #ffaa00;\x0d\x0a}\x0d\x0a\x0d\x0aQMenuBar::item:pressed\x0d\x0a{\x0d\x0a background: #444;\x0d\x0a border: 1px solid #000;\x0d\x0a background-color: QLinearGradient(\x0d\x0a x1:0, y1:0,\x0d\x0a x2:0, y2:1,\x0d\x0a stop:1 #212121,\x0d\x0a stop:0.4 #343434/*,\x0d\x0a stop:0.2 #343434,\x0d\x0a stop:0.1 #ffaa00*/\x0d\x0a );\x0d\x0a margin-bottom:-1px;\x0d\x0a padding-bottom:1px;\x0d\x0a}\x0d\x0a\x0d\x0aQMenu\x0d\x0a{\x0d\x0a border: 1px solid #000;\x0d\x0a}\x0d\x0a\x0d\x0aQMenu::item\x0d\x0a{\x0d\x0a padding: 2px 20px 2px 20px;\x0d\x0a}\x0d\x0a\x0d\x0aQMenu::item:selected\x0d\x0a{\x0d\x0a color: #000000;\x0d\x0a}\x0d\x0a\x0d\x0aQWidget:disabled\x0d\x0a{\x0d\x0a color: #404040;\x0d\x0a background-color: #323232;\x0d\x0a}\x0d\x0a\x0d\x0aQAbstractItemView\x0d\x0a{\x0d\x0a background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #4d4d4d, stop: 0.1 #646464, stop: 1 #5d5d5d);\x0d\x0a}\x0d\x0a\x0d\x0aQWidget:focus\x0d\x0a{\x0d\x0a /*border: 2px solid QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 1 #d7801a);*/\x0d\x0a}\x0d\x0a\x0d\x0aQLineEdit\x0d\x0a{\x0d\x0a background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #4d4d4d, stop: 0 #646464, stop: 1 #5d5d5d);\x0d\x0a padding: 1px;\x0d\x0a border-style: solid;\x0d\x0a border: 1px solid #1e1e1e;\x0d\x0a border-radius: 5;\x0d\x0a}\x0d\x0a\x0d\x0aQPushButton\x0d\x0a{\x0d\x0a color: #b1b1b1;\x0d\x0a background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #565656, stop: 0.1 #525252, stop: 0.5 #4e4e4e, stop: 0.9 #4a4a4a, stop: 1 #464646);\x0d\x0a border-width: 1px;\x0d\x0a border-color: #1e1e1e;\x0d\x0a border-style: solid;\x0d\x0a border-radius: 6;\x0d\x0a padding: 3px;\x0d\x0a font-size: 12px;\x0d\x0a padding-left: 5px;\x0d\x0a padding-right: 5px;\x0d\x0a}\x0d\x0a\x0d\x0aQPushButton:pressed\x0d\x0a{\x0d\x0a background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #2d2d2d, stop: 0.1 #2b2b2b, stop: 0.5 #292929, stop: 0.9 #282828, stop: 1 #252525);\x0d\x0a}\x0d\x0a\x0d\x0aQComboBox\x0d\x0a{\x0d\x0a selection-background-color: #ffaa00;\x0d\x0a background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #565656, stop: 0.1 #525252, stop: 0.5 #4e4e4e, stop: 0.9 #4a4a4a, stop: 1 #464646);\x0d\x0a border-style: solid;\x0d\x0a border: 1px solid #1e1e1e;\x0d\x0a border-radius: 5;\x0d\x0a}\x0d\x0a\x0d\x0aQComboBox:hover,QPushButton:hover\x0d\x0a{\x0d\x0a border: 2px solid QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 1 #d7801a);\x0d\x0a}\x0d\x0a\x0d\x0a\x0d\x0aQComboBox:on\x0d\x0a{\x0d\x0a padding-top: 3px;\x0d\x0a padding-left: 4px;\x0d\x0a background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #2d2d2d, stop: 0.1 #2b2b2b, stop: 0.5 #292929, stop: 0.9 #282828, stop: 1 #252525);\x0d\x0a selection-background-color: #ffaa00;\x0d\x0a}\x0d\x0a\x0d\x0aQComboBox QAbstractItemView\x0d\x0a{\x0d\x0a border: 2px solid darkgray;\x0d\x0a selection-background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 1 #d7801a);\x0d\x0a}\x0d\x0a\x0d\x0aQComboBox::drop-down\x0d\x0a{\x0d\x0a subcontrol-origin: padding;\x0d\x0a subcontrol-position: top right;\x0d\x0a width: 15px;\x0d\x0a\x0d\x0a border-left-width: 0px;\x0d\x0a border-left-color: darkgray;\x0d\x0a border-left-style: solid; /* just a single line */\x0d\x0a border-top-right-radius: 3px; /* same radius as the QComboBox */\x0d\x0a border-bottom-right-radius: 3px;\x0d\x0a }\x0d\x0a\x0d\x0aQComboBox::down-arrow\x0d\x0a{\x0d\x0a image: url(:/down_arrow.png);\x0d\x0a}\x0d\x0a\x0d\x0aQGroupBox:focus\x0d\x0a{\x0d\x0aborder: 2px solid QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 1 #d7801a);\x0d\x0a}\x0d\x0a\x0d\x0aQTextEdit:focus\x0d\x0a{\x0d\x0a border: 2px solid QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 1 #d7801a);\x0d\x0a}\x0d\x0a\x0d\x0aQScrollBar:horizontal {\x0d\x0a border: 1px solid #222222;\x0d\x0a background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0.0 #121212, stop: 0.2 #282828, stop: 1 #484848);\x0d\x0a height: 7px;\x0d\x0a margin: 0px 16px 0 16px;\x0d\x0a}\x0d\x0a\x0d\x0aQScrollBar::handle:horizontal\x0d\x0a{\x0d\x0a background: QLinearGradient( x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #ffa02f, stop: 0.5 #d7801a, stop: 1 #ffa02f);\x0d\x0a min-height: 20px;\x0d\x0a border-radius: 2px;\x0d\x0a}\x0d\x0a\x0d\x0aQScrollBar::add-line:horizontal {\x0d\x0a border: 1px solid #1b1b19;\x0d\x0a border-radius: 2px;\x0d\x0a background: QLinearGradient( x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #ffa02f, stop: 1 #d7801a);\x0d\x0a width: 14px;\x0d\x0a subcontrol-position: right;\x0d\x0a subcontrol-origin: margin;\x0d\x0a}\x0d\x0a\x0d\x0aQScrollBar::sub-line:horizontal {\x0d\x0a border: 1px solid #1b1b19;\x0d\x0a border-radius: 2px;\x0d\x0a background: QLinearGradient( x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #ffa02f, stop: 1 #d7801a);\x0d\x0a width: 14px;\x0d\x0a subcontrol-position: left;\x0d\x0a subcontrol-origin: margin;\x0d\x0a}\x0d\x0a\x0d\x0aQScrollBar::right-arrow:horizontal, QScrollBar::left-arrow:horizontal\x0d\x0a{\x0d\x0a border: 1px solid black;\x0d\x0a width: 1px;\x0d\x0a height: 1px;\x0d\x0a background: white;\x0d\x0a}\x0d\x0a\x0d\x0aQScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal\x0d\x0a{\x0d\x0a background: none;\x0d\x0a}\x0d\x0a\x0d\x0aQScrollBar:vertical\x0d\x0a{\x0d\x0a background: QLinearGradient( x1: 0, y1: 0, x2: 1, y2: 0, stop: 0.0 #121212, stop: 0.2 #282828, stop: 1 #484848);\x0d\x0a width: 7px;\x0d\x0a margin: 16px 0 16px 0;\x0d\x0a border: 1px solid #222222;\x0d\x0a}\x0d\x0a\x0d\x0aQScrollBar::handle:vertical\x0d\x0a{\x0d\x0a background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 0.5 #d7801a, stop: 1 #ffa02f);\x0d\x0a min-height: 20px;\x0d\x0a border-radius: 2px;\x0d\x0a}\x0d\x0a\x0d\x0aQScrollBar::add-line:vertical\x0d\x0a{\x0d\x0a border: 1px solid #1b1b19;\x0d\x0a border-radius: 2px;\x0d\x0a background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 1 #d7801a);\x0d\x0a height: 14px;\x0d\x0a subcontrol-position: bottom;\x0d\x0a subcontrol-origin: margin;\x0d\x0a}\x0d\x0a\x0d\x0aQScrollBar::sub-line:vertical\x0d\x0a{\x0d\x0a border: 1px solid #1b1b19;\x0d\x0a border-radius: 2px;\x0d\x0a background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #d7801a, stop: 1 #ffa02f);\x0d\x0a height: 14px;\x0d\x0a subcontrol-position: top;\x0d\x0a subcontrol-origin: margin;\x0d\x0a}\x0d\x0a\x0d\x0aQScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical\x0d\x0a{\x0d\x0a border: 1px solid black;\x0d\x0a width: 1px;\x0d\x0a height: 1px;\x0d\x0a background: white;\x0d\x0a}\x0d\x0a\x0d\x0a\x0d\x0aQScrollBar::add-page:vertical, QScrollBar::sub-page:vertical\x0d\x0a{\x0d\x0a background: none;\x0d\x0a}\x0d\x0a\x0d\x0aQTextEdit\x0d\x0a{\x0d\x0a background-color: #242424;\x0d\x0a}\x0d\x0a\x0d\x0aQPlainTextEdit\x0d\x0a{\x0d\x0a background-color: #242424;\x0d\x0a}\x0d\x0a\x0d\x0aQHeaderView::section\x0d\x0a{\x0d\x0a background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #616161, stop: 0.5 #505050, stop: 0.6 #434343, stop:1 #656565);\x0d\x0a color: white;\x0d\x0a padding-left: 4px;\x0d\x0a border: 1px solid #6c6c6c;\x0d\x0a}\x0d\x0a\x0d\x0aQCheckBox:disabled\x0d\x0a{\x0d\x0acolor: #414141;\x0d\x0a}\x0d\x0a\x0d\x0aQDockWidget::title\x0d\x0a{\x0d\x0a text-align: center;\x0d\x0a spacing: 3px; /* spacing between items in the tool bar */\x0d\x0a background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #323232, stop: 0.5 #242424, stop:1 #323232);\x0d\x0a}\x0d\x0a\x0d\x0aQDockWidget::close-button, QDockWidget::float-button\x0d\x0a{\x0d\x0a text-align: center;\x0d\x0a spacing: 1px; /* spacing between items in the tool bar */\x0d\x0a background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #323232, stop: 0.5 #242424, stop:1 #323232);\x0d\x0a}\x0d\x0a\x0d\x0aQDockWidget::close-button:hover, QDockWidget::float-button:hover\x0d\x0a{\x0d\x0a background: #242424;\x0d\x0a}\x0d\x0a\x0d\x0aQDockWidget::close-button:pressed, QDockWidget::float-button:pressed\x0d\x0a{\x0d\x0a padding: 1px -1px -1px 1px;\x0d\x0a}\x0d\x0a\x0d\x0aQMainWindow::separator\x0d\x0a{\x0d\x0a background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #161616, stop: 0.5 #151515, stop: 0.6 #212121, stop:1 #343434);\x0d\x0a color: white;\x0d\x0a padding-left: 4px;\x0d\x0a border: 1px solid #4c4c4c;\x0d\x0a spacing: 3px; /* spacing between items in the tool bar */\x0d\x0a}\x0d\x0a\x0d\x0aQMainWindow::separator:hover\x0d\x0a{\x0d\x0a\x0d\x0a background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #d7801a, stop:0.5 #b56c17 stop:1 #ffa02f);\x0d\x0a color: white;\x0d\x0a padding-left: 4px;\x0d\x0a border: 1px solid #6c6c6c;\x0d\x0a spacing: 3px; /* spacing between items in the tool bar */\x0d\x0a}\x0d\x0a\x0d\x0aQToolBar::handle\x0d\x0a{\x0d\x0a spacing: 3px; /* spacing between items in the tool bar */\x0d\x0a background: url(:/images/handle.png);\x0d\x0a}\x0d\x0a\x0d\x0aQMenu::separator\x0d\x0a{\x0d\x0a height: 2px;\x0d\x0a background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #161616, stop: 0.5 #151515, stop: 0.6 #212121, stop:1 #343434);\x0d\x0a color: white;\x0d\x0a padding-left: 4px;\x0d\x0a margin-left: 10px;\x0d\x0a margin-right: 5px;\x0d\x0a}\x0d\x0a\x0d\x0aQProgressBar\x0d\x0a{\x0d\x0a border: 2px solid grey;\x0d\x0a border-radius: 5px;\x0d\x0a text-align: center;\x0d\x0a}\x0d\x0a\x0d\x0aQProgressBar::chunk\x0d\x0a{\x0d\x0a background-color: #d7801a;\x0d\x0a width: 2.15px;\x0d\x0a margin: 0.5px;\x0d\x0a}\x0d\x0a\x0d\x0aQTabBar::tab {\x0d\x0a color: #b1b1b1;\x0d\x0a border: 1px solid #444;\x0d\x0a border-bottom-style: none;\x0d\x0a background-color: #323232;\x0d\x0a padding-left: 10px;\x0d\x0a padding-right: 10px;\x0d\x0a padding-top: 3px;\x0d\x0a padding-bottom: 2px;\x0d\x0a margin-right: -1px;\x0d\x0a}\x0d\x0a\x0d\x0aQTabWidget::pane {\x0d\x0a border: 1px solid #444;\x0d\x0a top: 1px;\x0d\x0a}\x0d\x0a\x0d\x0aQTabBar::tab:last\x0d\x0a{\x0d\x0a margin-right: 0; /* the last selected tab has nothing to overlap with on the right */\x0d\x0a border-top-right-radius: 3px;\x0d\x0a}\x0d\x0a\x0d\x0aQTabBar::tab:first:!selected\x0d\x0a{\x0d\x0a margin-left: 0px; /* the last selected tab has nothing to overlap with on the right */\x0d\x0a\x0d\x0a\x0d\x0a border-top-left-radius: 3px;\x0d\x0a}\x0d\x0a\x0d\x0aQTabBar::tab:!selected\x0d\x0a{\x0d\x0a color: #b1b1b1;\x0d\x0a border-bottom-style: solid;\x0d\x0a margin-top: 3px;\x0d\x0a background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:1 #212121, stop:.4 #343434);\x0d\x0a}\x0d\x0a\x0d\x0aQTabBar::tab:selected\x0d\x0a{\x0d\x0a border-top-left-radius: 3px;\x0d\x0a border-top-right-radius: 3px;\x0d\x0a margin-bottom: 0px;\x0d\x0a}\x0d\x0a\x0d\x0aQTabBar::tab:!selected:hover\x0d\x0a{\x0d\x0a /*border-top: 2px solid #ffaa00;\x0d\x0a padding-bottom: 3px;*/\x0d\x0a border-top-left-radius: 3px;\x0d\x0a border-top-right-radius: 3px;\x0d\x0a background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:1 #212121, stop:0.4 #343434, stop:0.2 #343434, stop:0.1 #ffaa00);\x0d\x0a}\x0d\x0a\x0d\x0aQRadioButton::indicator:checked, QRadioButton::indicator:unchecked{\x0d\x0a color: #b1b1b1;\x0d\x0a background-color: #323232;\x0d\x0a border: 1px solid #b1b1b1;\x0d\x0a border-radius: 6px;\x0d\x0a}\x0d\x0a\x0d\x0aQRadioButton::indicator:checked\x0d\x0a{\x0d\x0a background-color: qradialgradient(\x0d\x0a cx: 0.5, cy: 0.5,\x0d\x0a fx: 0.5, fy: 0.5,\x0d\x0a radius: 1.0,\x0d\x0a stop: 0.25 #ffaa00,\x0d\x0a stop: 0.3 #323232\x0d\x0a );\x0d\x0a}\x0d\x0a\x0d\x0aQCheckBox::indicator{\x0d\x0a color: #b1b1b1;\x0d\x0a background-color: #323232;\x0d\x0a border: 1px solid #b1b1b1;\x0d\x0a width: 9px;\x0d\x0a height: 9px;\x0d\x0a}\x0d\x0a\x0d\x0aQRadioButton::indicator\x0d\x0a{\x0d\x0a border-radius: 6px;\x0d\x0a}\x0d\x0a\x0d\x0aQRadioButton::indicator:hover, QCheckBox::indicator:hover\x0d\x0a{\x0d\x0a border: 1px solid #ffaa00;\x0d\x0a}\x0d\x0a\x0d\x0aQCheckBox::indicator:checked\x0d\x0a{\x0d\x0a image:url(:/images/checkbox.png);\x0d\x0a}\x0d\x0a\x0d\x0aQCheckBox::indicator:disabled, QRadioButton::indicator:disabled\x0d\x0a{\x0d\x0a border: 1px solid #444;\x0d\x0a}\x00\x00\x01W\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x09\x00\x00\x00\x09\x08\x06\x00\x00\x00\xe0\x91\x06\x10\x00\x00\x00\x09pHYs\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95+\x0e\x1b\x00\x00\x00 cHRM\x00\x00z%\x00\x00\x80\x83\x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00u0\x00\x00\xea`\x00\x00:\x98\x00\x00\x17o\x92_\xc5F\x00\x00\x00\xddIDATx\xda\x5c\x8e\xb1N\x84@\x18\x84g\xefL,\xc8\xd9,\x0dXP\x1b\x0b\xc3\xfa$w\xbd\x0d\x85O@\x0b\xbb\xcb;\xd0hAr\xc5\xd2(O\x02\xcf\xb1\x97@a\xd4\xc2\xc4b,\xbcM\xd0I\xfe\xbf\xf82\xff?#H\xc2Z;\x00\x80\xd6\xfa\x80\xb3\xac\xb5\x03I\x18c\x0e[!\xc4\x90\xe7\xf9>I\x92\x9b\xbe\xef\xef\xca\xb2|\xf5\xde\xbf\x04\xe6\x9c\xbb\xbd \xf9\x19\xae\x95R\xfb,\xcb\xbe\xa5\x94\x01\x81\xe4\x9b8\xbf<*\xa5\x1e\xf0O\xe38>7M\xf3(H\x02\x00\xba\xae{\x97R\xee\x82aY\x96\x8f\xa2(\xae\x00`\x03\x00\xc6\x98\xe3\xda\x00\x00q\x1c\xef\xb4\xd6O\x00\xb0\x05\xf0'j\x9egDQ\x04\x00H\xd3\xf4\xde9w\xbd!\xf9\xb5\xeapj\xdb\xf6r\x9a\xa6\xd3\xaa\xf8\xef\xaa\xeb\xdaWU\xe5I\x22\xcc\x9a\xfd\x0c\x00$\xabn\xfa\x96!\xfc\xb8\x00\x00\x00\x00IEND\xaeB`\x82\x00\x00\x0b\x15\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x00\x06\x00\x00\x00\x06\x08\x06\x00\x00\x00\xe0\xcc\xefH\x00\x00\x00\x09pHYs\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x0aOiCCPPhotoshop ICC profile\x00\x00x\xda\x9dSgTS\xe9\x16=\xf7\xde\xf4BK\x88\x80\x94KoR\x15\x08 RB\x8b\x80\x14\x91&*!\x09\x10J\x88!\xa1\xd9\x15Q\xc1\x11EE\x04\x1b\xc8\xa0\x88\x03\x8e\x8e\x80\x8c\x15Q,\x0c\x8a\x0a\xd8\x07\xe4!\xa2\x8e\x83\xa3\x88\x8a\xca\xfb\xe1{\xa3k\xd6\xbc\xf7\xe6\xcd\xfe\xb5\xd7>\xe7\xac\xf3\x9d\xb3\xcf\x07\xc0\x08\x0c\x96H3Q5\x80\x0c\xa9B\x1e\x11\xe0\x83\xc7\xc4\xc6\xe1\xe4.@\x81\x0a$p\x00\x10\x08\xb3d!s\xfd#\x01\x00\xf8~<<+\x22\xc0\x07\xbe\x00\x01x\xd3\x0b\x08\x00\xc0M\x9b\xc00\x1c\x87\xff\x0f\xeaB\x99\x5c\x01\x80\x84\x01\xc0t\x918K\x08\x80\x14\x00@z\x8eB\xa6\x00@F\x01\x80\x9d\x98&S\x00\xa0\x04\x00`\xcbcb\xe3\x00P-\x00`'\x7f\xe6\xd3\x00\x80\x9d\xf8\x99{\x01\x00[\x94!\x15\x01\xa0\x91\x00 \x13e\x88D\x00h;\x00\xac\xcfV\x8aE\x00X0\x00\x14fK\xc49\x00\xd8-\x000IWfH\x00\xb0\xb7\x00\xc0\xce\x10\x0b\xb2\x00\x08\x0c\x000Q\x88\x85)\x00\x04{\x00`\xc8##x\x00\x84\x99\x00\x14F\xf2W<\xf1+\xae\x10\xe7*\x00\x00x\x99\xb2<\xb9$9E\x81[\x08-q\x07WW.\x1e(\xceI\x17+\x146a\x02a\x9a@.\xc2y\x99\x192\x814\x0f\xe0\xf3\xcc\x00\x00\xa0\x91\x15\x11\xe0\x83\xf3\xfdx\xce\x0e\xae\xce\xce6\x8e\xb6\x0e_-\xea\xbf\x06\xff\x22bb\xe3\xfe\xe5\xcf\xabp@\x00\x00\xe1t~\xd1\xfe,/\xb3\x1a\x80;\x06\x80m\xfe\xa2%\xee\x04h^\x0b\xa0u\xf7\x8bf\xb2\x0f@\xb5\x00\xa0\xe9\xdaW\xf3p\xf8~<\xdf5\x00\xb0j>\x01{\x91-\xa8]c\x03\xf6K'\x10Xt\xc0\xe2\xf7\x00\x00\xf2\xbbo\xc1\xd4(\x08\x03\x80h\x83\xe1\xcfw\xff\xef?\xfdG\xa0%\x00\x80fI\x92q\x00\x00^D$.T\xca\xb3?\xc7\x08\x00\x00D\xa0\x81*\xb0A\x1b\xf4\xc1\x18,\xc0\x06\x1c\xc1\x05\xdc\xc1\x0b\xfc`6\x84B$\xc4\xc2B\x10B\x0ad\x80\x1cr`)\xac\x82B(\x86\xcd\xb0\x1d*`/\xd4@\x1d4\xc0Qh\x86\x93p\x0e.\xc2U\xb8\x0e=p\x0f\xfaa\x08\x9e\xc1(\xbc\x81\x09\x04A\xc8\x08\x13a!\xda\x88\x01b\x8aX#\x8e\x08\x17\x99\x85\xf8!\xc1H\x04\x12\x8b$ \xc9\x88\x14Q\x22K\x915H1R\x8aT UH\x1d\xf2=r\x029\x87\x5cF\xba\x91;\xc8\x002\x82\xfc\x86\xbcG1\x94\x81\xb2Q=\xd4\x0c\xb5C\xb9\xa87\x1a\x84F\xa2\x0b\xd0dt1\x9a\x8f\x16\xa0\x9b\xd0r\xb4\x1a=\x8c6\xa1\xe7\xd0\xabh\x0f\xda\x8f>C\xc70\xc0\xe8\x18\x073\xc4l0.\xc6\xc3B\xb18,\x09\x93c\xcb\xb1\x22\xac\x0c\xab\xc6\x1a\xb0V\xac\x03\xbb\x89\xf5c\xcf\xb1w\x04\x12\x81E\xc0\x096\x04wB a\x1eAHXLXN\xd8H\xa8 \x1c$4\x11\xda\x097\x09\x03\x84Q\xc2'\x22\x93\xa8K\xb4&\xba\x11\xf9\xc4\x18b21\x87XH,#\xd6\x12\x8f\x13/\x10{\x88C\xc47$\x12\x89C2'\xb9\x90\x02I\xb1\xa4T\xd2\x12\xd2F\xd2nR#\xe9,\xa9\x9b4H\x1a#\x93\xc9\xdadk\xb2\x079\x94, +\xc8\x85\xe4\x9d\xe4\xc3\xe43\xe4\x1b\xe4!\xf2[\x0a\x9db@q\xa4\xf8S\xe2(R\xcajJ\x19\xe5\x10\xe54\xe5\x06e\x982AU\xa3\x9aR\xdd\xa8\xa1T\x115\x8fZB\xad\xa1\xb6R\xafQ\x87\xa8\x134u\x9a9\xcd\x83\x16IK\xa5\xad\xa2\x95\xd3\x1ah\x17h\xf7i\xaf\xe8t\xba\x11\xdd\x95\x1eN\x97\xd0W\xd2\xcb\xe9G\xe8\x97\xe8\x03\xf4w\x0c\x0d\x86\x15\x83\xc7\x88g(\x19\x9b\x18\x07\x18g\x19w\x18\xaf\x98L\xa6\x19\xd3\x8b\x19\xc7T071\xeb\x98\xe7\x99\x0f\x99oUX*\xb6*|\x15\x91\xca\x0a\x95J\x95&\x95\x1b*/T\xa9\xaa\xa6\xaa\xde\xaa\x0bU\xf3U\xcbT\x8f\xa9^S}\xaeFU3S\xe3\xa9\x09\xd4\x96\xabU\xaa\x9dP\xebS\x1bSg\xa9;\xa8\x87\xaag\xa8oT?\xa4~Y\xfd\x89\x06Y\xc3L\xc3OC\xa4Q\xa0\xb1_\xe3\xbc\xc6 \x0bc\x19\xb3x,!k\x0d\xab\x86u\x815\xc4&\xb1\xcd\xd9|v*\xbb\x98\xfd\x1d\xbb\x8b=\xaa\xa9\xa19C3J3W\xb3R\xf3\x94f?\x07\xe3\x98q\xf8\x9ctN\x09\xe7(\xa7\x97\xf3~\x8a\xde\x14\xef)\xe2)\x1b\xa64L\xb91e\x5ck\xaa\x96\x97\x96X\xabH\xabQ\xabG\xeb\xbd6\xae\xed\xa7\x9d\xa6\xbdE\xbbY\xfb\x81\x0eA\xc7J'\x5c'Gg\x8f\xce\x05\x9d\xe7S\xd9S\xdd\xa7\x0a\xa7\x16M=:\xf5\xae.\xaak\xa5\x1b\xa1\xbbDw\xbfn\xa7\xee\x98\x9e\xbe^\x80\x9eLo\xa7\xdey\xbd\xe7\xfa\x1c}/\xfdT\xfdm\xfa\xa7\xf5G\x0cX\x06\xb3\x0c$\x06\xdb\x0c\xce\x18<\xc55qo<\x1d/\xc7\xdb\xf1QC]\xc3@C\xa5a\x95a\x97\xe1\x84\x91\xb9\xd1<\xa3\xd5F\x8dF\x0f\x8ci\xc6\x5c\xe3$\xe3m\xc6m\xc6\xa3&\x06&!&KM\xeaM\xee\x9aRM\xb9\xa6)\xa6;L;L\xc7\xcd\xcc\xcd\xa2\xcd\xd6\x995\x9b=1\xd72\xe7\x9b\xe7\x9b\xd7\x9b\xdf\xb7`ZxZ,\xb6\xa8\xb6\xb8eI\xb2\xe4Z\xa6Y\xee\xb6\xbcn\x85Z9Y\xa5XUZ]\xb3F\xad\x9d\xad%\xd6\xbb\xad\xbb\xa7\x11\xa7\xb9N\x93N\xab\x9e\xd6g\xc3\xb0\xf1\xb6\xc9\xb6\xa9\xb7\x19\xb0\xe5\xd8\x06\xdb\xae\xb6m\xb6}agb\x17g\xb7\xc5\xae\xc3\xee\x93\xbd\x93}\xba}\x8d\xfd=\x07\x0d\x87\xd9\x0e\xab\x1dZ\x1d~s\xb4r\x14:V:\xde\x9a\xce\x9c\xee?}\xc5\xf4\x96\xe9/gX\xcf\x10\xcf\xd83\xe3\xb6\x13\xcb)\xc4i\x9dS\x9b\xd3Gg\x17g\xb9s\x83\xf3\x88\x8b\x89K\x82\xcb.\x97>.\x9b\x1b\xc6\xdd\xc8\xbd\xe4Jt\xf5q]\xe1z\xd2\xf5\x9d\x9b\xb3\x9b\xc2\xed\xa8\xdb\xaf\xee6\xeei\xee\x87\xdc\x9f\xcc4\x9f)\x9eY3s\xd0\xc3\xc8C\xe0Q\xe5\xd1?\x0b\x9f\x950k\xdf\xac~OCO\x81g\xb5\xe7#/c/\x91W\xad\xd7\xb0\xb7\xa5w\xaa\xf7a\xef\x17>\xf6>r\x9f\xe3>\xe3<7\xde2\xdeY_\xcc7\xc0\xb7\xc8\xb7\xcbO\xc3o\x9e_\x85\xdfC\x7f#\xffd\xffz\xff\xd1\x00\xa7\x80%\x01g\x03\x89\x81A\x81[\x02\xfb\xf8z|!\xbf\x8e?:\xdbe\xf6\xb2\xd9\xedA\x8c\xa0\xb9A\x15A\x8f\x82\xad\x82\xe5\xc1\xad!h\xc8\xec\x90\xad!\xf7\xe7\x98\xce\x91\xcei\x0e\x85P~\xe8\xd6\xd0\x07a\xe6a\x8b\xc3~\x0c'\x85\x87\x85W\x86?\x8ep\x88X\x1a\xd11\x975w\xd1\xdcCs\xdfD\xfaD\x96D\xde\x9bg1O9\xaf-J5*>\xaa.j<\xda7\xba4\xba?\xc6.fY\xcc\xd5X\x9dXIlK\x1c9.*\xae6nl\xbe\xdf\xfc\xed\xf3\x87\xe2\x9d\xe2\x0b\xe3{\x17\x98/\xc8]py\xa1\xce\xc2\xf4\x85\xa7\x16\xa9.\x12,:\x96@L\x88N8\x94\xf0A\x10*\xa8\x16\x8c%\xf2\x13w%\x8e\x0ay\xc2\x1d\xc2g\x22/\xd16\xd1\x88\xd8C\x5c*\x1eN\xf2H*Mz\x92\xec\x91\xbc5y$\xc53\xa5,\xe5\xb9\x84'\xa9\x90\xbcL\x0dL\xdd\x9b:\x9e\x16\x9av m2=:\xbd1\x83\x92\x91\x90qB\xaa!M\x93\xb6g\xeag\xe6fv\xcb\xace\x85\xb2\xfe\xc5n\x8b\xb7/\x1e\x95\x07\xc9k\xb3\x90\xac\x05Y-\x0a\xb6B\xa6\xe8TZ(\xd7*\x07\xb2geWf\xbf\xcd\x89\xca9\x96\xab\x9e+\xcd\xed\xcc\xb3\xca\xdb\x907\x9c\xef\x9f\xff\xed\x12\xc2\x12\xe1\x92\xb6\xa5\x86KW-\x1dX\xe6\xbd\xacj9\xb2\x15\x89\x8a\xae\x14\xdb\x17\x97\x15\x7f\xd8(\xdcx\xe5\x1b\x87o\xca\xbf\x99\xdc\x94\xb4\xa9\xab\xc4\xb9d\xcff\xd2f\xe9\xe6\xde-\x9e[\x0e\x96\xaa\x97\xe6\x97\x0en\x0d\xd9\xda\xb4\x0d\xdfV\xb4\xed\xf5\xf6E\xdb/\x97\xcd(\xdb\xbb\x83\xb6C\xb9\xa3\xbf<\xb8\xbce\xa7\xc9\xce\xcd;?T\xa4T\xf4T\xfaT6\xee\xd2\xdd\xb5a\xd7\xf8n\xd1\xee\x1b{\xbc\xf64\xec\xd5\xdb[\xbc\xf7\xfd>\xc9\xbe\xdbU\x01UM\xd5f\xd5e\xfbI\xfb\xb3\xf7?\xae\x89\xaa\xe9\xf8\x96\xfbm]\xadNmq\xed\xc7\x03\xd2\x03\xfd\x07#\x0e\xb6\xd7\xb9\xd4\xd5\x1d\xd2=TR\x8f\xd6+\xebG\x0e\xc7\x1f\xbe\xfe\x9d\xefw-\x0d6\x0dU\x8d\x9c\xc6\xe2#pDy\xe4\xe9\xf7\x09\xdf\xf7\x1e\x0d:\xdav\x8c{\xac\xe1\x07\xd3\x1fv\x1dg\x1d/jB\x9a\xf2\x9aF\x9bS\x9a\xfb[b[\xbaO\xcc>\xd1\xd6\xea\xdez\xfcG\xdb\x1f\x0f\x9c499\xe2?r\xfd\xe9\xfc\xa7C\xcfd\xcf&\x9e\x17\xfe\xa2\xfe\xcb\xae\x17\x16/~\xf8\xd5\xeb\xd7\xce\xd1\x98\xd1\xa1\x97\xf2\x97\x93\xbfm|\xa5\xfd\xea\xc0\xeb\x19\xaf\xdb\xc6\xc2\xc6\x1e\xbe\xc9x31^\xf4V\xfb\xed\xc1w\xdcw\x1d\xef\xa3\xdf\x0fO\xe4| \x7f(\xffh\xf9\xb1\xf5S\xd0\xa7\xfb\x93\x19\x93\x93\xff\x04\x03\x98\xf3\xfcc3-\xdb\x00\x00\x00 cHRM\x00\x00z%\x00\x00\x80\x83\x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00u0\x00\x00\xea`\x00\x00:\x98\x00\x00\x17o\x92_\xc5F\x00\x00\x00@IDATx\xda\x5c\x8c1\x11\x000\x08\xc4B- \x03\xfc+aE\x02\x1a\xe8T\xaem\xc6\xcf}\xc4\xcc\x1a \x22\x84\x8b\x05\x90\x99\xa8j\xdfB\xba{\xc6\xaa\x92G\x1c\xdc}\xb2\x8b\x8f\x93}\x1e\xc0d\xf7\x00\xf5\x9f\x1d\xd3\x02\x88\xef\xaf\x00\x00\x00\x00IEND\xaeB`\x82" 13 | qt_resource_name = "\x00\x06\x07\x03}\xc3\x00i\x00m\x00a\x00g\x00e\x00s\x00\x0e\x04\xa2\xfc\xa7\x00d\x00o\x00w\x00n\x00_\x00a\x00r\x00r\x00o\x00w\x00.\x00p\x00n\x00g\x00\x0e\x05\xf4\x92\x03\x00d\x00a\x00r\x00k\x00o\x00r\x00a\x00n\x00g\x00e\x00.\x00q\x00s\x00s\x00\x0c\x04V#g\x00c\x00h\x00e\x00c\x00k\x00b\x00o\x00x\x00.\x00p\x00n\x00g\x00\x0a\x0b-\x87\xc7\x00h\x00a\x00n\x00d\x00l\x00e\x00.\x00p\x00n\x00g" 14 | qt_resource_struct = "\x00\x00\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\x12\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x004\x00\x00\x00\x00\x00\x01\x00\x00\x03\xf4\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00V\x00\x00\x00\x00\x00\x01\x00\x00.\xad\x00\x00\x00t\x00\x00\x00\x00\x00\x01\x00\x000\x08" 15 | def qInitResources(): 16 | QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) 17 | 18 | def qCleanupResources(): 19 | QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) 20 | 21 | qInitResources() 22 | --------------------------------------------------------------------------------