├── app ├── views │ ├── .gitkeep │ └── currency │ │ ├── item.jeco │ │ └── index.eco ├── models │ ├── .gitkeep │ └── currency.coffee ├── controllers │ ├── .gitkeep │ ├── currencies.picker.coffee │ └── currencies.coffee ├── lib │ └── setup.coffee └── index.coffee ├── public ├── favicon.ico ├── images │ ├── logo.png │ ├── loading.png │ ├── add-button.png │ ├── add-button-x2.png │ └── icons │ │ ├── appicon.png │ │ └── appicon-x2.png ├── cache.manifest ├── index.html ├── application.css └── application.js ├── Procfile ├── .gitignore ├── package.json ├── slug.json ├── css ├── index.styl ├── theme.styl ├── views │ ├── currencies.picker.styl │ ├── currencies.styl │ └── images.styl └── mixin.styl └── README.md /app/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: ace ./public -------------------------------------------------------------------------------- /app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/spine.mobile.currency/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /public/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/spine.mobile.currency/HEAD/public/images/loading.png -------------------------------------------------------------------------------- /public/images/add-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/spine.mobile.currency/HEAD/public/images/add-button.png -------------------------------------------------------------------------------- /public/images/add-button-x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/spine.mobile.currency/HEAD/public/images/add-button-x2.png -------------------------------------------------------------------------------- /public/images/icons/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/spine.mobile.currency/HEAD/public/images/icons/appicon.png -------------------------------------------------------------------------------- /public/images/icons/appicon-x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/spine.mobile.currency/HEAD/public/images/icons/appicon-x2.png -------------------------------------------------------------------------------- /app/views/currency/item.jeco: -------------------------------------------------------------------------------- 1 |
2 | <%= @name %> 3 | <%= @symbol %> 4 | (<%= @code %>) 5 |
-------------------------------------------------------------------------------- /public/cache.manifest: -------------------------------------------------------------------------------- 1 | CACHE MANIFEST 2 | # v1.0.8 3 | CACHE: 4 | ./application.js 5 | ./application.css 6 | ./index.html 7 | 8 | NETWORK: 9 | http://currency-proxy.herokuapp.com/currencies 10 | -------------------------------------------------------------------------------- /app/lib/setup.coffee: -------------------------------------------------------------------------------- 1 | require('json2ify') 2 | require('es5-shimify') 3 | require('jqueryify') 4 | require('gfx') 5 | 6 | require('spine') 7 | require('spine/lib/local') 8 | require('spine/lib/ajax') 9 | require('spine/lib/manager') 10 | require('spine/lib/route') 11 | require('spine/lib/tmpl') 12 | 13 | require('spine.mobile') -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "app", 3 | "version": "0.0.1", 4 | "dependencies": { 5 | "ace": "~0.0.1", 6 | "hem": "~0.0.6", 7 | "es5-shimify": "~0.0.1", 8 | "json2ify": "~0.0.1", 9 | "jqueryify": "~0.0.1", 10 | "gfx": "~0.0.3", 11 | "spine": "latest", 12 | "spine.mobile": "latest" 13 | } 14 | } -------------------------------------------------------------------------------- /slug.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": [ 3 | "es5-shimify", 4 | "json2ify", 5 | "jqueryify", 6 | "gfx", 7 | "spine", 8 | "spine/lib/local", 9 | "spine/lib/ajax", 10 | "spine/lib/route", 11 | "spine/lib/tmpl", 12 | "spine/lib/manager", 13 | "spine.mobile" 14 | ], 15 | "libs": [] 16 | } -------------------------------------------------------------------------------- /app/models/currency.coffee: -------------------------------------------------------------------------------- 1 | Spine = require('spine') 2 | $ = jQuery 3 | 4 | class Currency extends Spine.Model 5 | @configure 'Currency', 'name', 'code', 'symbol', 'rate' 6 | 7 | @extend Spine.Model.Local 8 | 9 | @endpoint: 'http://currency-proxy.herokuapp.com/currencies' 10 | 11 | @fetch -> 12 | $.getJSON @endpoint, (res) => 13 | @refresh(res, clear: true) 14 | @saveLocal() 15 | 16 | # Create default 17 | @default: -> new @(name: 'United States Dollar', code: 'USD', symbol: '$', rate: 1) 18 | 19 | module.exports = Currency -------------------------------------------------------------------------------- /css/index.styl: -------------------------------------------------------------------------------- 1 | @import './mixin' 2 | 3 | body, html 4 | height: 100% 5 | 6 | .viewport 7 | position: relative 8 | 9 | > * 10 | position: absolute 11 | left: 0 12 | right: 0 13 | top: 0 14 | bottom: 0 15 | 16 | &:not(.active) 17 | display: none 18 | 19 | body.stage 20 | > header 21 | position: absolute 22 | left: 0 23 | top: 0 24 | right: 0 25 | 26 | > article 27 | position: absolute 28 | left: 0 29 | right: 0 30 | top: 0 31 | bottom: 0 32 | 33 | .panel 34 | vbox() 35 | 36 | > article 37 | box-flex(1) 38 | 39 | overflow: auto 40 | -webkit-overflow-scrolling: touch 41 | 42 | @import './theme' 43 | @import './views/currencies' 44 | @import './views/currencies.picker' 45 | @import './views/images' -------------------------------------------------------------------------------- /css/theme.styl: -------------------------------------------------------------------------------- 1 | @import './mixin' 2 | 3 | body 4 | color: #555 5 | font-weight: bold 6 | font-size: 0.67em 7 | font-family: "Helvetica Neue", sans-serif 8 | -webkit-user-select: none 9 | margin: 0 10 | padding: 0 11 | 12 | button 13 | padding: 0.3em 0.5em 14 | background: #999 15 | color: #FFF 16 | font-size: 0.7em 17 | font-weight: normal 18 | border-radius: 3px 19 | font-family: "Helvetica Neue", sans-serif 20 | border: 0 21 | 22 | em 23 | font-style: normal 24 | 25 | h1, h2 26 | margin: 0em 27 | padding: 0em 28 | font-size: 1em 29 | 30 | * 31 | -webkit-tap-highlight-color: rgba(0,0,0,0) 32 | 33 | body.landscape::after 34 | content: "Portrait only mode supported" 35 | font-size: 16px 36 | position: absolute 37 | left: 0 38 | right: 0 39 | top: 0 40 | bottom: 0 41 | text-align: center 42 | padding: 15% 43 | background: rgba(255, 255, 255, 0.9) 44 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ##Spine Mobile Currency Example 2 | 3 | This application is a re-write of [currency.io](http://currency.io), a currency convertor mobile web application. 4 | It was written to demonstrate the [Spine Mobile framework](http://maccman-spine.herokuapp.com/mobile). 5 | 6 | [![Currency](https://lh5.googleusercontent.com/-hcwujJAkdVU/TnYhDQ5VoZI/AAAAAAAABYA/pRrKwNoNccc/s400/Screen%252520Shot%2525202011-09-18%252520at%25252017.27.50.png)](https://github.com/maccman/spine.mobile.currency) 7 | 8 | [Live demo](http://spine-mobile-currency.herokuapp.com/) (best viewed on iOS5) 9 | 10 | ###Installation 11 | 12 | If you haven't got them installed already, you'll need [Node](http://nodejs.org) and [npm](http://npmjs.org). Then run: 13 | 14 | git clone git://github.com/maccman/spine.mobile.currency.git 15 | cd spine.mobile.currency 16 | 17 | npm install . 18 | npm install -g hem 19 | hem server 20 | -------------------------------------------------------------------------------- /app/index.coffee: -------------------------------------------------------------------------------- 1 | require('lib/setup') 2 | 3 | $ = jQuery 4 | Spine = require('spine') 5 | {Stage} = require('spine.mobile') 6 | Currencies = require('controllers/currencies') 7 | Currency = require('models/currency') 8 | 9 | class App extends Stage.Global 10 | constructor: -> 11 | super 12 | 13 | # Activate controller 14 | @currencies = new Currencies 15 | @currencies.active() 16 | 17 | # Fetch remote currencies 18 | Currency.fetch() 19 | 20 | # Disable click events 21 | $('body').bind 'click', (e) -> 22 | e.preventDefault() 23 | 24 | $('body').bind 'orientationchange', (e) -> 25 | orientation = if Math.abs(window.orientation) is 90 then 'landscape' else 'portrait' 26 | $('body').removeClass('portrait landscape') 27 | .addClass(orientation) 28 | .trigger('turn', orientation: orientation) 29 | 30 | module.exports = App -------------------------------------------------------------------------------- /app/views/currency/index.eco: -------------------------------------------------------------------------------- 1 |
2 | <%= @from.code %> <%= @to.code %> 3 |
4 | 5 |
6 |

<%= @helper.format(@input, @addPoint) %>

7 |

<%= @from.symbol %> <%= @from.name %>

8 |
9 | 10 |
11 | 12 |
13 | 14 |
15 |

<%= @helper.format(@output) %>

16 |

<%= @to.symbol %> <%= @to.name %>

17 |
18 | 19 |
20 |
1
21 |
2
22 |
3
23 |
0
24 |
4
25 |
5
26 |
6
27 |
.
28 |
7
29 |
8
30 |
9
31 |
Clear
32 |
-------------------------------------------------------------------------------- /app/controllers/currencies.picker.coffee: -------------------------------------------------------------------------------- 1 | Spine = require('spine') 2 | {Panel} = require('spine.mobile') 3 | Currency = require('models/currency') 4 | 5 | class CurrenciesPicker extends Panel 6 | title: 'Currencies' 7 | 8 | className: 9 | 'currenciesPicker list' 10 | 11 | events: 12 | 'tap article .item': 'click' 13 | 14 | constructor: (@controller, @callback) -> 15 | super() 16 | @addButton('Back', @back) 17 | Currency.bind('refresh change', @render) 18 | @render() 19 | @active(trans: 'right') 20 | 21 | render: => 22 | items = Currency.all() 23 | @html require('views/currency/item')(items) 24 | 25 | click: (e) -> 26 | item = $(e.currentTarget).item() 27 | @callback?(item) 28 | @back() 29 | 30 | back: -> 31 | @controller.active(trans: 'left') 32 | 33 | # Cleanup panel once it's deactivated 34 | deactivate: -> 35 | super 36 | Currency.unbind('refresh change', @render) 37 | @content.queueNext => 38 | @destroy() 39 | 40 | module.exports = CurrenciesPicker -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Spine Currency 6 | 7 | 8 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /css/views/currencies.picker.styl: -------------------------------------------------------------------------------- 1 | .currenciesPicker 2 | font-size: 1.5em 3 | 4 | header 5 | position: relative 6 | background: #FFF 7 | border-bottom: 0.1em solid #ddd 8 | overflow: hidden 9 | 10 | h2 11 | text-align: center 12 | font-size: 1.3em; 13 | font-family: "Helvetica Neue", sans-serif 14 | margin: 10px 0 15 | 16 | button 17 | // -webkit-box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.3), inset 0 1px 1px 0 rgba(0, 0, 0, 0.4) 18 | margin: 0.6em 19 | font-size: 1em 20 | position: absolute 21 | left: 0 22 | top: 0 23 | 24 | article 25 | background: #f0f0f0 26 | 27 | &:empty:after 28 | content: "Loading..." 29 | display: block 30 | text-align: center 31 | margin: 3em 0 32 | 33 | .item 34 | padding: 0.7em 0.5em 35 | border-bottom: 0.1em solid #ddd 36 | cursor: pointer 37 | 38 | hbox() 39 | 40 | &:active 41 | background-color: rgba(0, 255, 0, 0.2) 42 | 43 | span 44 | display: block 45 | box-flex(1) 46 | ellipsis() 47 | 48 | em 49 | margin: 0 0 0 0.7em 50 | display: block 51 | color: #bbb 52 | display: block -------------------------------------------------------------------------------- /css/views/currencies.styl: -------------------------------------------------------------------------------- 1 | .currencies article 2 | .status 3 | margin: 0.5em 0em 4 | font-size: 1.8em 5 | text-align: center 6 | 7 | em 8 | position: relative 9 | top: -2px 10 | color: #AAA 11 | display: inline-block 12 | font-size: 0.9em 13 | 14 | .input, .output 15 | position: relative 16 | padding: 0.4em 0.5em 1em 0em 17 | border-top: 1px solid #F3F3F3 18 | cursor: pointer 19 | text-align: right 20 | 21 | // For the bg images 22 | background: transparent none 2% 47% no-repeat 23 | 24 | &:active 25 | background-color: rgba(0, 255, 0, 0.4) 26 | 27 | h1 28 | padding: 0em 0em 0.1em 29 | font-size: 4.7em 30 | letter-spacing: 0.02em 31 | 32 | h2 33 | padding: 0em 0.2em 0em 34 | color: #999 35 | font-size: 1.1em 36 | line-height: 0.5; 37 | 38 | em 39 | left: -0.3em; 40 | color: #ccc; 41 | 42 | .flip 43 | position: absolute; 44 | top: auto; 45 | z-index: 1; 46 | padding: 1.5em 1.3em; 47 | margin: -2.3em 0em 0em 0em; 48 | 49 | button 50 | text-transform: uppercase; 51 | letter-spacing: 0.1em; 52 | 53 | .pad 54 | background: #F2F2F2 55 | inset-box-shadow(0, 2px, 8px, rgba(0, 0, 0, 0.15)) 56 | overflow: hidden 57 | 58 | div 59 | float: left; 60 | width: 25% 61 | padding: 0.7em 0em 62 | margin: 1.2% 0% 63 | font-size: 2.7em 64 | text-align: center 65 | cursor: pointer 66 | border-radius(5px) 67 | 68 | &:active 69 | background: rgba(0, 0, 0, 0.05) 70 | 71 | .clear 72 | padding-top: 2.45em; 73 | font-size: 1.4em 74 | background: none 50% 30% no-repeat; -------------------------------------------------------------------------------- /app/controllers/currencies.coffee: -------------------------------------------------------------------------------- 1 | Spine = require('spine') 2 | {Panel} = require('spine.mobile') 3 | Currency = require('models/currency') 4 | CurrenciesPicker = require('controllers/currencies.picker') 5 | 6 | class Currencies extends Panel 7 | className: 8 | 'currencies' 9 | 10 | events: 11 | 'touchstart .pad div': 'enter' 12 | 'touchstart .pad .clear': 'clear' 13 | 'touchstart .pad .point': 'point' 14 | 'tap .input': 'changeFrom' 15 | 'tap .output': 'changeTo' 16 | 'tap .flip': 'flip' 17 | 18 | constructor: -> 19 | super 20 | @el.bind 'touchmove', (e) -> e.preventDefault() 21 | @from = @to = Currency.default() 22 | @clear() 23 | 24 | rate: -> 25 | @from.rate * (1 / @to.rate) 26 | 27 | render: => 28 | # Calculate currency conversion 29 | @output = @input and (@input * @rate()).toFixed(2) or 0 30 | @html require('views/currency')(@) 31 | 32 | enter: (e) -> 33 | num = $(e.currentTarget).data('num') 34 | return unless num? 35 | 36 | # Stop overflows 37 | return if (@input + '').length > 8 38 | return if (@output + '').length > 8 39 | 40 | # Convert to string 41 | num += '' 42 | 43 | # Prefix with decimal 44 | if @addPoint 45 | @addPoint = false 46 | num = ".#{num}" 47 | 48 | # Simple way of combining numbers 49 | @input = parseFloat(@input + num) 50 | @render() 51 | 52 | clear: -> 53 | @input = 0.0 54 | @output = 0.0 55 | @addPoint = false 56 | @render() 57 | 58 | point: -> 59 | # Return if already has point 60 | return if @input % 1 isnt 0 61 | @addPoint = true 62 | @render() 63 | 64 | changeFrom: -> 65 | new CurrenciesPicker @, (res) => 66 | @from = res 67 | @render() 68 | 69 | changeTo: -> 70 | new CurrenciesPicker @, (res) => 71 | @to = res 72 | @render() 73 | 74 | flip: -> 75 | [@to, @from] = [@from, @to] 76 | @render() 77 | 78 | helper: 79 | format: (num, addPoint) -> 80 | num = num.toString().replace(/\B(?=(?:\d{3})+(?!\d))/g, ",") 81 | num + (addPoint and '.' or '') 82 | 83 | module.exports = Currencies -------------------------------------------------------------------------------- /css/views/images.styl: -------------------------------------------------------------------------------- 1 | @media only screen and (-webkit-min-device-pixel-ratio:1) 2 | .currencies article 3 | .input, .output 4 | background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAPCAYAAADd/14OAAAAaUlEQVQokWNgwAE6OzsDgDgDiDn+//+PU5EDEDdAcQZWhUAJAyRFIByAoRCbIpA4ikIsihJgcnCFWBSBPYGiECiggU8RssIKNIUC6B6EKcRrLeluJBQ0GAqJDkd8ivHFtQfBuEZSjJJ6ALPvvW9ej7+LAAAAAElFTkSuQmCC') 5 | 6 | .pad .clear 7 | background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAA8UlEQVR42u3VP0tCURiA8ROEtLQ0OAhGQ01tfgWb+wB+BgchBA2EVNwcXB38HG3t4oWLGOlUewpOQRLy+gxeuBw44XmhK8QZfsvLgQcO548RkaMI4RAO4b8LR1HkUsYEb5gdaIEBCtrwHdYQhS3qmnAJKwhsS3xbs09srFnHN3yND0f0HbeopmYxiuhZa598wnnEEIf71NpHTHEFgxO8aMJneIb8YoxLGJziHGavhh/f8AWGkAPMk3hKA6LZ6gq+jhHO4QGS9VYnupCsD1eiD8nqOrnj+gek7Re243pNXRhoYYFXz09ihJvwH4dwCP+/8A7n95F+p5lWNAAAAABJRU5ErkJggg==') 8 | 9 | @media only screen and (-webkit-min-device-pixel-ratio:2) 10 | .currencies article 11 | .input, .output 12 | background-size: 6px 8px 13 | background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAQAAACGG/bgAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAg5JREFUOMtjYMAK5AWzrKcn9hW0htbKM+ACzIzi7NbyRe5TsnpLW+NrTZYIPWHFqpCb2U+q1qEtraehq6G1tDZtif0TYSzKxFnsJOrsF2RMrG3v7uhoa25sWBH8VAKLQj++OuOuhAn13Y0dbe2dnY1dJRvdX4hgmiZaZ7QgZmJNe09HW3fjhIaG7CT/Dq07PJimGXXFTKgBm9Y+sX5BcbGvgoorzwlmTNNiJ9Z29Ha0djX1tLTl1fq5qzKw4DKtqbO1s7W3aUpdUaS1hig3AyNO0zobO1smlMyNzTIS5kAxi5fRH8W0juaOlklJS4xL+OSYkCOLzUqoxhBuWkNnc3fZhJQuy1o+NLdliRdptUVOqAWb1tzR2NE8MXmBaa2gLbonpjtOCeqp7OjraAG6rbWroje51aySF0tM9OX3lnTVdYKUNXd292ZNNcnnxJoE+op6y7rqiVA43WNKeE810COErM6SK9Jvi4YGDT7PyHNYidQYoQVPcpdVrQAWU9ECvKWjdVLiEoMSbjlG7MkLZipQ+YTCuYFZqsIs2BMszNS2zvbeuilFRb7WymiJAs3Uvo62rsaehrbsWl8syQwj4XZObMSacFGyQjWBrAA11aQraUJjdxOezAU1VarOdUHexPr2LrzZFVgAsPop1Lq1pffU4y0AwEUKp7VCkQfBIgUEhDjTTGfE9ue1BtaKQUQA61MYeCWsyZYAAAAASUVORK5CYII=') 14 | 15 | .pad .clear 16 | background-size: 30px 30px 17 | background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAMAAAANIilAAAAAMFBMVEUAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMySLVSoAAAAD3RSTlMAECAwQFBgcICPn7/P3++kfFgMAAAArklEQVR42u2UwQ6EIAxEi7tWLSj//7fGC5M1UjZzNH0nEnyJTAckCIKXk7bcY00jt9Q+hXCBEm5j9eRSedl+vsxYQf7TNdF2UhvKy80V0ZaSDWS9uRfaEjZX/j4ORbFw5M/xPNIJbldOu1sIdQMrbp3UHZW5ZVS3JHNlZKTF/DZ2+cBgE6NCN6mSiFWmnrCZiwGbuZKwuccANv+G2Vjm7UV4+0jio7nLNkkQBC/kBCeMLotUD9YCAAAAAElFTkSuQmCC') -------------------------------------------------------------------------------- /css/mixin.styl: -------------------------------------------------------------------------------- 1 | border-radius() 2 | -moz-border-radius: arguments 3 | -webkit-border-radius: arguments 4 | border-radius: arguments 5 | 6 | /* Vertical Background Gradient */ 7 | vbg-gradient(fc = #FFF, tc = #FFF) 8 | background: fc 9 | background: -webkit-gradient(linear, left top, left bottom, from(fc), to(tc)) 10 | background: -moz-linear-gradient(top, fc, tc) 11 | background: linear-gradient(top, fc, tc) 12 | 13 | /* Horizontal Background Gradient */ 14 | hbg-gradient(fc = #FFF, tc = #FFF) 15 | background: fc 16 | background: -webkit-gradient(linear, left top, right top, from(fc), to(tc)) 17 | background: -moz-linear-gradient(left, fc, tc) 18 | background: linear-gradient(left, fc, tc) 19 | 20 | box-shadow() 21 | -moz-box-shadow: arguments 22 | -webkit-box-shadow: arguments 23 | box-shadow: arguments 24 | 25 | inset-box-shadow() 26 | -moz-box-shadow: inset arguments 27 | -webkit-box-shadow: inset arguments 28 | box-shadow: inset arguments 29 | 30 | box-flex(s = 0) 31 | -webkit-box-flex: s 32 | -moz-box-flex: s 33 | box-flex: s 34 | 35 | hbox() 36 | display: -webkit-box 37 | -webkit-box-orient: horizontal 38 | -webkit-box-align: stretch 39 | -webkit-box-pack: start 40 | 41 | display: -moz-box 42 | -moz-box-orient: horizontal 43 | -moz-box-align: stretch 44 | -moz-box-pack: start 45 | 46 | vbox() 47 | display: -webkit-box 48 | -webkit-box-orient: vertical 49 | -webkit-box-align: stretch 50 | 51 | display: -moz-box 52 | -moz-box-orient: vertical 53 | -moz-box-align: stretch 54 | 55 | border-box() 56 | -webkit-box-sizing: border-box 57 | -moz-box-sizing: border-box 58 | box-sizing: border-box 59 | 60 | transition(s = 0.3s, o = opacity, t = linear) 61 | -webkit-transition: s o t 62 | -moz-transition: s o t 63 | transition: s o t 64 | 65 | ellipsis() 66 | text-overflow: ellipsis 67 | overflow: hidden 68 | white-space:nowrap 69 | 70 | inset-line(opacity = 0.4, size = 1px) 71 | inset-box-shadow(0, size, 0, rgba(255, 255, 255, opacity)) 72 | 73 | outset-line(opacity = 0.4, size = 1px) 74 | box-shadow(0, size, 0, rgba(255, 255, 255, opacity)) 75 | 76 | box-pack(type = center) 77 | -webkit-box-pack: type 78 | -moz-box-pack: type 79 | box-pack: type 80 | 81 | transform(tr) 82 | -webkit-transform: tr 83 | -moz-transform: tr 84 | -ms-transform: tr 85 | -o-transform: tr 86 | transform: tr 87 | 88 | hacel() 89 | transform(translate3d(0,0,0)) -------------------------------------------------------------------------------- /public/application.css: -------------------------------------------------------------------------------- 1 | body,html{height:100%} 2 | .viewport{position:relative;} 3 | .viewport > *{position:absolute;left:0;right:0;top:0;bottom:0;} 4 | .viewport > *:not(.active){display:none} 5 | body.stage > header{position:absolute;left:0;top:0;right:0} 6 | body.stage > article{position:absolute;left:0;right:0;top:0;bottom:0} 7 | .panel{display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;} 8 | .panel > article{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;overflow:auto;-webkit-overflow-scrolling:touch} 9 | body{color:#555;font-weight:bold;font-size:.67em;font-family:"Helvetica Neue",sans-serif;-webkit-user-select:none;margin:0;padding:0} 10 | button{padding:.3em .5em;background:#999;color:#fff;font-size:.7em;font-weight:normal;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;font-family:"Helvetica Neue",sans-serif;border:0} 11 | em{font-style:normal} 12 | h1,h2{margin:0;padding:0;font-size:1em} 13 | *{-webkit-tap-highlight-color:rgba(0,0,0,0.00)} 14 | body.landscape::after{content:"Portrait only mode supported";font-size:16px;position:absolute;left:0;right:0;top:0;bottom:0;text-align:center;padding:15%;background:rgba(255,255,255,0.90)} 15 | .currencies article .status{margin:.5em 0;font-size:1.8em;text-align:center;} 16 | .currencies article .status em{position:relative;top:-2px;color:#aaa;display:inline-block;font-size:.9em} 17 | .currencies article .input,.currencies article .output{position:relative;padding:.4em .5em 1em 0;border-top:1px solid #f3f3f3;cursor:pointer;text-align:right;background:transparent none 2% 47% no-repeat;} 18 | .currencies article .input:active,.currencies article .output:active{background-color:rgba(0,255,0,0.40)} 19 | .currencies article .input h1,.currencies article .output h1{padding:0 0 .1em;font-size:4.7em;letter-spacing:.02em} 20 | .currencies article .input h2,.currencies article .output h2{padding:0 .2em 0;color:#999;font-size:1.1em;line-height:.5;} 21 | .currencies article .input h2 em,.currencies article .output h2 em{left:-.3em;color:#ccc} 22 | .currencies article .flip{position:absolute;top:auto;z-index:1;padding:1.5em 1.3em;margin:-2.3em 0 0 0;} 23 | .currencies article .flip button{text-transform:uppercase;letter-spacing:.1em} 24 | .currencies article .pad{background:#f2f2f2;-moz-box-shadow:inset 0 2px 8px rgba(0,0,0,0.15);-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.15);-moz-box-shadow:inset 0 2px 8px rgba(0,0,0,0.15);-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,0.15);box-shadow:inset 0 2px 8px rgba(0,0,0,0.15);overflow:hidden;} 25 | .currencies article .pad div{float:left;width:25%;padding:.7em 0;margin:1.2% 0%;font-size:2.7em;text-align:center;cursor:pointer;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;} 26 | .currencies article .pad div:active{background:rgba(0,0,0,0.05)} 27 | .currencies article .pad .clear{padding-top:2.45em;font-size:1.4em;background:none 50% 30% no-repeat} 28 | .currenciesPicker{font-size:1.5em;} 29 | .currenciesPicker header{position:relative;background:#fff;border-bottom:.1em solid #ddd;overflow:hidden;} 30 | .currenciesPicker header h2{text-align:center;font-size:1.3em;font-family:"Helvetica Neue",sans-serif;margin:10px 0} 31 | .currenciesPicker header button{margin:.6em;font-size:1em;position:absolute;left:0;top:0} 32 | .currenciesPicker article{background:#f0f0f0;} 33 | .currenciesPicker article:empty:after{content:"Loading...";display:block;text-align:center;margin:3em 0} 34 | .currenciesPicker article .item{padding:.7em .5em;border-bottom:.1em solid #ddd;cursor:pointer;display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;-webkit-box-pack:start;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;-moz-box-pack:start;} 35 | .currenciesPicker article .item:active{background-color:rgba(0,255,0,0.20)} 36 | .currenciesPicker article .item span{display:block;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;text-overflow:ellipsis;overflow:hidden;white-space:nowrap} 37 | .currenciesPicker article .item em{margin:0 0 0 .7em;display:block;color:#bbb;display:block} 38 | @media only screen and (-webkit-min-device-pixel-ratio:1){.currencies article .input,.currencies article .output{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAPCAYAAADd/14OAAAAaUlEQVQokWNgwAE6OzsDgDgDiDn+//+PU5EDEDdAcQZWhUAJAyRFIByAoRCbIpA4ikIsihJgcnCFWBSBPYGiECiggU8RssIKNIUC6B6EKcRrLeluJBQ0GAqJDkd8ivHFtQfBuEZSjJJ6ALPvvW9ej7+LAAAAAElFTkSuQmCC")} 39 | .currencies article .pad .clear{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAA8UlEQVR42u3VP0tCURiA8ROEtLQ0OAhGQ01tfgWb+wB+BgchBA2EVNwcXB38HG3t4oWLGOlUewpOQRLy+gxeuBw44XmhK8QZfsvLgQcO548RkaMI4RAO4b8LR1HkUsYEb5gdaIEBCtrwHdYQhS3qmnAJKwhsS3xbs09srFnHN3yND0f0HbeopmYxiuhZa598wnnEEIf71NpHTHEFgxO8aMJneIb8YoxLGJziHGavhh/f8AWGkAPMk3hKA6LZ6gq+jhHO4QGS9VYnupCsD1eiD8nqOrnj+gek7Re243pNXRhoYYFXz09ihJvwH4dwCP+/8A7n95F+p5lWNAAAAABJRU5ErkJggg==")} 40 | }@media only screen and (-webkit-min-device-pixel-ratio:2){.currencies article .input,.currencies article .output{background-size:6px 8px;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAQAAACGG/bgAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAg5JREFUOMtjYMAK5AWzrKcn9hW0htbKM+ACzIzi7NbyRe5TsnpLW+NrTZYIPWHFqpCb2U+q1qEtraehq6G1tDZtif0TYSzKxFnsJOrsF2RMrG3v7uhoa25sWBH8VAKLQj++OuOuhAn13Y0dbe2dnY1dJRvdX4hgmiZaZ7QgZmJNe09HW3fjhIaG7CT/Dq07PJimGXXFTKgBm9Y+sX5BcbGvgoorzwlmTNNiJ9Z29Ha0djX1tLTl1fq5qzKw4DKtqbO1s7W3aUpdUaS1hig3AyNO0zobO1smlMyNzTIS5kAxi5fRH8W0juaOlklJS4xL+OSYkCOLzUqoxhBuWkNnc3fZhJQuy1o+NLdliRdptUVOqAWb1tzR2NE8MXmBaa2gLbonpjtOCeqp7OjraAG6rbWroje51aySF0tM9OX3lnTVdYKUNXd292ZNNcnnxJoE+op6y7rqiVA43WNKeE810COErM6SK9Jvi4YGDT7PyHNYidQYoQVPcpdVrQAWU9ECvKWjdVLiEoMSbjlG7MkLZipQ+YTCuYFZqsIs2BMszNS2zvbeuilFRb7WymiJAs3Uvo62rsaehrbsWl8syQwj4XZObMSacFGyQjWBrAA11aQraUJjdxOezAU1VarOdUHexPr2LrzZFVgAsPop1Lq1pffU4y0AwEUKp7VCkQfBIgUEhDjTTGfE9ue1BtaKQUQA61MYeCWsyZYAAAAASUVORK5CYII=")} 41 | .currencies article .pad .clear{background-size:30px 30px;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAMAAAANIilAAAAAMFBMVEUAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMySLVSoAAAAD3RSTlMAECAwQFBgcICPn7/P3++kfFgMAAAArklEQVR42u2UwQ6EIAxEi7tWLSj//7fGC5M1UjZzNH0nEnyJTAckCIKXk7bcY00jt9Q+hXCBEm5j9eRSedl+vsxYQf7TNdF2UhvKy80V0ZaSDWS9uRfaEjZX/j4ORbFw5M/xPNIJbldOu1sIdQMrbp3UHZW5ZVS3JHNlZKTF/DZ2+cBgE6NCN6mSiFWmnrCZiwGbuZKwuccANv+G2Vjm7UV4+0jio7nLNkkQBC/kBCeMLotUD9YCAAAAAElFTkSuQmCC")} 42 | } -------------------------------------------------------------------------------- /public/application.js: -------------------------------------------------------------------------------- 1 | (function(){if(!this.require){var a={},b={},c=function(f,g){var h=d(g,f),i=d(h,"./index"),j,k;j=b[h]||b[i];if(j)return j;if(k=a[h]||a[h=i])return j={id:h,exports:{}},b[h]=j.exports,k(j.exports,function(a){return c(a,e(h))},j),b[h]=j.exports;throw"module "+f+" not found"},d=function(a,b){var c=[],d,e;/^\.\.?(\/|$)/.test(b)?d=[a,b].join("/").split("/"):d=b.split("/");for(var f=0,g=d.length;f=2)var d=arguments[1];else do{if(c in this){d=this[c++];break}if(++c>=b)throw new TypeError}while(!0);for(;c=2)c=arguments[1];else do{if(d in this){c=this[d--];break}if(--d<0)throw new TypeError}while(!0);for(;d>=0;d--)d in this&&(c=a.call(null,c,this[d],d,this));return c}),Array.prototype.indexOf||(Array.prototype.indexOf=function(a){var b=this.length;if(!b)return-1;var c=arguments[1]||0;if(c>=b)return-1;c<0&&(c+=b);for(;c=0;c--){if(!(c in this))continue;if(a===this[c])return c}return-1}),Object.getPrototypeOf||(Object.getPrototypeOf=function(a){return a.__proto__||a.constructor.prototype});if(!Object.getOwnPropertyDescriptor){var l="Object.getOwnPropertyDescriptor called on a non-object: ";Object.getOwnPropertyDescriptor=function(b,c){if(typeof b!="object"&&typeof b!="function"||b===null)throw new TypeError(l+b);if(!f(b,c))return a;var d,g,h;d={enumerable:!0,configurable:!0};if(k){var m=b.__proto__;b.__proto__=e;var g=i(b,c),h=j(b,c);b.__proto__=m;if(g||h)return g&&(d.get=g),h&&(d.set=h),d}return d.value=b[c],d}}Object.getOwnPropertyNames||(Object.getOwnPropertyNames=function(a){return Object.keys(a)}),Object.create||(Object.create=function(a,b){var c;if(a===null)c={"__proto__":null};else{if(typeof a!="object")throw new TypeError("typeof prototype["+typeof a+"] != 'object'");var d=function(){};d.prototype=a,c=new d,c.__proto__=a}return typeof b!="undefined"&&Object.defineProperties(c,b),c});if(!Object.defineProperty){var m="Property description must be an object: ",n="Object.defineProperty called on non-object: ",o="getters & setters can not be defined on this javascript engine";Object.defineProperty=function(a,b,c){if(typeof a!="object"&&typeof a!="function")throw new TypeError(n+a);if(typeof c!="object"||c===null)throw new TypeError(m+c);if(f(c,"value"))if(k&&(i(a,b)||j(a,b))){var d=a.__proto__;a.__proto__=e,delete a[b],a[b]=c.value,a.__proto__=d}else a[b]=c.value;else{if(!k)throw new TypeError(o);f(c,"get")&&g(a,b,c.get),f(c,"set")&&h(a,b,c.set)}return a}}Object.defineProperties||(Object.defineProperties=function(a,b){for(var c in b)f(b,c)&&Object.defineProperty(a,c,b[c]);return a}),Object.seal||(Object.seal=function(a){return a}),Object.freeze||(Object.freeze=function(a){return a});try{Object.freeze(function(){})}catch(p){Object.freeze=function(a){return function b(b){return typeof b=="function"?b:a(b)}}(Object.freeze)}Object.preventExtensions||(Object.preventExtensions=function(a){return a}),Object.isSealed||(Object.isSealed=function(a){return!1}),Object.isFrozen||(Object.isFrozen=function(a){return!1}),Object.isExtensible||(Object.isExtensible=function(a){return!0});if(!Object.keys){var q=!0,r=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],s=r.length;for(var t in{toString:null})q=!1;Object.keys=function U(a){if(typeof a!="object"&&typeof a!="function"||a===null)throw new TypeError("Object.keys called on a non-object");var U=[];for(var b in a)f(a,b)&&U.push(b);if(q)for(var c=0,d=s;c=7?new b(a,d,e,f,g,h,i):j>=6?new b(a,d,e,f,g,h):j>=5?new b(a,d,e,f,g):j>=4?new b(a,d,e,f):j>=3?new b(a,d,e):j>=2?new b(a,d):j>=1?new b(a):new b;return k.constructor=c,k}return b.apply(this,arguments)},d=new RegExp("^(?:((?:[+-]\\d\\d)?\\d\\d\\d\\d)(?:-(\\d\\d)(?:-(\\d\\d))?)?)?(?:T(\\d\\d):(\\d\\d)(?::(\\d\\d)(?:\\.(\\d\\d\\d))?)?)?(?:Z|([+-])(\\d\\d):(\\d\\d))?$");for(var e in b)c[e]=b[e];return c.now=b.now,c.UTC=b.UTC,c.prototype=b.prototype,c.prototype.constructor=c,c.parse=function f(c){var e=d.exec(c);if(e){e.shift();var f=e[0]===a;for(var g=0;g<10;g++){if(g===7)continue;e[g]=+(e[g]||(g<3?1:0)),g===1&&e[g]--}if(f)return((e[3]*60+e[4])*60+e[5])*1e3+e[6];var h=(e[8]*60+e[9])*60*1e3;return e[6]==="-"&&(h=-h),b.UTC.apply(this,e.slice(0,7))+h}return b.parse.apply(this,arguments)},c}(Date));if(!String.prototype.trim){var u=/^\s\s*/,v=/\s\s*$/;String.prototype.trim=function(){return String(this).replace(u,"").replace(v,"")}}})},"json2ify/index":function(exports,require,module){this.JSON||(this.JSON={}),module.exports=JSON,function(){function f(a){return a<10?"0"+a:a}function quote(a){return escapable.lastIndex=0,escapable.test(a)?'"'+a.replace(escapable,function(a){var b=meta[a];return typeof b=="string"?b:"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)})+'"':'"'+a+'"'}function str(a,b){var c,d,e,f,g=gap,h,i=b[a];i&&typeof i=="object"&&typeof i.toJSON=="function"&&(i=i.toJSON(a)),typeof rep=="function"&&(i=rep.call(b,a,i));switch(typeof i){case"string":return quote(i);case"number":return isFinite(i)?String(i):"null";case"boolean":case"null":return String(i);case"object":if(!i)return"null";gap+=indent,h=[];if(Object.prototype.toString.apply(i)==="[object Array]"){f=i.length;for(c=0;cc)break;a.currentTarget=e.elem,a.data=e.handleObj.data,a.handleObj=e.handleObj,o=e.handleObj.origHandler.apply(e.elem,arguments);if(o===!1||a.isPropagationStopped()){c=e.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}function N(a,b){return(a&&a!=="*"?a+".":"")+b.replace(z,"`").replace(A,"&")}function V(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function W(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(R.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function bg(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function bh(a,b){if(b.nodeType!==1||!f.hasData(a))return;var c=f.expando,d=f.data(a),e=f.data(b,d);if(d=d[c]){var g=d.events;e=e[c]=f.extend({},d);if(g){delete e.handle,e.events={};for(var h in g)for(var i=0,j=g[h].length;i0)return c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0}),d+"px";d=bx(a,b,b);if(d<0||d==null)d=a.style[b]||0;return d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)}),d+"px"}function bW(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bN),e=0,g=d.length,h,i,j;for(;e").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ch||(ch=c.createElement("iframe"),ch.frameBorder=ch.width=ch.height=0),b.appendChild(ch);if(!ci||!ch.createElement)ci=(ch.contentWindow||ch.contentDocument).document,ci.write((c.compatMode==="CSS1Compat"?"":"")+""),ci.close();d=ci.createElement(a),ci.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ch)}cg[a]=e}return cg[a]}function cv(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(e.isReady)return;try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z])/ig,x=function(a,b){return b.toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};return e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(a==="body"&&!d&&c.body)return this.context=c,this[0]=c.body,this.selector=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?g=[null,a,null]:g=i.exec(a);if(g&&(g[1]||!d)){if(g[1])return d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes),e.merge(this,a);h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}return this.context=c,this.selector=a,this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}return e.isFunction(a)?f.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),e.makeArray(a,this))},selector:"",jquery:"1.6.2",length:0,size:function(){return this.length},toArray:function(){return F.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 d=this.constructor();return e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return e.each(this,a,b)},ready:function(a){return e.bindReady(),A.done(a),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(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,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"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;A.resolveWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(A)return;A=e._Deferred();if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNaN:function(a){return a==null||!m.test(a)||isNaN(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1;var c;for(c in a);return c===b||D.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=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(b,c,d){return a.DOMParser?(d=new DOMParser,c=d.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b)),d=c.documentElement,(!d||!d.nodeName||d.nodeName==="parsererror")&&e.error("Invalid XML: "+b),c},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?h.call(arguments,0):c,--e||g.resolveWith(g,h.call(b,0))}}var b=arguments,c=0,d=b.length,e=d,g=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>1){for(;c
a",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55$/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.firstChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0},m&&f.extend(p,{position:"absolute",left:-1e3,top:-1e3});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="
",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="
t
",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0),o.innerHTML="",n.removeChild(o);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;return o=l=g=h=m=j=a=i=null,k}(),f.boxModel=f.support.boxModel;var i=/^(?:\{.*\}|\[.*\])$/,j=/([a-z])([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?f.cache[a[f.expando]]:a[f.expando],!!a&&!l(a)},data:function(a,c,d,e){if(!f.acceptData(a))return;var g=f.expando,h=typeof c=="string",i,j=a.nodeType,k=j?f.cache:a,l=j?a[f.expando]:a[f.expando]&&f.expando;if((!l||e&&l&&!k[l][g])&&h&&d===b)return;l||(j?a[f.expando]=l=++f.uuid:l=f.expando),k[l]||(k[l]={},j||(k[l].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?k[l][g]=f.extend(k[l][g],c):k[l]=f.extend(k[l],c);return i=k[l],e&&(i[g]||(i[g]={}),i=i[g]),d!==b&&(i[f.camelCase(c)]=d),c==="events"&&!i[c]?i[g]&&i[g].events:h?i[f.camelCase(c)]||i[c]:i},removeData:function(b,c,d){if(!f.acceptData(b))return;var e=f.expando,g=b.nodeType,h=g?f.cache:b,i=g?b[f.expando]:f.expando;if(!h[i])return;if(c){var j=d?h[i][e]:h[i];if(j){delete j[c];if(!l(j))return}}if(d){delete h[i][e];if(!l(h[i]))return}var k=h[i][e];f.support.deleteExpando||h!=a?delete h[i]:h[i]=null,k?(h[i]={},g||(h[i].toJSON=f.noop),h[i][e]=k):g&&(f.support.deleteExpando?delete b[f.expando]:b.removeAttribute?b.removeAttribute(f.expando):b[f.expando]=null)},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d=null;if(typeof a=="undefined"){if(this.length){d=f.data(this[0]);if(this[0].nodeType===1){var e=this[0].attributes,g;for(var h=0,i=e.length;h-1)return!0;return!1},val:function(a){var c,d,e=this[0];if(!arguments.length)return e?(c=f.valHooks[e.nodeName.toLowerCase()]||f.valHooks[e.type],c&&"get"in c&&(d=c.get(e,"value"))!==b?d:(d=e.value,typeof d=="string"?d.replace(p,""):d==null?"":d)):b;var g=f.isFunction(a);return this.each(function(d){var e=f(this),h;if(this.nodeType!==1)return;g?h=a.call(this,d,e.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c=a.selectedIndex,d=[],e=a.options,g=a.type==="select-one";if(c<0)return null;for(var h=g?c:0,i=g?c+1:e.length;h=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attrFix:{tabindex:"tabIndex"},attr:function(a,c,d,e){var g=a.nodeType;if(!a||g===3||g===8||g===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if("getAttribute"in a){var h,i,j=g!==1||!f.isXMLDoc(a);return j&&(c=f.attrFix[c]||c,i=f.attrHooks[c],i||(t.test(c)?i=w:v&&c!=="className"&&(f.nodeName(a,"form")||u.test(c))&&(i=v))),d!==b?d===null?(f.removeAttr(a,c),b):i&&"set"in i&&j&&(h=i.set(a,d,c))!==b?h:(a.setAttribute(c,""+d),d):i&&"get"in i&&j&&(h=i.get(a,c))!==null?h:(h=a.getAttribute(c),h===null?b:h)}return f.prop(a,c,d)},removeAttr:function(a,b){var c;a.nodeType===1&&(b=f.attrFix[b]||b,f.support.getSetAttribute?a.removeAttribute(b):(f.attr(a,b,""),a.removeAttributeNode(a.getAttributeNode(b))),t.test(b)&&(c=f.propFix[b]||b)in a&&(a[c]=!1))},attrHooks:{type:{set:function(a,b){if(q.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},tabIndex:{get:function(a){var c=a.getAttributeNode("tabIndex");return c&&c.specified?parseInt(c.value,10):r.test(a.nodeName)||s.test(a.nodeName)&&a.href?0:b}},value:{get:function(a,b){return v&&f.nodeName(a,"button")?v.get(a,b):b in a?a.value:null},set:function(a,b,c){if(v&&f.nodeName(a,"button"))return v.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e=a.nodeType;if(!a||e===3||e===8||e===2)return b;var g,h,i=e!==1||!f.isXMLDoc(a);return i&&(c=f.propFix[c]||c,h=f.propHooks[c]),d!==b?h&&"set"in h&&(g=h.set(a,d,c))!==b?g:a[c]=d:h&&"get"in h&&(g=h.get(a,c))!==b?g:a[c]},propHooks:{}}),w={get:function(a,c){return f.prop(a,c)?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},f.support.getSetAttribute||(f.attrFix=f.propFix,v=f.attrHooks.name=f.attrHooks.title=f.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&d.nodeValue!==""?d.nodeValue:b},set:function(a,b,c){var d=a.getAttributeNode(c);if(d)return d.nodeValue=b,b}},f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})})),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}})),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var x=/\.(.*)$/,y=/^(?:textarea|input|select)$/i,z=/\./g,A=/ /g,B=/[^\w\s.|`]/g,C=function(a){return a.replace(B,"\\$&")};f.event={add:function(a,c,d,e){if(a.nodeType===3||a.nodeType===8)return;if(d===!1)d=D;else if(!d)return;var g,h;d.handler&&(g=d,d=g.handler),d.guid||(d.guid=f.guid++);var i=f._data(a);if(!i)return;var j=i.events,k=i.handle;j||(i.events=j={}),k||(i.handle=k=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.handle.apply(k.elem,arguments):b}),k.elem=a,c=c.split(" ");var l,m=0,n;while(l=c[m++]){h=g?f.extend({},g):{handler:d,data:e},l.indexOf(".")>-1?(n=l.split("."),l=n.shift(),h.namespace=n.slice(0).sort().join(".")):(n=[],h.namespace=""),h.type=l,h.guid||(h.guid=d.guid);var o=j[l],p=f.event.special[l]||{};if(!o){o=j[l]=[];if(!p.setup||p.setup.call(a,e,n,k)===!1)a.addEventListener?a.addEventListener(l,k,!1):a.attachEvent&&a.attachEvent("on"+l,k)}p.add&&(p.add.call(a,h),h.handler.guid||(h.handler.guid=d.guid)),o.push(h),f.event.global[l]=!0}a=null},global:{},remove:function(a,c,d,e){if(a.nodeType===3||a.nodeType===8)return;d===!1&&(d=D);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=f.hasData(a)&&f._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(d=c.handler,c=c.type);if(!c||typeof c=="string"&&c.charAt(0)==="."){c=c||"";for(h in t)f.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("(^|\\.)"+f.map(m.slice(0).sort(),C).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!d){for(j=0;j=0&&(h=h.slice(0,-1),j=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)");if(g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=this[a];b&&b.events&&b.events[h]&&f.event.trigger(c,d,b.handle.elem)});return}if(e.nodeType===3||e.nodeType===8)return;c.result=b,c.target=e,d=d!=null?f.makeArray(d):[],d.unshift(c);var k=e,l=h.indexOf(":")<0?"on"+h:"";do{var m=f._data(k,"handle");c.currentTarget=k,m&&m.apply(k,d),l&&f.acceptData(k)&&k[l]&&k[l].apply(k,d)===!1&&(c.result=!1,c.preventDefault()),k=k.parentNode||k.ownerDocument||k===c.target.ownerDocument&&a}while(k&&!c.isPropagationStopped());if(!c.isDefaultPrevented()){var n,o=f.event.special[h]||{};if((!o._default||o._default.call(e.ownerDocument,c)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)){try{l&&e[h]&&(n=e[l],n&&(e[l]=null),f.event.triggered=h,e[h]())}catch(p){}n&&(e[l]=n),f.event.triggered=b}}return c.result},handle:function(c){c=f.event.fix(c||a.event);var d=((f._data(this,"events")||{})[c.type]||[]).slice(0),e=!c.exclusive&&!c.namespace,g=Array.prototype.slice.call(arguments,0);g[0]=c,c.currentTarget=this;for(var h=0,i=d.length;h-1?f.map(a.options,function(a){return a.selected}).join("-"):"":f.nodeName(a,"select")&&(c=a.selectedIndex),c},J=function(a){var c=a.target,d,e;if(!y.test(c.nodeName)||c.readOnly)return;d=f._data(c,"_change_data"),e=I(c),(a.type!=="focusout"||c.type!=="radio")&&f._data(c,"_change_data",e);if(d===b||e===d)return;if(d!=null||e)a.type="change",a.liveFired=b,f.event.trigger(a,arguments[1],c)};f.event.special.change={filters:{focusout:J,beforedeactivate:J,click:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="radio"||c==="checkbox"||f.nodeName(b,"select"))&&J.call(this,a)},keydown:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(a.keyCode===13&&!f.nodeName(b,"textarea")||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&J.call(this,a)},beforeactivate:function(a){var b=a.target;f._data(b,"_change_data",I(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in H)f.event.add(this,c+".specialChange",H[c]);return y.test(this.nodeName)},teardown:function(a){return f.event.remove(this,".specialChange"),y.test(this.nodeName)}},H=f.event.special.change.filters,H.focus=H.beforeactivate}f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){function e(a){var c=f.event.fix(a);c.type=b,c.originalEvent={},f.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var d=0;f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.each(["bind","one"],function(a,c){f.fn[c]=function(a,d,e){var g;if(typeof a=="object"){for(var h in a)this[c](h,d,a[h],e);return this}if(arguments.length===2||d===!1)e=d,d=b;c==="one"?(g=function(a){return f(this).unbind(a,g),e.apply(this,arguments)},g.guid=e.guid||f.guid++):g=e;if(a==="unload"&&c!=="one")this.one(a,d,e);else for(var i=0,j=this.length;i0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0)}),function(){function t(a,b,c,d,e,f){for(var g=0,h=d.length;g0){j=i;break}}i=i[a]}d[g]=j}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d=0,e=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){return h=!1,0});var k=function(b,d,f,g){f=f||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return f;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(e.call(n)==="[object Array]")if(!u)f.push.apply(f,n);else 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]))&&f.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&f.push(j[t]);else p(n,f);return o&&(k(o,h,f,g),k.uniqueSort(f)),f};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]);return a[0]=d++,a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");return!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" "),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);return d||e.push.apply(e,g),!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){return a.unshift(!0),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){return a.parentNode&&a.parentNode.selectedIndex,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){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},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){return a=Array.prototype.slice.call(a,0),b?(b.push.apply(b,a),b):a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(e.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var f=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)return;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;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
";if(!a.getElementsByClassName||a.getElementsByClassName("e").length===0)return;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(h=g;h0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(d=0,e=a.length;d-1:f(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=T.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}return c=c.length>1?f.unique(c):c,this.pushStack(c,"closest",a)},index:function(a){return!a||typeof a=="string"?f.inArray(this[0],a?f(a):this.parent().children()):f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(V(c[0])||V(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=S.call(arguments);return O.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!U[a]?f.unique(e):e,(this.length>1||Q.test(d))&&P.test(a)&&(e=e.reverse()),this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},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 X=/ jQuery\d+="(?:\d+|null)"/g,Y=/^\s+/,Z=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,$=/<([\w:]+)/,_=/",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]};bf.optgroup=bf.option,bf.tbody=bf.tfoot=bf.colgroup=bf.caption=bf.thead,bf.th=bf.td,f.support.htmlSerialize||(bf._default=[1,"div
","
"]),f.fn.extend({text:function(a){return f.isFunction(a)?this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))}):typeof a!="object"&&a!==b?this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a)):f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(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){return f.isFunction(a)?this.each(function(b){f(this).wrapInner(a.call(this,b))}):this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(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=f(arguments[0]);return a.push.apply(a,this.toArray()),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);return a.push.apply(a,f(arguments[0]).toArray()),a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(X,""):null;if(typeof a=="string"&&!bb.test(a)&&(f.support.leadingWhitespace||!Y.test(a))&&!bf[($.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Z,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bi(a,d),e=bj(a),g=bj(d);for(h=0;e[h];++h)bi(e[h],g[h])}if(b){bh(a,d);if(c){e=bj(a),g=bj(d);for(h=0;e[h];++h)bh(e[h],g[h])}}return e=g=null,d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!ba.test(k))k=b.createTextNode(k);else{k=k.replace(Z,"<$1>");var l=($.exec(k)||["",""])[1].toLowerCase(),m=bf[l]||bf._default,n=m[0],o=b.createElement("div");o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=_.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&Y.test(k)&&o.insertBefore(b.createTextNode(Y.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bo.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle;c.zoom=1;var e=f.isNaN(b)?"":"alpha(opacity="+b*100+")",g=d&&d.filter||c.filter||"";c.filter=bn.test(g)?g.replace(bn,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;return f.swap(a,{display:"inline-block"},function(){b?c=bx(a,"margin-right","marginRight"):c=a.style.marginRight}),c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(by=function(a,c){var d,e,g;c=c.replace(bp,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bz=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;return!bq.test(d)&&br.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)),d===""?"auto":d}),bx=by||bz,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bB=/%20/g,bC=/\[\]$/,bD=/\r?\n/g,bE=/#.*$/,bF=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bG=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bH=/^(?:about|app|app\-storage|.+\-extension|file|widget):$/,bI=/^(?:GET|HEAD)$/,bJ=/^\/\//,bK=/\?/,bL=/)<[^<]*)*<\/script>/gi,bM=/^(?:select|textarea)/i,bN=/\s+/,bO=/([?&])_=[^&]*/,bP=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bQ=f.fn.load,bR={},bS={},bT,bU;try{bT=e.href}catch(bV){bT=c.createElement("a"),bT.href="",bT=bT.href}bU=bP.exec(bT.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bQ)return bQ.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;return f.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?f("
").append(c.replace(bL,"")).find(g):c)),d&&i.each(d,[c,b,a])}}),this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bM.test(this.nodeName)||bG.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bD,"\r\n")}}):{name:b.name,value:c.replace(bD,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){return f.isFunction(d)&&(g=g||e,e=d,d=b),f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?f.extend(!0,a,f.ajaxSettings,b):(b=a,a=f.extend(!0,f.ajaxSettings,b));for(var c in{context:1,url:1})c in b?a[c]=b[c]:c in f.ajaxSettings&&(a[c]=f.ajaxSettings[c]);return a},ajaxSettings:{url:bT,isLocal:bH.test(bU[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":f.parseJSON,"text xml":f.parseXML}},ajaxPrefilter:bW(bR),ajaxTransport:bW(bS),ajax:function(a,c){function w(a,c,l,m){if(s===2)return;s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a?4:0;var o,r,u,w=l?bZ(d,v,l):b,x,y;if(a>=200&&a<300||a===304){if(d.ifModified){if(x=v.getResponseHeader("Last-Modified"))f.lastModified[k]=x;if(y=v.getResponseHeader("Etag"))f.etag[k]=y}if(a===304)c="notmodified",o=!0;else try{r=b$(d,w),c="success",o=!0}catch(z){c="parsererror",u=z}}else{u=c;if(!c||a)c="error",a<0&&(a=0)}v.status=a,v.statusText=c,o?h.resolveWith(e,[r,c,v]):h.rejectWith(e,[v,c,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.resolveWith(e,[v,c]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f._Deferred(),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bF.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return s||(d.mimeType=a),this},abort:function(a){return a=a||"abort",p&&p.abort(a),w(0,a),this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.done,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bE,"").replace(bJ,bU[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bN),d.crossDomain==null&&(r=bP.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bU[1]&&r[2]==bU[2]&&(r[3]||(r[1]==="http:"?80:443))==(bU[3]||(bU[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bX(bR,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bI.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bK.test(d.url)?"&":"?")+d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bO,"$1_="+x);d.url=y+(y===d.url?(bK.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", */*; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(!d.beforeSend||d.beforeSend.call(e,v,d)!==!1&&s!==2){for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bX(bS,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){status<2?w(-1,z):f.error(z)}}return v}return v.abort(),!1},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)bY(g,a[g],c,e);return d.join("&").replace(bB,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var b_=f.now(),ca=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+b_++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ca.test(b.url)||e&&ca.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";return b.jsonp!==!1&&(j=j.replace(ca,l),b.url===j&&(e&&(k=k.replace(ca,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){return g||f.error(h+" was not called"),g[0]},b.dataTypes[0]="json","script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return f.globalEval(a),a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.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(c||!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 cb=a.ActiveXObject?function(){for(var a in cd)cd[a](0,1)}:!1,cc=0,cd;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ce()||cf()}:ce,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cb&&delete cd[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cc,cb&&(cd||(cd={},f(a).unload(cb)),cd[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cg={},ch,ci,cj=/^(?:toggle|show|hide)$/,ck=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cl,cm=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cn,co=a.webkitRequestAnimationFrame||a.mozRequestAnimationFrame||a.oRequestAnimationFrame;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cr("show",3),a,b,c);for(var g=0,h=this.length;g=e.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),e.animatedProperties[this.prop]=!0;for(g in e.animatedProperties)e.animatedProperties[g]!==!0&&(c=!1);if(c){e.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){d.style["overflow"+b]=e.overflow[a]}),e.hide&&f(d).hide();if(e.hide||e.show)for(var i in e.animatedProperties)f.style(d,i,e.orig[i]);e.complete.call(d)}return!1}return e.duration==Infinity?this.now=b:(h=b-this.startTime,this.state=h/e.duration,this.pos=f.easing[e.animatedProperties[this.prop]](this.state,h,0,1,e.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update(),!0}},f.extend(f.fx,{tick:function(){for(var a=f.timers,b=0;b
";f.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),d=b.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,this.doesNotAddBorder=e.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,e.style.position="fixed",e.style.top="20px",this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),f.offset.initialize=f.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return f.offset.initialize(),f.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.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):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cu.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cu.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;return c===b?(e=this[0],e?(g=cv(e),g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]):null):this.each(function(){g=cv(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a&&a.style?parseFloat(f.css(a,d,"padding")):null},f.fn["outer"+c]=function(a){var b=this[0];return b&&b.style?parseFloat(f.css(b,d,a?"margin":"border")):null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c];return e.document.compatMode==="CSS1Compat"&&g||e.document.body["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var h=f.css(e,d),i=parseFloat(h);return f.isNaN(i)?h:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window),c.exports=jQuery},"gfx/index":function(a,b,c){c.exports=b("./lib/gfx")},"gfx/lib/gfx":function(a,b,c){(function(){var a,c,d,e,f,g,h,i=function(a,b){return function(){return a.apply(b,arguments)}},j=Array.prototype.indexOf||function(a){for(var b=0,c=this.length;b=0&&(e.push(""+c+"("+g+")"),delete b[c]);return e.length&&(b[d.transform]=e.join(" ")),a(this).css(b)},a.fn.gfx=function(b,e){var f,g;return g=a.extend({},c,e),b[d.transition]="all "+g.duration+"ms "+g.easing,f=function(){var b;return a(this).css(d.transition,""),(b=g.complete)!=null&&b.apply(this,arguments),a(this).dequeue()},this[g.queue===!1?"each":"queue"](function(){return a(this).one(d.transitionEnd,f),a(this).transform(b),a(this).emulateTransitionEnd(g.duration+50)})},a.fn.gfxPopIn=function(b){var c;return b==null&&(b={}),(c=b.scale)!=null?c:b.scale=".2",a(this).queueNext(function(){return a(this).transform({"-webkit-transform-origin":"50% 50%","-moz-transform-origin":"50% 50%",scale:b.scale,opacity:"0",display:"block"})}),a(this).gfx({scale:"1",opacity:"1"},b)},a.fn.gfxPopOut=function(b){return a(this).queueNext(function(){return a(this).transform({"-webkit-transform-origin":"50% 50%","-moz-transform-origin":"50% 50%",scale:"1",opacity:"1"})}),a(this).gfx({scale:".2",opacity:"0"},b),a(this).queueNext(function(){return a(this).transform({display:"none",opacity:"1",scale:"1"})})},a.fn.gfxFadeIn=function(b){var c;return b==null&&(b={}),(c=b.duration)!=null?c:b.duration=1e3,a(this).queueNext(function(){return a(this).css({opacity:"0"}).show()}),a(this).gfx({opacity:1},b)},a.fn.gfxFadeOut=function(b){return b==null&&(b={}),a(this).queueNext(function(){return a(this).css({opacity:1})}),a(this).gfx({opacity:0},b),a(this).queueNext(function(){return a(this).hide().css({opacity:1})})},a.fn.gfxShake=function(b){var c,d,e;return b==null&&(b={}),(d=b.duration)!=null?d:b.duration=100,(e=b.easing)!=null?e:b.easing="ease-out",c=b.distance||20,a(this).gfx({translateX:"-"+c+"px"},b),a(this).gfx({translateX:""+c+"px"},b),a(this).gfx({translateX:"-"+c+"px"},b),a(this).gfx({translateX:""+c+"px"},b),a(this).queueNext(function(){return a(this).transform({translateX:0})})},a.fn.gfxBlip=function(b){return b==null&&(b={}),b.scale||(b.scale="1.15"),a(this).gfx({scale:b.scale},b),a(this).gfx({scale:"1"},b)},a.fn.gfxExplodeIn=function(b){return b==null&&(b={}),b.scale||(b.scale="3"),a(this).queueNext(function(){return a(this).transform({scale:b.scale,opacity:"0",display:"block"})}),a(this).gfx({scale:"1",opacity:"1"},b)},a.fn.gfxExplodeOut=function(b){return b==null&&(b={}),b.scale||(b.scale="3"),a(this).queueNext(function(){return a(this).transform({scale:"1",opacity:"1"})}),a(this).gfx({scale:b.scale,opacity:"0"},b),b.reset!==!1&&a(this).queueNext(function(){return a(this).transform({scale:"1",opacity:"1",display:"none"})}),this},a.fn.gfxFlipIn=function(b){return b==null&&(b={}),a(this).queueNext(function(){return a(this).transform({rotateY:"180deg",scale:".8",display:"block"})}),a(this).gfx({rotateY:0,scale:1},b)},a.fn.gfxFlipOut=function(b){return b==null&&(b={}),a(this).queueNext(function(){return a(this).transform({rotateY:0,scale:1})}),a(this).gfx({rotateY:"-180deg",scale:".8"},b),b.reset!==!1&&a(this).queueNext(function(){return a(this).transform({scale:1,rotateY:0,display:"none"})}),this},a.fn.gfxRotateOut=function(b){return b==null&&(b={}),a(this).queueNext(function(){return a(this).transform({rotateY:0}).fix()}),a(this).gfx({rotateY:"-180deg"},b),b.reset!==!1&&a(this).queueNext(function(){return a(this).transform({rotateY:0,display:"none"}).unfix()}),this},a.fn.gfxRotateIn=function(b){return b==null&&(b={}),a(this).queueNext(function(){return a(this).transform({rotateY:"180deg",display:"block"}).fix()}),a(this).gfx({rotateY:0},b),a(this).queueNext(function(){return a(this).unfix()}),a=jQuery},a.fn.gfxSlideOut=function(b){var c,d;return b==null&&(b={}),b.direction||(b.direction="right"),c=b.distance||100,b.direction==="left"&&(c*=-1),c+="%",d=b.fade?0:1,a(this).queueNext(function(){return a(this).show()}),a(this).gfx({translate3d:""+c+",0,0",opacity:d},b),a(this).queueNext(function(){return a(this).transform({translate3d:"0,0,0",opacity:1}).hide()})},a.fn.gfxSlideIn=function(b){var c,d;return b==null&&(b={}),b.direction||(b.direction="right"),c=b.distance||100,b.direction==="left"&&(c*=-1),c+="%",d=b.fade?0:1,a(this).queueNext(function(){return a(this).transform({translate3d:""+c+",0,0",opacity:d}).show()}),a(this).gfx({translate3d:"0,0,0",opacity:1},b)},a.fn.fix=function(){return a(this).each(function(){var b,c,d;return b=a(this),d=b.offset(),c=b.parent().offset(),d.left-=c.left,d.top-=c.top,d.position="absolute",b.css(d)})},a.fn.unfix=function(){return a(this).each(function(){var b;return b=a(this),b.css({position:"",top:"",left:""})})}}).call(this)},"spine/index":function(a,b,c){c.exports=b("./lib/spine")},"spine/lib/spine":function(a,b,c){(function(){var a,b,d,e,f,g,h,i,j,k,l,m,n=Array.prototype.slice,o=Array.prototype.indexOf||function(a){for(var b=0,c=this.length;b=0)||(c=a.id,o.call(this.ids,c)>=0))},a.prototype.save=function(){var a;return a=this.validate(),a?(this.trigger("error",this,a),!1):(this.trigger("beforeSave",this),this.newRecord?this.create():this.update(),this.trigger("save",this),this)},a.prototype.updateAttribute=function(a,b){return this[a]=b,this.save()},a.prototype.updateAttributes=function(a){return this.load(a),this.save()},a.prototype.changeID=function(a){var b;return this.ids.push(this.id),b=this.constructor.records,b[a]=b[this.id],delete b[this.id],this.id=a,this.save()},a.prototype.destroy=function(){return this.trigger("beforeDestroy",this),delete this.constructor.records[this.id],this.destroyed=!0,this.trigger("destroy",this),this.trigger("change",this,"destroy"),this.unbind(),this},a.prototype.dup=function(a){var b;return b=new this.constructor(this.attributes()),a===!1?b.newRecord=this.newRecord:delete b.id,b},a.prototype.clone=function(){return Object.create(this)},a.prototype.reload=function(){var a;return this.newRecord?this:(a=this.constructor.find(this.id),this.load(a.attributes()),a)},a.prototype.toJSON=function(){return this.attributes()},a.prototype.toString=function(){return"<"+this.constructor.className+" ("+JSON.stringify(this)+")>"},a.prototype.exists=function(){return this.id&&this.id in this.constructor.records},a.prototype.update=function(){var a,b;return this.trigger("beforeUpdate",this),b=this.constructor.records,b[this.id].load(this.attributes()),a=b[this.id].clone(),this.trigger("update",a),this.trigger("change",a,"update")},a.prototype.create=function(){var a,b;return this.trigger("beforeCreate",this),this.id||(this.id=i()),this.newRecord=!1,b=this.constructor.records,b[this.id]=this.dup(!1),a=b[this.id].clone(),this.trigger("create",a),this.trigger("change",a,"create")},a.prototype.bind=function(a,b){var c,d;return this.constructor.bind(a,c=p(function(a){if(a&&this.eql(a))return b.apply(this,arguments)},this)),this.constructor.bind("unbind",d=p(function(b){if(b&&this.eql(b))return this.constructor.unbind(a,c),this.constructor.unbind("unbind",d)},this)),c},a.prototype.trigger=function(){var a;return(a=this.constructor).trigger.apply(a,arguments)},a.prototype.unbind=function(){return this.trigger("unbind",this)},a}(),b=function(){function b(c){this.release=p(this.release,this);var d,e,f;this.options=c,f=this.options;for(d in f)e=f[d],this[d]=e;this.el||(this.el=document.createElement(this.tag)),this.el=a(this.el),this.className&&this.el.addClass(this.className),this.release(function(){return this.el.remove()}),this.events||(this.events=this.constructor.events),this.elements||(this.elements=this.constructor.elements),this.events&&this.delegateEvents(),this.elements&&this.refreshElements(),b.__super__.constructor.apply(this,arguments)}return r(b,g),b.include(d),b.include(e),b.prototype.eventSplitter=/^(\w+)\s*(.*)$/,b.prototype.tag="div",b.prototype.release=function(a){return typeof a=="function"?this.bind("release",a):this.trigger("release")},b.prototype.$=function(b){return a(b,this.el)},b.prototype.delegateEvents=function(){var a,b,c,d,e,f,g;f=this.events,g=[];for(b in f)d=f[b],typeof d!="function"&&(d=this.proxy(this[d])),c=b.match(this.eventSplitter),a=c[1],e=c[2],g.push(e===""?this.el.bind(a,d):this.el.delegate(e,a,d));return g},b.prototype.refreshElements=function(){var a,b,c,d;c=this.elements,d=[];for(a in c)b=c[a],d.push(this[b]=this.$(a));return d},b.prototype.delay=function(a,b){return setTimeout(this.proxy(a),b||0)},b.prototype.html=function(a){return this.el.html(a.el||a),this.refreshElements(),this.el},b.prototype.append=function(){var a,b,c;return b=1<=arguments.length?n.call(arguments,0):[],b=function(){var c,d,e;e=[];for(c=0,d=b.length;c=0)||(c=a.id,n.call(this.ids,c)>=0))},a.prototype.save=function(){var a;return a=this.validate(),a?(this.trigger("error",this,a),!1):(this.trigger("beforeSave",this),this.newRecord?this.create():this.update(),this.trigger("save",this),this)},a.prototype.updateAttribute=function(a,b){return this[a]=b,this.save()},a.prototype.updateAttributes=function(a){return this.load(a),this.save()},a.prototype.changeID=function(a){var b;return this.ids.push(this.id),b=this.constructor.records,b[a]=b[this.id],delete b[this.id],this.id=a,this.save()},a.prototype.destroy=function(){return this.trigger("beforeDestroy",this),delete this.constructor.records[this.id],this.destroyed=!0,this.trigger("destroy",this),this.trigger("change",this,"destroy"),this.unbind(),this},a.prototype.dup=function(a){var b;return b=new this.constructor(this.attributes()),a===!1?b.newRecord=this.newRecord:delete b.id,b},a.prototype.clone=function(){return Object.create(this)},a.prototype.reload=function(){var a;return this.newRecord?this:(a=this.constructor.find(this.id),this.load(a.attributes()),a)},a.prototype.toJSON=function(){return this.attributes()},a.prototype.toString=function(){return"<"+this.constructor.className+" ("+JSON.stringify(this)+")>"},a.prototype.exists=function(){return this.id&&this.id in this.constructor.records},a.prototype.update=function(){var a,b;return this.trigger("beforeUpdate",this),b=this.constructor.records,b[this.id].load(this.attributes()),a=b[this.id].clone(),this.trigger("update",a),this.trigger("change",a,"update")},a.prototype.create=function(){var a,b;return this.trigger("beforeCreate",this),this.id||(this.id=i()),this.newRecord=!1,b=this.constructor.records,b[this.id]=this.dup(!1),a=b[this.id].clone(),this.trigger("create",a),this.trigger("change",a,"create")},a.prototype.bind=function(a,b){var c,d;return this.constructor.bind(a,c=o(function(a){if(a&&this.eql(a))return b.apply(this,arguments)},this)),this.constructor.bind("unbind",d=o(function(b){if(b&&this.eql(b))return this.constructor.unbind(a,c),this.constructor.unbind("unbind",d)},this)),c},a.prototype.trigger=function(){var a;return(a=this.constructor).trigger.apply(a,arguments)},a.prototype.unbind=function(){return this.trigger("unbind",this)},a}(),b=function(){function b(c){var d,e,f;this.options=c,f=this.options;for(d in f)e=f[d],this[d]=e;this.el||(this.el=document.createElement(this.tag)),this.el=a(this.el),this.className&&this.el.addClass(this.className),this.destroy(function(){return this.el.remove()}),this.events||(this.events=this.constructor.events),this.elements||(this.elements=this.constructor.elements),this.events&&this.delegateEvents(),this.elements&&this.refreshElements(),b.__super__.constructor.apply(this,arguments)}return q(b,g),b.include(d),b.include(e),b.prototype.eventSplitter=/^(\w+)\s*(.*)$/,b.prototype.tag="div",b.prototype.destroy=function(a){return typeof a=="function"?this.bind("destroy",a):this.trigger("destroy")},b.prototype.$=function(b){return a(b,this.el)},b.prototype.delegateEvents=function(){var a,b,c,d,e,f,g;f=this.events,g=[];for(b in f)d=f[b],typeof d!="function"&&(d=this.proxy(this[d])),c=b.match(this.eventSplitter),a=c[1],e=c[2],g.push(e===""?this.el.bind(a,d):this.el.delegate(e,a,d));return g},b.prototype.refreshElements=function(){var a,b,c,d;c=this.elements,d=[];for(a in c)b=c[a],d.push(this[b]=this.$(a));return d},b.prototype.delay=function(a,b){return setTimeout(this.proxy(a),b||0)},b.prototype.html=function(a){return this.el.html(a.el||a),this.refreshElements(),this.el},b.prototype.append=function(){var a,b,c;return b=1<=arguments.length?m.call(arguments,0):[],b=function(){var c,d,e;e=[];for(c=0,d=b.length;c=f?a-b>0?"Left":"Right":c-d>0?"Up":"Down"},a(function(){return a("body").bind("touchstart",function(a){var b,c;return a=a.originalEvent,c=Date.now(),b=c-(f.last||c),f.target=d(a.touches[0].target),f.x1=a.touches[0].pageX,f.y1=a.touches[0].pageY,f.last=c}).bind("touchmove",function(a){return a=a.originalEvent,f.x2=a.touches[0].pageX,f.y2=a.touches[0].pageY}).bind("touchend",function(b){b=b.originalEvent;if(f.x2>0||f.y2>0)return(Math.abs(f.x1-f.x2)>30||Math.abs(f.y1-f.y2)>30)&&a(f.target).trigger("swipe")&&a(f.target).trigger("swipe"+e(f.x1,f.x2,f.y1,f.y2)),f.x1=f.x2=f.y1=f.y2=f.last=0;if("last"in f)return a(f.target).trigger("tap"),f={}}).bind("touchcancel",function(a){return f={}})}),a.support.touch?a("body").bind("click",function(a){return a.preventDefault()}):a(function(){return a("body").bind("click",function(b){return a(b.target).trigger("tap")})}),g=["swipe","swipeLeft","swipeRight","swipeUp","swipeDown","tap"],h=function(b){return a.fn[b]=function(a){return this.bind(b,a)}};for(i=0,j=g.length;i"),this.content=a("
"),this.footer=a("