From 5d112375c8f8d653a3d3e7b5654be3ae6b7b51ee Mon Sep 17 00:00:00 2001 From: Tyler Mulligan Date: Wed, 29 Jun 2011 01:00:39 -0400 Subject: [PATCH] Applied Xonotic HTML/CSS/JS theme and worked existing HTML/CSS Replaced jquery, upgraded data tables, reworked a lot of the tables to be HTML5 and use classes over inline settings. Wrote out some basic javascript inits --- XonStat.egg-info/PKG-INFO | 29 +- XonStat.egg-info/SOURCES.txt | 62 ++- development.ini | 4 +- xonstat/models.py | 8 +- xonstat/static/css/normalize.css | 1 - xonstat/static/css/style.css | 438 +++++++++++++++++++-- xonstat/static/css/xolonium-webfont.eot | Bin 15598 -> 0 bytes xonstat/static/css/xolonium-webfont.svg | 226 ----------- xonstat/static/css/xolonium-webfont.ttf | Bin 40176 -> 0 bytes xonstat/static/css/xolonium-webfont.woff | Bin 17864 -> 0 bytes xonstat/static/js/jquery.dataTables.min.js | 266 +++++++------ xonstat/static/js/jquery.js | 16 - xonstat/templates/accuracy.mako | 24 +- xonstat/templates/base.mako | 52 +-- xonstat/templates/game_index.mako | 16 +- xonstat/templates/main_index.mako | 208 +++++----- xonstat/templates/player_info.mako | 123 +++--- xonstat/templates/scoreboard.mako | 124 +++--- 18 files changed, 902 insertions(+), 695 deletions(-) delete mode 100644 xonstat/static/css/normalize.css delete mode 100755 xonstat/static/css/xolonium-webfont.eot delete mode 100755 xonstat/static/css/xolonium-webfont.svg delete mode 100755 xonstat/static/css/xolonium-webfont.ttf delete mode 100755 xonstat/static/css/xolonium-webfont.woff mode change 100755 => 100644 xonstat/static/js/jquery.dataTables.min.js delete mode 100755 xonstat/static/js/jquery.js diff --git a/XonStat.egg-info/PKG-INFO b/XonStat.egg-info/PKG-INFO index f87db6c..d5879af 100644 --- a/XonStat.egg-info/PKG-INFO +++ b/XonStat.egg-info/PKG-INFO @@ -6,10 +6,37 @@ Home-page: UNKNOWN Author: UNKNOWN Author-email: UNKNOWN License: UNKNOWN -Description: XonStat README +Description: This is XonStat, the application in front of xonstatdb. XonStat handles the submission of statistical information from the open source first person shooter Xonotic. + To start, first run the following from the root directory to set up dependencies: + python setup.py develop + Next you'll want to set up xonstatdb. This is maintained as a separate project here: + + https://github.com/antzucaro/xonstatdb + + Next you'll want to open up development.ini and change a few things for added security. Chief among these is the "sqlalchemy.url" setting, which contains your username and password for the database. Change that match the new password you gave xonstat during the installation of xonstatdb. The other setting to change is "security.secret," which is used to keep your web session (cookies and such) secure. + + To start the server run the following from the root directory. I recommend running this within a GNU screen session: + + paster serve development.ini #(or production.ini if you've configured that settings file instead) + + To get a Xonotic server configured to use this server, change the CVAR "g_playerstats_uri" to point to the correct host, port, and URL path. By default this is: + + http://localhost:6543/stats/submit + + ...so in the command line of the server (or in your config) you can put: + + set g_playerstats_uri http://localhost:6543/stats/submit + + If you have any questions or issues please open up a bug report here, or - better yet ! - fork it and send me a pull request. + + TODO: + + - "e matches" and "e joins" seem to be mutually exclusive. Add a check for either (instead of just joins" before adding a player_game_stats record). + + - map names are being recorded multiple times in the maps table. They should be found when being played subsequent times. 0.0 diff --git a/XonStat.egg-info/SOURCES.txt b/XonStat.egg-info/SOURCES.txt index 48b77ff..84716af 100644 --- a/XonStat.egg-info/SOURCES.txt +++ b/XonStat.egg-info/SOURCES.txt @@ -1,4 +1,5 @@ CHANGES.txt +COPYING.txt MANIFEST.in README.txt development.ini @@ -16,14 +17,55 @@ XonStat.egg-info/top_level.txt xonstat/__init__.py xonstat/models.py xonstat/tests.py -xonstat/views.py +xonstat/util.py xonstat/static/favicon.ico -xonstat/static/footerbg.png -xonstat/static/headerbg.png -xonstat/static/ie6.css -xonstat/static/middlebg.png -xonstat/static/pylons.css -xonstat/static/pyramid-small.png -xonstat/static/pyramid.png -xonstat/static/transparent.gif -xonstat/templates/mytemplate.pt \ No newline at end of file +xonstat/static/css/colorbox.css +xonstat/static/css/normalize.css +xonstat/static/css/style.css +xonstat/static/images/border.png +xonstat/static/images/controls.png +xonstat/static/images/crylink.png +xonstat/static/images/electro.png +xonstat/static/images/fireball.png +xonstat/static/images/grenadelauncher.png +xonstat/static/images/hagar.png +xonstat/static/images/hlac.png +xonstat/static/images/hook.png +xonstat/static/images/laser.png +xonstat/static/images/loading.gif +xonstat/static/images/loading_background.png +xonstat/static/images/minelayer.png +xonstat/static/images/minstanex.png +xonstat/static/images/nex.png +xonstat/static/images/porto.png +xonstat/static/images/rocketlauncher.png +xonstat/static/images/seeker.png +xonstat/static/images/shotgun.png +xonstat/static/images/sniperrifle.png +xonstat/static/images/tuba.png +xonstat/static/images/uzi.png +xonstat/static/js/jquery.colorbox-min.js +xonstat/static/js/jquery.dataTables.min.js +xonstat/static/js/jquery.js +xonstat/templates/accuracy.mako +xonstat/templates/base.mako +xonstat/templates/game_index.mako +xonstat/templates/game_info.mako +xonstat/templates/main_index.mako +xonstat/templates/map_index.mako +xonstat/templates/map_info.mako +xonstat/templates/mytemplate.pt +xonstat/templates/player_game_index.mako +xonstat/templates/player_index.mako +xonstat/templates/player_info.mako +xonstat/templates/scoreboard.mako +xonstat/templates/server_game_index.mako +xonstat/templates/server_index.mako +xonstat/templates/server_info.mako +xonstat/views/__init__.py +xonstat/views/game.py +xonstat/views/main.py +xonstat/views/map.py +xonstat/views/player.py +xonstat/views/server.py +xonstat/views/submission.py \ No newline at end of file diff --git a/development.ini b/development.ini index 1fa50f9..9c8cc6c 100644 --- a/development.ini +++ b/development.ini @@ -6,12 +6,12 @@ debug_notfound = false debug_routematch = false debug_templates = true default_locale_name = en -sqlalchemy.url = postgresql+psycopg2://xonstat:xonstat@localhost:5433/xonstatdb +sqlalchemy.url = postgresql+psycopg2://xonstat:xonstat@localhost:5432/xonstatdb session.type = file session.data_dir = %(here)s/data/sessions/data session.lock_dir = %(here)s/data/sessions/lock session.key = xonstat -session.secret = 433fa4b080c2147c79c0ed1cb54e3ce81371fb34 +session.secret = 433fa4b080c2147c79c0ed1cb54e3ce81371fb33 jinja2.directories = xonstat:templates mako.directories = xonstat:templates diff --git a/xonstat/models.py b/xonstat/models.py index 6999691..517536a 100755 --- a/xonstat/models.py +++ b/xonstat/models.py @@ -96,14 +96,14 @@ class PlayerGameStat(object): def team_html_color(self): # blue if self.team == 5: - return "#312AB1" + return "blue" # red if self.team == 14: - return "#FF0033" + return "red" if self.team == 13: - return "#FFFF00" + return "yellow" if self.team == 10: - return "#FF00FF" + return "pink" class GameMutator(object): diff --git a/xonstat/static/css/normalize.css b/xonstat/static/css/normalize.css deleted file mode 100644 index 4b91b90..0000000 --- a/xonstat/static/css/normalize.css +++ /dev/null @@ -1 +0,0 @@ -article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}html{font-size:100%;overflow-y:scroll;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}body,button,input,select,textarea{font-family:sans-serif}img{border:0;-ms-interpolation-mode:bicubic}a{color:#00e}a:visited{color:#551a8b}a:focus{outline:thin dotted}a:hover,a:active{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:1em 40px}dfn{font-style:italic}mark{background:#ff0;color:#000}pre,code,kbd,samp{font-family:monospace,monospace;_font-family:'courier new',monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:'';content:none}small{font-size:75%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}ul,ol{margin:1em 0;padding:0 0 0 40px}dd{margin:0 0 0 40px}nav ul,nav ol{list-style:none}figure{margin:0}form{margin:0}fieldset{margin:0 2px;padding:.35em .625em .75em}legend{*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal;*overflow:visible}button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}input[type="checkbox"],input[type="radio"]{box-sizing:border-box}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}th,td{padding:0;text-align:left;vertical-align:middle} \ No newline at end of file diff --git a/xonstat/static/css/style.css b/xonstat/static/css/style.css index c4052bc..3641e60 100755 --- a/xonstat/static/css/style.css +++ b/xonstat/static/css/style.css @@ -1,67 +1,423 @@ -body{ - margin-left: auto; - margin-right: auto; - padding: 10px 10px 10px 10px; - width: 960px; +/* html5doctor.com Reset Stylesheet v1.6.1 Last Updated: 2010-09-17 Author: Richard Clark - http://richclarkdesign.com Twitter: @rich_clark */ html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent; } body { line-height:1; } article,aside,details,figcaption,figure, footer,header,hgroup,menu,nav,section { display:block; } nav ul { list-style:none; } blockquote, q { quotes:none; } blockquote:before, blockquote:after, q:before, q:after { content:''; content:none; } a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; } /* change colours to suit your needs */ ins { background-color:#ff9; color:#000; text-decoration:none; } /* change colours to suit your needs */ mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; } del { text-decoration: line-through; } abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; } table { border-collapse:collapse; border-spacing:0; } /* change border colour to suit your needs */ hr { display:block; height:1px; border:0; border-top:1px solid #888; margin:1em 0; padding:0; } input, select { vertical-align:middle; } + +@font-face { + font-family: 'Xolonium'; + src: url('fonts/xolonium-webfont.eot'); + src: url('fonts/xolonium-webfont.eot?#iefix') format('embedded-opentype'), + url('fonts/xolonium-webfont.woff') format('woff'), + url('fonts/xolonium-webfont.ttf') format('truetype'), + url('fonts/xolonium-webfont.svg#Xolonium') format('svg'); + font-weight: normal; + font-style: normal; } -#header{ - height: 100px; - position: relative; +body { + width:100%; + background:#000 url('img/web_background.png') 0 0 no-repeat; + background-size: 100%; + font-family: 'Xolonium', 'Arial', 'Helvetica'; + font-size: 14px; + line-height:1.4em; + color:#C7E3FF; + overflow-x:hidden; +} +h1 { + font-size:20px; + text-align: center; } -#header h1{ - position: absolute; +h2 { + font-size:18px; + color:#D0E8FF; + margin:15px 0 12px; +} +h3 { + font-size:16px; + color:#FF7000; + margin:18px 0 4px; +} +h4 { + font-size:15px; + color:#6D8399; + margin:18px 0 4px; +} +h5 { + color:#BD5300; + margin:8px 0 4px; +} +p { + margin:8px 0; + line-height:18px; +} +a { + color:#DCE9F5; + text-decoration:none; +} +a:hover { + color:#D95F00; +} +th { + font-size:13px; + padding:2px; + border:1px solid #436688; + background-color:#001021; + cursor:pointer; +} +th:hover { + color:#fff; + text-shadow:1px 1px 3px #5A8BBC !important; +} +td { + border:1px solid #436688; + font-size:10px; + padding:4px; +} +blockquote { + font-size:14px; + color:#fff; + margin:12px 15px; + line-height:22px; + padding:10px; + border:1px solid #6D8399; + border-left:3px solid #B5DAFF; + background-color: rgba(105,105,105,0.1); +} +code { + display:block; + border:1px solid #999; + padding:10px; + margin:12px 15px; + white-space: pre; +} +table { width:100%; } +input { font-family: 'Xolonium', 'Arial', 'Helvetica'; } +/* helpers */ +.clearfix:after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; } -#header h3{ - position: absolute; - top: 45px; +/* layout */ +#container { + position:relative; + width:1052px; + background: transparent url('img/web_background_l2.png') no-repeat center top; + margin:0 auto; + padding-top:244px; +} +#content { + position:relative; + top:-20px; + /*min-width:512px; + max-width:986px; + width:auto;*/ + width:950px; + padding-bottom:20px; +} +#title { + position:relative; + text-align:center; + height:25px; + line-height:25px; + top:-44px; + color:#DCE9F5; +} +.window { + border-width: 56px 56px 56px; + -moz-border-image: url(img/web_border.png) 85 85 85 stretch; + -webkit-border-image: url(img/web_border.png) 72 85 85 stretch; + -o-border-image: url(img/web_border.png) 96 96 96 stretch; + border-image: url(img/web_border.png) 96 96 96 stretch; +} +#main { + position:relative; + width:610px; +} +#sidebar { + width: 320px; + margin-right:5px; +} +#main.left, #sidebar.left { + float:left; +} +#main.right, #sidebar.right { + float:right; +} +#footer{ + clear: both; + text-align: center; } -#nav{ - position: absolute; - right: 0; - top: 50px; +/* Main Menu */ +#menu { + top: -33px; + left: -19px; + width:986px; + list-style:none; + border:1px solid #AED5FE; + border-top:0; + -moz-border-radius: 0 0 4px 4px; + -webkit-border-radius: 0 0 4px 4px; + border-radius: 0 0 4px 4px; +} +#menu li { + display:inline; +} +#menu li a { + width:145px; + height:32px; + line-height:32px; + vertical-align:middle; + color:#AED5FE; + text-align:center; } -#nav ul{ - list-style: none outside none; +/* drop-down navigation */ +.nav, .nav ul { + list-style: none; + margin: 0; + padding: 0; +} + +.nav { + z-index: 100; + position: relative; +} +.nav li { + border-right: 1px solid #AED5FE; + float: left; + margin: 0; + padding: 0; + position: relative; +} +.nav li a, .nav li a:link, .nav li a:active, .nav li a:visited { + display: block; + padding: 0; + text-decoration:none; +} + +.nav li a:hover { + background-color:#111 !important; + color:#fff !important; + text-shadow:1px 1px 3px #5A8BBC !important; +} + +.nav ul { + border-bottom: 1px solid #000; + list-style: none; + margin: 0; + min-width:164px; + position: absolute; + top: -999em; +} +.nav li:hover ul, +.nav li.sfHover ul { + top: 32px; + z-index:1000; +} +.nav ul li { + border:0; + float: none; +} +.nav ul a { + width: 145px; + white-space: nowrap; + border-bottom:1px solid #AED5FE; +} +.nav ul a:hover { + background-color:#111 !important; + color:#fff !important; +} +.nav li.last { + border-right:1px solid #AED5FE !important; } +.nav2 { + border:1px solid #AED5FE; + left:-1px; +} +.nav2 li a { + background-color:#000; + width:164px !important; +} + -#nav li{ - background-color: #bbbbbb; - border-radius: 3px 3px 3px 3px; - display: inline; - padding: 3px 6px; +/* UI widgets */ +.button { + display:inline-block; + background: url(img/temp/button_sprite.png) no-repeat -128px 0; + height:32px; + width:190px; + line-height:24px; + text-align:center; + color:#ccc; + text-decoration:none; + border:0; + padding:0; + cursor:pointer; } +a.button { + height:24px; + width:160px; + line-height:24px; + padding:4px 16px; +} +.button.s { background-position:0 0; width:126px; } +.button.m { background-position:-320px 0; width:318px; } +.button.l { background-position:-640px 0; width:638px; } +a.button.s { width:96px; } +a.button.m { width:288px; } +a.button.l { width:608px; } + +.button.s:hover { background-position:0 -33px; } +.button:hover { background-position:-128px -33px; } +.button.m:hover { background-position:-320px -33px; } +.button.l:hover { background-position:-640px -33px; } -#nav li:hover{ - background-color: #999999; +.button.s:active, .button.s:focus { background-position:0 -66px; } +.button:active, .button:focus { background-position:-128px -66px; } +.button.m:active, .button.m:focus { background-position:-320px -66px; } +.button.l:active, .button.l:focus { background-position:-640px -66px; } + +.button:hover, .button:active, .button:focus { + outline:0; } -#top-players, #top-servers, #top-maps{ - float: left; - margin-bottom: 10px; - width: 320px; +input[type=text], .textbox { + display:inline-block; + background: url(img/inputbox_sprite.png) no-repeat -128px 0; + width:150px; + height:24px; + line-height:24px; + text-align:left; + color:#ccc; + text-decoration:none; + padding:4px 16px; + border:0; } -#leaderboard{ - display: inline; - float: left; - width: 320px; +.textbox.s { background-position: 0 0; width:96px; } +.textbox.m { background-position:-320px 0; width:288px; } +.textbox.l { background-position:-640px 0; width:608px; } + +.textbox.s:hover { background-position:0 -32px; } +input[type=text]:hover, .textbox:hover { background-position:-128px -32px; } +.textbox.m:hover { background-position:-320px -32px; } +.textbox.l:hover { background-position:-640px -32px; } + +.textbox:hover, .textbox:active, .textbox:focus, input[type=text] { + outline:none; } -#recent-games{ - float: right; - width: 610px; +.checkbox, .radio { + display: none; +} +.checkbox-label { + background: url('img/web_checkbox_n0.png') no-repeat; + padding-left: 40px; + padding-top: 3px; + margin: 5px; + height: 32px; + display: inline-block; + cursor:pointer; +} +.checkbox-label:hover, .radio-label:hover{ + text-decoration: underline; +} +.checkbox-selected, .radio-selected { + background: url('img/web_checkbox_n1.png') no-repeat; +} +.radio-label { + background: url("img/web_radiobutton_n0.png") no-repeat; + padding-left: 60px; + padding-top: 3px; + margin: 5px; + height: 64px; + width: 64px; + display: block; + float: left; + cursor:pointer; +} +.radio-selected { + background: url("img/web_radiobutton_n1.png") no-repeat; } -#recent-games-table{ +/* Content Specific */ +#top-players, #top-servers, #top-maps { + float: left; + margin-bottom: 10px; + width:100%; +} + +#recent-games { width: 610px; } +#recent-games_filter { + position: absolute; + top: -38px; + right: 0; +} -#footer{ - clear: both; - text-align: center; +thead.red { + color:#D31D12; + background-color:#170403; +} +tr.odd.red { + background-color:#571612; +} +tr.even.red { + background-color:#571612; +} +thead.blue { + color:#2F53F7; + background-color:#04081A; + border-color:#101940 !important; +} +tr.odd.blue { + background-color:#000F4C; +} +tr.even.blue { + background-color:#571612; +} +.game { + background-color:#0a0a0a; + background-image: -webkit-gradient( + linear, + left bottom, + left top, + color-stop(0.67, #101114), + color-stop(0.51, #000A15) + ); + background-image: -moz-linear-gradient( + center bottom, + #111 67%, + #000A15 51% + ); + border:1px solid #373B45; + margin-bottom:10px; + padding:3px; +} +.game h3 { + color:#93B1CF; + padding:4px 4px 8px; + margin:0; +} +.game h3 a { + color:#C5DCF3; +} +.game h3 a:hover { + color:#fff; +} +.permalink { + float:right; + font-size:12px; +} +.permalink a { + color:#666 !important; +} +.permalink a:hover { + color:#999 !important; + text-decoration:underline; } diff --git a/xonstat/static/css/xolonium-webfont.eot b/xonstat/static/css/xolonium-webfont.eot deleted file mode 100755 index 80179b2ef323a24475416d5f6b6a474ac7324d6a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15598 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 YxKLTl7*x - - - -This is a custom SVG webfont generated by Font Squirrel. -Copyright : Copyright C 2011 Severin Meyer Created with FontForge and Inkscape - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/xonstat/static/css/xolonium-webfont.ttf b/xonstat/static/css/xolonium-webfont.ttf deleted file mode 100755 index 4e8e4ae1ec7c1790447a6fcf59a73f8cb08d2a46..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 40176 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
",d.support.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="
t
";var e=a.getElementsByTagName("td");d.support.reliableHiddenOffsets=e[0].offsetHeight===0,e[0].style.display="",e[1].style.display="none",d.support.reliableHiddenOffsets=d.support.reliableHiddenOffsets&&e[0].offsetHeight===0,a.innerHTML="",b.removeChild(a).style.display="none",a=e=null}});var n=function(a){var b=c.createElement("div");a="on"+a;if(!b.attachEvent)return!0;var d=a in b;d||(b.setAttribute(a,"return;"),d=typeof b[a]==="function"),b=null;return d};d.support.submitBubbles=n("submit"),d.support.changeBubbles=n("change"),b=e=f=null}})();var e=/^(?:\{.*\}|\[.*\])$/;d.extend({cache:{},uuid:0,expando:"jQuery"+(d.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?d.cache[a[d.expando]]:a[d.expando];return!!a&&!g(a)},data:function(a,c,e,f){if(d.acceptData(a)){var g=d.expando,h=typeof c==="string",i,j=a.nodeType,k=j?d.cache:a,l=j?a[d.expando]:a[d.expando]&&d.expando;if((!l||f&&l&&!k[l][g])&&h&&e===b)return;l||(j?a[d.expando]=l=++d.uuid:l=d.expando),k[l]||(k[l]={},j||(k[l].toJSON=d.noop));if(typeof c==="object"||typeof c==="function")f?k[l][g]=d.extend(k[l][g],c):k[l]=d.extend(k[l],c);i=k[l],f&&(i[g]||(i[g]={}),i=i[g]),e!==b&&(i[c]=e);if(c==="events"&&!i[c])return i[g]&&i[g].events;return h?i[c]:i}},removeData:function(b,c,e){if(d.acceptData(b)){var f=d.expando,h=b.nodeType,i=h?d.cache:b,j=h?b[d.expando]:d.expando;if(!i[j])return;if(c){var k=e?i[j][f]:i[j];if(k){delete k[c];if(!g(k))return}}if(e){delete i[j][f];if(!g(i[j]))return}var l=i[j][f];d.support.deleteExpando||i!=a?delete i[j]:i[j]=null,l?(i[j]={},h||(i[j].toJSON=d.noop),i[j][f]=l):h&&(d.support.deleteExpando?delete b[d.expando]:b.removeAttribute?b.removeAttribute(d.expando):b[d.expando]=null)}},_data:function(a,b,c){return d.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=d.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),d.fn.extend({data:function(a,c){var e=null;if(typeof a==="undefined"){if(this.length){e=d.data(this[0]);if(this[0].nodeType===1){var g=this[0].attributes,h;for(var i=0,j=g.length;i-1)return!0;return!1},val:function(a){if(!arguments.length){var c=this[0];if(c){if(d.nodeName(c,"option")){var e=c.attributes.value;return!e||e.specified?c.value:c.text}if(d.nodeName(c,"select")){var f=c.selectedIndex,g=[],h=c.options,i=c.type==="select-one";if(f<0)return null;for(var k=i?f:0,l=i?f+1:h.length;k=0;else if(d.nodeName(this,"select")){var f=d.makeArray(e);d("option",this).each(function(){this.selected=d.inArray(d(this).val(),f)>=0}),f.length||(this.selectedIndex=-1)}else this.value=e}})}}),d.extend({attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,e,f){if(!a||a.nodeType===3||a.nodeType===8||a.nodeType===2)return b;if(f&&c in d.attrFn)return d(a)[c](e);var g=a.nodeType!==1||!d.isXMLDoc(a),h=e!==b;c=g&&d.props[c]||c;if(a.nodeType===1){var i=k.test(c);if(c==="selected"&&!d.support.optSelected){var j=a.parentNode;j&&(j.selectedIndex,j.parentNode&&j.parentNode.selectedIndex)}if((c in a||a[c]!==b)&&g&&!i){h&&(c==="type"&&l.test(a.nodeName)&&a.parentNode&&d.error("type property can't be changed"),e===null?a.nodeType===1&&a.removeAttribute(c):a[c]=e);if(d.nodeName(a,"form")&&a.getAttributeNode(c))return a.getAttributeNode(c).nodeValue;if(c==="tabIndex"){var o=a.getAttributeNode("tabIndex");return o&&o.specified?o.value:m.test(a.nodeName)||n.test(a.nodeName)&&a.href?0:b}return a[c]}if(!d.support.style&&g&&c==="style"){h&&(a.style.cssText=""+e);return a.style.cssText}h&&a.setAttribute(c,""+e);if(!a.attributes[c]&&(a.hasAttribute&&!a.hasAttribute(c)))return b;var p=!d.support.hrefNormalized&&g&&i?a.getAttribute(c,2):a.getAttribute(c);return p===null?b:p}h&&(a[c]=e);return a[c]}});var p=/\.(.*)$/,q=/^(?:textarea|input|select)$/i,r=/\./g,s=/ /g,t=/[^\w\s.|`]/g,u=function(a){return a.replace(t,"\\$&")};d.event={add:function(c,e,f,g){if(c.nodeType!==3&&c.nodeType!==8){try{d.isWindow(c)&&(c!==a&&!c.frameElement)&&(c=a)}catch(h){}if(f===!1)f=v;else if(!f)return;var i,j;f.handler&&(i=f,f=i.handler),f.guid||(f.guid=d.guid++);var k=d._data(c);if(!k)return;var l=k.events,m=k.handle;l||(k.events=l={}),m||(k.handle=m=function(){return typeof d!=="undefined"&&!d.event.triggered?d.event.handle.apply(m.elem,arguments):b}),m.elem=c,e=e.split(" ");var n,o=0,p;while(n=e[o++]){j=i?d.extend({},i):{handler:f,data:g},n.indexOf(".")>-1?(p=n.split("."),n=p.shift(),j.namespace=p.slice(0).sort().join(".")):(p=[],j.namespace=""),j.type=n,j.guid||(j.guid=f.guid);var q=l[n],r=d.event.special[n]||{};if(!q){q=l[n]=[];if(!r.setup||r.setup.call(c,g,p,m)===!1)c.addEventListener?c.addEventListener(n,m,!1):c.attachEvent&&c.attachEvent("on"+n,m)}r.add&&(r.add.call(c,j),j.handler.guid||(j.handler.guid=f.guid)),q.push(j),d.event.global[n]=!0}c=null}},global:{},remove:function(a,c,e,f){if(a.nodeType!==3&&a.nodeType!==8){e===!1&&(e=v);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=d.hasData(a)&&d._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(e=c.handler,c=c.type);if(!c||typeof c==="string"&&c.charAt(0)==="."){c=c||"";for(h in t)d.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+d.map(m.slice(0).sort(),u).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!e){for(j=0;j=0&&(a.type=f=f.slice(0,-1),a.exclusive=!0),e||(a.stopPropagation(),d.event.global[f]&&d.each(d.cache,function(){var b=d.expando,e=this[b];e&&e.events&&e.events[f]&&d.event.trigger(a,c,e.handle.elem)}));if(!e||e.nodeType===3||e.nodeType===8)return b;a.result=b,a.target=e,c=d.makeArray(c),c.unshift(a)}a.currentTarget=e;var h=d._data(e,"handle");h&&h.apply(e,c);var i=e.parentNode||e.ownerDocument;try{e&&e.nodeName&&d.noData[e.nodeName.toLowerCase()]||e["on"+f]&&e["on"+f].apply(e,c)===!1&&(a.result=!1,a.preventDefault())}catch(j){}if(!a.isPropagationStopped()&&i)d.event.trigger(a,c,i,!0);else if(!a.isDefaultPrevented()){var k,l=a.target,m=f.replace(p,""),n=d.nodeName(l,"a")&&m==="click",o=d.event.special[m]||{};if((!o._default||o._default.call(e,a)===!1)&&!n&&!(l&&l.nodeName&&d.noData[l.nodeName.toLowerCase()])){try{l[m]&&(k=l["on"+m],k&&(l["on"+m]=null),d.event.triggered=!0,l[m]())}catch(q){}k&&(l["on"+m]=k),d.event.triggered=!1}}},handle:function(c){var e,f,g,h,i,j=[],k=d.makeArray(arguments);c=k[0]=d.event.fix(c||a.event),c.currentTarget=this,e=c.type.indexOf(".")<0&&!c.exclusive,e||(g=c.type.split("."),c.type=g.shift(),j=g.slice(0).sort(),h=new RegExp("(^|\\.)"+j.join("\\.(?:.*\\.)?")+"(\\.|$)")),c.namespace=c.namespace||j.join("."),i=d._data(this,"events"),f=(i||{})[c.type];if(i&&f){f=f.slice(0);for(var l=0,m=f.length;l-1?d.map(a.options,function(a){return a.selected}).join("-"):"":a.nodeName.toLowerCase()==="select"&&(c=a.selectedIndex);return c},B=function B(a){var c=a.target,e,f;if(q.test(c.nodeName)&&!c.readOnly){e=d._data(c,"_change_data"),f=A(c),(a.type!=="focusout"||c.type!=="radio")&&d._data(c,"_change_data",f);if(e===b||f===e)return;if(e!=null||f)a.type="change",a.liveFired=b,d.event.trigger(a,arguments[1],c)}};d.event.special.change={filters:{focusout:B,beforedeactivate:B,click:function(a){var b=a.target,c=b.type;(c==="radio"||c==="checkbox"||b.nodeName.toLowerCase()==="select")&&B.call(this,a)},keydown:function(a){var b=a.target,c=b.type;(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&B.call(this,a)},beforeactivate:function(a){var b=a.target;d._data(b,"_change_data",A(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in z)d.event.add(this,c+".specialChange",z[c]);return q.test(this.nodeName)},teardown:function(a){d.event.remove(this,".specialChange");return q.test(this.nodeName)}},z=d.event.special.change.filters,z.focus=z.beforeactivate}c.addEventListener&&d.each({focus:"focusin",blur:"focusout"},function(a,b){function c(a){a=d.event.fix(a),a.type=b;return d.event.handle.call(this,a)}d.event.special[b]={setup:function(){this.addEventListener(a,c,!0)},teardown:function(){this.removeEventListener(a,c,!0)}}}),d.each(["bind","one"],function(a,c){d.fn[c]=function(a,e,f){if(typeof a==="object"){for(var g in a)this[c](g,e,a[g],f);return this}if(d.isFunction(e)||e===!1)f=e,e=b;var h=c==="one"?d.proxy(f,function(a){d(this).unbind(a,h);return f.apply(this,arguments)}):f;if(a==="unload"&&c!=="one")this.one(a,e,f);else for(var i=0,j=this.length;i0?this.bind(b,a,c):this.trigger(b)},d.attrFn&&(d.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,f=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,e,g){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!=="string")return e;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(f.call(n)==="[object Array]")if(u)if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&e.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&e.push(j[t]);else e.push.apply(e,n);else p(n,e);o&&(k(o,h,e,g),k.uniqueSort(e));return e};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e":function(a,b){var c,d=typeof b==="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){return"text"===a.getAttribute("type")},radio:function(a){return"radio"===a.type},checkbox:function(a){return"checkbox"===a.type},file:function(a){return"file"===a.type},password:function(a){return"password"===a.type},submit:function(a){return"submit"===a.type},image:function(a){return"image"===a.type},reset:function(a){return"reset"===a.type},button:function(a){return"button"===a.type||a.nodeName.toLowerCase()==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(f.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length==="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!=="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!=="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!=="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!=="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector,d=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(e){d=!0}b&&(k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(d||!l.match.PSEUDO.test(c)&&!/!=/.test(c))return b.call(a,c)}catch(e){}return k(c,null,null,[a]).length>0})}(),function(){var a=c.createElement("div");a.innerHTML="
";if(a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!=="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g0)for(var g=c;g0},closest:function(a,b){var c=[],e,f,g=this[0];if(d.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(e=0,f=a.length;e-1:d(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=L.test(a)?d(a,b||this.context):null;for(e=0,f=this.length;e-1:d.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b)break}}c=c.length>1?d.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a||typeof a==="string")return d.inArray(this[0],a?d(a):this.parent().children());return d.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a==="string"?d(a,b):d.makeArray(a),e=d.merge(this.get(),c);return this.pushStack(N(c[0])||N(e[0])?e:d.unique(e))},andSelf:function(){return this.add(this.prevObject)}}),d.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return d.dir(a,"parentNode")},parentsUntil:function(a,b,c){return d.dir(a,"parentNode",c)},next:function(a){return d.nth(a,2,"nextSibling")},prev:function(a){return d.nth(a,2,"previousSibling")},nextAll:function(a){return d.dir(a,"nextSibling")},prevAll:function(a){return d.dir(a,"previousSibling")},nextUntil:function(a,b,c){return d.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return d.dir(a,"previousSibling",c)},siblings:function(a){return d.sibling(a.parentNode.firstChild,a)},children:function(a){return d.sibling(a.firstChild)},contents:function(a){return d.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:d.makeArray(a.childNodes)}},function(a,b){d.fn[a]=function(c,e){var f=d.map(this,b,c),g=K.call(arguments);G.test(a)||(e=c),e&&typeof e==="string"&&(f=d.filter(e,f)),f=this.length>1&&!M[a]?d.unique(f):f,(this.length>1||I.test(e))&&H.test(a)&&(f=f.reverse());return this.pushStack(f,a,g.join(","))}}),d.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?d.find.matchesSelector(b[0],a)?[b[0]]:[]:d.find.matches(a,b)},dir:function(a,c,e){var f=[],g=a[c];while(g&&g.nodeType!==9&&(e===b||g.nodeType!==1||!d(g).is(e)))g.nodeType===1&&f.push(g),g=g[c];return f},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var P=/ jQuery\d+="(?:\d+|null)"/g,Q=/^\s+/,R=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,S=/<([\w:]+)/,T=/",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]};X.optgroup=X.option,X.tbody=X.tfoot=X.colgroup=X.caption=X.thead,X.th=X.td,d.support.htmlSerialize||(X._default=[1,"div
","
"]),d.fn.extend({text:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.text(a.call(this,b,c.text()))});if(typeof a!=="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return d.text(this)},wrapAll:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapAll(a.call(this,b))});if(this[0]){var b=d(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapInner(a.call(this,b))});return this.each(function(){var b=d(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){d(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){d.nodeName(this,"body")||d(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=d(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,d(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,e;(e=this[c])!=null;c++)if(!a||d.filter(a,[e]).length)!b&&e.nodeType===1&&(d.cleanData(e.getElementsByTagName("*")),d.cleanData([e])),e.parentNode&&e.parentNode.removeChild(e);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&d.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return d.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(P,""):null;if(typeof a!=="string"||V.test(a)||!d.support.leadingWhitespace&&Q.test(a)||X[(S.exec(a)||["",""])[1].toLowerCase()])d.isFunction(a)?this.each(function(b){var c=d(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);else{a=a.replace(R,"<$1>");try{for(var c=0,e=this.length;c1&&l0?this.clone(!0):this).get();d(f[h])[b](j),e=e.concat(j)}return this.pushStack(e,a,f.selector)}}),d.extend({clone:function(a,b,c){var e=a.cloneNode(!0),f,g,h;if((!d.support.noCloneEvent||!d.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!d.isXMLDoc(a)){$(a,e),f=_(a),g=_(e);for(h=0;f[h];++h)$(f[h],g[h])}if(b){Z(a,e);if(c){f=_(a),g=_(e);for(h=0;f[h];++h)Z(f[h],g[h])}}return e},clean:function(a,b,e,f){b=b||c,typeof b.createElement==="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var g=[];for(var h=0,i;(i=a[h])!=null;h++){typeof i==="number"&&(i+="");if(!i)continue;if(typeof i!=="string"||U.test(i)){if(typeof i==="string"){i=i.replace(R,"<$1>");var j=(S.exec(i)||["",""])[1].toLowerCase(),k=X[j]||X._default,l=k[0],m=b.createElement("div");m.innerHTML=k[1]+i+k[2];while(l--)m=m.lastChild;if(!d.support.tbody){var n=T.test(i),o=j==="table"&&!n?m.firstChild&&m.firstChild.childNodes:k[1]===""&&!n?m.childNodes:[];for(var p=o.length-1;p>=0;--p)d.nodeName(o[p],"tbody")&&!o[p].childNodes.length&&o[p].parentNode.removeChild(o[p])}!d.support.leadingWhitespace&&Q.test(i)&&m.insertBefore(b.createTextNode(Q.exec(i)[0]),m.firstChild),i=m.childNodes}}else i=b.createTextNode(i);i.nodeType?g.push(i):g=d.merge(g,i)}if(e)for(h=0;g[h];h++)!f||!d.nodeName(g[h],"script")||g[h].type&&g[h].type.toLowerCase()!=="text/javascript"?(g[h].nodeType===1&&g.splice.apply(g,[h+1,0].concat(d.makeArray(g[h].getElementsByTagName("script")))),e.appendChild(g[h])):f.push(g[h].parentNode?g[h].parentNode.removeChild(g[h]):g[h]);return g},cleanData:function(a){var b,c,e=d.cache,f=d.expando,g=d.event.special,h=d.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){if(j.nodeName&&d.noData[j.nodeName.toLowerCase()])continue;c=j[d.expando];if(c){b=e[c]&&e[c][f];if(b&&b.events){for(var k in b.events)g[k]?d.event.remove(j,k):d.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[d.expando]:j.removeAttribute&&j.removeAttribute(d.expando),delete e[c]}}}});var bb=/alpha\([^)]*\)/i,bc=/opacity=([^)]*)/,bd=/-([a-z])/ig,be=/([A-Z])/g,bf=/^-?\d+(?:px)?$/i,bg=/^-?\d/,bh={position:"absolute",visibility:"hidden",display:"block"},bi=["Left","Right"],bj=["Top","Bottom"],bk,bl,bm,bn=function(a,b){return b.toUpperCase()};d.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return d.access(this,a,c,!0,function(a,c,e){return e!==b?d.style(a,c,e):d.css(a,c)})},d.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bk(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{zIndex:!0,fontWeight:!0,opacity:!0,zoom:!0,lineHeight:!0},cssProps:{"float":d.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,e,f){if(a&&a.nodeType!==3&&a.nodeType!==8&&a.style){var g,h=d.camelCase(c),i=a.style,j=d.cssHooks[h];c=d.cssProps[h]||h;if(e===b){if(j&&"get"in j&&(g=j.get(a,!1,f))!==b)return g;return i[c]}if(typeof e==="number"&&isNaN(e)||e==null)return;typeof e==="number"&&!d.cssNumber[h]&&(e+="px");if(!j||!("set"in j)||(e=j.set(a,e))!==b)try{i[c]=e}catch(k){}}},css:function(a,c,e){var f,g=d.camelCase(c),h=d.cssHooks[g];c=d.cssProps[g]||g;if(h&&"get"in h&&(f=h.get(a,!0,e))!==b)return f;if(bk)return bk(a,c,g)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]},camelCase:function(a){return a.replace(bd,bn)}}),d.curCSS=d.css,d.each(["height","width"],function(a,b){d.cssHooks[b]={get:function(a,c,e){var f;if(c){a.offsetWidth!==0?f=bo(a,b,e):d.swap(a,bh,function(){f=bo(a,b,e)});if(f<=0){f=bk(a,b,b),f==="0px"&&bm&&(f=bm(a,b,b));if(f!=null)return f===""||f==="auto"?"0px":f}if(f<0||f==null){f=a.style[b];return f===""||f==="auto"?"0px":f}return typeof f==="string"?f:f+"px"}},set:function(a,b){if(!bf.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),d.support.opacity||(d.cssHooks.opacity={get:function(a,b){return bc.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style;c.zoom=1;var e=d.isNaN(b)?"":"alpha(opacity="+b*100+")",f=c.filter||"";c.filter=bb.test(f)?f.replace(bb,e):c.filter+" "+e}}),c.defaultView&&c.defaultView.getComputedStyle&&(bl=function(a,c,e){var f,g,h;e=e.replace(be,"-$1").toLowerCase();if(!(g=a.ownerDocument.defaultView))return b;if(h=g.getComputedStyle(a,null))f=h.getPropertyValue(e),f===""&&!d.contains(a.ownerDocument.documentElement,a)&&(f=d.style(a,e));return f}),c.documentElement.currentStyle&&(bm=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bf.test(d)&&bg.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bk=bl||bm,d.expr&&d.expr.filters&&(d.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!d.support.reliableHiddenOffsets&&(a.style.display||d.css(a,"display"))==="none"},d.expr.filters.visible=function(a){return!d.expr.filters.hidden(a)});var bp=/%20/g,bq=/\[\]$/,br=/\r?\n/g,bs=/#.*$/,bt=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bu=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bv=/(?:^file|^widget|\-extension):$/,bw=/^(?:GET|HEAD)$/,bx=/^\/\//,by=/\?/,bz=/)<[^<]*)*<\/script>/gi,bA=/^(?:select|textarea)/i,bB=/\s+/,bC=/([?&])_=[^&]*/,bD=/(^|\-)([a-z])/g,bE=function(a,b,c){return b+c.toUpperCase()},bF=/^([\w\+\.\-]+:)\/\/([^\/?#:]*)(?::(\d+))?/,bG=d.fn.load,bH={},bI={},bJ,bK;try{bJ=c.location.href}catch(bL){bJ=c.createElement("a"),bJ.href="",bJ=bJ.href}bK=bF.exec(bJ.toLowerCase()),d.fn.extend({load:function(a,c,e){if(typeof a!=="string"&&bG)return bG.apply(this,arguments);if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var g=a.slice(f,a.length);a=a.slice(0,f)}var h="GET";c&&(d.isFunction(c)?(e=c,c=b):typeof c==="object"&&(c=d.param(c,d.ajaxSettings.traditional),h="POST"));var i=this;d.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?d("
").append(c.replace(bz,"")).find(g):c)),e&&i.each(e,[c,b,a])}});return this},serialize:function(){return d.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?d.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bA.test(this.nodeName)||bu.test(this.type))}).map(function(a,b){var c=d(this).val();return c==null?null:d.isArray(c)?d.map(c,function(a,c){return{name:b.name,value:a.replace(br,"\r\n")}}):{name:b.name,value:c.replace(br,"\r\n")}}).get()}}),d.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){d.fn[b]=function(a){return this.bind(b,a)}}),d.each(["get","post"],function(a,c){d[c]=function(a,e,f,g){d.isFunction(e)&&(g=g||f,f=e,e=b);return d.ajax({type:c,url:a,data:e,success:f,dataType:g})}}),d.extend({getScript:function(a,c){return d.get(a,b,c,"script")},getJSON:function(a,b,c){return d.get(a,b,c,"json")},ajaxSetup:function(a,b){b?d.extend(!0,a,d.ajaxSettings,b):(b=a,a=d.extend(!0,d.ajaxSettings,b));for(var c in {context:1,url:1})c in b?a[c]=b[c]:c in d.ajaxSettings&&(a[c]=d.ajaxSettings[c]);return a},ajaxSettings:{url:bJ,isLocal:bv.test(bK[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":d.parseJSON,"text xml":d.parseXML}},ajaxPrefilter:bM(bH),ajaxTransport:bM(bI),ajax:function(a,c){function v(a,c,l,n){if(r!==2){r=2,p&&clearTimeout(p),o=b,m=n||"",u.readyState=a?4:0;var q,t,v,w=l?bP(e,u,l):b,x,y;if(a>=200&&a<300||a===304){if(e.ifModified){if(x=u.getResponseHeader("Last-Modified"))d.lastModified[k]=x;if(y=u.getResponseHeader("Etag"))d.etag[k]=y}if(a===304)c="notmodified",q=!0;else try{t=bQ(e,w),c="success",q=!0}catch(z){c="parsererror",v=z}}else{v=c;if(!c||a)c="error",a<0&&(a=0)}u.status=a,u.statusText=c,q?h.resolveWith(f,[t,c,u]):h.rejectWith(f,[u,c,v]),u.statusCode(j),j=b,s&&g.trigger("ajax"+(q?"Success":"Error"),[u,e,q?t:v]),i.resolveWith(f,[u,c]),s&&(g.trigger("ajaxComplete",[u,e]),--d.active||d.event.trigger("ajaxStop"))}}typeof a==="object"&&(c=a,a=b),c=c||{};var e=d.ajaxSetup({},c),f=e.context||e,g=f!==e&&(f.nodeType||f instanceof d)?d(f):d.event,h=d.Deferred(),i=d._Deferred(),j=e.statusCode||{},k,l={},m,n,o,p,q,r=0,s,t,u={readyState:0,setRequestHeader:function(a,b){r||(l[a.toLowerCase().replace(bD,bE)]=b);return this},getAllResponseHeaders:function(){return r===2?m:null},getResponseHeader:function(a){var c;if(r===2){if(!n){n={};while(c=bt.exec(m))n[c[1].toLowerCase()]=c[2]}c=n[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){r||(e.mimeType=a);return this},abort:function(a){a=a||"abort",o&&o.abort(a),v(0,a);return this}};h.promise(u),u.success=u.done,u.error=u.fail,u.complete=i.done,u.statusCode=function(a){if(a){var b;if(r<2)for(b in a)j[b]=[j[b],a[b]];else b=a[u.status],u.then(b,b)}return this},e.url=((a||e.url)+"").replace(bs,"").replace(bx,bK[1]+"//"),e.dataTypes=d.trim(e.dataType||"*").toLowerCase().split(bB),e.crossDomain||(q=bF.exec(e.url.toLowerCase()),e.crossDomain=q&&(q[1]!=bK[1]||q[2]!=bK[2]||(q[3]||(q[1]==="http:"?80:443))!=(bK[3]||(bK[1]==="http:"?80:443)))),e.data&&e.processData&&typeof e.data!=="string"&&(e.data=d.param(e.data,e.traditional)),bN(bH,e,c,u);if(r===2)return!1;s=e.global,e.type=e.type.toUpperCase(),e.hasContent=!bw.test(e.type),s&&d.active++===0&&d.event.trigger("ajaxStart");if(!e.hasContent){e.data&&(e.url+=(by.test(e.url)?"&":"?")+e.data),k=e.url;if(e.cache===!1){var w=d.now(),x=e.url.replace(bC,"$1_="+w);e.url=x+(x===e.url?(by.test(e.url)?"&":"?")+"_="+w:"")}}if(e.data&&e.hasContent&&e.contentType!==!1||c.contentType)l["Content-Type"]=e.contentType;e.ifModified&&(k=k||e.url,d.lastModified[k]&&(l["If-Modified-Since"]=d.lastModified[k]),d.etag[k]&&(l["If-None-Match"]=d.etag[k])),l.Accept=e.dataTypes[0]&&e.accepts[e.dataTypes[0]]?e.accepts[e.dataTypes[0]]+(e.dataTypes[0]!=="*"?", */*; q=0.01":""):e.accepts["*"];for(t in e.headers)u.setRequestHeader(t,e.headers[t]);if(e.beforeSend&&(e.beforeSend.call(f,u,e)===!1||r===2)){u.abort();return!1}for(t in {success:1,error:1,complete:1})u[t](e[t]);o=bN(bI,e,c,u);if(o){u.readyState=1,s&&g.trigger("ajaxSend",[u,e]),e.async&&e.timeout>0&&(p=setTimeout(function(){u.abort("timeout")},e.timeout));try{r=1,o.send(l,v)}catch(y){status<2?v(-1,y):d.error(y)}}else v(-1,"No Transport");return u},param:function(a,c){var e=[],f=function(a,b){b=d.isFunction(b)?b():b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=d.ajaxSettings.traditional);if(d.isArray(a)||a.jquery&&!d.isPlainObject(a))d.each(a,function(){f(this.name,this.value)});else for(var g in a)bO(g,a[g],c,f);return e.join("&").replace(bp,"+")}}),d.extend({active:0,lastModified:{},etag:{}});var bR=d.now(),bS=/(\=)\?(&|$)|()\?\?()/i;d.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return d.expando+"_"+bR++}}),d.ajaxPrefilter("json jsonp",function(b,c,e){var f=typeof b.data==="string";if(b.dataTypes[0]==="jsonp"||c.jsonpCallback||c.jsonp!=null||b.jsonp!==!1&&(bS.test(b.url)||f&&bS.test(b.data))){var g,h=b.jsonpCallback=d.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2",m=function(){a[h]=i,g&&d.isFunction(i)&&a[h](g[0])};b.jsonp!==!1&&(j=j.replace(bS,l),b.url===j&&(f&&(k=k.replace(bS,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},e.then(m,m),b.converters["script json"]=function(){g||d.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),d.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){d.globalEval(a);return a}}}),d.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),d.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var bT=d.now(),bU,bV;d.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&bX()||bY()}:bX,bV=d.ajaxSettings.xhr(),d.support.ajax=!!bV,d.support.cors=bV&&"withCredentials"in bV,bV=b,d.support.ajax&&d.ajaxTransport(function(a){if(!a.crossDomain||d.support.cors){var c;return{send:function(e,f){var g=a.xhr(),h,i;a.username?g.open(a.type,a.url,a.async,a.username,a.password):g.open(a.type,a.url,a.async);if(a.xhrFields)for(i in a.xhrFields)g[i]=a.xhrFields[i];a.mimeType&&g.overrideMimeType&&g.overrideMimeType(a.mimeType),(!a.crossDomain||a.hasContent)&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(i in e)g.setRequestHeader(i,e[i])}catch(j){}g.send(a.hasContent&&a.data||null),c=function(e,i){var j,k,l,m,n;try{if(c&&(i||g.readyState===4)){c=b,h&&(g.onreadystatechange=d.noop,delete bU[h]);if(i)g.readyState!==4&&g.abort();else{j=g.status,l=g.getAllResponseHeaders(),m={},n=g.responseXML,n&&n.documentElement&&(m.xml=n),m.text=g.responseText;try{k=g.statusText}catch(o){k=""}j||!a.isLocal||a.crossDomain?j===1223&&(j=204):j=m.text?200:404}}}catch(p){i||f(-1,p)}m&&f(j,k,m,l)},a.async&&g.readyState!==4?(bU||(bU={},bW()),h=bT++,g.onreadystatechange=bU[h]=c):c()},abort:function(){c&&c(0,1)}}}});var bZ={},b$=/^(?:toggle|show|hide)$/,b_=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,ca,cb=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];d.fn.extend({show:function(a,b,c){var e,f;if(a||a===0)return this.animate(cc("show",3),a,b,c);for(var g=0,h=this.length;g=0;a--)c[a].elem===this&&(b&&c[a](!0),c.splice(a,1))}),b||this.dequeue();return this}}),d.each({slideDown:cc("show",1),slideUp:cc("hide",1),slideToggle:cc("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){d.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),d.extend({speed:function(a,b,c){var e=a&&typeof a==="object"?d.extend({},a):{complete:c||!c&&b||d.isFunction(a)&&a,duration:a,easing:c&&b||b&&!d.isFunction(b)&&b};e.duration=d.fx.off?0:typeof e.duration==="number"?e.duration:e.duration in d.fx.speeds?d.fx.speeds[e.duration]:d.fx.speeds._default,e.old=e.complete,e.complete=function(){e.queue!==!1&&d(this).dequeue(),d.isFunction(e.old)&&e.old.call(this)};return e},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig||(b.orig={})}}),d.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(d.fx.step[this.prop]||d.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=d.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,b,c){function g(a){return e.step(a)}var e=this,f=d.fx;this.startTime=d.now(),this.start=a,this.end=b,this.unit=c||this.unit||(d.cssNumber[this.prop]?"":"px"),this.now=this.start,this.pos=this.state=0,g.elem=this.elem,g()&&d.timers.push(g)&&!ca&&(ca=setInterval(f.tick,f.interval))},show:function(){this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.show=!0,this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),d(this.elem).show()},hide:function(){this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b=d.now(),c=!0;if(a||b>=this.options.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),this.options.curAnim[this.prop]=!0;for(var e in this.options.curAnim)this.options.curAnim[e]!==!0&&(c=!1);if(c){if(this.options.overflow!=null&&!d.support.shrinkWrapBlocks){var f=this.elem,g=this.options;d.each(["","X","Y"],function(a,b){f.style["overflow"+b]=g.overflow[a]})}this.options.hide&&d(this.elem).hide();if(this.options.hide||this.options.show)for(var h in this.options.curAnim)d.style(this.elem,h,this.options.orig[h]);this.options.complete.call(this.elem)}return!1}var i=b-this.startTime;this.state=i/this.options.duration;var j=this.options.specialEasing&&this.options.specialEasing[this.prop],k=this.options.easing||(d.easing.swing?"swing":"linear");this.pos=d.easing[j||k](this.state,i,0,1,this.options.duration),this.now=this.start+(this.end-this.start)*this.pos,this.update();return!0}},d.extend(d.fx,{tick:function(){var a=d.timers;for(var b=0;b
";d.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),e=b.firstChild,f=e.firstChild,h=e.nextSibling.firstChild.firstChild,this.doesNotAddBorder=f.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,f.style.position="fixed",f.style.top="20px",this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15,f.style.position=f.style.top="",e.style.overflow="hidden",e.style.position="relative",this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),a=b=e=f=g=h=null,d.offset.initialize=d.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;d.offset.initialize(),d.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(d.css(a,"marginTop"))||0,c+=parseFloat(d.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var e=d.css(a,"position");e==="static"&&(a.style.position="relative");var f=d(a),g=f.offset(),h=d.css(a,"top"),i=d.css(a,"left"),j=e==="absolute"&&d.inArray("auto",[h,i])>-1,k={},l={},m,n;j&&(l=f.position()),m=j?l.top:parseInt(h,10)||0,n=j?l.left:parseInt(i,10)||0,d.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):f.css(k)}},d.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),e=cf.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(d.css(a,"marginTop"))||0,c.left-=parseFloat(d.css(a,"marginLeft"))||0,e.top+=parseFloat(d.css(b[0],"borderTopWidth"))||0,e.left+=parseFloat(d.css(b[0],"borderLeftWidth"))||0;return{top:c.top-e.top,left:c.left-e.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&(!cf.test(a.nodeName)&&d.css(a,"position")==="static"))a=a.offsetParent;return a})}}),d.each(["Left","Top"],function(a,c){var e="scroll"+c;d.fn[e]=function(c){var f=this[0],g;if(!f)return null;if(c!==b)return this.each(function(){g=cg(this),g?g.scrollTo(a?d(g).scrollLeft():c,a?c:d(g).scrollTop()):this[e]=c});g=cg(f);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:d.support.boxModel&&g.document.documentElement[e]||g.document.body[e]:f[e]}}),d.each(["Height","Width"],function(a,c){var e=c.toLowerCase();d.fn["inner"+c]=function(){return this[0]?parseFloat(d.css(this[0],e,"padding")):null},d.fn["outer"+c]=function(a){return this[0]?parseFloat(d.css(this[0],e,a?"margin":"border")):null},d.fn[e]=function(a){var f=this[0];if(!f)return a==null?null:this;if(d.isFunction(a))return this.each(function(b){var c=d(this);c[e](a.call(this,b,c[e]()))});if(d.isWindow(f)){var g=f.document.documentElement["client"+c];return f.document.compatMode==="CSS1Compat"&&g||f.document.body["client"+c]||g}if(f.nodeType===9)return Math.max(f.documentElement["client"+c],f.body["scroll"+c],f.documentElement["scroll"+c],f.body["offset"+c],f.documentElement["offset"+c]);if(a===b){var h=d.css(f,e),i=parseFloat(h);return d.isNaN(i)?h:i}return this.css(e,typeof a==="string"?a:a+"px")}}),a.jQuery=a.$=d})(window); \ No newline at end of file diff --git a/xonstat/templates/accuracy.mako b/xonstat/templates/accuracy.mako index 2f07cc3..678f846 100755 --- a/xonstat/templates/accuracy.mako +++ b/xonstat/templates/accuracy.mako @@ -11,17 +11,17 @@ ## [4] = Hit ## [5] = Fired - - - - - - - - - - - +
WeaponHitFiredHit %Actual DamagePotential DamageDamage %
+ + + + + + + + + + % for weapon_stat in weapon_stats: <% if weapon_stat[3] > 0: @@ -37,7 +37,7 @@ else: ## Note: the name of the image must match up with the weapon_cd ## entry of that weapon, else this won't work - + diff --git a/xonstat/templates/base.mako b/xonstat/templates/base.mako index 7de82e2..068e561 100755 --- a/xonstat/templates/base.mako +++ b/xonstat/templates/base.mako @@ -3,33 +3,37 @@ <%block name="title">XonStat - Player Statistics for Xonotic</%block> <%block name="css"> - - - <%block name="js"> + - -
- ${self.body()} -
- +
+
+

Player Statistics for Xonotic

+ +
+ ${self.body()} +
+
+ +
+ <%block name="js"> + + + + + diff --git a/xonstat/templates/game_index.mako b/xonstat/templates/game_index.mako index 06086b2..a1cf8f6 100755 --- a/xonstat/templates/game_index.mako +++ b/xonstat/templates/game_index.mako @@ -5,27 +5,17 @@ Game Index - ${parent.title()} -<%block name="js"> -${parent.js()} - - - - - % if not games:

Sorry, no games yet. Get playing!

% else:

Recent Games

% for (game, server, map) in games: - -

- ${map.name} on ${server.name} (permalink for this game): +

+

${map.name} on ${server.name} (permalink)

## show scoreboard using a def from another file ${scoreboard(game.game_type_cd, pgstats[game.game_id])} -

+
% endfor % endif diff --git a/xonstat/templates/main_index.mako b/xonstat/templates/main_index.mako index 01e4868..04e510b 100755 --- a/xonstat/templates/main_index.mako +++ b/xonstat/templates/main_index.mako @@ -4,119 +4,127 @@ Main Page - ${parent.title()} -
+
WeaponHitFiredHit %Actual DamagePotential DamageDamage %
${weapon_stat[0]}${weapon_stat[0]} ${weapon_stat[4]} ${weapon_stat[5]} ${hit_pct}%
- - - - - - - - -<% i = 1 %> -% for (player_id, nick, score) in top_players: - - - % if player_id != '-': - - % else: - - % endif - - - <% i = i+1 %> -% endfor +

Top Players

+
Top Players
#NickScore
${i}${nick|n}${nick}${score}
+ + + + + + + + + <% i = 1 %> + % for (player_id, nick, score) in top_players: + + + % if player_id != '-': + + % else: + + % endif + + + <% i = i+1 %> + % endfor +
#NickScore
${i}${nick|n}${nick}${score}
##### TOP SERVERS ##### - - - - - - - - - -<% i = 1 %> -% for (server_id, name, count) in top_servers: - - - % if server_id != '-': - - % else: - - % endif - - - <% i = i+1 %> -% endfor +

Top Servers

+
Top Servers
#ServerGames
${i}${name}${name}${count}
+ + + + + + + + + <% i = 1 %> + % for (server_id, name, count) in top_servers: + + + % if server_id != '-': + + % else: + + % endif + + + <% i = i+1 %> + % endfor +
#ServerGames
${i}${name}${name}${count}
##### TOP MAPS ##### - - - - - - - - - -<% i = 1 %> -% for (map_id, name, count) in top_maps: - - - % if map_id != '-': - - % else: - - % endif - - - <% i = i+1 %> -% endfor +

Top Maps

+
Top Maps
#MapTimes Played
${i}${name}${name}${count}
+ + + + + + + + + <% i = 1 %> + % for (map_id, name, count) in top_maps: + + + % if map_id != '-': + + % else: + + % endif + + + <% i = i+1 %> + % endfor +
#MapTimes Played
${i}${name}${name}${count}
-
+
##### RECENT GAMES ##### - - - - - - - - - - - - - % for (game, server, map) in recent_games: - % if game != '-': - - - - - - - - - % else: - - - - - - - - - % endif +

Recent Games

+
Recent Games
Game #TypeServerMapTimeWinner
${game.game_id}${game.game_type_cd}${server.name}${map.name}${game.start_dt.strftime('%m/%d/%Y %H:%M')}${game.winner}
------
+ + + + + + + + + + + + % for (game, server, map) in recent_games: + % if game != '-': + + + + + + + + + % else: + + + + + + + + + % endif % endfor +
Game #TypeServerMapTimeWinner
${game.game_id}${game.game_type_cd}${server.name}${map.name}${game.start_dt.strftime('%m/%d/%Y %H:%M')}${game.winner}
------
diff --git a/xonstat/templates/player_info.mako b/xonstat/templates/player_info.mako index 615716c..b2e9fa6 100755 --- a/xonstat/templates/player_info.mako +++ b/xonstat/templates/player_info.mako @@ -8,13 +8,7 @@ ${parent.css()} <%block name="js"> ${parent.js()} - - <%block name="title"> @@ -45,36 +39,43 @@ ${parent.title()} ##### STATS ##### % if game_stats:

Overall Game Stats

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
Score${game_stats['total_score']}Carrier Kills${game_stats['total_carrier_frags']}
Kills${game_stats['total_kills']}Collects${game_stats['total_collects']}
Deaths${game_stats['total_deaths']}Destroys${game_stats['total_destroys']}
Suicides${game_stats['total_suicides']}Destroys (with key)${game_stats['total_destroys']}
Captures${game_stats['total_captures']}Pushes${game_stats['total_pushes']}
Pickups${game_stats['total_pickups']}Pushed${game_stats['total_pushed']}
Drops${game_stats['total_drops']}Returns${game_stats['total_returns']}
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ScoreCarrier KillsKillsCollectsDeathsDestroysSuicidesDestroys (with key)CapturesPushesPickupsPushedDropsReturns
${game_stats['total_score']}${game_stats['total_carrier_frags']}${game_stats['total_kills']}${game_stats['total_collects']}${game_stats['total_deaths']}${game_stats['total_destroys']}${game_stats['total_suicides']}${game_stats['total_destroys']}${game_stats['total_captures']}${game_stats['total_pushes']}${game_stats['total_pickups']}${game_stats['total_pushed']}${game_stats['total_drops']}${game_stats['total_returns']}
% endif @@ -88,29 +89,33 @@ ${accuracy(weapon_stats)} ##### RECENT GAMES (v2) #### % if recent_games:

Recent Games

- - - - - - - - -% for (gamestat, game, server, map) in recent_games: - - - - - - - -% endfor +
Game TypeMapResultPlayedPermalink
${game.game_type_cd}${map.name} - % if gamestat.team != None and gamestat.team == game.winner: - Win - % else: - Loss - % endif - ${game.fuzzy_date()}View
+ + + + + + + + + + + % for (gamestat, game, server, map) in recent_games: + + + + + + + + % endfor +
Game TypeMapResultPlayedPermalink
${game.game_type_cd}${map.name} + % if gamestat.team != None and gamestat.team == game.winner: + Win + % else: + Loss + % endif + ${game.fuzzy_date()}View
More games played by ${player.nick_html_colors()|n}... % endif diff --git a/xonstat/templates/scoreboard.mako b/xonstat/templates/scoreboard.mako index ec3a20c..ba33cc7 100755 --- a/xonstat/templates/scoreboard.mako +++ b/xonstat/templates/scoreboard.mako @@ -1,77 +1,87 @@ <%def name="scoreboard(game_type_cd, pgstats)"> - +
${scoreboard_header(game_type_cd, pgstats[0])} -% for pgstat in pgstats: - - - ${scoreboard_row(game_type_cd, pgstat)} - - - -% endfor + + % for pgstat in pgstats: + + + ${scoreboard_row(game_type_cd, pgstat)} + + + + % endfor +
- % if pgstat.player_id > 2: - - ${pgstat.nick_html_colors()|n} - - % else: - ${pgstat.nick_html_colors()|n} - % endif - ${pgstat.score} - % if pgstat.player_id > 1: - - View - - % endif -
+ % if pgstat.player_id > 2: + + ${pgstat.nick_html_colors()|n} + + % else: + ${pgstat.nick_html_colors()|n} + % endif + ${pgstat.score} + % if pgstat.player_id > 1: + + View + + % endif +
##### SCOREBOARD HEADER ##### <%def name="scoreboard_header(game_type_cd, pgstat)"> % if game_type_cd == 'dm' or game_type_cd == 'tdm': - - Nick - Kills - Deaths - Suicides - Score - Accuracy - + + + Nick + Kills + Deaths + Suicides + Score + Accuracy + + % endif % if game_type_cd == 'ctf': - - Nick - Kills - Captures - Pickups - Flag Carrier Kills - Returns - Score - Accuracy - + + + Nick + Kills + Captures + Pickups + Flag Carrier Kills + Returns + Score + Accuracy + + % endif % if game_type_cd == 'ca': - - Nick - Kills - Score - Accuracy - + + + Nick + Kills + Score + Accuracy + + % endif % if game_type_cd == 'freezetag': - - Nick - Kills - Deaths - Suicides - Score - Accuracy - + + + Nick + Kills + Deaths + Suicides + Score + Accuracy + + % endif -- 2.39.2

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 -w-r+1;x=w}else{s=y-Math.ceil(r/2)+1;x=s+r-1}for(r=s;r<=x;r++)F+=y!=r?''+r+"":''+r+"";x=g.aanFeatures.p;var z,U=function(){g._iDisplayStart=(this.innerHTML*1-1)*g._iDisplayLength;m(g);return false},C=function(){return false};r=0;for(s=x.length;rm?1:0},"string-desc":function(g,m){g=g.toLowerCase();m=m.toLowerCase();return gm?-1:0},"html-asc":function(g,m){g=g.replace(/<.*?>/g,"").toLowerCase();m=m.replace(/<.*?>/g,"").toLowerCase();return gm?1:0},"html-desc":function(g,m){g=g.replace(/<.*?>/g,"").toLowerCase();m=m.replace(/<.*?>/g,"").toLowerCase();return gm?-1:0},"date-asc":function(g,m){g=Date.parse(g);m=Date.parse(m); -if(isNaN(g)||g==="")g=Date.parse("01/01/1970 00:00:00");if(isNaN(m)||m==="")m=Date.parse("01/01/1970 00:00:00");return g-m},"date-desc":function(g,m){g=Date.parse(g);m=Date.parse(m);if(isNaN(g)||g==="")g=Date.parse("01/01/1970 00:00:00");if(isNaN(m)||m==="")m=Date.parse("01/01/1970 00:00:00");return m-g},"numeric-asc":function(g,m){return(g=="-"||g===""?0:g*1)-(m=="-"||m===""?0:m*1)},"numeric-desc":function(g,m){return(m=="-"||m===""?0:m*1)-(g=="-"||g===""?0:g*1)}};n.aTypes=[function(g){if(g.length=== -0)return"numeric";var m,r=false;m=g.charAt(0);if("0123456789-".indexOf(m)==-1)return null;for(var s=1;s")!=-1)return"html";return null}];n.fnVersionCheck=function(g){var m=function(x,u){for(;x.length=parseInt(w,10)};n._oExternConfig={iNextUnique:0};j.fn.dataTable=function(g){function m(){this.fnRecordsTotal=function(){return this.oFeatures.bServerSide?parseInt(this._iRecordsTotal,10):this.aiDisplayMaster.length};this.fnRecordsDisplay=function(){return this.oFeatures.bServerSide?parseInt(this._iRecordsDisplay,10):this.aiDisplay.length};this.fnDisplayEnd=function(){return this.oFeatures.bServerSide? -this.oFeatures.bPaginate===false||this._iDisplayLength==-1?this._iDisplayStart+this.aiDisplay.length:Math.min(this._iDisplayStart+this._iDisplayLength,this._iRecordsDisplay):this._iDisplayEnd};this.sInstance=this.oInstance=null;this.oFeatures={bPaginate:true,bLengthChange:true,bFilter:true,bSort:true,bInfo:true,bAutoWidth:true,bProcessing:false,bSortClasses:true,bStateSave:false,bServerSide:false};this.oScroll={sX:"",sXInner:"",sY:"",bCollapse:false,bInfinite:false,iLoadGap:100,iBarWidth:0,bAutoCss:true}; -this.aanFeatures=[];this.oLanguage={sProcessing:"Processing...",sLengthMenu:"Show _MENU_ entries",sZeroRecords:"No matching records found",sEmptyTable:"No data available in table",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)",sInfoPostFix:"",sSearch:"Search:",sUrl:"",oPaginate:{sFirst:"First",sPrevious:"Previous",sNext:"Next",sLast:"Last"},fnInfoCallback:null};this.aoData=[];this.aiDisplay=[];this.aiDisplayMaster= -[];this.aoColumns=[];this.iNextId=0;this.asDataSearch=[];this.oPreviousSearch={sSearch:"",bRegex:false,bSmart:true};this.aoPreSearchCols=[];this.aaSorting=[[0,"asc",0]];this.aaSortingFixed=null;this.asStripClasses=[];this.asDestoryStrips=[];this.sDestroyWidth=0;this.fnFooterCallback=this.fnHeaderCallback=this.fnRowCallback=null;this.aoDrawCallback=[];this.fnInitComplete=null;this.sTableId="";this.nTableWrapper=this.nTBody=this.nTFoot=this.nTHead=this.nTable=null;this.bInitialised=false;this.aoOpenRows= -[];this.sDom="lfrtip";this.sPaginationType="two_button";this.iCookieDuration=7200;this.sCookiePrefix="SpryMedia_DataTables_";this.fnCookieCallback=null;this.aoStateSave=[];this.aoStateLoad=[];this.sAjaxSource=this.oLoadedState=null;this.bAjaxDataGet=true;this.fnServerData=function(a,b,c){j.ajax({url:a,data:b,success:c,dataType:"json",cache:false,error:function(d,f){f=="parsererror"&&alert("DataTables warning: JSON data from server could not be parsed. This is caused by a JSON formatting error.")}})}; -this.fnFormatNumber=function(a){if(a<1E3)return a;else{var b=a+"";a=b.split("");var c="";b=b.length;for(var d=0;d=a.fnRecordsDisplay()?0:a.iInitDisplayStart;a.iInitDisplayStart=-1;E(a)}if(!(!a.bDestroying&&a.oFeatures.bServerSide&&!ta(a))){a.oFeatures.bServerSide||a.iDraw++;if(a.aiDisplay.length!==0){var i=a._iDisplayStart, -h=a._iDisplayEnd;if(a.oFeatures.bServerSide){i=0;h=a.aoData.length}for(i=i;itr",a.nTHead)[0], -V(a),a._iDisplayStart,a.fnDisplayEnd(),a.aiDisplay);typeof a.fnFooterCallback=="function"&&a.fnFooterCallback.call(a.oInstance,j(">tr",a.nTFoot)[0],V(a),a._iDisplayStart,a.fnDisplayEnd(),a.aiDisplay);f=p.createDocumentFragment();b=p.createDocumentFragment();if(a.nTBody){e=a.nTBody.parentNode;b.appendChild(a.nTBody);if(!a.oScroll.bInfinite||!a._bInitComplete||a.bSorted||a.bFiltered){c=a.nTBody.childNodes;for(b=c.length-1;b>=0;b--)c[b].parentNode.removeChild(c[b])}b=0;for(c=d.length;b=0;b--)a.aoDrawCallback[b].fn.call(a.oInstance,a);a.bSorted=false;a.bFiltered=false;a.bDrawing=false;if(a.oFeatures.bServerSide){K(a,false);typeof a._bInitComplete=="undefined"&&w(a)}}}function W(a){if(a.oFeatures.bSort)O(a,a.oPreviousSearch);else if(a.oFeatures.bFilter)P(a,a.oPreviousSearch);else{E(a);C(a)}}function ta(a){if(a.bAjaxDataGet){K(a,true);var b=a.aoColumns.length,c=[],d;a.iDraw++;c.push({name:"sEcho", -value:a.iDraw});c.push({name:"iColumns",value:b});c.push({name:"sColumns",value:ca(a)});c.push({name:"iDisplayStart",value:a._iDisplayStart});c.push({name:"iDisplayLength",value:a.oFeatures.bPaginate!==false?a._iDisplayLength:-1});if(a.oFeatures.bFilter!==false){c.push({name:"sSearch",value:a.oPreviousSearch.sSearch});c.push({name:"bRegex",value:a.oPreviousSearch.bRegex});for(d=0;d")c=c.parentNode;else if(i=="l"&&a.oFeatures.bPaginate&&a.oFeatures.bLengthChange){f=wa(a);e=1}else if(i=="f"&&a.oFeatures.bFilter){f=xa(a);e=1}else if(i=="r"&&a.oFeatures.bProcessing){f=ya(a);e=1}else if(i=="t"){f=za(a);e=1}else if(i=="i"&&a.oFeatures.bInfo){f=Aa(a);e=1}else if(i=="p"&&a.oFeatures.bPaginate){f=Ba(a);e=1}else if(n.aoFeatures.length!==0){h=n.aoFeatures;q=0;for(k=h.length;qcaption",a.nTable);i=0;for(k=d.length;ij(a.nTable).height()-a.oScroll.iLoadGap)if(a.fnDisplayEnd()0&&a.nTable.removeChild(i[0]);if(a.nTFoot!==null){k=a.nTable.getElementsByTagName("tfoot");k.length>0&&a.nTable.removeChild(k[0])}i=a.nTHead.cloneNode(true);a.nTable.insertBefore(i,a.nTable.childNodes[0]);if(a.nTFoot!==null){k=a.nTFoot.cloneNode(true);a.nTable.insertBefore(k,a.nTable.childNodes[1])}var J=fa(i);f=0;for(e=J.length;ff-a.oScroll.iBarWidth)a.nTable.style.width=v(f)}else a.nTable.style.width= -v(f);f=j(a.nTable).outerWidth();e=a.nTHead.getElementsByTagName("tr");i=i.getElementsByTagName("tr");L(function(B,I){l=B.style;l.paddingTop="0";l.paddingBottom="0";l.borderTopWidth="0";l.borderBottomWidth="0";l.height=0;t=j(B).width();I.style.width=v(t);G.push(t)},i,e);j(i).height(0);if(a.nTFoot!==null){h=k.getElementsByTagName("tr");k=a.nTFoot.getElementsByTagName("tr");L(function(B,I){l=B.style;l.paddingTop="0";l.paddingBottom="0";l.borderTopWidth="0";l.borderBottomWidth="0";l.height=0;t=j(B).width(); -I.style.width=v(t);G.push(t)},h,k);j(h).height(0)}L(function(B){B.innerHTML="";B.style.width=v(G.shift())},i);a.nTFoot!==null&&L(function(B){B.innerHTML="";B.style.width=v(G.shift())},h);if(j(a.nTable).outerWidth()d.offsetWidth?a.oScroll.iBarWidth:0;if(a.nTable.offsetHeight';var c=j("input",b);c.val(a.oPreviousSearch.sSearch.replace('"',"""));c.bind("keyup.DT",function(){for(var d=a.aanFeatures.f,f=0,e=d.length;f=0;d--){f=ja(a.aoData[a.aiDisplay[d]]._aData[c],a.aoColumns[c].sType);if(!b.test(f)){a.aiDisplay.splice(d,1);e++}}}}function Da(a,b,c,d,f){var e=ia(b,d,f);if(typeof c=="undefined"||c===null)c=0;if(n.afnFiltering.length!==0)c=1;if(b.length<=0){a.aiDisplay.splice(0,a.aiDisplay.length);a.aiDisplay=a.aiDisplayMaster.slice()}else if(a.aiDisplay.length==a.aiDisplayMaster.length||a.oPreviousSearch.sSearch.length>b.length||c==1||b.indexOf(a.oPreviousSearch.sSearch)!== -0){a.aiDisplay.splice(0,a.aiDisplay.length);ha(a,1);for(c=0;c/g,"");else if(typeof a=="string")return a.replace(/\n/g," ");return a}function O(a,b){var c,d,f,e,i,h,k=[],l=[],q=n.oSort,t=a.aoData,G=a.aoColumns;if(!a.oFeatures.bServerSide&&(a.aaSorting.length!==0||a.aaSortingFixed!==null)){k=a.aaSortingFixed!==null?a.aaSortingFixed.concat(a.aaSorting):a.aaSorting.slice();for(f=0;f=i)for(b=0;b=0?a._iDisplayStart-a._iDisplayLength:0;if(a._iDisplayStart<0)a._iDisplayStart=0}else if(b=="next")if(a._iDisplayLength>=0){if(a._iDisplayStart+a._iDisplayLength=0){b=parseInt((a.fnRecordsDisplay()-1)/a._iDisplayLength,10)+1;a._iDisplayStart=(b-1)*a._iDisplayLength}else a._iDisplayStart=0;else H(a,0,"Unknown paging action: "+b);return c!=a._iDisplayStart}function Aa(a){var b=p.createElement("div");b.className=a.oClasses.sInfo;if(typeof a.aanFeatures.i=="undefined"){a.aoDrawCallback.push({fn:Ga,sName:"information"});a.sTableId!==""&&b.setAttribute("id",a.sTableId+"_info")}return b} -function Ga(a){if(!(!a.oFeatures.bInfo||a.aanFeatures.i.length===0)){var b=a._iDisplayStart+1,c=a.fnDisplayEnd(),d=a.fnRecordsTotal(),f=a.fnRecordsDisplay(),e=a.fnFormatNumber(b),i=a.fnFormatNumber(c),h=a.fnFormatNumber(d),k=a.fnFormatNumber(f);if(a.oScroll.bInfinite)e=a.fnFormatNumber(1);e=a.fnRecordsDisplay()===0&&a.fnRecordsDisplay()==a.fnRecordsTotal()?a.oLanguage.sInfoEmpty+a.oLanguage.sInfoPostFix:a.fnRecordsDisplay()===0?a.oLanguage.sInfoEmpty+" "+a.oLanguage.sInfoFiltered.replace("_MAX_", -h)+a.oLanguage.sInfoPostFix:a.fnRecordsDisplay()==a.fnRecordsTotal()?a.oLanguage.sInfo.replace("_START_",e).replace("_END_",i).replace("_TOTAL_",k)+a.oLanguage.sInfoPostFix:a.oLanguage.sInfo.replace("_START_",e).replace("_END_",i).replace("_TOTAL_",k)+" "+a.oLanguage.sInfoFiltered.replace("_MAX_",a.fnFormatNumber(a.fnRecordsTotal()))+a.oLanguage.sInfoPostFix;if(a.oLanguage.fnInfoCallback!==null)e=a.oLanguage.fnInfoCallback(a,b,c,d,f,e);a=a.aanFeatures.i;b=0;for(c=a.length;b",c,d;if(a.aLengthMenu.length==2&&typeof a.aLengthMenu[0]=="object"&&typeof a.aLengthMenu[1]=="object"){c=0;for(d=a.aLengthMenu[0].length;c'+a.aLengthMenu[1][c]+""}else{c=0;for(d=a.aLengthMenu.length;c'+a.aLengthMenu[c]+""}b+="";var f=p.createElement("div"); -a.sTableId!==""&&typeof a.aanFeatures.l=="undefined"&&f.setAttribute("id",a.sTableId+"_length");f.className=a.oClasses.sLength;f.innerHTML=a.oLanguage.sLengthMenu.replace("_MENU_",b);j('select option[value="'+a._iDisplayLength+'"]',f).attr("selected",true);j("select",f).bind("change.DT",function(){var e=j(this).val(),i=a.aanFeatures.l;c=0;for(d=i.length;ca.aiDisplay.length||a._iDisplayLength==-1?a.aiDisplay.length:a._iDisplayStart+a._iDisplayLength}function Ha(a,b){if(!a||a===null||a==="")return 0;if(typeof b=="undefined")b=p.getElementsByTagName("body")[0];var c=p.createElement("div");c.style.width=a;b.appendChild(c);a=c.offsetWidth; -b.removeChild(c);return a}function $(a){var b=0,c,d=0,f=a.aoColumns.length,e,i=j("th",a.nTHead);for(e=0;etd",b);e.each(function(h){this.style.width="";h=ga(a,h);if(h!==null&&a.aoColumns[h].sWidthOrig!=="")this.style.width=a.aoColumns[h].sWidthOrig});for(e=0;etd",b);if(f.length===0)f=j("thead tr:eq(0)>th",b);for(e=c=0;e0)a.aoColumns[e].sWidth=v(d);c++}a.nTable.style.width=v(j(b).outerWidth());b.parentNode.removeChild(b)}}function Ja(a,b){if(a.oScroll.sX===""&&a.oScroll.sY!==""){j(b).width();b.style.width=v(j(b).outerWidth()-a.oScroll.iBarWidth)}else if(a.oScroll.sX!=="")b.style.width=v(j(b).outerWidth())}function Ia(a,b,c){if(typeof c=="undefined"||c){c=Ka(a,b);b=M(a,b);if(c<0)return null;return a.aoData[c].nTr.getElementsByTagName("td")[b]}var d=-1,f,e;c=-1;var i=p.createElement("div");i.style.visibility="hidden"; -i.style.position="absolute";p.body.appendChild(i);f=0;for(e=a.aoData.length;fd){d=i.offsetWidth;c=f}}p.body.removeChild(i);if(c>=0){b=M(a,b);if(a=a.aoData[c].nTr.getElementsByTagName("td")[b])return a}return null}function Ka(a,b){for(var c=-1,d=-1,f=0;fc){c=e.length;d=f}}return d}function v(a){if(a===null)return"0px";if(typeof a=="number"){if(a<0)return"0px";return a+"px"}var b= -a.charCodeAt(a.length-1);if(b<48||b>57)return a;return a+"px"}function Oa(a,b){if(a.length!=b.length)return 1;for(var c=0;cb&&a[d]--;c!=-1&&a.splice(c,1)}function va(a,b){b=b.split(",");for(var c=[],d=0,f=a.aoColumns.length;d4096){a=p.cookie.split(";");for(var h=0,k=a.length;h=d.aiDisplay.length){d._iDisplayStart-=d._iDisplayLength;if(d._iDisplayStart<0)d._iDisplayStart=0}if(typeof c=="undefined"||c){E(d);C(d)}return f};this.fnClearTable=function(a){var b=A(this[n.iApiIndex]);da(b);if(typeof a=="undefined"||a)C(b)};this.fnOpen=function(a,b,c){var d=A(this[n.iApiIndex]);this.fnClose(a);var f= -p.createElement("tr"),e=p.createElement("td");f.appendChild(e);e.className=c;e.colSpan=S(d);e.innerHTML=b;b=j("tr",d.nTBody);j.inArray(a,b)!=-1&&j(f).insertAfter(a);d.aoOpenRows.push({nTr:f,nParent:a});return f};this.fnClose=function(a){for(var b=A(this[n.iApiIndex]),c=0;ctr",d.nTHead)[0];i=j(">tr",d.nTFoot)[0];q=[];h=[];for(f=0;f=S(d)){l.appendChild(q[a]);l=j(">tr", -d.nTHead);f=1;for(e=l.length;ftr",d.nTFoot);f=1;for(e=l.length;ftr",d.nTHead);f=1;for(e=l.length;ftr",d.nTFoot);f=1;for(e=l.length;ftd:eq("+k+")",d.aoData[f].nTr)[0])}}d.aoColumns[a].bVisible=true}else{l.removeChild(q[a]);f=0;for(e=d.aoColumns[a].anThExtra.length;ftr>td."+a.oClasses.sRowEmpty,a.nTable).parent().remove();if(a.nTable!=a.nTHead.parentNode){j(">thead",a.nTable).remove();a.nTable.appendChild(a.nTHead)}if(a.nTFoot&&a.nTable!=a.nTFoot.parentNode){j(">tfoot",a.nTable).remove();a.nTable.appendChild(a.nTFoot)}a.nTable.parentNode.removeChild(a.nTable); -j(a.nTableWrapper).remove();a.aaSorting=[];a.aaSortingFixed=[];T(a);j(R(a)).removeClass(a.asStripClasses.join(" "));if(a.bJUI){j("th",a.nTHead).removeClass([n.oStdClasses.sSortable,n.oJUIClasses.sSortableAsc,n.oJUIClasses.sSortableDesc,n.oJUIClasses.sSortableNone].join(" "));j("th span",a.nTHead).remove()}else j("th",a.nTHead).removeClass([n.oStdClasses.sSortable,n.oStdClasses.sSortableAsc,n.oStdClasses.sSortableDesc,n.oStdClasses.sSortableNone].join(" "));b.appendChild(a.nTable);d=0;for(f=a.aoData.length;d< -f;d++)c.appendChild(a.aoData[d].nTr);a.nTable.style.width=v(a.sDestroyWidth);j(">tr:even",c).addClass(a.asDestoryStrips[0]);j(">tr:odd",c).addClass(a.asDestoryStrips[1]);d=0;for(f=D.length;dt<"F"ip>'}if(e.oScroll.sX!==""||e.oScroll.sY!=="")e.oScroll.iBarWidth=Na();if(typeof g.iDisplayStart!="undefined"&&typeof e.iInitDisplayStart=="undefined"){e.iInitDisplayStart=g.iDisplayStart;e._iDisplayStart=g.iDisplayStart}if(typeof g.bStateSave!="undefined"){e.oFeatures.bStateSave=g.bStateSave;Ma(e,g);e.aoDrawCallback.push({fn:na,sName:"state_save"})}if(typeof g.aaData!="undefined")h= -true;if(typeof g!="undefined"&&typeof g.aoData!="undefined")g.aoColumns=g.aoData;if(typeof g.oLanguage!="undefined")if(typeof g.oLanguage.sUrl!="undefined"&&g.oLanguage.sUrl!==""){e.oLanguage.sUrl=g.oLanguage.sUrl;j.getJSON(e.oLanguage.sUrl,null,function(q){y(e,q,true)});i=true}else y(e,g.oLanguage,false)}else g={};if(typeof g.asStripClasses=="undefined"){e.asStripClasses.push(e.oClasses.sStripOdd);e.asStripClasses.push(e.oClasses.sStripEven)}c=false;d=j(">tbody>tr",this);a=0;for(b=e.asStripClasses.length;a< -b;a++)if(d.filter(":lt(2)").hasClass(e.asStripClasses[a])){c=true;break}if(c){e.asDestoryStrips=["",""];if(j(d[0]).hasClass(e.oClasses.sStripOdd))e.asDestoryStrips[0]+=e.oClasses.sStripOdd+" ";if(j(d[0]).hasClass(e.oClasses.sStripEven))e.asDestoryStrips[0]+=e.oClasses.sStripEven;if(j(d[1]).hasClass(e.oClasses.sStripOdd))e.asDestoryStrips[1]+=e.oClasses.sStripOdd+" ";if(j(d[1]).hasClass(e.oClasses.sStripEven))e.asDestoryStrips[1]+=e.oClasses.sStripEven;d.removeClass(e.asStripClasses.join(" "))}a=this.getElementsByTagName("thead"); -c=a.length===0?[]:fa(a[0]);var k;if(typeof g.aoColumns=="undefined"){k=[];a=0;for(b=c.length;a=0;a--){var l=g.aoColumnDefs[a].aTargets;j.isArray(l)||H(e,1,"aTargets must be an array of targets, not a "+typeof l); -c=0;for(d=l.length;c=0){for(;e.aoColumns.length<=l[c];)F(e);x(e,l[c],g.aoColumnDefs[a])}else if(typeof l[c]=="number"&&l[c]<0)x(e,e.aoColumns.length+l[c],g.aoColumnDefs[a]);else if(typeof l[c]=="string"){b=0;for(f=e.aoColumns.length;b=e.aoColumns.length)e.aaSorting[a][0]= -0;k=e.aoColumns[e.aaSorting[a][0]];if(typeof e.aaSorting[a][2]=="undefined")e.aaSorting[a][2]=0;if(typeof g.aaSorting=="undefined"&&typeof e.saved_aaSorting=="undefined")e.aaSorting[a][1]=k.asSorting[0];c=0;for(d=k.asSorting.length;c0)e.nTFoot=this.getElementsByTagName("tfoot")[0];if(h)for(a=0;a=w-s){s=w-r+1;x=w}else{s=y-Math.ceil(r/2)+1;x=s+r-1}for(r=s;r<=x;r++)G+=y!=r?''+r+"":''+r+"";x=g.aanFeatures.p;var z,Y=function(L){g._iDisplayStart=(this.innerHTML*1-1)*g._iDisplayLength;l(g);L.preventDefault()},V=function(){return false};r=0;for(s=x.length;rl?1:0},"string-desc":function(g,l){if(typeof g!="string")g="";if(typeof l!="string")l="";g=g.toLowerCase();l=l.toLowerCase();return gl?-1:0},"html-asc":function(g,l){g=g.replace(/<.*?>/g,"").toLowerCase();l=l.replace(/<.*?>/g,"").toLowerCase();return g< +l?-1:g>l?1:0},"html-desc":function(g,l){g=g.replace(/<.*?>/g,"").toLowerCase();l=l.replace(/<.*?>/g,"").toLowerCase();return gl?-1:0},"date-asc":function(g,l){g=Date.parse(g);l=Date.parse(l);if(isNaN(g)||g==="")g=Date.parse("01/01/1970 00:00:00");if(isNaN(l)||l==="")l=Date.parse("01/01/1970 00:00:00");return g-l},"date-desc":function(g,l){g=Date.parse(g);l=Date.parse(l);if(isNaN(g)||g==="")g=Date.parse("01/01/1970 00:00:00");if(isNaN(l)||l==="")l=Date.parse("01/01/1970 00:00:00");return l- +g},"numeric-asc":function(g,l){return(g=="-"||g===""?0:g*1)-(l=="-"||l===""?0:l*1)},"numeric-desc":function(g,l){return(l=="-"||l===""?0:l*1)-(g=="-"||g===""?0:g*1)}};o.aTypes=[function(g){if(typeof g=="number")return"numeric";else if(typeof g!="string")return null;var l,r=false;l=g.charAt(0);if("0123456789-".indexOf(l)==-1)return null;for(var s=1;s")!=-1)return"html";return null}];o.fnVersionCheck=function(g){var l=function(x,v){for(;x.length=parseInt(w,10)};o._oExternConfig={iNextUnique:0};i.fn.dataTable=function(g){function l(){this.fnRecordsTotal= +function(){return this.oFeatures.bServerSide?parseInt(this._iRecordsTotal,10):this.aiDisplayMaster.length};this.fnRecordsDisplay=function(){return this.oFeatures.bServerSide?parseInt(this._iRecordsDisplay,10):this.aiDisplay.length};this.fnDisplayEnd=function(){return this.oFeatures.bServerSide?this.oFeatures.bPaginate===false||this._iDisplayLength==-1?this._iDisplayStart+this.aiDisplay.length:Math.min(this._iDisplayStart+this._iDisplayLength,this._iRecordsDisplay):this._iDisplayEnd};this.sInstance= +this.oInstance=null;this.oFeatures={bPaginate:true,bLengthChange:true,bFilter:true,bSort:true,bInfo:true,bAutoWidth:true,bProcessing:false,bSortClasses:true,bStateSave:false,bServerSide:false,bDeferRender:false};this.oScroll={sX:"",sXInner:"",sY:"",bCollapse:false,bInfinite:false,iLoadGap:100,iBarWidth:0,bAutoCss:true};this.aanFeatures=[];this.oLanguage={sProcessing:"Processing...",sLengthMenu:"Show _MENU_ entries",sZeroRecords:"No matching records found",sEmptyTable:"No data available in table", +sLoadingRecords:"Loading...",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)",sInfoPostFix:"",sSearch:"Search:",sUrl:"",oPaginate:{sFirst:"First",sPrevious:"Previous",sNext:"Next",sLast:"Last"},fnInfoCallback:null};this.aoData=[];this.aiDisplay=[];this.aiDisplayMaster=[];this.aoColumns=[];this.aoHeader=[];this.aoFooter=[];this.iNextId=0;this.asDataSearch=[];this.oPreviousSearch={sSearch:"",bRegex:false, +bSmart:true};this.aoPreSearchCols=[];this.aaSorting=[[0,"asc",0]];this.aaSortingFixed=null;this.asStripClasses=[];this.asDestoryStrips=[];this.sDestroyWidth=0;this.fnFooterCallback=this.fnHeaderCallback=this.fnRowCallback=null;this.aoDrawCallback=[];this.fnInitComplete=this.fnPreDrawCallback=null;this.sTableId="";this.nTableWrapper=this.nTBody=this.nTFoot=this.nTHead=this.nTable=null;this.bInitialised=this.bDeferLoading=false;this.aoOpenRows=[];this.sDom="lfrtip";this.sPaginationType="two_button"; +this.iCookieDuration=7200;this.sCookiePrefix="SpryMedia_DataTables_";this.fnCookieCallback=null;this.aoStateSave=[];this.aoStateLoad=[];this.sAjaxSource=this.oLoadedState=null;this.sAjaxDataProp="aaData";this.bAjaxDataGet=true;this.jqXHR=null;this.fnServerData=function(a,b,c,d){d.jqXHR=i.ajax({url:a,data:b,success:c,dataType:"json",cache:false,error:function(f,e){e=="parsererror"&&alert("DataTables warning: JSON data from server could not be parsed. This is caused by a JSON formatting error.")}})}; +this.fnFormatNumber=function(a){if(a<1E3)return a;else{var b=a+"";a=b.split("");var c="";b=b.length;for(var d=0;dtr>th",a.nTFoot).addClass(a.oClasses.sFooterTH);if(a.nTFoot!==null){c=S(a,null,a.aoFooter);b=0;for(d=a.aoColumns.length;b=0;e--)!a.aoColumns[e].bVisible&&!c&&h[d].splice(e,1);j.push([])}d=0;for(f=h.length;d=a.fnRecordsDisplay()?0:a.iInitDisplayStart;a.iInitDisplayStart=-1;E(a)}if(a.bDeferLoading){a.bDeferLoading=false;a.iDraw++}else if(a.oFeatures.bServerSide){if(!a.bDestroying&&!za(a))return}else a.iDraw++;if(a.aiDisplay.length!==0){var h=a._iDisplayStart,j=a._iDisplayEnd;if(a.oFeatures.bServerSide){h=0;j=a.aoData.length}for(h=h;htr",a.nTHead)[0],aa(a),a._iDisplayStart,a.fnDisplayEnd(),a.aiDisplay);typeof a.fnFooterCallback== +"function"&&a.fnFooterCallback.call(a.oInstance,i(">tr",a.nTFoot)[0],aa(a),a._iDisplayStart,a.fnDisplayEnd(),a.aiDisplay);f=p.createDocumentFragment();b=p.createDocumentFragment();if(a.nTBody){e=a.nTBody.parentNode;b.appendChild(a.nTBody);if(!a.oScroll.bInfinite||!a._bInitComplete||a.bSorted||a.bFiltered){c=a.nTBody.childNodes;for(b=c.length-1;b>=0;b--)c[b].parentNode.removeChild(c[b])}b=0;for(c=d.length;b=0;b--)a.aoDrawCallback[b].fn.call(a.oInstance,a);a.bSorted=false;a.bFiltered=false;a.bDrawing=false;if(a.oFeatures.bServerSide){K(a,false);typeof a._bInitComplete=="undefined"&&w(a)}}}function ba(a){if(a.oFeatures.bSort)R(a,a.oPreviousSearch);else if(a.oFeatures.bFilter)M(a,a.oPreviousSearch);else{E(a);C(a)}}function za(a){if(a.bAjaxDataGet){K(a,true);var b=a.aoColumns.length,c=[],d,f;a.iDraw++;c.push({name:"sEcho",value:a.iDraw});c.push({name:"iColumns",value:b});c.push({name:"sColumns",value:ha(a)}); +c.push({name:"iDisplayStart",value:a._iDisplayStart});c.push({name:"iDisplayLength",value:a.oFeatures.bPaginate!==false?a._iDisplayLength:-1});for(f=0;f")c=c.parentNode;else if(h=="l"&&a.oFeatures.bPaginate&&a.oFeatures.bLengthChange){f=Ca(a);e=1}else if(h=="f"&&a.oFeatures.bFilter){f=Da(a);e=1}else if(h=="r"&&a.oFeatures.bProcessing){f=Ea(a);e=1}else if(h=="t"){f=Fa(a);e=1}else if(h=="i"&&a.oFeatures.bInfo){f=Ga(a);e=1}else if(h=="p"&&a.oFeatures.bPaginate){f=Ha(a);e=1}else if(o.aoFeatures.length!== +0){j=o.aoFeatures;t=0;for(k=j.length;tcaption",a.nTable);h=0;for(k=d.length;hi(a.nTable).height()-a.oScroll.iLoadGap)if(a.fnDisplayEnd()0&&a.nTable.removeChild(h[0]);if(a.nTFoot!==null){k=a.nTable.getElementsByTagName("tfoot");k.length>0&&a.nTable.removeChild(k[0])}h=a.nTHead.cloneNode(true);a.nTable.insertBefore(h,a.nTable.childNodes[0]);if(a.nTFoot!==null){k=a.nTFoot.cloneNode(true); +a.nTable.insertBefore(k,a.nTable.childNodes[1])}if(a.oScroll.sX===""){d.style.width="100%";b.parentNode.style.width="100%"}var O=S(a,h);f=0;for(e=O.length;ff-a.oScroll.iBarWidth)a.nTable.style.width=u(f)}else a.nTable.style.width=u(f);f=i(a.nTable).outerWidth();if(a.oScroll.sX===""){d.style.width=u(f+a.oScroll.iBarWidth);b.parentNode.style.width=u(f+a.oScroll.iBarWidth)}e=a.nTHead.getElementsByTagName("tr");h=h.getElementsByTagName("tr");P(function(B,F){m=B.style;m.paddingTop= +"0";m.paddingBottom="0";m.borderTopWidth="0";m.borderBottomWidth="0";m.height=0;q=i(B).width();F.style.width=u(q);I.push(q)},h,e);i(h).height(0);if(a.nTFoot!==null){j=k.getElementsByTagName("tr");k=a.nTFoot.getElementsByTagName("tr");P(function(B,F){m=B.style;m.paddingTop="0";m.paddingBottom="0";m.borderTopWidth="0";m.borderBottomWidth="0";m.height=0;q=i(B).width();F.style.width=u(q);I.push(q)},j,k);i(j).height(0)}P(function(B){B.innerHTML="";B.style.width=u(I.shift())},h);a.nTFoot!==null&&P(function(B){B.innerHTML= +"";B.style.width=u(I.shift())},j);if(i(a.nTable).outerWidth()d.offsetWidth?a.oScroll.iBarWidth:0;if(a.nTable.offsetHeight'):b===""?'':b+' '; +var c=p.createElement("div");c.className=a.oClasses.sFilter;c.innerHTML="";a.sTableId!==""&&typeof a.aanFeatures.f=="undefined"&&c.setAttribute("id",a.sTableId+"_filter");b=i("input",c);b.val(a.oPreviousSearch.sSearch.replace('"',"""));b.bind("keyup.DT",function(){for(var d=a.aanFeatures.f,f=0,e=d.length;f=0;d--){f=ma(H(a,a.aiDisplay[d],c,"filter"),a.aoColumns[c].sType);if(!b.test(f)){a.aiDisplay.splice(d,1);e++}}}}function Ka(a,b,c,d,f){var e=la(b,d,f);if(typeof c=="undefined"||c===null)c=0;if(o.afnFiltering.length!==0)c=1;if(b.length<=0){a.aiDisplay.splice(0,a.aiDisplay.length);a.aiDisplay=a.aiDisplayMaster.slice()}else if(a.aiDisplay.length==a.aiDisplayMaster.length||a.oPreviousSearch.sSearch.length> +b.length||c==1||b.indexOf(a.oPreviousSearch.sSearch)!==0){a.aiDisplay.splice(0,a.aiDisplay.length);ka(a,1);for(c=0;c/g,"");else if(typeof a=="string")return a.replace(/\n/g," ");else if(a===null)return"";return a}function R(a,b){var c,d,f,e,h=[],j=[],k=o.oSort;d=a.aoData;var m=a.aoColumns;if(!a.oFeatures.bServerSide&&(a.aaSorting.length!==0||a.aaSortingFixed!==null)){h=a.aaSortingFixed!== +null?a.aaSortingFixed.concat(a.aaSorting):a.aaSorting.slice();for(c=0;c=h)for(b=0;b=0?a._iDisplayStart-a._iDisplayLength:0;if(a._iDisplayStart<0)a._iDisplayStart=0}else if(b=="next")if(a._iDisplayLength>=0){if(a._iDisplayStart+a._iDisplayLength=0){b=parseInt((a.fnRecordsDisplay()-1)/a._iDisplayLength,10)+1;a._iDisplayStart=(b-1)*a._iDisplayLength}else a._iDisplayStart= +0;else J(a,0,"Unknown paging action: "+b);return c!=a._iDisplayStart}function Ga(a){var b=p.createElement("div");b.className=a.oClasses.sInfo;if(typeof a.aanFeatures.i=="undefined"){a.aoDrawCallback.push({fn:Na,sName:"information"});a.sTableId!==""&&b.setAttribute("id",a.sTableId+"_info")}return b}function Na(a){if(!(!a.oFeatures.bInfo||a.aanFeatures.i.length===0)){var b=a._iDisplayStart+1,c=a.fnDisplayEnd(),d=a.fnRecordsTotal(),f=a.fnRecordsDisplay(),e=a.fnFormatNumber(b),h=a.fnFormatNumber(c),j= +a.fnFormatNumber(d),k=a.fnFormatNumber(f);if(a.oScroll.bInfinite)e=a.fnFormatNumber(1);e=a.fnRecordsDisplay()===0&&a.fnRecordsDisplay()==a.fnRecordsTotal()?a.oLanguage.sInfoEmpty+a.oLanguage.sInfoPostFix:a.fnRecordsDisplay()===0?a.oLanguage.sInfoEmpty+" "+a.oLanguage.sInfoFiltered.replace("_MAX_",j)+a.oLanguage.sInfoPostFix:a.fnRecordsDisplay()==a.fnRecordsTotal()?a.oLanguage.sInfo.replace("_START_",e).replace("_END_",h).replace("_TOTAL_",k)+a.oLanguage.sInfoPostFix:a.oLanguage.sInfo.replace("_START_", +e).replace("_END_",h).replace("_TOTAL_",k)+" "+a.oLanguage.sInfoFiltered.replace("_MAX_",a.fnFormatNumber(a.fnRecordsTotal()))+a.oLanguage.sInfoPostFix;if(a.oLanguage.fnInfoCallback!==null)e=a.oLanguage.fnInfoCallback(a,b,c,d,f,e);a=a.aanFeatures.i;b=0;for(c=a.length;b",c,d;if(a.aLengthMenu.length==2&&typeof a.aLengthMenu[0]=="object"&&typeof a.aLengthMenu[1]== +"object"){c=0;for(d=a.aLengthMenu[0].length;c'+a.aLengthMenu[1][c]+""}else{c=0;for(d=a.aLengthMenu.length;c'+a.aLengthMenu[c]+""}b+="";var f=p.createElement("div");a.sTableId!==""&&typeof a.aanFeatures.l=="undefined"&&f.setAttribute("id",a.sTableId+"_length");f.className=a.oClasses.sLength;f.innerHTML="";i('select option[value="'+ +a._iDisplayLength+'"]',f).attr("selected",true);i("select",f).bind("change.DT",function(){var e=i(this).val(),h=a.aanFeatures.l;c=0;for(d=h.length;ca.aiDisplay.length|| +a._iDisplayLength==-1?a.aiDisplay.length:a._iDisplayStart+a._iDisplayLength}function Oa(a,b){if(!a||a===null||a==="")return 0;if(typeof b=="undefined")b=p.getElementsByTagName("body")[0];var c=p.createElement("div");c.style.width=u(a);b.appendChild(c);a=c.offsetWidth;b.removeChild(c);return a}function ea(a){var b=0,c,d=0,f=a.aoColumns.length,e,h=i("th",a.nTHead);for(e=0;etd",b);h=S(a,e);for(e=d=0;e0)a.aoColumns[e].sWidth=u(c);d++}a.nTable.style.width=u(i(b).outerWidth());b.parentNode.removeChild(b)}}function Qa(a,b){if(a.oScroll.sX===""&&a.oScroll.sY!==""){i(b).width();b.style.width=u(i(b).outerWidth()-a.oScroll.iBarWidth)}else if(a.oScroll.sX!=="")b.style.width=u(i(b).outerWidth())}function Pa(a,b){var c= +Ra(a,b);if(c<0)return null;if(a.aoData[c].nTr===null){var d=p.createElement("td");d.innerHTML=H(a,c,b,"");return d}return Q(a,c)[b]}function Ra(a,b){for(var c=-1,d=-1,f=0;f/g,"");if(e.length>c){c=e.length;d=f}}return d}function u(a){if(a===null)return"0px";if(typeof a=="number"){if(a<0)return"0px";return a+"px"}var b=a.charCodeAt(a.length-1);if(b<48||b>57)return a;return a+"px"}function Va(a,b){if(a.length!=b.length)return 1;for(var c= +0;cb&&a[d]--;c!=-1&&a.splice(c,1)}function Ba(a,b){b=b.split(",");for(var c=[],d=0,f=a.aoColumns.length;d4096){a=p.cookie.split(";");for(var j=0,k=a.length;j=d.aiDisplay.length){d._iDisplayStart-=d._iDisplayLength;if(d._iDisplayStart<0)d._iDisplayStart=0}if(typeof c=="undefined"||c){E(d);C(d)}return f};this.fnClearTable=function(a){var b=A(this[o.iApiIndex]);ia(b);if(typeof a=="undefined"||a)C(b)};this.fnOpen=function(a,b,c){var d=A(this[o.iApiIndex]);this.fnClose(a);var f=p.createElement("tr"),e=p.createElement("td");f.appendChild(e);e.className=c;e.colSpan=X(d);if(typeof b.jquery!="undefined"||typeof b== +"object")e.appendChild(b);else e.innerHTML=b;b=i("tr",d.nTBody);i.inArray(a,b)!=-1&&i(f).insertAfter(a);d.aoOpenRows.push({nTr:f,nParent:a});return f};this.fnClose=function(a){for(var b=A(this[o.iApiIndex]),c=0;c=X(d);if(!j)for(f=a;ftr>td."+a.oClasses.sRowEmpty,a.nTable).parent().remove();if(a.nTable!=a.nTHead.parentNode){i(">thead",a.nTable).remove();a.nTable.appendChild(a.nTHead)}if(a.nTFoot&& +a.nTable!=a.nTFoot.parentNode){i(">tfoot",a.nTable).remove();a.nTable.appendChild(a.nTFoot)}a.nTable.parentNode.removeChild(a.nTable);i(a.nTableWrapper).remove();a.aaSorting=[];a.aaSortingFixed=[];T(a);i($(a)).removeClass(a.asStripClasses.join(" "));if(a.bJUI){i("th",a.nTHead).removeClass([o.oStdClasses.sSortable,o.oJUIClasses.sSortableAsc,o.oJUIClasses.sSortableDesc,o.oJUIClasses.sSortableNone].join(" "));i("th span."+o.oJUIClasses.sSortIcon,a.nTHead).remove();i("th",a.nTHead).each(function(){var e= +i("div."+o.oJUIClasses.sSortJUIWrapper,this),h=e.contents();i(this).append(h);e.remove()})}else i("th",a.nTHead).removeClass([o.oStdClasses.sSortable,o.oStdClasses.sSortableAsc,o.oStdClasses.sSortableDesc,o.oStdClasses.sSortableNone].join(" "));a.nTableReinsertBefore?b.insertBefore(a.nTable,a.nTableReinsertBefore):b.appendChild(a.nTable);d=0;for(f=a.aoData.length;dtr:even",c).addClass(a.asDestoryStrips[0]);i(">tr:odd",c).addClass(a.asDestoryStrips[1]);d=0;for(f=D.length;dt<"F"ip>'}if(e.oScroll.sX!==""||e.oScroll.sY!=="")e.oScroll.iBarWidth=Ua();if(typeof g.iDisplayStart!="undefined"&&typeof e.iInitDisplayStart=="undefined"){e.iInitDisplayStart= +g.iDisplayStart;e._iDisplayStart=g.iDisplayStart}if(typeof g.bStateSave!="undefined"){e.oFeatures.bStateSave=g.bStateSave;Ta(e,g);e.aoDrawCallback.push({fn:sa,sName:"state_save"})}if(typeof g.iDeferLoading!="undefined"){e.bDeferLoading=true;e._iRecordsTotal=g.iDeferLoading;e._iRecordsDisplay=g.iDeferLoading}if(typeof g.aaData!="undefined")j=true;if(typeof g!="undefined"&&typeof g.aoData!="undefined")g.aoColumns=g.aoData;if(typeof g.oLanguage!="undefined")if(typeof g.oLanguage.sUrl!="undefined"&&g.oLanguage.sUrl!== +""){e.oLanguage.sUrl=g.oLanguage.sUrl;i.getJSON(e.oLanguage.sUrl,null,function(t){y(e,t,true)});h=true}else y(e,g.oLanguage,false)}else g={};if(typeof g.asStripClasses=="undefined"){e.asStripClasses.push(e.oClasses.sStripOdd);e.asStripClasses.push(e.oClasses.sStripEven)}c=false;d=i(">tbody>tr",this);a=0;for(b=e.asStripClasses.length;a=0;a--){var m=g.aoColumnDefs[a].aTargets;i.isArray(m)||J(e,1,"aTargets must be an array of targets, not a "+typeof m);c=0;for(d=m.length;c=0){for(;e.aoColumns.length<=m[c];)G(e);x(e,m[c],g.aoColumnDefs[a])}else if(typeof m[c]== +"number"&&m[c]<0)x(e,e.aoColumns.length+m[c],g.aoColumnDefs[a]);else if(typeof m[c]=="string"){b=0;for(f=e.aoColumns.length;b=e.aoColumns.length)e.aaSorting[a][0]=0;k=e.aoColumns[e.aaSorting[a][0]];if(typeof e.aaSorting[a][2]=="undefined")e.aaSorting[a][2]=0;if(typeof g.aaSorting=="undefined"&& +typeof e.saved_aaSorting=="undefined")e.aaSorting[a][1]=k.asSorting[0];c=0;for(d=k.asSorting.length;cthead",this);if(a.length===0){a=[p.createElement("thead")];this.appendChild(a[0])}e.nTHead=a[0];a=i(">tbody",this);if(a.length===0){a=[p.createElement("tbody")];this.appendChild(a[0])}e.nTBody=a[0];a=i(">tfoot",this);if(a.length>0){e.nTFoot=a[0];W(e.aoFooter,e.nTFoot)}if(j)for(a=0;a").appendTo("body"),c=b.css("display");b.remove();if(c==="none"||c==="")c="block";bZ[a]=c}return bZ[a]}function cc(a,b){var c={};d.each(cb.concat.apply([],cb.slice(0,b)),function(){c[this]=a});return c}function bY(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function bX(){try{return new a.XMLHttpRequest}catch(b){}}function bW(){d(a).unload(function(){for(var a in bU)bU[a](0,1)})}function bQ(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var e=a.dataTypes,f={},g,h,i=e.length,j,k=e[0],l,m,n,o,p;for(g=1;g=0===c})}function N(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function F(a,b){return(a&&a!=="*"?a+".":"")+b.replace(r,"`").replace(s,"&")}function E(a){var b,c,e,f,g,h,i,j,k,l,m,n,o,q=[],r=[],s=d._data(this,"events");if(a.liveFired!==this&&s&&s.live&&!a.target.disabled&&(!a.button||a.type!=="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var t=s.live.slice(0);for(i=0;ic)break;a.currentTarget=f.elem,a.data=f.handleObj.data,a.handleObj=f.handleObj,o=f.handleObj.origHandler.apply(f.elem,arguments);if(o===!1||a.isPropagationStopped()){c=f.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function C(a,c,e){var f=d.extend({},e[0]);f.type=a,f.originalEvent={},f.liveFired=b,d.event.handle.call(c,f),f.isDefaultPrevented()&&e[0].preventDefault()}function w(){return!0}function v(){return!1}function g(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function f(a,c,f){if(f===b&&a.nodeType===1){f=a.getAttribute("data-"+c);if(typeof f==="string"){try{f=f==="true"?!0:f==="false"?!1:f==="null"?null:d.isNaN(f)?e.test(f)?d.parseJSON(f):f:parseFloat(f)}catch(g){}d.data(a,c,f)}else f=b}return f}var c=a.document,d=function(){function I(){if(!d.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(I,1);return}d.ready()}}var d=function(a,b){return new d.fn.init(a,b,g)},e=a.jQuery,f=a.$,g,h=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,i=/\S/,j=/^\s+/,k=/\s+$/,l=/\d/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=navigator.userAgent,w,x=!1,y,z="then done fail isResolved isRejected promise".split(" "),A,B=Object.prototype.toString,C=Object.prototype.hasOwnProperty,D=Array.prototype.push,E=Array.prototype.slice,F=String.prototype.trim,G=Array.prototype.indexOf,H={};d.fn=d.prototype={constructor:d,init:function(a,e,f){var g,i,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!e&&c.body){this.context=c,this[0]=c.body,this.selector="body",this.length=1;return this}if(typeof a==="string"){g=h.exec(a);if(!g||!g[1]&&e)return!e||e.jquery?(e||f).find(a):this.constructor(e).find(a);if(g[1]){e=e instanceof d?e[0]:e,k=e?e.ownerDocument||e:c,j=m.exec(a),j?d.isPlainObject(e)?(a=[c.createElement(j[1])],d.fn.attr.call(a,e,!0)):a=[k.createElement(j[1])]:(j=d.buildFragment([g[1]],[k]),a=(j.cacheable?d.clone(j.fragment):j.fragment).childNodes);return d.merge(this,a)}i=c.getElementById(g[2]);if(i&&i.parentNode){if(i.id!==g[2])return f.find(a);this.length=1,this[0]=i}this.context=c,this.selector=a;return this}if(d.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return d.makeArray(a,this)},selector:"",jquery:"1.5.1",length:0,size:function(){return this.length},toArray:function(){return E.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var e=this.constructor();d.isArray(a)?D.apply(e,a):d.merge(e,a),e.prevObject=this,e.context=this.context,b==="find"?e.selector=this.selector+(this.selector?" ":"")+c:b&&(e.selector=this.selector+"."+b+"("+c+")");return e},each:function(a,b){return d.each(this,a,b)},ready:function(a){d.bindReady(),y.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(E.apply(this,arguments),"slice",E.call(arguments).join(","))},map:function(a){return this.pushStack(d.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:D,sort:[].sort,splice:[].splice},d.fn.init.prototype=d.fn,d.extend=d.fn.extend=function(){var a,c,e,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i==="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!=="object"&&!d.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;y.resolveWith(c,[d]),d.fn.trigger&&d(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!x){x=!0;if(c.readyState==="complete")return setTimeout(d.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",A,!1),a.addEventListener("load",d.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",A),a.attachEvent("onload",d.ready);var b=!1;try{b=a.frameElement==null}catch(e){}c.documentElement.doScroll&&b&&I()}}},isFunction:function(a){return d.type(a)==="function"},isArray:Array.isArray||function(a){return d.type(a)==="array"},isWindow:function(a){return a&&typeof a==="object"&&"setInterval"in a},isNaN:function(a){return a==null||!l.test(a)||isNaN(a)},type:function(a){return a==null?String(a):H[B.call(a)]||"object"},isPlainObject:function(a){if(!a||d.type(a)!=="object"||a.nodeType||d.isWindow(a))return!1;if(a.constructor&&!C.call(a,"constructor")&&!C.call(a.constructor.prototype,"isPrototypeOf"))return!1;var c;for(c in a){}return c===b||C.call(a,c)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!=="string"||!b)return null;b=d.trim(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return a.JSON&&a.JSON.parse?a.JSON.parse(b):(new Function("return "+b))();d.error("Invalid JSON: "+b)},parseXML:function(b,c,e){a.DOMParser?(e=new DOMParser,c=e.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b)),e=c.documentElement,(!e||!e.nodeName||e.nodeName==="parsererror")&&d.error("Invalid XML: "+b);return c},noop:function(){},globalEval:function(a){if(a&&i.test(a)){var b=c.head||c.getElementsByTagName("head")[0]||c.documentElement,e=c.createElement("script");d.support.scriptEval()?e.appendChild(c.createTextNode(a)):e.text=a,b.insertBefore(e,b.firstChild),b.removeChild(e)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,e){var f,g=0,h=a.length,i=h===b||d.isFunction(a);if(e){if(i){for(f in a)if(c.apply(a[f],e)===!1)break}else for(;g1){var f=E.call(arguments,0),g=b,h=function(a){return function(b){f[a]=arguments.length>1?E.call(arguments,0):b,--g||c.resolveWith(e,f)}};while(b--)a=f[b],a&&d.isFunction(a.promise)?a.promise().then(h(b),c.reject):--g;g||c.resolveWith(e,f)}else c!==a&&c.resolve(a);return e},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}d.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.subclass=this.subclass,a.fn.init=function b(b,c){c&&c instanceof d&&!(c instanceof a)&&(c=a(c));return d.fn.init.call(this,b,c,e)},a.fn.init.prototype=a.fn;var e=a(c);return a},browser:{}}),y=d._Deferred(),d.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){H["[object "+b+"]"]=b.toLowerCase()}),w=d.uaMatch(v),w.browser&&(d.browser[w.browser]=!0,d.browser.version=w.version),d.browser.webkit&&(d.browser.safari=!0),G&&(d.inArray=function(a,b){return G.call(b,a)}),i.test(" ")&&(j=/^[\s\xA0]+/,k=/[\s\xA0]+$/),g=d(c),c.addEventListener?A=function(){c.removeEventListener("DOMContentLoaded",A,!1),d.ready()}:c.attachEvent&&(A=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",A),d.ready())});return d}();(function(){d.support={};var b=c.createElement("div");b.style.display="none",b.innerHTML="
a";var e=b.getElementsByTagName("*"),f=b.getElementsByTagName("a")[0],g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=b.getElementsByTagName("input")[0];if(e&&e.length&&f){d.support={leadingWhitespace:b.firstChild.nodeType===3,tbody:!b.getElementsByTagName("tbody").length,htmlSerialize:!!b.getElementsByTagName("link").length,style:/red/.test(f.getAttribute("style")),hrefNormalized:f.getAttribute("href")==="/a",opacity:/^0.55$/.test(f.style.opacity),cssFloat:!!f.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,deleteExpando:!0,optDisabled:!1,checkClone:!1,noCloneEvent:!0,noCloneChecked:!0,boxModel:null,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableHiddenOffsets:!0},i.checked=!0,d.support.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,d.support.optDisabled=!h.disabled;var j=null;d.support.scriptEval=function(){if(j===null){var b=c.documentElement,e=c.createElement("script"),f="script"+d.now();try{e.appendChild(c.createTextNode("window."+f+"=1;"))}catch(g){}b.insertBefore(e,b.firstChild),a[f]?(j=!0,delete a[f]):j=!1,b.removeChild(e),b=e=f=null}return j};try{delete b.test}catch(k){d.support.deleteExpando=!1}!b.addEventListener&&b.attachEvent&&b.fireEvent&&(b.attachEvent("onclick",function l(){d.support.noCloneEvent=!1,b.detachEvent("onclick",l)}),b.cloneNode(!0).fireEvent("onclick")),b=c.createElement("div"),b.innerHTML="";var m=c.createDocumentFragment();m.appendChild(b.firstChild),d.support.checkClone=m.cloneNode(!0).cloneNode(!0).lastChild.checked,d(function(){var a=c.createElement("div"),b=c.getElementsByTagName("body")[0];if(b){a.style.width=a.style.paddingLeft="1px",b.appendChild(a),d.boxModel=d.support.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,d.support.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="