├── screenshot.png ├── module └── index.js ├── package.json ├── example ├── static-calendar.html ├── index.html └── jquery.min.js ├── README.md ├── Gruntfile.js ├── .gitignore ├── dist ├── jquery.mpdatepicker.min.css └── jquery.mpdatepicker.min.js ├── src ├── jquery.mpdatepicker.css └── jquery.mpdatepicker.js └── LICENSE /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/mpdatepicker/HEAD/screenshot.png -------------------------------------------------------------------------------- /module/index.js: -------------------------------------------------------------------------------- 1 | import '../dist/jquery.min.css'; 2 | import '../dist/mpdatepicker.min'; -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mpdatepicker", 3 | "version": "2.0.1", 4 | "description": "material persian date picker", 5 | "main": "module/index.js", 6 | "directories": { 7 | "example": "example", 8 | "dist": "dist", 9 | "src": "src" 10 | }, 11 | "dependencies": { 12 | "jquery": ">=1.10.2" 13 | }, 14 | "devDependencies": { 15 | "grunt": "^1.0.4", 16 | "grunt-concat-css": "^0.3.2", 17 | "grunt-contrib-coffee": "^2.1.0", 18 | "grunt-contrib-concat": "^1.0.1", 19 | "grunt-contrib-cssmin": "^3.0.0", 20 | "grunt-contrib-uglify": "^4.0.1", 21 | "grunt-contrib-watch": "^1.1.0" 22 | }, 23 | "scripts": { 24 | "test": "echo \"Error: no test specified\" && exit 1" 25 | }, 26 | "repository": { 27 | "type": "git", 28 | "url": "git+https://github.com/4xmen/mpdatepicker.git" 29 | }, 30 | "keywords": [ 31 | "persian", 32 | "datepicker", 33 | "datetimepicker", 34 | "calendar" 35 | ], 36 | "author": { 37 | "name": "4xmen", 38 | "url": "http://4xmen.ir" 39 | }, 40 | "license": "GPL-3.0", 41 | "bugs": { 42 | "url": "https://github.com/4xmen/mpdatepicker/issues" 43 | }, 44 | "homepage": "https://github.com/4xmen/mpdatepicker#readme" 45 | } 46 | -------------------------------------------------------------------------------- /example/static-calendar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Materialize Persian date picker 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 20 | 21 | 22 | 23 | 24 |
25 | 26 |
27 | 28 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Materialize Persian date picker 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 |
20 | 21 | 22 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # mpdatepicker 2 | 3 | Materialize Persian Date and time picker by A1Gard 4xmen.ir 4 | 5 | ## installation 6 | 7 | + npm: 8 | + `npm i mpdatepicker` 9 | + yarn: 10 | + `yarn add mpdatepicker` 11 | 12 | ## screenshot 13 | 14 |
15 | 16 | ![mp datetime picker](screenshot.png) 17 | 18 |
19 | 20 | ## How to use 21 | 22 | Add jquery: 23 | 24 | ```html 25 | 26 | 27 | ``` 28 | 29 | Add additional font for best view or use [Vazir-Matn-Font](https://www.npmjs.com/package/vazirmatn): 30 | 31 | ```html 32 | 33 | 34 | ``` 35 | 36 | Add css and jquery plugin To end of your project: 37 | 38 | ```html 39 | 40 | 41 | 42 | ``` 43 | 44 | 45 | Add Html : 46 | 47 | ```Html 48 | 50 | ``` 51 | 52 | 53 | use plugin : 54 | 55 | ```javascript 56 | $(function () { 57 | $(".sample-date-picker").mpdatepicker({ 58 | 'timePicker': true, 59 | onOpen: function () { 60 | console.log('open'); 61 | }, 62 | onSelect: function (selected) { 63 | console.log('select', selected); 64 | }, 65 | onChange: function (oldVal, newVal) { 66 | console.log('change', oldVal, newVal); 67 | }, 68 | onClose: function () { 69 | console.log('close'); 70 | }, 71 | }); 72 | }); 73 | ``` 74 | 75 | ## Options & events 76 | 77 | | name | default | action | 78 | | ------------ | ------------ | ------------ | 79 | | timePicker | `false` | time picker active or not | 80 | | timeChangeSensitivity | `5` | time picker sensitivity on drag up/down | 81 | | fontStyle | `null` | font style for modal | 82 | | gSpliter | `-` | split date | 83 | | onOpen | event | trigger when open modal | 84 | | onClose | event | trigger when close modal | 85 | | onSelect | event | trigger on select end | 86 | | onChange | event | trigger on change selected | 87 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- 1 | module.exports = function( grunt ) { 2 | grunt.initConfig( { 3 | // Import package manifest 4 | pkg: grunt.file.readJSON( "package.json" ), 5 | // Banner definitions 6 | meta: { 7 | banner: "/*\n" + 8 | " * <%= pkg.title || pkg.name %> - v<%= pkg.version %>\n" + 9 | " * <%= pkg.description %>\n" + 10 | " * <%= pkg.homepage %>\n" + 11 | " *\n" + 12 | " * Made by <%= pkg.author.name %>\n" + 13 | " * Under <%= pkg.license %> License\n" + 14 | " */\n" 15 | }, 16 | // Concat definitions 17 | concat: { 18 | options: { 19 | banner: "<%= meta.banner %>" 20 | }, 21 | dist: { 22 | src: [ "src/<%= pkg.name %>.js" ], 23 | dest: "dist/<%= pkg.name %>.js" 24 | } 25 | }, 26 | //Concat css definitions 27 | concat_css: { 28 | options: {}, 29 | all: { 30 | src: [ "src/*.css" ], 31 | dest: "dist/<%= pkg.name %>.css" 32 | }, 33 | }, 34 | // Minify definitions 35 | uglify: { 36 | dist:{ 37 | files: { 38 | 'dist/jquery.mpdatepicker.min.js':'src/jquery.mpdatepicker.js', 39 | } 40 | } 41 | }, 42 | // Minify css 43 | cssmin: { 44 | dist:{ 45 | files: { 46 | 'dist/jquery.mpdatepicker.min.css':'src/jquery.mpdatepicker.css', 47 | } 48 | } 49 | }, 50 | // CoffeeScript compilation 51 | coffee: { 52 | compile: { 53 | files: { 54 | "dist/<%= pkg.name %>.js": "src/<%= pkg.name %>.coffee" 55 | } 56 | } 57 | }, 58 | // watch for changes to source 59 | // Better than calling grunt a million times 60 | // (call 'grunt watch') 61 | watch: { 62 | default: { 63 | files: [ "src/*", "test/**/*" ], 64 | tasks: [ "default" ], 65 | }, 66 | build: { 67 | files: [ "src/*", "test/**/*" ], 68 | tasks: [ "buildFull" ], 69 | } 70 | } 71 | } ); 72 | grunt.loadNpmTasks( "grunt-contrib-concat" ); 73 | grunt.loadNpmTasks( "grunt-contrib-uglify" ); 74 | grunt.loadNpmTasks( "grunt-contrib-coffee" ); 75 | grunt.loadNpmTasks( "grunt-contrib-watch" ); 76 | grunt.loadNpmTasks( "grunt-contrib-cssmin" ); 77 | grunt.loadNpmTasks( 'grunt-concat-css' ); 78 | grunt.registerTask( "build", [ "concat", "uglify", "concat_css", "cssmin" ] ); 79 | grunt.registerTask( "default", [ "build" ] ); 80 | grunt.registerTask( "buildFull", [ "build" ] ); 81 | }; -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | ### Node ### 3 | # Logs 4 | logs 5 | *.log 6 | npm-debug.log* 7 | yarn-debug.log* 8 | yarn-error.log* 9 | yarn.lock* 10 | package-lock.json* 11 | # Runtime data 12 | pids 13 | *.pid 14 | *.seed 15 | *.pid.lock 16 | 17 | # Directory for instrumented libs generated by jscoverage/JSCover 18 | lib-cov 19 | 20 | # Coverage directory used by tools like istanbul 21 | coverage 22 | 23 | # nyc test coverage 24 | .nyc_output 25 | 26 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 27 | .grunt 28 | 29 | # Bower dependency directory (https://bower.io/) 30 | bower_components 31 | 32 | # node-waf configuration 33 | .lock-trslript 34 | 35 | # Compiled binary addons (https://nodejs.org/api/addons.html) 36 | build/Release 37 | 38 | # Dependency directories 39 | node_modules/ 40 | jspm_packages/ 41 | 42 | # TypeScript v1 declaration files 43 | typings/ 44 | 45 | # Optional npm cache directory 46 | .npm 47 | 48 | # Optional eslint cache 49 | .eslintcache 50 | 51 | # Optional REPL history 52 | .node_repl_history 53 | 54 | # Output of 'npm pack' 55 | *.tgz 56 | 57 | # Yarn Integrity file 58 | .yarn-integrity 59 | 60 | # dotenv environment variables file 61 | .env 62 | .env.test 63 | 64 | # parcel-bundler cache (https://parceljs.org/) 65 | .cache 66 | 67 | # next.js build output 68 | .next 69 | 70 | # nuxt.js build output 71 | .nuxt 72 | 73 | # vuepress build output 74 | .vuepress/dist 75 | 76 | # Serverless directories 77 | .serverless/ 78 | 79 | # FuseBox cache 80 | .fusebox/ 81 | 82 | # DynamoDB Local files 83 | .dynamodb/ 84 | 85 | ### PhpStorm ### 86 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm 87 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 88 | 89 | # User-specific stuff 90 | .idea/**/workspace.xml 91 | .idea/**/tasks.xml 92 | .idea/**/usage.statistics.xml 93 | .idea/**/dictionaries 94 | .idea/**/shelf 95 | .idea/* 96 | 97 | # Generated files 98 | .idea/**/contentModel.xml 99 | 100 | # Sensitive or high-churn files 101 | .idea/**/dataSources/ 102 | .idea/**/dataSources.ids 103 | .idea/**/dataSources.local.xml 104 | .idea/**/sqlDataSources.xml 105 | .idea/**/dynamic.xml 106 | .idea/**/uiDesigner.xml 107 | .idea/**/dbnavigator.xml 108 | 109 | # Gradle 110 | .idea/**/gradle.xml 111 | .idea/**/libraries 112 | 113 | # Gradle and Maven with auto-import 114 | # When using Gradle or Maven with auto-import, you should exclude module files, 115 | # since they will be recreated, and may cause churn. Uncomment if using 116 | # auto-import. 117 | # .idea/modules.xml 118 | # .idea/*.iml 119 | # .idea/modules 120 | 121 | # CMake 122 | cmake-build-*/ 123 | 124 | # Mongo Explorer plugin 125 | .idea/**/mongoSettings.xml 126 | 127 | # File-based project format 128 | *.iws 129 | 130 | # IntelliJ 131 | out/ 132 | 133 | # mpeltonen/sbt-idea plugin 134 | .idea_modules/ 135 | 136 | # JIRA plugin 137 | atlassian-ide-plugin.xml 138 | 139 | # Cursive Clojure plugin 140 | .idea/replstate.xml 141 | 142 | # Crashlytics plugin (for Android Studio and IntelliJ) 143 | com_crashlytics_export_strings.xml 144 | crashlytics.properties 145 | crashlytics-build.properties 146 | fabric.properties 147 | 148 | # Editor-based Rest Client 149 | .idea/httpRequests 150 | 151 | # Android studio 3.1+ serialized cache file 152 | .idea/caches/build_file_checksums.ser 153 | 154 | ### PhpStorm Patch ### 155 | # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 156 | 157 | # *.iml 158 | # modules.xml 159 | # .idea/misc.xml 160 | # *.ipr 161 | 162 | # Sonarlint plugin 163 | .idea/sonarlint -------------------------------------------------------------------------------- /dist/jquery.mpdatepicker.min.css: -------------------------------------------------------------------------------- 1 | #mpdatepicker-modal{position:fixed;left:0;right:0;top:0;bottom:0;z-index:99999;font-family:"Vazirmatn",sans-serif;font-size:11pt;display:none;align-content:center;justify-content:center}.mpdatepicker{background:no-repeat 3px;text-align:center;padding:7px;padding-left:25px;border:1px solid silver;background-position-x:5px;background-position-y:2px}#mpdatepicker-block{font-family:"Vazirmatn",sans-serif;direction:rtl;text-align:center;padding:10px 0;border-radius:4px 4px 0 0;background:#fff;min-height:200px;margin:auto;width:400px;box-shadow:0 0 30px #444;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:100%}#mpdatepicker-block.static{position:static;margin:inherit;top:auto;left:auto;right:auto;bottom:auto;direction:rtl}#mpdatepicker-block table{width:95%;margin:auto;box-shadow:none}#mpdatepicker-block table th{width:14.28571%;text-align:center !important;padding:7px;font-weight:900;color:#02a695}#mpdatepicker-block table td{padding:7px 3px;cursor:pointer;text-align:center !important;border:solid 2px transparent}#mpdatepicker-block table td.mp-other-month{color:black;background-color:#C0E9E470}#mpdatepicker-block table td.selected{border:solid 2px #39f;border-radius:3px}#mpdatepicker-block table td.today{font-weight:900;text-shadow:0 0 3px #333}#mpdatepicker-block table td:hover{background:#b1dcfb}.rotate{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg)}.mpbtn{padding:10px;cursor:pointer;font-family:"Vazirmatn",sans-serif;padding-bottom:4px}.mpbtn:hover{background:#b1dcfb}.mpfleft{float:left;font-size:30px;padding-top:0}.mpfright{float:right;font-size:30px;padding-top:0}.mpheader{margin:5px auto}.mp-picked{border:2px solid #36f !important;border-radius:3px}.mp-today,.mp-today-td{font-weight:900;color:black;background-color:#02A695A1}.mpdatepicker{background-image:none !important}#mpmonth{display:inline-block;padding:5px;font-size:15px;font-weight:700;position:relative;width:9%;text-align:center}#mpmonth:hover{background:#b1dcfb}#mpmonth ul{display:none;position:absolute;background:#fff;list-style:none;padding:5px 0;bottom:-200px;right:-20px;border-radius:4px;box-shadow:1px 1px 7px #000}@media(max-height:1000px){#mpmonth ul{width:250px}#mpmonth ul li{width:47%;float:right;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}}#mpmonth ul li{padding:5px;width:120px;font-weight:100;border-bottom:2px solid transparent;cursor:pointer}#mpmonth ul li:hover{border-bottom:2px solid #13a7c7;background:#b1dcfb}#mpmonth span{display:block;text-align:center;cursor:pointer}#mpyear{width:25%;text-align:center;padding:5px;font-size:15px;font-weight:700;display:inline-block;color:gray}input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}#mpyear input{width:6em;text-align:center;padding:5px;border:0;outline:0}#mpyear input:focus{outline:#b1dcfb 3px solid}.mp-footer{display:block;padding:0 5%}.mp-footer a{width:30%;display:inline-block;padding:7px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer}.mp-footer a.mp-close:hover{background:rgba(255,128,0,.3)}.mp-footer a.mp-today:hover{background:rgba(0,255,0,.3)}.mp-footer a.mp-clear:hover{background:rgba(255,0,0,.3)}.mp-footer input{width:3.3em;text-align:center}.mptimepicker{display:grid;grid-template-columns:repeat(3,1fr);direction:ltr}.mptimepicker *{transition:.2s}.mptimepicker>div{height:85px;overflow:hidden;cursor:ns-resize;position:relative}.mptimepicker .mp-holder{position:absolute;top:2em;left:0;right:0;line-height:1.706em}.mp-select-item{color:#666}.mp-select-item.active{color:#000;font-size:19px !important;background:#00000033} -------------------------------------------------------------------------------- /src/jquery.mpdatepicker.css: -------------------------------------------------------------------------------- 1 | #mpdatepicker-modal{ 2 | position: fixed; 3 | left: 0; 4 | right: 0; 5 | top: 0; 6 | bottom: 0; 7 | z-index: 99999; 8 | font-family: 'VazirCodeX','Vazir Code', sans-serif; 9 | font-size: 11pt; 10 | display: none; 11 | align-content: center; 12 | justify-content: center; 13 | } 14 | .mpdatepicker { 15 | background:no-repeat 3px; 16 | text-align:center; 17 | padding:7px; 18 | padding-left:25px; 19 | border:1px solid silver; 20 | background-position-x: 5px; 21 | background-position-y: 2px; 22 | } 23 | #mpdatepicker-block { 24 | font-family: 'VazirCodeX'; 25 | direction: rtl; 26 | text-align:center; 27 | padding:10px 0; 28 | border-radius: 4px 4px 0 0; 29 | background: #fff; 30 | /*position: fixed;*/ 31 | /*left:0;*/ 32 | /*right:0;*/ 33 | /*bottom:0px;*/ 34 | min-height:200px; 35 | margin:auto; 36 | width:400px; 37 | box-shadow: 0px 0px 30px #444 ; 38 | -webkit-touch-callout: none; /* iOS Safari */ 39 | -webkit-user-select: none; /* Chrome/Safari/Opera */ 40 | -khtml-user-select: none; /* Konqueror */ 41 | -moz-user-select: none; /* Firefox */ 42 | -ms-user-select: none; /* Internet Explorer/Edge */ 43 | user-select: none; /* Non-prefixed version, currently 44 | not supported by any browser */ 45 | max-width: 100%; 46 | } 47 | 48 | #mpdatepicker-block.static { 49 | position: static; 50 | margin: inherit; 51 | top: auto; 52 | left: auto; 53 | right: auto; 54 | bottom: auto; 55 | direction: rtl; 56 | } 57 | 58 | #mpdatepicker-block table{ 59 | width: 95% ; 60 | margin: auto; 61 | box-shadow: none; 62 | } 63 | 64 | 65 | #mpdatepicker-block table th{ 66 | width: 14.285710%; 67 | text-align: center !important; 68 | padding: 7px; 69 | font-weight: 900 ; 70 | } 71 | #mpdatepicker-block table td{ 72 | padding:7px 3px; 73 | cursor: pointer ; 74 | text-align: center !important; 75 | border: solid 2px transparent; 76 | } 77 | 78 | #mpdatepicker-block table td.mp-other-month{ 79 | color: gray; 80 | } 81 | 82 | 83 | #mpdatepicker-block table td.selected{ 84 | border: solid 2px #3399ff; 85 | border-radius: 3px; 86 | } 87 | 88 | #mpdatepicker-block table td.today{ 89 | font-weight: 900; 90 | text-shadow: 0px 0px 3px #333 ; 91 | } 92 | 93 | 94 | #mpdatepicker-block table td:hover{ 95 | background:#b1dcfb ; 96 | } 97 | 98 | .rotate { 99 | 100 | /* Safari */ 101 | -webkit-transform: rotate(-90deg); 102 | 103 | /* Firefox */ 104 | -moz-transform: rotate(-90deg); 105 | 106 | /* IE */ 107 | -ms-transform: rotate(-90deg); 108 | 109 | /* Opera */ 110 | -o-transform: rotate(-90deg); 111 | 112 | /* Internet Explorer */ 113 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); 114 | 115 | } 116 | 117 | .mpbtn{ 118 | padding:10px; 119 | cursor: pointer ; 120 | font-family: 'arial'; 121 | padding-bottom: 4px; 122 | } 123 | .mpbtn:hover{ 124 | background:#b1dcfb 125 | } 126 | .mpfleft{ 127 | float:left; 128 | font-size:30px; 129 | padding-top:0; 130 | } 131 | .mpfright{ 132 | float:right; 133 | font-size:30px; 134 | padding-top:0 135 | } 136 | 137 | .mpheader{ 138 | /*width:140px;*/ 139 | margin:5px auto; 140 | /*border:1px solid silver;*/ 141 | } 142 | 143 | .mp-picked{ 144 | border: 2px solid #3366ff !important; 145 | border-radius: 3px; 146 | } 147 | 148 | .mp-today-td,.mp-today{ 149 | font-weight: 900; 150 | color: #3366ff; 151 | text-shadow: 1px 1px 2px #000; 152 | /*box-shadow: inset #3366ff 0 0 4px;*/ 153 | } 154 | 155 | .mpdatepicker {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAXCAYAAAALHW+jAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AsWCCkyWrAXowAAABl0RVh0Q29tbWVudABDcmVhdGVkIHdpdGggR0lNUFeBDhcAAAJDSURBVDjLnZU9a1RREIaf2b2ra9gFU6g5uLEwIgoBBRWsRFSiweYq/gIbQSsFDVpIQBSsxMKf4AcIcgoRRFGLIGJnExU/ihQeTSlKkt14x2YOHC53N9Epdnlnzpk795135kKFOa+XndcGfcx53ei8TjmvUo7V+ty5AWynvx0BrgKrTgjQGxBbBjTkUpQD4rx2gPdAqxQrBjxQ4/3E9x0YrwGXSsnG7f8k0K1I9ge4BvwGziT+EeB8DdhQunDY+CmANRUJ68BH4CawtxRrifM6BRyqeCVhsFWdeZQBXyr4+1+by4yrU8B8KjXgW1JB2zq7kKhjkzUiNmgzcDt2cSbk0gG2AVuAzyGX0QRfB04DW823C5gDxgyPWkGaJRIh5LJok6AlvAz0Qi5dww2rbCnkouZbUdj9tDfQJ87rXWACeG0PUOv6MyAzPAb8SnjOgAPAS4sXwDHgTmbEzwMPTHfLpq/7wDrDx4EAvLPzTWAP8DAZxYOA4Lzec16fl7bJhxK+4LxOJrjtvH6NvJnvh/N66184lNX4YpcbzusQsNa2TN15zUx/PXv1lvO63pK0je9hU0QvJs+M0N1GcGxKB5ixuVUb/EXgYjLPI8DTpNvDUYd14E3I5WjCx2zIZX+CzwKzIZdXhgX4FHLZl5wJgMSK6iss3iYwlG4VoFb6BNTij8RJGSDYLrCU4AWgiFOSbh9xXqeBc8ALq7QAJoHHQMPwDuCnLYPI/QTwJBndE8AVcV6btix3JpWWd13V7kt9ArwFpv8Ctt/A5Glz+/0AAAAASUVORK5CYII=") !important;} 156 | 157 | #mpmonth{ 158 | display: inline-block; 159 | padding: 5px; 160 | font-weight: 700; 161 | position:relative; 162 | width: 25%; 163 | text-align: center; 164 | } 165 | 166 | #mpmonth:hover{ 167 | background: #b1dcfb ; 168 | } 169 | 170 | 171 | #mpmonth ul{ 172 | display: none; 173 | position: absolute; 174 | background: #fff ; 175 | list-style:none; 176 | padding: 5px 0; 177 | bottom:-200px; 178 | right:-20px; 179 | border-radius: 4px; 180 | box-shadow: 1px 1px 7px #000 ; 181 | } 182 | 183 | 184 | /*-450px height*/ 185 | @media ( max-height :1000px ) { 186 | 187 | #mpmonth ul{ 188 | width: 250px; 189 | } 190 | #mpmonth ul li{ 191 | width: 47%; 192 | float: right; 193 | -moz-box-sizing: border-box; 194 | -webkit-box-sizing: border-box; 195 | box-sizing:border-box; 196 | } 197 | } 198 | 199 | #mpmonth ul li{ 200 | padding: 5px; 201 | width: 120px; 202 | font-weight: 100; 203 | border-bottom: 2px solid transparent; 204 | cursor: pointer; 205 | } 206 | #mpmonth ul li:hover{ 207 | border-bottom: 2px solid #13a7c7; 208 | background: #b1dcfb ; 209 | } 210 | 211 | #mpmonth span{ 212 | display: block; 213 | text-align: center; 214 | cursor: pointer; 215 | } 216 | 217 | #mpyear{ 218 | width: 25%; 219 | text-align: center; 220 | padding: 5px; 221 | display: inline-block; 222 | color:gray; 223 | } 224 | 225 | #mpyear input{ 226 | width: 6em; 227 | text-align: center; 228 | padding: 5px; 229 | border: 0; 230 | outline: none ; 231 | } 232 | 233 | #mpyear input:focus{ 234 | outline: #b1dcfb 3px solid ; 235 | } 236 | 237 | 238 | .mp-footer{ 239 | display: block; 240 | padding: 0 5% ; 241 | } 242 | 243 | .mp-footer a{ 244 | width: 30%; 245 | display: inline-block; 246 | padding: 7px; 247 | -moz-box-sizing: border-box; 248 | -webkit-box-sizing: border-box; 249 | box-sizing:border-box; 250 | cursor: pointer; 251 | } 252 | 253 | .mp-footer a.mp-close:hover{ 254 | background: rgba(255,128,0,0.3) ; 255 | } 256 | .mp-footer a.mp-today:hover{ 257 | background: rgba(0,255,0,0.3) ; 258 | } 259 | .mp-footer a.mp-clear:hover{ 260 | background: rgba(255,0,0,0.3) ; 261 | } 262 | 263 | .mp-footer input{ 264 | width: 3.3em; 265 | text-align: center; 266 | } 267 | 268 | .mptimepicker{ 269 | display: grid; 270 | grid-template-columns: repeat(3,1fr); 271 | direction: ltr; 272 | } 273 | .mptimepicker *{ 274 | transition: 200ms; 275 | } 276 | .mptimepicker > div{ 277 | height: 85px; 278 | overflow: hidden; 279 | cursor: ns-resize; 280 | position: relative; 281 | } 282 | .mptimepicker .mp-holder{ 283 | position: absolute; 284 | top: 2em; 285 | left: 0; 286 | right: 0; 287 | line-height: 1.706em; 288 | } 289 | .mp-select-item{ 290 | color: #666666; 291 | } 292 | .mp-select-item.active{ 293 | color: #000000; 294 | font-size: 19px !important; 295 | background: #00000033; 296 | } 297 | -------------------------------------------------------------------------------- /dist/jquery.mpdatepicker.min.js: -------------------------------------------------------------------------------- 1 | !function(h){h.fn.mpdatepicker=function(t){h.mpdt=this;let c=h.extend({modal_bg:"rgba(0,0,0,0.5)",datepicker_bg:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAXCAYAAAALHW+jAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AsWCCkyWrAXowAAABl0RVh0Q29tbWVudABDcmVhdGVkIHdpdGggR0lNUFeBDhcAAAJDSURBVDjLnZU9a1RREIaf2b2ra9gFU6g5uLEwIgoBBRWsRFSiweYq/gIbQSsFDVpIQBSsxMKf4AcIcgoRRFGLIGJnExU/ihQeTSlKkt14x2YOHC53N9Epdnlnzpk795135kKFOa+XndcGfcx53ei8TjmvUo7V+ty5AWynvx0BrgKrTgjQGxBbBjTkUpQD4rx2gPdAqxQrBjxQ4/3E9x0YrwGXSsnG7f8k0K1I9ge4BvwGziT+EeB8DdhQunDY+CmANRUJ68BH4CawtxRrifM6BRyqeCVhsFWdeZQBXyr4+1+by4yrU8B8KjXgW1JB2zq7kKhjkzUiNmgzcDt2cSbk0gG2AVuAzyGX0QRfB04DW823C5gDxgyPWkGaJRIh5LJok6AlvAz0Qi5dww2rbCnkouZbUdj9tDfQJ87rXWACeG0PUOv6MyAzPAb8SnjOgAPAS4sXwDHgTmbEzwMPTHfLpq/7wDrDx4EAvLPzTWAP8DAZxYOA4Lzec16fl7bJhxK+4LxOJrjtvH6NvJnvh/N66184lNX4YpcbzusQsNa2TN15zUx/PXv1lvO63pK0je9hU0QvJs+M0N1GcGxKB5ixuVUb/EXgYjLPI8DTpNvDUYd14E3I5WjCx2zIZX+CzwKzIZdXhgX4FHLZl5wJgMSK6iss3iYwlG4VoFb6BNTij8RJGSDYLrCU4AWgiFOSbh9xXqeBc8ALq7QAJoHHQMPwDuCnLYPI/QTwJBndE8AVcV6btix3JpWWd13V7kt9ArwFpv8Ctt/A5Glz+/0AAAAASUVORK5CYII=",fontStyle:null,gSpliter:"-",timePicker:null,timeChangeSensitivity:5,mainContentId:"#mpdatepicker-modal",onOpen:function(){},onSelect:function(t){},onChange:function(t,e){},onClose:function(){}},t);return this.persian_month_names=["","فروردین","اردیبهشت","خرداد","تیر","مرداد","شهریور","مهر","آبان","آذر","دی","بهمن","اسفند"],this.getPersianWeekDay=function(t){t=this.imploiter(this.Persian2Gregorian(this.exploiter(t)),"/");let e=new Date(t+" 00:00:00").getDay()+1;return 6.mpdatepicker { background-image: url("+c.datepicker_bg+") !important;background-repeat: no-repeat !important;} ").appendTo("head")},this.upDownCheck=function(t,e,a,i=59){let n=parseInt(h(e).val());h(a+h(e).val()).removeClass("active"),t?0'+this.parseHindi(r[2]))+""}for(n=1;n<=t;n++){var d=this.pDate2Timestamp(a+"/"+e+"/"+n);let t="selectable";a+"/"+(1===e.toString().length?"0"+e:e)+"/"+(1===n.toString().length?"0"+n:n)===i&&(t+=" mp-picked");var l=this.Persian2Gregorian([a,e,n]);m.getDate()===parseInt(l[2])&&m.getMonth()+1===parseInt(l[1])&&m.getFullYear()===parseInt(l[0])&&(t+=" mp-today-td"),s=s+(''+this.parseHindi(n))+"",(n+p)%7==0&&(s+="")}var o=this.getPersianWeekDay(a+"/"+e+"/"+(n-1));for(let t=0;t<6-o;t++)s=s+(''+this.parseHindi(t+1))+"";s+="",h("#mpdatepicker-block table tbody").html(s),h(".selectable").bind("click",function(){try{h.mpdt.targetPicker.val(h(this).attr("title")),void 0!==h.mpdt.targetPicker.attr("data-gtarget")&&h(h.mpdt.targetPicker.attr("data-gtarget")).val(h(this).attr("data-gdate"))}catch(t){console.warn("target err")}var t=h.mpdt.calcTime(parseInt(h(this).attr("data-timestamp")));h.mpdt.targetPicker.hasClass("mptimepick")&&h.mpdt.targetPicker.val(h.mpdt.make2number(parseInt(h("#mp-hour").val()))+":"+h.mpdt.make2number(parseInt(h("#mp-min").val()))+":"+h.mpdt.make2number(parseInt(h("#mp-sec").val()))+" "+h.mpdt.targetPicker.val()),c.onSelect(t);let e;e="null"==h.mpdt.targetPicker.attr("data-timestamp")||void 0===h.mpdt.targetPicker.attr("data-timestamp")?null:parseInt(h.mpdt.targetPicker.attr("data-timestamp")),c.onChange(e,t),h.mpdt.targetPicker.attr("data-timestamp",t),c.onClose(),h(c.mainContentId).fadeOut(200)}),h(".mp-prv").unbind("click.prvmn").bind("click.prvmn",function(){let t=parseInt(h("#mpyear input").val());h.mpdt.thisMonth-1==0&&(h.mpdt.thisMonth=13,t++),h.mpdt.ShowMonth(h.mpdt.thisMonth-1,t,h.mpdt.selectedDate)}),h(".mp-nxt").unbind("click.nxtmn").bind("click.nxtmn",function(){let t=parseInt(h("#mpyear input").val());h.mpdt.thisMonth+1===13&&(h.mpdt.thisMonth=0,t--),h.mpdt.ShowMonth(h.mpdt.thisMonth+1,t,h.mpdt.selectedDate)}),h(".mp-clear").unbind("click.clk").bind("click.clk",function(){h.mpdt.targetPicker.val(""),h.mpdt.selectedDate="",h(c.mainContentId).fadeOut(200),c.onSelect(null),c.onClose()}),h(".mp-today").unbind("click.clk").bind("click.clk",function(){var t=new Date,e=h.mpdt.pTimestamp2Date(Math.round(t.getTime()/1e3)),t=h.mpdt.calcTime(Math.round(t.getTime()/1e3));c.onSelect(t);let a;a="null"==h.mpdt.targetPicker.attr("data-timestamp")||void 0===h.mpdt.targetPicker.attr("data-timestamp")?null:parseInt(h.mpdt.targetPicker.attr("data-timestamp")),c.onChange(a,t),h.mpdt.targetPicker.attr("data-timestamp",t),h.mpdt.targetPicker.val(e),h.mpdt.targetPicker.hasClass("mptimepick")&&h.mpdt.targetPicker.val(h.mpdt.make2number(parseInt(h("#mp-hour").val()))+":"+h.mpdt.make2number(parseInt(h("#mp-min").val()))+":"+h.mpdt.make2number(parseInt(h("#mp-sec").val()))+" "+h.mpdt.targetPicker.val()),h(c.mainContentId).fadeOut(200),c.onClose()}),h(".mp-close").unbind("click.clk").bind("click.clk",function(){h(c.mainContentId).fadeOut(200),c.onClose()})},this.AddDatepcikerBlock=function(){h(c.mainContentId).append(`
2 |
    اردیبهشت
    3 |
    ش ی د س چ پ ج
    4 |
    `);for(let t=0;t<60;t++)t<24&&h("#mp-select-hour .mp-holder").append(`
    `+h.mpdt.make2number(t)+"
    "),h("#mp-select-min .mp-holder").append(`
    `+h.mpdt.make2number(t)+"
    "),h("#mp-select-sec .mp-holder").append(`
    `+h.mpdt.make2number(t)+"
    ");var a,i,n;h(this.persian_month_names).each(function(t,e){0!==t&&h("#mpmonth ul").append("
  • "+this+"
  • ")}),h("#mp-select-hour").bind("mousewheel",function(t){t.preventDefault(),h.mpdt.upDownCheck(0c.timeChangeSensitivity){var e=i>t.pageY;switch(console.log(e),n){case"h":h.mpdt.upDownCheck(e,"#mp-hour","#mp-h-",23);break;case"m":h.mpdt.upDownCheck(e,"#mp-min","#mp-m-");break;case"s":h.mpdt.upDownCheck(e,"#mp-sec","#mp-s-")}i=t.pageY}}),h("#mpmonth ul li").bind("click.select",function(){var t=h.trim(h(this).text());h("#mpmonth span").text(t),h.mpdt.ShowMonth(h(this).attr("data-id"),h("#mpyear input").val(),h.mpdt.selectedDate),h("#mpmonth ul").slideUp(100)}),h("#mpyear input").bind("change.select click.select",function(){h.mpdt.ShowMonth(window.mp_last_month,h(this).val(),h.mpdt.selectedDate)}),h("#mpmonth span").bind("click.monthselect",function(){h("#mpmonth ul").slideDown(200)})},this.MakeModalBg=function(){0===h(c.mainContentId).length&&(h("body").append('
    '),h.mpdt.AddDatepcikerBlock()),h(c.mainContentId).bind("mousedown.close",function(t){h(t.target).is(this)&&(c.onClose(),h(this).fadeOut(400))})},this.IsLeapYear=function(t){return t%4==0&&t%100!=0||t%400==0&&t%100==0},this.parseHindi=function(t){let e=t.toString();var a,i=["0","1","2","3","4","5","6","7","8","9"],n=["۰","۱","۲","۳","۴","۵","۶","۷","۸","۹"];for(a in i)e=e.replace(new RegExp(i[a],"g"),n[a]);return e},this.exploiter=function(t,e){t=t.split(e=void 0===e?"/":e);return void 0!==t[2]&&t[0].lengthp[s];s++)i-=p[s];else for(s=0;i>n[s];s++)i-=n[s];return++s<10&&(s="0"+s),[m,s,i]},this.Gregorian2Persian=function(t){let e,a,i,n,p,m,s,r,d,l,o;if(e=t[0],a=t[1],i=t[2],n=[31,31,31,31,31,31,30,30,30,30,30,29],p=[0,0,31,59,90,120,151,181,212,243,273,304,334,365][parseInt(a)]+parseInt(i),m=this.IsLeapYear(e),s=this.IsLeapYear(e-1),79n[o];o++)r-=n[o];else{if(r=s||m&&2n[o];o++)r-=n[o]}return 13==(l=(l=++o)<10?l="0"+l:l)&&(l=12,r=30),1==l.toString().length&&(l="0"+l),1==r.toString().length&&(r="0"+r),[d.toString(),l,r]},this.handleCal=function(t){var e=10!==t.length?(e=new Date,e=h.mpdt.pTimestamp2Date(Math.round(e.getTime()/1e3)),h.mpdt.exploiter(e)):(t=1==(e=h.mpdt.exploiter(" ",t)).length?t:e[1],h.mpdt.exploiter(t));return e},this.each(function(){h(this).addClass("mpdatepicker"),c.timePicker&&h(this).addClass("mptimepick"),h(this).bind("focus.open",function(){c.onOpen(),""===h(this).val()&&h(this).attr("data-timestamp","null"),h(c.mainContentId).fadeIn(400).css("display","flex");var t=h.trim(h(this).val()),t=h.mpdt.handleCal(t);void 0===h(this).attr("data-timestamp")&&h(this).attr("data-timestamp",h.mpdt.pDate2Timestamp(t[0]+"/"+t[1]+"/"+t[2])),h(this).hasClass("mptimepick")?h(".mptimepicker").show():h(".mptimepicker").hide(),h.mpdt.ShowMonth(t[1],t[0],h(this).val()),h.mpdt.selectedDate=h(this).val(),h.mpdt.targetPicker=h(this),c.timePicker&&(h("#mp-h-"+h("#mp-hour").val()).addClass("active"),h("#mp-m-"+h("#mp-min").val()).addClass("active"),h("#mp-s-"+h("#mp-sec").val()).addClass("active"))}),h.mpdt.MakeModalBg(),h.mpdt.WriteCSS()}),this.attachCal=function(t){var e=h("#mpdatepicker-block").detach(),t=(h(t).append(e),h.mpdt.handleCal(""));h("#mpdatepicker-block").addClass("static"),h(".mptimepicker, .mp-clear, .mp-close, .mp-today").remove(),h.mpdt.ShowMonth(t[1],t[0],""),h.mpdt.selectedDate=""},this}}(jQuery); -------------------------------------------------------------------------------- /src/jquery.mpdatepicker.js: -------------------------------------------------------------------------------- 1 | ; 2 | (function ($) { 3 | 4 | $.fn.mpdatepicker = function (options) { 5 | 6 | $.mpdt = this; 7 | 8 | let settings = $.extend({ 9 | modal_bg: 'rgba(0,0,0,0.5)', 10 | datepicker_bg: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAXCAYAAAALHW+jAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AsWCCkyWrAXowAAABl0RVh0Q29tbWVudABDcmVhdGVkIHdpdGggR0lNUFeBDhcAAAJDSURBVDjLnZU9a1RREIaf2b2ra9gFU6g5uLEwIgoBBRWsRFSiweYq/gIbQSsFDVpIQBSsxMKf4AcIcgoRRFGLIGJnExU/ihQeTSlKkt14x2YOHC53N9Epdnlnzpk795135kKFOa+XndcGfcx53ei8TjmvUo7V+ty5AWynvx0BrgKrTgjQGxBbBjTkUpQD4rx2gPdAqxQrBjxQ4/3E9x0YrwGXSsnG7f8k0K1I9ge4BvwGziT+EeB8DdhQunDY+CmANRUJ68BH4CawtxRrifM6BRyqeCVhsFWdeZQBXyr4+1+by4yrU8B8KjXgW1JB2zq7kKhjkzUiNmgzcDt2cSbk0gG2AVuAzyGX0QRfB04DW823C5gDxgyPWkGaJRIh5LJok6AlvAz0Qi5dww2rbCnkouZbUdj9tDfQJ87rXWACeG0PUOv6MyAzPAb8SnjOgAPAS4sXwDHgTmbEzwMPTHfLpq/7wDrDx4EAvLPzTWAP8DAZxYOA4Lzec16fl7bJhxK+4LxOJrjtvH6NvJnvh/N66184lNX4YpcbzusQsNa2TN15zUx/PXv1lvO63pK0je9hU0QvJs+M0N1GcGxKB5ixuVUb/EXgYjLPI8DTpNvDUYd14E3I5WjCx2zIZX+CzwKzIZdXhgX4FHLZl5wJgMSK6iss3iYwlG4VoFb6BNTij8RJGSDYLrCU4AWgiFOSbh9xXqeBc8ALq7QAJoHHQMPwDuCnLYPI/QTwJBndE8AVcV6btix3JpWWd13V7kt9ArwFpv8Ctt/A5Glz+/0AAAAASUVORK5CYII=', 11 | fontStyle: null, 12 | gSpliter: '-', 13 | timePicker: null, 14 | timeChangeSensitivity: 5, 15 | mainContentId: "#mpdatepicker-modal", 16 | onOpen: function () { 17 | }, 18 | onSelect: function (selected) { 19 | }, 20 | onChange: function (oldVal, newVal) { 21 | }, 22 | onClose: function () { 23 | }, 24 | }, options); 25 | 26 | 27 | this.persian_month_names = ['', 'فروردین', 'اردیبهشت', 'خرداد', 'تیر', 'مرداد', 'شهریور', 'مهر', 'آبان', 'آذر', 'دی', 'بهمن', 'اسفند']; 28 | 29 | 30 | this.getPersianWeekDay = function (jdate) { 31 | 32 | let tmp = this.imploiter(this.Persian2Gregorian(this.exploiter(jdate)), '/'); 33 | let dd = new Date(tmp + " 00:00:00").getDay() + 1; 34 | if (dd > 6) { 35 | dd -= 7; 36 | } 37 | return dd; 38 | }; 39 | 40 | 41 | this.WriteCSS = function () { 42 | 43 | $(settings.mainContentId).css({ 44 | "background": settings.modal_bg 45 | }); 46 | 47 | 48 | $(' ').appendTo("head"); 51 | 52 | 53 | } 54 | 55 | 56 | this.upDownCheck = function (upOrDown, main, sub, max = 59) { 57 | let val = parseInt($(main).val()); 58 | $(sub + $(main).val()).removeClass('active'); 59 | if (upOrDown) { 60 | if (val > 0) { 61 | val--; 62 | $(main).val(val); 63 | } 64 | } else { 65 | if (val < max) { 66 | val++; 67 | $(main).val(val); 68 | } 69 | } 70 | val *= -1.7049; 71 | val += 2; 72 | $(sub + $(main).val()).addClass('active'); 73 | $(sub + $(main).val()).closest('.mp-holder').css('top', val + 'em'); 74 | } 75 | 76 | this.make2number = function (instr) { 77 | let num = instr.toString(); 78 | return num.length === 2 ? num : '0' + num; 79 | } 80 | 81 | this.gDate2Timestamp = function (stri) { 82 | return Math.round(new Date(stri + " 00:00:00").getTime() / 1000); 83 | } 84 | 85 | this.gTimestamp2Date = function (unix_timestamp) { 86 | let date = new Date(unix_timestamp * 1000); 87 | return date.getFullYear() + settings.gSpliter + date.getMonth() + 1 + settings.gSpliter + date.getDate(); 88 | } 89 | this.pDate2Timestamp = function (stri) { 90 | return this.gDate2Timestamp(this.imploiter(this.Persian2Gregorian(this.exploiter(stri)))); 91 | } 92 | 93 | this.pTimestamp2Date = function (unix_timestamp) { 94 | let date = new Date(unix_timestamp * 1000); 95 | return this.imploiter(this.Gregorian2Persian([date.getFullYear(), date.getMonth() + 1, date.getDate()])); 96 | } 97 | 98 | this.calcTime = function (time) { 99 | if ($.mpdt.targetPicker.hasClass('mptimepick')) { 100 | time += parseInt($("#mp-hour").val()) * 3600; 101 | time += parseInt($("#mp-min").val()) * 60; 102 | time += parseInt($("#mp-sec").val()); 103 | } 104 | return time; 105 | } 106 | 107 | this.pGetLastDayMonth = function (mn, yr) { 108 | let tmp; 109 | let last = 29; 110 | let now = this.pDate2Timestamp(yr + '/' + mn + '/' + (29)); 111 | for (let i = 1; i < 4; i++) { 112 | now += 86400; 113 | tmp = this.exploiter(this.pTimestamp2Date(now)); 114 | if (tmp[2] < last) { 115 | return last; 116 | } else { 117 | last = tmp[2]; 118 | } 119 | } 120 | return last; 121 | } 122 | 123 | this.ShowMonth = function (mn, yr, pickedday) { 124 | 125 | let i; 126 | $.mpdt.thisMonth = parseInt(mn); 127 | $.mpdt.selectedDate = pickedday; 128 | $("#mpmonth span").text(this.persian_month_names[parseInt(mn)]); 129 | $("#mpyear input").val(yr); 130 | 131 | 132 | window.mp_last_month = parseInt(mn); 133 | // 134 | let last_day_of_this_month = this.pGetLastDayMonth(mn, yr); 135 | 136 | // get frist day of month week day 137 | let start_m_weekday = this.getPersianWeekDay(yr + '/' + mn + '/' + '01'); 138 | 139 | 140 | // today 141 | let dtmp = new Date(); 142 | let today = this.imploiter(this.pTimestamp2Date(Math.round(dtmp.getTime() / 1000))); 143 | 144 | let content = ''; 145 | 146 | // show pervius month in calander 147 | for (i = 1; i <= start_m_weekday; i++) { 148 | let tmp = this.pTimestamp2Date(this.pDate2Timestamp(yr + '/' + mn + '/' + '01') - (86400 * 149 | (start_m_weekday - i + 1))); 150 | let tmpx = this.exploiter(tmp); 151 | content = content + ('' + this.parseHindi(tmpx[2]) + ''); 152 | } 153 | //show this month 154 | for (i = 1; i <= last_day_of_this_month; i++) { 155 | 156 | let tmsmp = this.pDate2Timestamp(yr + '/' + mn + '/' + i); 157 | 158 | // class can add 159 | let cls = 'selectable'; 160 | 161 | // is selected date 162 | if (yr + '/' + (mn.toString().length === 1 ? '0' + mn : mn) + '/' + (i.toString().length === 1 ? '0' + i : i) === pickedday) { 163 | cls = cls + ' mp-picked'; 164 | } 165 | // is today 166 | let tdCheck = this.Persian2Gregorian([yr, mn, i]); 167 | if (dtmp.getDate() === parseInt(tdCheck[2]) && dtmp.getMonth() + 1 === parseInt(tdCheck[1]) && dtmp.getFullYear() === parseInt(tdCheck[0])) { 168 | cls = cls + ' mp-today-td'; 169 | } 170 | content = content + ('' + this.parseHindi(i) + ''); 173 | 174 | // console.log(i,start_m_weekday); 175 | if ((i + start_m_weekday) % 7 === 0) { 176 | content = content + (''); 177 | } 178 | 179 | } 180 | 181 | // last day of month week day 182 | let end_m_weekday = this.getPersianWeekDay(yr + '/' + mn + '/' + (i - 1)); 183 | // show next month days 184 | for (let i = 0; i < (6 - end_m_weekday); i++) { 185 | content = content + ('' + this.parseHindi(i + 1) + ''); 186 | } 187 | content += ''; 188 | $("#mpdatepicker-block table tbody").html(content); 189 | 190 | 191 | $(".selectable").bind('click', function () { 192 | try { 193 | $.mpdt.targetPicker.val($(this).attr('title')); 194 | if ($.mpdt.targetPicker.attr('data-gtarget') !== undefined) { 195 | $($.mpdt.targetPicker.attr('data-gtarget')).val($(this).attr('data-gdate')) 196 | } 197 | } catch (e) { 198 | console.warn('target err'); 199 | } 200 | 201 | 202 | let time = $.mpdt.calcTime(parseInt($(this).attr('data-timestamp'))); 203 | if ($.mpdt.targetPicker.hasClass('mptimepick')) { 204 | $.mpdt.targetPicker.val( 205 | $.mpdt.make2number(parseInt($("#mp-hour").val())) + ':' + 206 | $.mpdt.make2number(parseInt($("#mp-min").val())) + ':' + 207 | $.mpdt.make2number(parseInt($("#mp-sec").val())) + ' ' + 208 | $.mpdt.targetPicker.val() 209 | ); 210 | } 211 | settings.onSelect(time); 212 | let oldVal; 213 | if ($.mpdt.targetPicker.attr('data-timestamp') == 'null' || $.mpdt.targetPicker.attr('data-timestamp') === undefined) { 214 | oldVal = null; 215 | } else { 216 | oldVal = parseInt($.mpdt.targetPicker.attr('data-timestamp')); 217 | } 218 | settings.onChange(oldVal, time); 219 | $.mpdt.targetPicker.attr('data-timestamp', time); 220 | settings.onClose(); 221 | $(settings.mainContentId).fadeOut(200); 222 | }); 223 | 224 | 225 | $(".mp-prv").unbind('click.prvmn').bind('click.prvmn', function () { 226 | let yyyy = parseInt($("#mpyear input").val()); 227 | if ($.mpdt.thisMonth - 1 === 0) { 228 | $.mpdt.thisMonth = 13; 229 | yyyy++; 230 | } 231 | $.mpdt.ShowMonth($.mpdt.thisMonth - 1, yyyy, $.mpdt.selectedDate); 232 | }); 233 | $(".mp-nxt").unbind('click.nxtmn').bind('click.nxtmn', function () { 234 | let yyyy = parseInt($("#mpyear input").val()); 235 | if ($.mpdt.thisMonth + 1 === 13) { 236 | $.mpdt.thisMonth = 0; 237 | yyyy--; 238 | } 239 | $.mpdt.ShowMonth($.mpdt.thisMonth + 1, yyyy, $.mpdt.selectedDate); 240 | }); 241 | 242 | $(".mp-clear").unbind('click.clk').bind('click.clk', function () { 243 | $.mpdt.targetPicker.val(''); 244 | $.mpdt.selectedDate = ''; 245 | $(settings.mainContentId).fadeOut(200); 246 | settings.onSelect(null); 247 | settings.onClose(); 248 | }); 249 | $(".mp-today").unbind('click.clk').bind('click.clk', function () { 250 | let dtmp = new Date(); 251 | let today = ($.mpdt.pTimestamp2Date(Math.round(dtmp.getTime() / 1000))); 252 | let time = $.mpdt.calcTime(Math.round(dtmp.getTime() / 1000)); 253 | settings.onSelect(time); 254 | let oldVal; 255 | if ($.mpdt.targetPicker.attr('data-timestamp') == 'null' || $.mpdt.targetPicker.attr('data-timestamp') === undefined) { 256 | oldVal = null; 257 | } else { 258 | oldVal = parseInt($.mpdt.targetPicker.attr('data-timestamp')); 259 | } 260 | settings.onChange(oldVal, time); 261 | $.mpdt.targetPicker.attr('data-timestamp', time); 262 | 263 | $.mpdt.targetPicker.val(today); 264 | if ($.mpdt.targetPicker.hasClass('mptimepick')) { 265 | $.mpdt.targetPicker.val( 266 | $.mpdt.make2number(parseInt($("#mp-hour").val())) + ':' + 267 | $.mpdt.make2number(parseInt($("#mp-min").val())) + ':' + 268 | $.mpdt.make2number(parseInt($("#mp-sec").val())) + ' ' + 269 | $.mpdt.targetPicker.val() 270 | ); 271 | } 272 | $(settings.mainContentId).fadeOut(200); 273 | settings.onClose(); 274 | }); 275 | $(".mp-close").unbind('click.clk').bind('click.clk', function () { 276 | $(settings.mainContentId).fadeOut(200); 277 | settings.onClose(); 278 | }); 279 | 280 | } 281 | 282 | 283 | this.AddDatepcikerBlock = function () { 284 | 285 | // add header and body of calendar 286 | $(settings.mainContentId).append( 287 | `
    288 |
      اردیبهشت
      289 |
      ش ی د س چ پ ج
      290 |
      ` 300 | ); 301 | 302 | 303 | for (let i = 0; i < 60; i++) { 304 | if (i < 24) { 305 | $("#mp-select-hour .mp-holder").append(`
      ` + $.mpdt.make2number(i) + `
      `); 306 | } 307 | $("#mp-select-min .mp-holder").append(`
      ` + $.mpdt.make2number(i) + `
      `); 308 | $("#mp-select-sec .mp-holder").append(`
      ` + $.mpdt.make2number(i) + `
      `); 309 | } 310 | // add persian month ro select in cal 311 | 312 | $(this.persian_month_names).each(function (k, v) { 313 | if (k !== 0) { 314 | $("#mpmonth ul").append("
    • " + this + "
    • "); 315 | } 316 | }); 317 | 318 | $("#mp-select-hour").bind('mousewheel', function (e) { 319 | e.preventDefault(); 320 | $.mpdt.upDownCheck(e.originalEvent.wheelDelta > 0, "#mp-hour", '#mp-h-', 23); 321 | }); 322 | 323 | $("#mp-select-min").bind('mousewheel', function (e) { 324 | e.preventDefault(); 325 | $.mpdt.upDownCheck(e.originalEvent.wheelDelta > 0, "#mp-min", '#mp-m-'); 326 | }); 327 | 328 | $("#mp-select-sec").bind('mousewheel', function (e) { 329 | e.preventDefault(); 330 | $.mpdt.upDownCheck(e.originalEvent.wheelDelta > 0, "#mp-sec", '#mp-s-'); 331 | }); 332 | 333 | var startDrag, posY, selectedItem; 334 | startDrag = false; 335 | posY = true; 336 | 337 | $("#mp-select-hour,#mp-select-min,#mp-select-sec").bind('mousedown.down', function (e) { 338 | // dropTarget.addClass('dragging'); 339 | posY = e.pageY; 340 | startDrag = true; 341 | selectedItem = $(this).attr('data-selected'); 342 | }); 343 | $(document).bind('mouseup.move', function () { 344 | startDrag = false; 345 | }); 346 | $(document).bind('mousemove.up', function (e) { 347 | 348 | if (startDrag && Math.abs(posY - e.pageY) > settings.timeChangeSensitivity ) { 349 | let booleanUp = (posY > e.pageY); 350 | console.log(booleanUp); 351 | switch (selectedItem) { 352 | case 'h': 353 | $.mpdt.upDownCheck(booleanUp, "#mp-hour", '#mp-h-', 23); 354 | break; 355 | case 'm': 356 | $.mpdt.upDownCheck(booleanUp, "#mp-min", '#mp-m-'); 357 | break; 358 | case 's': 359 | $.mpdt.upDownCheck(booleanUp, "#mp-sec", '#mp-s-'); 360 | break; 361 | } 362 | posY = e.pageY; 363 | } 364 | }); 365 | 366 | // set select month event 367 | $("#mpmonth ul li").bind('click.select', function () { 368 | var text = $.trim($(this).text()); 369 | $("#mpmonth span").text(text); 370 | $.mpdt.ShowMonth($(this).attr('data-id'), $("#mpyear input").val(), $.mpdt.selectedDate); 371 | $("#mpmonth ul").slideUp(100); 372 | }); 373 | // set select month event 374 | $("#mpyear input").bind('change.select click.select', function () { 375 | $.mpdt.ShowMonth(window.mp_last_month, $(this).val(), $.mpdt.selectedDate); 376 | }); 377 | 378 | 379 | // select day event 380 | $("#mpmonth span").bind('click.monthselect', function () { 381 | $("#mpmonth ul").slideDown(200); 382 | }); 383 | 384 | }; 385 | 386 | this.MakeModalBg = function () { 387 | // check is modal exists 388 | if ($(settings.mainContentId).length === 0) { 389 | //it doesn't exist 390 | $('body').append('
      '); 391 | $.mpdt.AddDatepcikerBlock(); 392 | } 393 | 394 | 395 | $(settings.mainContentId).bind('mousedown.close', function (e) { 396 | if ($(e.target).is(this)) { 397 | settings.onClose(); 398 | $(this).fadeOut(400); 399 | } 400 | }); 401 | }; 402 | 403 | /** 404 | * from parsi date by mobin ghasem pour 405 | * @param {integer} year 406 | * @returns {Boolean} 407 | */ 408 | this.IsLeapYear = function (year) { 409 | if (((year % 4) === 0 && (year % 100) !== 0) || ((year % 400) === 0) && (year % 100) === 0) 410 | return true; 411 | else 412 | return false; 413 | }; 414 | 415 | 416 | this.parseHindi = function (str) { 417 | 418 | let r = str.toString(); 419 | let org = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']; 420 | let hindi = ['۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹']; 421 | for (var ch in org) { 422 | r = r.replace(new RegExp(org[ch], 'g'), hindi[ch]); 423 | } 424 | 425 | return r; 426 | } 427 | 428 | 429 | this.exploiter = function (date_txt, determ) { 430 | if (typeof determ === 'undefined') { 431 | determ = '/'; 432 | } 433 | let a = date_txt.split(determ); 434 | 435 | if (typeof a[2] === 'undefined') { 436 | return a; 437 | } 438 | if (a[0].length < a[2].length) { 439 | return [a[2], a[1], a[0]]; 440 | } 441 | 442 | return a; 443 | }; 444 | this.imploiter = function (date_txt, determ) { 445 | if (determ === undefined) { 446 | determ = '/'; 447 | } 448 | 449 | return date_txt[0] + determ + date_txt[1] + determ + date_txt[2]; 450 | }; 451 | 452 | 453 | /** 454 | * from parsi date by mobin ghasem pour 455 | * @param {Array} indate 456 | * @returns {Array} 457 | */ 458 | this.Persian2Gregorian = function (indate) { 459 | let jy = indate[0]; 460 | let jm = indate[1]; 461 | let jd = indate[2]; 462 | let gd; 463 | let j_days_sum_month = [0, 0, 31, 62, 93, 124, 155, 186, 216, 246, 276, 306, 336, 365]; 464 | let g_days_in_month = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; 465 | let g_days_leap_month = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; 466 | gd = j_days_sum_month[parseInt(jm)] + parseInt(jd); 467 | let gy = parseInt(jy) + 621; 468 | if (gd > 286) 469 | gy++; 470 | if (this.IsLeapYear(gy - 1) && 286 < gd) 471 | gd--; 472 | if (gd > 286) 473 | gd -= 286; 474 | else 475 | gd += 79; 476 | let gm; 477 | if (this.IsLeapYear(gy)) { 478 | for (gm = 0; gd > g_days_leap_month[gm]; gm++) { 479 | gd -= g_days_leap_month[gm]; 480 | } 481 | } else { 482 | for (gm = 0; gd > g_days_in_month[gm]; gm++) 483 | gd -= g_days_in_month[gm]; 484 | } 485 | gm++; 486 | if (gm < 10) 487 | gm = '0' + gm; 488 | return [gy, gm, gd]; 489 | }; 490 | 491 | 492 | /** 493 | * from parsi date by mobin ghasem pour 494 | * @param {Array} indate 495 | * @returns {Array} 496 | */ 497 | this.Gregorian2Persian = function (indate) { 498 | 499 | let gy, gm, gd, j_days_in_month, g_days_sum_month, dayofyear, leab, leap, jd, jy, jm, i; 500 | 501 | gy = indate[0]; 502 | gm = indate[1]; 503 | gd = indate[2]; 504 | 505 | j_days_in_month = [31, 31, 31, 31, 31, 31, 30, 30, 30, 30, 30, 29]; 506 | g_days_sum_month = [0, 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365]; 507 | dayofyear = g_days_sum_month[parseInt(gm)] + parseInt(gd); 508 | leab = this.IsLeapYear(gy); 509 | leap = this.IsLeapYear(gy - 1); 510 | if (dayofyear > 79) { 511 | jd = (leab ? dayofyear - 78 : dayofyear - 79); 512 | jy = gy - 621; 513 | for (i = 0; jd > j_days_in_month[i]; i++) { 514 | jd -= j_days_in_month[i]; 515 | } 516 | } else { 517 | jd = ((leap || (leab && gm > 2)) ? 287 + dayofyear : 286 + dayofyear); 518 | jy = gy - 622; 519 | if (leap == 0 && jd == 366) 520 | return [jy, 12, 30]; 521 | for (i = 0; jd > j_days_in_month[i]; i++) { 522 | jd -= j_days_in_month[i]; 523 | } 524 | } 525 | jm = ++i; 526 | jm = (jm < 10 ? jm = '0' + jm : jm); 527 | if (jm == 13) { 528 | jm = 12; 529 | jd = 30; 530 | } 531 | if (jm.toString().length == 1) { 532 | jm = '0' + jm; 533 | } 534 | if (jd.toString().length == 1) { 535 | jd = '0' + jd; 536 | } 537 | return [jy.toString(), jm, jd]; 538 | }; 539 | 540 | this.handleCal = function (dt) { 541 | var dtmp, today, vd, newval, currentDay; 542 | if (dt.length !== 10) { 543 | dtmp = new Date(); 544 | today = ($.mpdt.pTimestamp2Date(Math.round(dtmp.getTime() / 1000))); 545 | // $(this).val(today); 546 | vd = $.mpdt.exploiter(today); 547 | } else { 548 | 549 | newval = $.mpdt.exploiter(' ', dt); 550 | if (newval.length == 1) { 551 | 552 | currentDay = dt; 553 | } else { 554 | currentDay = newval[1]; 555 | } 556 | vd = $.mpdt.exploiter(currentDay); 557 | } 558 | 559 | return vd; 560 | } 561 | 562 | 563 | this.each(function () { 564 | $(this).addClass('mpdatepicker'); 565 | 566 | if (settings.timePicker) { 567 | $(this).addClass('mptimepick'); 568 | } 569 | 570 | 571 | $(this).bind('focus.open', function () { 572 | settings.onOpen(); 573 | if ($(this).val() === '') { 574 | $(this).attr('data-timestamp', 'null'); 575 | } 576 | $(settings.mainContentId).fadeIn(400).css('display', 'flex'); 577 | var dt = $.trim($(this).val()); 578 | 579 | var vd = $.mpdt.handleCal(dt); 580 | 581 | if ($(this).attr('data-timestamp') === undefined) { 582 | $(this).attr('data-timestamp', $.mpdt.pDate2Timestamp(vd[0] + '/' + vd[1] + '/' + vd[2])); 583 | } 584 | if ($(this).hasClass('mptimepick')) { 585 | $(".mptimepicker").show(); 586 | } else { 587 | $(".mptimepicker").hide(); 588 | } 589 | 590 | $.mpdt.ShowMonth(vd[1], vd[0], $(this).val()); 591 | $.mpdt.selectedDate = $(this).val(); 592 | $.mpdt.targetPicker = $(this); 593 | if (settings.timePicker) { 594 | $('#mp-h-' + $("#mp-hour").val()).addClass('active'); 595 | $('#mp-m-' + $("#mp-min").val()).addClass('active'); 596 | $('#mp-s-' + $("#mp-sec").val()).addClass('active'); 597 | } 598 | 599 | 600 | }); 601 | 602 | 603 | $.mpdt.MakeModalBg(); 604 | 605 | $.mpdt.WriteCSS(); 606 | 607 | 608 | }); 609 | 610 | this.attachCal = function (elementId) { 611 | var element = $('#mpdatepicker-block').detach(); 612 | $(elementId).append(element); 613 | var vd = $.mpdt.handleCal(''); 614 | $('#mpdatepicker-block').addClass('static'); 615 | $(".mptimepicker, .mp-clear, .mp-close, .mp-today").remove(); 616 | 617 | $.mpdt.ShowMonth(vd[1], vd[0], ''); 618 | $.mpdt.selectedDate = ''; 619 | } 620 | 621 | return this; 622 | 623 | }; 624 | 625 | }(jQuery)); 626 | 627 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /example/jquery.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery v1.12.4 | (c) jQuery Foundation | jquery.org/license */ 2 | !function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="1.12.4",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return e.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a){return n.each(this,a)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor()},push:g,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(n.isPlainObject(c)||(b=n.isArray(c)))?(b?(b=!1,f=a&&n.isArray(a)?a:[]):f=a&&n.isPlainObject(a)?a:{},g[d]=n.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray||function(a){return"array"===n.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){var b=a&&a.toString();return!n.isArray(a)&&b-parseFloat(b)+1>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!k.call(a,"constructor")&&!k.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(!l.ownFirst)for(b in a)return k.call(a,b);for(b in a);return void 0===b||k.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?i[j.call(a)]||"object":typeof a},globalEval:function(b){b&&n.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b){var c,d=0;if(s(a)){for(c=a.length;c>d;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):g.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(h)return h.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,g=0,h=[];if(s(a))for(d=a.length;d>g;g++)e=b(a[g],g,c),null!=e&&h.push(e);else for(g in a)e=b(a[g],g,c),null!=e&&h.push(e);return f.apply([],h)},guid:1,proxy:function(a,b){var c,d,f;return"string"==typeof b&&(f=a[b],b=a,a=f),n.isFunction(a)?(c=e.call(arguments,2),d=function(){return a.apply(b||this,c.concat(e.call(arguments)))},d.guid=a.guid=a.guid||n.guid++,d):void 0},now:function(){return+new Date},support:l}),"function"==typeof Symbol&&(n.fn[Symbol.iterator]=c[Symbol.iterator]),n.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(a,b){i["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=!!a&&"length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ga(),z=ga(),A=ga(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+M+"))|)"+L+"*\\]",O=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+N+")*)|.*)\\)|)",P=new RegExp(L+"+","g"),Q=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),R=new RegExp("^"+L+"*,"+L+"*"),S=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),T=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),U=new RegExp(O),V=new RegExp("^"+M+"$"),W={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,$=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,_=/[+~]/,aa=/'|\\/g,ba=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),ca=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},da=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(ea){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fa(a,b,d,e){var f,h,j,k,l,o,r,s,w=b&&b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==x&&9!==x&&11!==x)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==x&&(o=$.exec(a)))if(f=o[1]){if(9===x){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&&(j=w.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&&c.getElementsByClassName&&b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==x)w=b,s=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(aa,"\\$&"):b.setAttribute("id",k=u),r=g(a),h=r.length,l=V.test(k)?"#"+k:"[id='"+k+"']";while(h--)r[h]=l+" "+qa(r[h]);s=r.join(","),w=_.test(a)&&oa(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(Q,"$1"),b,d,e)}function ga(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ha(a){return a[u]=!0,a}function ia(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ja(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function ka(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function la(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function na(a){return ha(function(b){return b=+b,ha(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function oa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=fa.support={},f=fa.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fa.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ia(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ia(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ia(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return"undefined"!=typeof b.getElementsByClassName&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&&(ia(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ia(function(a){var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ia(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",O)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ka(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ka(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},fa.matches=function(a,b){return fa(a,null,null,b)},fa.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(T,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fa(b,n,null,[a]).length>0},fa.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fa.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fa.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fa.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fa.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fa.selectors={cacheLength:50,createPseudo:ha,match:W,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||"").replace(ba,ca),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fa.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fa.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&U.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ba,ca).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fa.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(P," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fa.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ha(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ha(function(a){var b=[],c=[],d=h(a.replace(Q,"$1"));return d[u]?ha(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ha(function(a){return function(b){return fa(a,b).length>0}}),contains:ha(function(a){return a=a.replace(ba,ca),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ha(function(a){return V.test(a||"")||fa.error("unsupported lang: "+a),a=a.replace(ba,ca).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Y.test(a.nodeName)},input:function(a){return X.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:na(function(){return[0]}),last:na(function(a,b){return[b-1]}),eq:na(function(a,b,c){return[0>c?c+b:c]}),even:na(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:na(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:na(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:na(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function ra(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j,k=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(j=b[u]||(b[u]={}),i=j[b.uniqueID]||(j[b.uniqueID]={}),(h=i[d])&&h[0]===w&&h[1]===f)return k[2]=h[2];if(i[d]=k,k[2]=a(b,c,g))return!0}}}function sa(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ta(a,b,c){for(var d=0,e=b.length;e>d;d++)fa(a,b[d],c);return c}function ua(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(c&&!c(f,d,e)||(g.push(f),j&&b.push(h)));return g}function va(a,b,c,d,e,f){return d&&!d[u]&&(d=va(d)),e&&!e[u]&&(e=va(e,f)),ha(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ta(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ua(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ua(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ua(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function wa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ra(function(a){return a===b},h,!0),l=ra(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[ra(sa(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return va(i>1&&sa(m),i>1&&qa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(Q,"$1"),c,e>i&&wa(a.slice(i,e)),f>e&&wa(a=a.slice(e)),f>e&&qa(a))}m.push(c)}return sa(m)}function xa(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=F.call(i));u=ua(u)}H.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&fa.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ha(f):f}return h=fa.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xa(e,d)),f.selector=a}return f},i=fa.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&&oa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qa(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&&oa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ia(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ia(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ja("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ia(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ja("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ia(function(a){return null==a.getAttribute("disabled")})||ja(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fa}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},v=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},w=n.expr.match.needsContext,x=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,y=/^.[^:#\[\.,]*$/;function z(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return n.inArray(a,b)>-1!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;e>b;b++)if(n.contains(d[b],this))return!0}));for(b=0;e>b;b++)n.find(a,d[b],c);return c=this.pushStack(e>1?n.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(z(this,a||[],!1))},not:function(a){return this.pushStack(z(this,a||[],!0))},is:function(a){return!!z(this,"string"==typeof a&&w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=n.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||A,"string"==typeof a){if(e="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:B.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&&n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}if(f=d.getElementById(e[2]),f&&f.parentNode){if(f.id!==e[2])return A.find(a);this.length=1,this[0]=f}return this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof c.ready?c.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};C.prototype=n.fn,A=n(d);var D=/^(?:parents|prev(?:Until|All))/,E={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a){var b,c=n(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(n.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=w.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?n.inArray(this[0],n(a)):n.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function F(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return u(a,"parentNode")},parentsUntil:function(a,b,c){return u(a,"parentNode",c)},next:function(a){return F(a,"nextSibling")},prev:function(a){return F(a,"previousSibling")},nextAll:function(a){return u(a,"nextSibling")},prevAll:function(a){return u(a,"previousSibling")},nextUntil:function(a,b,c){return u(a,"nextSibling",c)},prevUntil:function(a,b,c){return u(a,"previousSibling",c)},siblings:function(a){return v((a.parentNode||{}).firstChild,a)},children:function(a){return v(a.firstChild)},contents:function(a){return n.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(E[a]||(e=n.uniqueSort(e)),D.test(a)&&(e=e.reverse())),this.pushStack(e)}});var G=/\S+/g;function H(a){var b={};return n.each(a.match(G)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?H(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),h>=c&&h--}),this},has:function(a){return a?n.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=!0,c||j.disable(),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&&n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?e.call(arguments):d,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(d>1)for(i=new Array(d),j=new Array(d),k=new Array(d);d>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().progress(h(b,j,i)).done(h(b,k,c)).fail(g.reject):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(d,[n]),n.fn.triggerHandler&&(n(d).triggerHandler("ready"),n(d).off("ready"))))}});function J(){d.addEventListener?(d.removeEventListener("DOMContentLoaded",K),a.removeEventListener("load",K)):(d.detachEvent("onreadystatechange",K),a.detachEvent("onload",K))}function K(){(d.addEventListener||"load"===a.event.type||"complete"===d.readyState)&&(J(),n.ready())}n.ready.promise=function(b){if(!I)if(I=n.Deferred(),"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll)a.setTimeout(n.ready);else if(d.addEventListener)d.addEventListener("DOMContentLoaded",K),a.addEventListener("load",K);else{d.attachEvent("onreadystatechange",K),a.attachEvent("onload",K);var c=!1;try{c=null==a.frameElement&&d.documentElement}catch(e){}c&&c.doScroll&&!function f(){if(!n.isReady){try{c.doScroll("left")}catch(b){return a.setTimeout(f,50)}J(),n.ready()}}()}return I.promise(b)},n.ready.promise();var L;for(L in n(l))break;l.ownFirst="0"===L,l.inlineBlockNeedsLayout=!1,n(function(){var a,b,c,e;c=d.getElementsByTagName("body")[0],c&&c.style&&(b=d.createElement("div"),e=d.createElement("div"),e.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(e).appendChild(b),"undefined"!=typeof b.style.zoom&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",l.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(e))}),function(){var a=d.createElement("div");l.deleteExpando=!0;try{delete a.test}catch(b){l.deleteExpando=!1}a=null}();var M=function(a){var b=n.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b},N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(O,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}n.data(a,b,c)}else c=void 0; 3 | }return c}function Q(a){var b;for(b in a)if(("data"!==b||!n.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function R(a,b,d,e){if(M(a)){var f,g,h=n.expando,i=a.nodeType,j=i?n.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||n.guid++:h),j[k]||(j[k]=i?{}:{toJSON:n.noop}),"object"!=typeof b&&"function"!=typeof b||(e?j[k]=n.extend(j[k],b):j[k].data=n.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[n.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[n.camelCase(b)])):f=g,f}}function S(a,b,c){if(M(a)){var d,e,f=a.nodeType,g=f?n.cache:a,h=f?a[n.expando]:n.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){n.isArray(b)?b=b.concat(n.map(b,n.camelCase)):b in d?b=[b]:(b=n.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!Q(d):!n.isEmptyObject(d))return}(c||(delete g[h].data,Q(g[h])))&&(f?n.cleanData([a],!0):l.deleteExpando||g!=g.window?delete g[h]:g[h]=void 0)}}}n.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?n.cache[a[n.expando]]:a[n.expando],!!a&&!Q(a)},data:function(a,b,c){return R(a,b,c)},removeData:function(a,b){return S(a,b)},_data:function(a,b,c){return R(a,b,c,!0)},_removeData:function(a,b){return S(a,b,!0)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=n.data(f),1===f.nodeType&&!n._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));n._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){n.data(this,a)}):arguments.length>1?this.each(function(){n.data(this,a,b)}):f?P(f,a,n.data(f,a)):void 0},removeData:function(a){return this.each(function(){n.removeData(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=n._data(a,b),c&&(!d||n.isArray(c)?d=n._data(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return n._data(a,c)||n._data(a,c,{empty:n.Callbacks("once memory").add(function(){n._removeData(a,b+"queue"),n._removeData(a,c)})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},Z=/^(?:checkbox|radio)$/i,$=/<([\w:-]+)/,_=/^$|\/(?:java|ecma)script/i,aa=/^\s+/,ba="abbr|article|aside|audio|bdi|canvas|data|datalist|details|dialog|figcaption|figure|footer|header|hgroup|main|mark|meter|nav|output|picture|progress|section|summary|template|time|video";function ca(a){var b=ba.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}!function(){var a=d.createElement("div"),b=d.createDocumentFragment(),c=d.createElement("input");a.innerHTML="
      a",l.leadingWhitespace=3===a.firstChild.nodeType,l.tbody=!a.getElementsByTagName("tbody").length,l.htmlSerialize=!!a.getElementsByTagName("link").length,l.html5Clone="<:nav>"!==d.createElement("nav").cloneNode(!0).outerHTML,c.type="checkbox",c.checked=!0,b.appendChild(c),l.appendChecked=c.checked,a.innerHTML="",l.noCloneChecked=!!a.cloneNode(!0).lastChild.defaultValue,b.appendChild(a),c=d.createElement("input"),c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),a.appendChild(c),l.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked,l.noCloneEvent=!!a.addEventListener,a[n.expando]=1,l.attributes=!a.getAttribute(n.expando)}();var da={option:[1,""],legend:[1,"
      ","
      "],area:[1,"",""],param:[1,"",""],thead:[1,"","
      "],tr:[2,"","
      "],col:[2,"","
      "],td:[3,"","
      "],_default:l.htmlSerialize?[0,"",""]:[1,"X
      ","
      "]};da.optgroup=da.option,da.tbody=da.tfoot=da.colgroup=da.caption=da.thead,da.th=da.td;function ea(a,b){var c,d,e=0,f="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||n.nodeName(d,b)?f.push(d):n.merge(f,ea(d,b));return void 0===b||b&&n.nodeName(a,b)?n.merge([a],f):f}function fa(a,b){for(var c,d=0;null!=(c=a[d]);d++)n._data(c,"globalEval",!b||n._data(b[d],"globalEval"))}var ga=/<|&#?\w+;/,ha=/r;r++)if(g=a[r],g||0===g)if("object"===n.type(g))n.merge(q,g.nodeType?[g]:g);else if(ga.test(g)){i=i||p.appendChild(b.createElement("div")),j=($.exec(g)||["",""])[1].toLowerCase(),m=da[j]||da._default,i.innerHTML=m[1]+n.htmlPrefilter(g)+m[2],f=m[0];while(f--)i=i.lastChild;if(!l.leadingWhitespace&&aa.test(g)&&q.push(b.createTextNode(aa.exec(g)[0])),!l.tbody){g="table"!==j||ha.test(g)?""!==m[1]||ha.test(g)?0:i:i.firstChild,f=g&&g.childNodes.length;while(f--)n.nodeName(k=g.childNodes[f],"tbody")&&!k.childNodes.length&&g.removeChild(k)}n.merge(q,i.childNodes),i.textContent="";while(i.firstChild)i.removeChild(i.firstChild);i=p.lastChild}else q.push(b.createTextNode(g));i&&p.removeChild(i),l.appendChecked||n.grep(ea(q,"input"),ia),r=0;while(g=q[r++])if(d&&n.inArray(g,d)>-1)e&&e.push(g);else if(h=n.contains(g.ownerDocument,g),i=ea(p.appendChild(g),"script"),h&&fa(i),c){f=0;while(g=i[f++])_.test(g.type||"")&&c.push(g)}return i=null,p}!function(){var b,c,e=d.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(l[b]=c in a)||(e.setAttribute(c,"t"),l[b]=e.attributes[c].expando===!1);e=null}();var ka=/^(?:input|select|textarea)$/i,la=/^key/,ma=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,na=/^(?:focusinfocus|focusoutblur)$/,oa=/^([^.]*)(?:\.(.+)|)/;function pa(){return!0}function qa(){return!1}function ra(){try{return d.activeElement}catch(a){}}function sa(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)sa(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=qa;else if(!e)return a;return 1===f&&(g=e,e=function(a){return n().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=n.guid++)),a.each(function(){n.event.add(this,b,e,d,c)})}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=n.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return"undefined"==typeof n||a&&n.event.triggered===a.type?void 0:n.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(G)||[""],h=b.length;while(h--)f=oa.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=n.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=n.event.special[o]||{},l=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},i),(m=g[o])||(m=g[o]=[],m.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,l):m.push(l),n.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n.hasData(a)&&n._data(a);if(r&&(k=r.events)){b=(b||"").match(G)||[""],j=b.length;while(j--)if(h=oa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=m.length;while(f--)g=m[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(m.splice(f,1),g.selector&&m.delegateCount--,l.remove&&l.remove.call(a,g));i&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(k)&&(delete r.handle,n._removeData(a,"events"))}},trigger:function(b,c,e,f){var g,h,i,j,l,m,o,p=[e||d],q=k.call(b,"type")?b.type:b,r=k.call(b,"namespace")?b.namespace.split("."):[];if(i=m=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!na.test(q+n.event.triggered)&&(q.indexOf(".")>-1&&(r=q.split("."),q=r.shift(),r.sort()),h=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=r.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:n.makeArray(c,[b]),l=n.event.special[q]||{},f||!l.trigger||l.trigger.apply(e,c)!==!1)){if(!f&&!l.noBubble&&!n.isWindow(e)){for(j=l.delegateType||q,na.test(j+q)||(i=i.parentNode);i;i=i.parentNode)p.push(i),m=i;m===(e.ownerDocument||d)&&p.push(m.defaultView||m.parentWindow||a)}o=0;while((i=p[o++])&&!b.isPropagationStopped())b.type=o>1?j:l.bindType||q,g=(n._data(i,"events")||{})[b.type]&&n._data(i,"handle"),g&&g.apply(i,c),g=h&&i[h],g&&g.apply&&M(i)&&(b.result=g.apply(i,c),b.result===!1&&b.preventDefault());if(b.type=q,!f&&!b.isDefaultPrevented()&&(!l._default||l._default.apply(p.pop(),c)===!1)&&M(e)&&h&&e[q]&&!n.isWindow(e)){m=e[h],m&&(e[h]=null),n.event.triggered=q;try{e[q]()}catch(s){}n.event.triggered=void 0,m&&(e[h]=m)}return b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,d,f,g,h=[],i=e.call(arguments),j=(n._data(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())a.rnamespace&&!a.rnamespace.test(g.namespace)||(a.handleObj=g,a.data=g.data,d=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==d&&(a.result=d)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&("click"!==a.type||isNaN(a.button)||a.button<1))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>-1:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]","i"),va=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,wa=/\s*$/g,Aa=ca(d),Ba=Aa.appendChild(d.createElement("div"));function Ca(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function Da(a){return a.type=(null!==n.find.attr(a,"type"))+"/"+a.type,a}function Ea(a){var b=ya.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Fa(a,b){if(1===b.nodeType&&n.hasData(a)){var c,d,e,f=n._data(a),g=n._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)n.event.add(b,c,h[c][d])}g.data&&(g.data=n.extend({},g.data))}}function Ga(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!l.noCloneEvent&&b[n.expando]){e=n._data(b);for(d in e.events)n.removeEvent(b,d,e.handle);b.removeAttribute(n.expando)}"script"===c&&b.text!==a.text?(Da(b).text=a.text,Ea(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),l.html5Clone&&a.innerHTML&&!n.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&Z.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:"input"!==c&&"textarea"!==c||(b.defaultValue=a.defaultValue)}}function Ha(a,b,c,d){b=f.apply([],b);var e,g,h,i,j,k,m=0,o=a.length,p=o-1,q=b[0],r=n.isFunction(q);if(r||o>1&&"string"==typeof q&&!l.checkClone&&xa.test(q))return a.each(function(e){var f=a.eq(e);r&&(b[0]=q.call(this,e,f.html())),Ha(f,b,c,d)});if(o&&(k=ja(b,a[0].ownerDocument,!1,a,d),e=k.firstChild,1===k.childNodes.length&&(k=e),e||d)){for(i=n.map(ea(k,"script"),Da),h=i.length;o>m;m++)g=k,m!==p&&(g=n.clone(g,!0,!0),h&&n.merge(i,ea(g,"script"))),c.call(a[m],g,m);if(h)for(j=i[i.length-1].ownerDocument,n.map(i,Ea),m=0;h>m;m++)g=i[m],_.test(g.type||"")&&!n._data(g,"globalEval")&&n.contains(j,g)&&(g.src?n._evalUrl&&n._evalUrl(g.src):n.globalEval((g.text||g.textContent||g.innerHTML||"").replace(za,"")));k=e=null}return a}function Ia(a,b,c){for(var d,e=b?n.filter(b,a):a,f=0;null!=(d=e[f]);f++)c||1!==d.nodeType||n.cleanData(ea(d)),d.parentNode&&(c&&n.contains(d.ownerDocument,d)&&fa(ea(d,"script")),d.parentNode.removeChild(d));return a}n.extend({htmlPrefilter:function(a){return a.replace(va,"<$1>")},clone:function(a,b,c){var d,e,f,g,h,i=n.contains(a.ownerDocument,a);if(l.html5Clone||n.isXMLDoc(a)||!ua.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(Ba.innerHTML=a.outerHTML,Ba.removeChild(f=Ba.firstChild)),!(l.noCloneEvent&&l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(d=ea(f),h=ea(a),g=0;null!=(e=h[g]);++g)d[g]&&Ga(e,d[g]);if(b)if(c)for(h=h||ea(a),d=d||ea(f),g=0;null!=(e=h[g]);g++)Fa(e,d[g]);else Fa(a,f);return d=ea(f,"script"),d.length>0&&fa(d,!i&&ea(a,"script")),d=h=e=null,f},cleanData:function(a,b){for(var d,e,f,g,h=0,i=n.expando,j=n.cache,k=l.attributes,m=n.event.special;null!=(d=a[h]);h++)if((b||M(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)m[e]?n.event.remove(d,e):n.removeEvent(d,e,g.handle);j[f]&&(delete j[f],k||"undefined"==typeof d.removeAttribute?d[i]=void 0:d.removeAttribute(i),c.push(f))}}}),n.fn.extend({domManip:Ha,detach:function(a){return Ia(this,a,!0)},remove:function(a){return Ia(this,a)},text:function(a){return Y(this,function(a){return void 0===a?n.text(this):this.empty().append((this[0]&&this[0].ownerDocument||d).createTextNode(a))},null,a,arguments.length)},append:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.appendChild(a)}})},prepend:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&n.cleanData(ea(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&n.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return Y(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(ta,""):void 0;if("string"==typeof a&&!wa.test(a)&&(l.htmlSerialize||!ua.test(a))&&(l.leadingWhitespace||!aa.test(a))&&!da[($.exec(a)||["",""])[1].toLowerCase()]){a=n.htmlPrefilter(a);try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ea(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=[];return Ha(this,arguments,function(b){var c=this.parentNode;n.inArray(this,a)<0&&(n.cleanData(ea(this)),c&&c.replaceChild(b,this))},a)}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=0,e=[],f=n(a),h=f.length-1;h>=d;d++)c=d===h?this:this.clone(!0),n(f[d])[b](c),g.apply(e,c.get());return this.pushStack(e)}});var Ja,Ka={HTML:"block",BODY:"block"};function La(a,b){var c=n(b.createElement(a)).appendTo(b.body),d=n.css(c[0],"display");return c.detach(),d}function Ma(a){var b=d,c=Ka[a];return c||(c=La(a,b),"none"!==c&&c||(Ja=(Ja||n("