├── .gitignore ├── LICENSE.txt ├── README.md ├── db └── vpnmandb_v0_1.sql ├── frontend ├── AccountController.php ├── ConfigMng.php ├── Controller.php ├── NetworkController.php ├── UserController.php ├── VpnController.php ├── accounts.php ├── check.php ├── configuration.php ├── css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── jquery.colourPicker.css │ ├── plugins │ │ ├── dataTables │ │ │ └── dataTables.bootstrap.css │ │ ├── morris │ │ │ └── morris-0.4.3.min.css │ │ ├── social-buttons │ │ │ └── social-buttons.css │ │ └── timeline │ │ │ └── timeline.css │ └── sb-admin.css ├── dologin.php ├── font-awesome │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── spinning.less │ │ ├── stacked.less │ │ └── variables.less │ └── scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _spinning.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── history.php ├── img │ ├── icon_zipbox.png │ ├── logo_alphasi2.png │ └── logo_vpnman2.png ├── include │ ├── cfgmng.php │ ├── config.inc.php │ ├── menu.php │ └── zip.lib.php ├── index.php ├── js │ ├── DataTables │ │ ├── Contributing.md │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── composer.json │ │ ├── dataTables.jquery.json │ │ ├── extensions │ │ │ ├── AutoFill │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ │ └── dataTables.autoFill.min.css │ │ │ │ ├── images │ │ │ │ │ └── filler.png │ │ │ │ └── js │ │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ │ └── dataTables.autoFill.min.js │ │ │ ├── ColReorder │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ │ └── dataTables.colReorder.min.css │ │ │ │ ├── images │ │ │ │ │ └── insert.png │ │ │ │ └── js │ │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ │ └── dataTables.colReorder.min.js │ │ │ ├── ColVis │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.colVis.css │ │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.colVis.js │ │ │ │ │ └── dataTables.colVis.min.js │ │ │ ├── FixedColumns │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ │ └── dataTables.fixedColumns.min.js │ │ │ ├── FixedHeader │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ │ └── dataTables.fixedHeader.min.js │ │ │ ├── KeyTable │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ │ └── dataTables.keyTable.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ │ └── dataTables.keyTable.min.js │ │ │ ├── Responsive │ │ │ │ ├── Readme.md │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.responsive.css │ │ │ │ │ └── dataTables.responsive.scss │ │ │ │ └── js │ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ │ └── dataTables.responsive.min.js │ │ │ ├── Scroller │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.scroller.css │ │ │ │ │ └── dataTables.scroller.min.css │ │ │ │ ├── images │ │ │ │ │ └── loading-background.png │ │ │ │ └── js │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ └── dataTables.scroller.min.js │ │ │ └── TableTools │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ ├── dataTables.tableTools.css │ │ │ │ └── dataTables.tableTools.min.css │ │ │ │ ├── images │ │ │ │ ├── background.png │ │ │ │ ├── collection.png │ │ │ │ ├── collection_hover.png │ │ │ │ ├── copy.png │ │ │ │ ├── copy_hover.png │ │ │ │ ├── csv.png │ │ │ │ ├── csv_hover.png │ │ │ │ ├── pdf.png │ │ │ │ ├── pdf_hover.png │ │ │ │ ├── print.png │ │ │ │ ├── print_hover.png │ │ │ │ ├── psd │ │ │ │ │ ├── collection.psd │ │ │ │ │ ├── copy document.psd │ │ │ │ │ ├── file_types.psd │ │ │ │ │ └── printer.psd │ │ │ │ ├── xls.png │ │ │ │ └── xls_hover.png │ │ │ │ ├── js │ │ │ │ ├── dataTables.tableTools.js │ │ │ │ └── dataTables.tableTools.min.js │ │ │ │ └── swf │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ └── copy_csv_xls_pdf.swf │ │ ├── license.txt │ │ ├── media │ │ │ ├── css │ │ │ │ ├── jquery.dataTables.css │ │ │ │ ├── jquery.dataTables.min.css │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── images │ │ │ │ ├── Sorting icons.psd │ │ │ │ ├── back_disabled.png │ │ │ │ ├── back_enabled.png │ │ │ │ ├── back_enabled_hover.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── forward_disabled.png │ │ │ │ ├── forward_enabled.png │ │ │ │ ├── forward_enabled_hover.png │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ └── js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ └── jquery.js │ │ └── package.json │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── colourPicker.js │ ├── demo │ │ ├── dashboard-demo.js │ │ ├── flot-demo.js │ │ └── morris-demo.js │ ├── jquery-1.10.2.js │ ├── jquery-ui-map │ │ ├── README.txt │ │ ├── demos │ │ │ ├── benchmark.html │ │ │ ├── css │ │ │ │ ├── 960 │ │ │ │ │ └── min │ │ │ │ │ │ ├── 960.css │ │ │ │ │ │ └── 960_16_col.css │ │ │ │ ├── jquery-mobile-1.0 │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ajax-loader.png │ │ │ │ │ │ └── icons-18-white.png │ │ │ │ │ └── jquery.mobile.css │ │ │ │ ├── mobile.css │ │ │ │ ├── normalize │ │ │ │ │ └── min │ │ │ │ │ │ └── normalize.css │ │ │ │ ├── prettify │ │ │ │ │ └── min │ │ │ │ │ │ └── prettify.css │ │ │ │ └── style.css │ │ │ ├── images │ │ │ │ ├── arrow_left_12x12.png │ │ │ │ ├── arrow_right_12x12.png │ │ │ │ └── subtlepatterns.com │ │ │ │ │ └── cubes.png │ │ │ ├── jquery-google-maps-basic-example.html │ │ │ ├── jquery-google-maps-clustering.html │ │ │ ├── jquery-google-maps-data-attribute.html │ │ │ ├── jquery-google-maps-extend-with-pagination.html │ │ │ ├── jquery-google-maps-filtering.html │ │ │ ├── jquery-google-maps-fusion-tables.html │ │ │ ├── jquery-google-maps-geocoding.html │ │ │ ├── jquery-google-maps-geolocation.html │ │ │ ├── jquery-google-maps-json.html │ │ │ ├── jquery-google-maps-microdata.html │ │ │ ├── jquery-google-maps-microformat.html │ │ │ ├── jquery-google-maps-mobile-boilerplate.html │ │ │ ├── jquery-google-maps-mobile.html │ │ │ ├── jquery-google-maps-rdfa.html │ │ │ ├── jquery-google-maps-streetview.html │ │ │ ├── jquery-mobile-example.html │ │ │ ├── js │ │ │ │ ├── backbone-0.5.3 │ │ │ │ │ └── backbone.min.js │ │ │ │ ├── demo.js │ │ │ │ ├── jquery-1.7.1 │ │ │ │ │ └── jquery.min.js │ │ │ │ ├── jquery-mobile-1.0 │ │ │ │ │ └── jquery.mobile.min.js │ │ │ │ ├── jquery.ui-1.8.15 │ │ │ │ │ └── jquery.ui.autocomplete.min.js │ │ │ │ ├── marker-with-label-1.1.5 │ │ │ │ │ └── marker.with.label.min.js │ │ │ │ ├── markerclustererplus-2.0.6 │ │ │ │ │ └── markerclusterer.min.js │ │ │ │ ├── modernizr-2.0.6 │ │ │ │ │ └── modernizr.min.js │ │ │ │ ├── prettify │ │ │ │ │ └── prettify.min.js │ │ │ │ └── underscore-1.2.2 │ │ │ │ │ └── underscore.min.js │ │ │ └── json │ │ │ │ └── demo.json │ │ └── ui │ │ │ ├── jquery.ui.map.extensions.js │ │ │ ├── jquery.ui.map.js │ │ │ ├── jquery.ui.map.microdata.js │ │ │ ├── jquery.ui.map.microformat.js │ │ │ ├── jquery.ui.map.overlays.js │ │ │ ├── jquery.ui.map.rdfa.js │ │ │ ├── jquery.ui.map.services.js │ │ │ └── min │ │ │ ├── jquery.ui.map.full.min.js │ │ │ ├── jquery.ui.map.microdata.min.js │ │ │ ├── jquery.ui.map.microformat.min.js │ │ │ ├── jquery.ui.map.min.js │ │ │ ├── jquery.ui.map.overlays.min.js │ │ │ ├── jquery.ui.map.rdfa.min.js │ │ │ └── jquery.ui.map.services.min.js │ ├── jquery-ui │ │ ├── css │ │ │ └── ui-lightness │ │ │ │ ├── images │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui-1.9.1.custom.css │ │ │ │ └── jquery-ui-1.9.1.custom.min.css │ │ ├── development-bundle │ │ │ ├── AUTHORS.txt │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.md │ │ │ ├── demos │ │ │ │ ├── accordion │ │ │ │ │ ├── collapsible.html │ │ │ │ │ ├── custom-icons.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── fillspace.html │ │ │ │ │ ├── hoverintent.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── no-auto-height.html │ │ │ │ │ └── sortable.html │ │ │ │ ├── autocomplete │ │ │ │ │ ├── categories.html │ │ │ │ │ ├── combobox.html │ │ │ │ │ ├── custom-data.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── folding.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── jquery_32x32.png │ │ │ │ │ │ ├── jqueryui_32x32.png │ │ │ │ │ │ ├── sizzlejs_32x32.png │ │ │ │ │ │ ├── transparent_1x1.png │ │ │ │ │ │ └── ui-anim_basic_16x16.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── london.xml │ │ │ │ │ ├── maxheight.html │ │ │ │ │ ├── multiple-remote.html │ │ │ │ │ ├── multiple.html │ │ │ │ │ ├── remote-jsonp.html │ │ │ │ │ ├── remote-with-cache.html │ │ │ │ │ ├── remote.html │ │ │ │ │ ├── search.php │ │ │ │ │ └── xml.html │ │ │ │ ├── button │ │ │ │ │ ├── checkbox.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── icons.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── radio.html │ │ │ │ │ ├── splitbutton.html │ │ │ │ │ └── toolbar.html │ │ │ │ ├── datepicker │ │ │ │ │ ├── alt-field.html │ │ │ │ │ ├── animation.html │ │ │ │ │ ├── buttonbar.html │ │ │ │ │ ├── date-formats.html │ │ │ │ │ ├── date-range.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── dropdown-month-year.html │ │ │ │ │ ├── icon-trigger.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── calendar.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inline.html │ │ │ │ │ ├── localization.html │ │ │ │ │ ├── min-max.html │ │ │ │ │ ├── multiple-calendars.html │ │ │ │ │ ├── other-months.html │ │ │ │ │ └── show-week.html │ │ │ │ ├── demos.css │ │ │ │ ├── dialog │ │ │ │ │ ├── animated.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── modal-confirmation.html │ │ │ │ │ ├── modal-form.html │ │ │ │ │ ├── modal-message.html │ │ │ │ │ └── modal.html │ │ │ │ ├── draggable │ │ │ │ │ ├── constrain-movement.html │ │ │ │ │ ├── cursor-style.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── delay-start.html │ │ │ │ │ ├── events.html │ │ │ │ │ ├── handle.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── revert.html │ │ │ │ │ ├── scroll.html │ │ │ │ │ ├── snap-to.html │ │ │ │ │ ├── sortable.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── droppable │ │ │ │ │ ├── accepted-elements.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── high_tatras.jpg │ │ │ │ │ │ ├── high_tatras2.jpg │ │ │ │ │ │ ├── high_tatras2_min.jpg │ │ │ │ │ │ ├── high_tatras3.jpg │ │ │ │ │ │ ├── high_tatras3_min.jpg │ │ │ │ │ │ ├── high_tatras4.jpg │ │ │ │ │ │ ├── high_tatras4_min.jpg │ │ │ │ │ │ └── high_tatras_min.jpg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── photo-manager.html │ │ │ │ │ ├── propagation.html │ │ │ │ │ ├── revert.html │ │ │ │ │ ├── shopping-cart.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── effect │ │ │ │ │ ├── default.html │ │ │ │ │ ├── easing.html │ │ │ │ │ └── index.html │ │ │ │ ├── images │ │ │ │ │ ├── calendar.gif │ │ │ │ │ ├── demo-config-on-tile.gif │ │ │ │ │ ├── demo-config-on.gif │ │ │ │ │ ├── demo-spindown-closed.gif │ │ │ │ │ ├── demo-spindown-open.gif │ │ │ │ │ ├── icon-docs-info.gif │ │ │ │ │ └── pbar-ani.gif │ │ │ │ ├── menu │ │ │ │ │ ├── default.html │ │ │ │ │ ├── icons.html │ │ │ │ │ └── index.html │ │ │ │ ├── position │ │ │ │ │ ├── cycler.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── earth.jpg │ │ │ │ │ │ ├── flight.jpg │ │ │ │ │ │ └── rocket.jpg │ │ │ │ │ └── index.html │ │ │ │ ├── progressbar │ │ │ │ │ ├── animated.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── pbar-ani.gif │ │ │ │ │ ├── index.html │ │ │ │ │ └── resize.html │ │ │ │ ├── resizable │ │ │ │ │ ├── animate.html │ │ │ │ │ ├── aspect-ratio.html │ │ │ │ │ ├── constrain-area.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── delay-start.html │ │ │ │ │ ├── helper.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── max-min.html │ │ │ │ │ ├── snap-to-grid.html │ │ │ │ │ ├── synchronous-resize.html │ │ │ │ │ ├── textarea.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── selectable │ │ │ │ │ ├── default.html │ │ │ │ │ ├── display-grid.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── serialize.html │ │ │ │ ├── slider │ │ │ │ │ ├── colorpicker.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── hotelrooms.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── multiple-vertical.html │ │ │ │ │ ├── range-vertical.html │ │ │ │ │ ├── range.html │ │ │ │ │ ├── rangemax.html │ │ │ │ │ ├── rangemin.html │ │ │ │ │ ├── side-scroll.html │ │ │ │ │ ├── slider-vertical.html │ │ │ │ │ └── steps.html │ │ │ │ ├── sortable │ │ │ │ │ ├── connect-lists-through-tabs.html │ │ │ │ │ ├── connect-lists.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── delay-start.html │ │ │ │ │ ├── display-grid.html │ │ │ │ │ ├── empty-lists.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── items.html │ │ │ │ │ ├── placeholder.html │ │ │ │ │ └── portlets.html │ │ │ │ ├── spinner │ │ │ │ │ ├── currency.html │ │ │ │ │ ├── decimal.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── latlong.html │ │ │ │ │ ├── overflow.html │ │ │ │ │ └── time.html │ │ │ │ ├── tabs │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── ajax │ │ │ │ │ │ ├── content1.html │ │ │ │ │ │ ├── content2.html │ │ │ │ │ │ ├── content3-slow.php │ │ │ │ │ │ └── content4-broken.php │ │ │ │ │ ├── bottom.html │ │ │ │ │ ├── collapsible.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manipulation.html │ │ │ │ │ ├── mouseover.html │ │ │ │ │ ├── sortable.html │ │ │ │ │ └── vertical.html │ │ │ │ ├── tooltip │ │ │ │ │ ├── ajax │ │ │ │ │ │ ├── content1.html │ │ │ │ │ │ └── content2.html │ │ │ │ │ ├── custom-animation.html │ │ │ │ │ ├── custom-content.html │ │ │ │ │ ├── custom-style.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── forms.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── st-stephens.jpg │ │ │ │ │ │ └── tower-bridge.jpg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tracking.html │ │ │ │ │ └── video-player.html │ │ │ │ └── widget │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ ├── docs │ │ │ │ ├── accordion.html │ │ │ │ ├── autocomplete.html │ │ │ │ ├── blind-effect.html │ │ │ │ ├── bounce-effect.html │ │ │ │ ├── button.html │ │ │ │ ├── clip-effect.html │ │ │ │ ├── datepicker.html │ │ │ │ ├── dialog.html │ │ │ │ ├── draggable.html │ │ │ │ ├── drop-effect.html │ │ │ │ ├── droppable.html │ │ │ │ ├── explode-effect.html │ │ │ │ ├── fade-effect.html │ │ │ │ ├── fold-effect.html │ │ │ │ ├── highlight-effect.html │ │ │ │ ├── jQuery.widget.html │ │ │ │ ├── menu.html │ │ │ │ ├── mouse.html │ │ │ │ ├── position.html │ │ │ │ ├── progressbar.html │ │ │ │ ├── puff-effect.html │ │ │ │ ├── pulsate-effect.html │ │ │ │ ├── resizable.html │ │ │ │ ├── scale-effect.html │ │ │ │ ├── selectable.html │ │ │ │ ├── shake-effect.html │ │ │ │ ├── size-effect.html │ │ │ │ ├── slide-effect.html │ │ │ │ ├── slider.html │ │ │ │ ├── sortable.html │ │ │ │ ├── spinner.html │ │ │ │ ├── tabs.html │ │ │ │ ├── tooltip.html │ │ │ │ └── transfer-effect.html │ │ │ ├── external │ │ │ │ ├── globalize.culture.de-DE.js │ │ │ │ ├── globalize.culture.ja-JP.js │ │ │ │ ├── globalize.js │ │ │ │ ├── jquery.bgiframe-2.1.2.js │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── jquery.metadata.js │ │ │ │ ├── jquery.mousewheel.js │ │ │ │ ├── jshint.js │ │ │ │ ├── qunit.css │ │ │ │ └── qunit.js │ │ │ ├── grunt.js │ │ │ ├── jquery-1.8.2.js │ │ │ ├── package.json │ │ │ ├── themes │ │ │ │ ├── base │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── jquery-ui.css │ │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ │ ├── jquery.ui.all.css │ │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ │ ├── jquery.ui.base.css │ │ │ │ │ ├── jquery.ui.button.css │ │ │ │ │ ├── jquery.ui.core.css │ │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ │ ├── jquery.ui.menu.css │ │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ │ ├── jquery.ui.spinner.css │ │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ │ ├── jquery.ui.tooltip.css │ │ │ │ │ └── minified │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ │ │ ├── jquery.ui.button.min.css │ │ │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ │ │ │ ├── jquery.ui.dialog.min.css │ │ │ │ │ │ ├── jquery.ui.menu.min.css │ │ │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ │ │ ├── jquery.ui.spinner.min.css │ │ │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ │ │ ├── jquery.ui.theme.min.css │ │ │ │ │ │ └── jquery.ui.tooltip.min.css │ │ │ │ └── ui-lightness │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── jquery-ui.css │ │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ │ ├── jquery.ui.all.css │ │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ │ ├── jquery.ui.base.css │ │ │ │ │ ├── jquery.ui.button.css │ │ │ │ │ ├── jquery.ui.core.css │ │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ │ ├── jquery.ui.menu.css │ │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ │ ├── jquery.ui.spinner.css │ │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ │ ├── jquery.ui.tooltip.css │ │ │ │ │ └── minified │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ │ ├── jquery.ui.button.min.css │ │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ │ │ ├── jquery.ui.dialog.min.css │ │ │ │ │ ├── jquery.ui.menu.min.css │ │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ │ ├── jquery.ui.spinner.min.css │ │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ │ ├── jquery.ui.theme.min.css │ │ │ │ │ └── jquery.ui.tooltip.min.css │ │ │ ├── ui.accordion.jquery.json │ │ │ ├── ui.autocomplete.jquery.json │ │ │ ├── ui.button.jquery.json │ │ │ ├── ui.core.jquery.json │ │ │ ├── ui.datepicker.jquery.json │ │ │ ├── ui.dialog.jquery.json │ │ │ ├── ui.draggable.jquery.json │ │ │ ├── ui.droppable.jquery.json │ │ │ ├── ui.effect-blind.jquery.json │ │ │ ├── ui.effect-bounce.jquery.json │ │ │ ├── ui.effect-clip.jquery.json │ │ │ ├── ui.effect-drop.jquery.json │ │ │ ├── ui.effect-explode.jquery.json │ │ │ ├── ui.effect-fade.jquery.json │ │ │ ├── ui.effect-fold.jquery.json │ │ │ ├── ui.effect-highlight.jquery.json │ │ │ ├── ui.effect-pulsate.jquery.json │ │ │ ├── ui.effect-scale.jquery.json │ │ │ ├── ui.effect-shake.jquery.json │ │ │ ├── ui.effect-slide.jquery.json │ │ │ ├── ui.effect-transfer.jquery.json │ │ │ ├── ui.effect.jquery.json │ │ │ ├── ui.menu.jquery.json │ │ │ ├── ui.mouse.jquery.json │ │ │ ├── ui.position.jquery.json │ │ │ ├── ui.progressbar.jquery.json │ │ │ ├── ui.resizable.jquery.json │ │ │ ├── ui.selectable.jquery.json │ │ │ ├── ui.slider.jquery.json │ │ │ ├── ui.sortable.jquery.json │ │ │ ├── ui.spinner.jquery.json │ │ │ ├── ui.tabs.jquery.json │ │ │ ├── ui.tooltip.jquery.json │ │ │ ├── ui.widget.jquery.json │ │ │ └── ui │ │ │ │ ├── i18n │ │ │ │ ├── jquery-ui-i18n.js │ │ │ │ ├── jquery.ui.datepicker-af.js │ │ │ │ ├── jquery.ui.datepicker-ar-DZ.js │ │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ │ ├── jquery.ui.datepicker-az.js │ │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ │ ├── jquery.ui.datepicker-bs.js │ │ │ │ ├── jquery.ui.datepicker-ca.js │ │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ │ ├── jquery.ui.datepicker-cy-GB.js │ │ │ │ ├── jquery.ui.datepicker-da.js │ │ │ │ ├── jquery.ui.datepicker-de.js │ │ │ │ ├── jquery.ui.datepicker-el.js │ │ │ │ ├── jquery.ui.datepicker-en-AU.js │ │ │ │ ├── jquery.ui.datepicker-en-GB.js │ │ │ │ ├── jquery.ui.datepicker-en-NZ.js │ │ │ │ ├── jquery.ui.datepicker-eo.js │ │ │ │ ├── jquery.ui.datepicker-es.js │ │ │ │ ├── jquery.ui.datepicker-et.js │ │ │ │ ├── jquery.ui.datepicker-eu.js │ │ │ │ ├── jquery.ui.datepicker-fa.js │ │ │ │ ├── jquery.ui.datepicker-fi.js │ │ │ │ ├── jquery.ui.datepicker-fo.js │ │ │ │ ├── jquery.ui.datepicker-fr-CH.js │ │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ │ ├── jquery.ui.datepicker-gl.js │ │ │ │ ├── jquery.ui.datepicker-he.js │ │ │ │ ├── jquery.ui.datepicker-hi.js │ │ │ │ ├── jquery.ui.datepicker-hr.js │ │ │ │ ├── jquery.ui.datepicker-hu.js │ │ │ │ ├── jquery.ui.datepicker-hy.js │ │ │ │ ├── jquery.ui.datepicker-id.js │ │ │ │ ├── jquery.ui.datepicker-is.js │ │ │ │ ├── jquery.ui.datepicker-it.js │ │ │ │ ├── jquery.ui.datepicker-ja.js │ │ │ │ ├── jquery.ui.datepicker-ka.js │ │ │ │ ├── jquery.ui.datepicker-kk.js │ │ │ │ ├── jquery.ui.datepicker-km.js │ │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ │ ├── jquery.ui.datepicker-lb.js │ │ │ │ ├── jquery.ui.datepicker-lt.js │ │ │ │ ├── jquery.ui.datepicker-lv.js │ │ │ │ ├── jquery.ui.datepicker-mk.js │ │ │ │ ├── jquery.ui.datepicker-ml.js │ │ │ │ ├── jquery.ui.datepicker-ms.js │ │ │ │ ├── jquery.ui.datepicker-nl-BE.js │ │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ │ ├── jquery.ui.datepicker-no.js │ │ │ │ ├── jquery.ui.datepicker-pl.js │ │ │ │ ├── jquery.ui.datepicker-pt-BR.js │ │ │ │ ├── jquery.ui.datepicker-pt.js │ │ │ │ ├── jquery.ui.datepicker-rm.js │ │ │ │ ├── jquery.ui.datepicker-ro.js │ │ │ │ ├── jquery.ui.datepicker-ru.js │ │ │ │ ├── jquery.ui.datepicker-sk.js │ │ │ │ ├── jquery.ui.datepicker-sl.js │ │ │ │ ├── jquery.ui.datepicker-sq.js │ │ │ │ ├── jquery.ui.datepicker-sr-SR.js │ │ │ │ ├── jquery.ui.datepicker-sr.js │ │ │ │ ├── jquery.ui.datepicker-sv.js │ │ │ │ ├── jquery.ui.datepicker-ta.js │ │ │ │ ├── jquery.ui.datepicker-th.js │ │ │ │ ├── jquery.ui.datepicker-tj.js │ │ │ │ ├── jquery.ui.datepicker-tr.js │ │ │ │ ├── jquery.ui.datepicker-uk.js │ │ │ │ ├── jquery.ui.datepicker-vi.js │ │ │ │ ├── jquery.ui.datepicker-zh-CN.js │ │ │ │ ├── jquery.ui.datepicker-zh-HK.js │ │ │ │ └── jquery.ui.datepicker-zh-TW.js │ │ │ │ ├── jquery-ui.custom.js │ │ │ │ ├── jquery.ui.accordion.js │ │ │ │ ├── jquery.ui.autocomplete.js │ │ │ │ ├── jquery.ui.button.js │ │ │ │ ├── jquery.ui.core.js │ │ │ │ ├── jquery.ui.datepicker.js │ │ │ │ ├── jquery.ui.dialog.js │ │ │ │ ├── jquery.ui.draggable.js │ │ │ │ ├── jquery.ui.droppable.js │ │ │ │ ├── jquery.ui.effect-blind.js │ │ │ │ ├── jquery.ui.effect-bounce.js │ │ │ │ ├── jquery.ui.effect-clip.js │ │ │ │ ├── jquery.ui.effect-drop.js │ │ │ │ ├── jquery.ui.effect-explode.js │ │ │ │ ├── jquery.ui.effect-fade.js │ │ │ │ ├── jquery.ui.effect-fold.js │ │ │ │ ├── jquery.ui.effect-highlight.js │ │ │ │ ├── jquery.ui.effect-pulsate.js │ │ │ │ ├── jquery.ui.effect-scale.js │ │ │ │ ├── jquery.ui.effect-shake.js │ │ │ │ ├── jquery.ui.effect-slide.js │ │ │ │ ├── jquery.ui.effect-transfer.js │ │ │ │ ├── jquery.ui.effect.js │ │ │ │ ├── jquery.ui.menu.js │ │ │ │ ├── jquery.ui.mouse.js │ │ │ │ ├── jquery.ui.position.js │ │ │ │ ├── jquery.ui.progressbar.js │ │ │ │ ├── jquery.ui.resizable.js │ │ │ │ ├── jquery.ui.selectable.js │ │ │ │ ├── jquery.ui.slider.js │ │ │ │ ├── jquery.ui.sortable.js │ │ │ │ ├── jquery.ui.spinner.js │ │ │ │ ├── jquery.ui.tabs.js │ │ │ │ ├── jquery.ui.tooltip.js │ │ │ │ ├── jquery.ui.widget.js │ │ │ │ └── minified │ │ │ │ ├── i18n │ │ │ │ ├── jquery-ui-i18n.min.js │ │ │ │ ├── jquery.ui.datepicker-af.min.js │ │ │ │ ├── jquery.ui.datepicker-ar-DZ.min.js │ │ │ │ ├── jquery.ui.datepicker-ar.min.js │ │ │ │ ├── jquery.ui.datepicker-az.min.js │ │ │ │ ├── jquery.ui.datepicker-bg.min.js │ │ │ │ ├── jquery.ui.datepicker-bs.min.js │ │ │ │ ├── jquery.ui.datepicker-ca.min.js │ │ │ │ ├── jquery.ui.datepicker-cs.min.js │ │ │ │ ├── jquery.ui.datepicker-cy-GB.min.js │ │ │ │ ├── jquery.ui.datepicker-da.min.js │ │ │ │ ├── jquery.ui.datepicker-de.min.js │ │ │ │ ├── jquery.ui.datepicker-el.min.js │ │ │ │ ├── jquery.ui.datepicker-en-AU.min.js │ │ │ │ ├── jquery.ui.datepicker-en-GB.min.js │ │ │ │ ├── jquery.ui.datepicker-en-NZ.min.js │ │ │ │ ├── jquery.ui.datepicker-eo.min.js │ │ │ │ ├── jquery.ui.datepicker-es.min.js │ │ │ │ ├── jquery.ui.datepicker-et.min.js │ │ │ │ ├── jquery.ui.datepicker-eu.min.js │ │ │ │ ├── jquery.ui.datepicker-fa.min.js │ │ │ │ ├── jquery.ui.datepicker-fi.min.js │ │ │ │ ├── jquery.ui.datepicker-fo.min.js │ │ │ │ ├── jquery.ui.datepicker-fr-CH.min.js │ │ │ │ ├── jquery.ui.datepicker-fr.min.js │ │ │ │ ├── jquery.ui.datepicker-gl.min.js │ │ │ │ ├── jquery.ui.datepicker-he.min.js │ │ │ │ ├── jquery.ui.datepicker-hi.min.js │ │ │ │ ├── jquery.ui.datepicker-hr.min.js │ │ │ │ ├── jquery.ui.datepicker-hu.min.js │ │ │ │ ├── jquery.ui.datepicker-hy.min.js │ │ │ │ ├── jquery.ui.datepicker-id.min.js │ │ │ │ ├── jquery.ui.datepicker-is.min.js │ │ │ │ ├── jquery.ui.datepicker-it.min.js │ │ │ │ ├── jquery.ui.datepicker-ja.min.js │ │ │ │ ├── jquery.ui.datepicker-ka.min.js │ │ │ │ ├── jquery.ui.datepicker-kk.min.js │ │ │ │ ├── jquery.ui.datepicker-km.min.js │ │ │ │ ├── jquery.ui.datepicker-ko.min.js │ │ │ │ ├── jquery.ui.datepicker-lb.min.js │ │ │ │ ├── jquery.ui.datepicker-lt.min.js │ │ │ │ ├── jquery.ui.datepicker-lv.min.js │ │ │ │ ├── jquery.ui.datepicker-mk.min.js │ │ │ │ ├── jquery.ui.datepicker-ml.min.js │ │ │ │ ├── jquery.ui.datepicker-ms.min.js │ │ │ │ ├── jquery.ui.datepicker-nl-BE.min.js │ │ │ │ ├── jquery.ui.datepicker-nl.min.js │ │ │ │ ├── jquery.ui.datepicker-no.min.js │ │ │ │ ├── jquery.ui.datepicker-pl.min.js │ │ │ │ ├── jquery.ui.datepicker-pt-BR.min.js │ │ │ │ ├── jquery.ui.datepicker-pt.min.js │ │ │ │ ├── jquery.ui.datepicker-rm.min.js │ │ │ │ ├── jquery.ui.datepicker-ro.min.js │ │ │ │ ├── jquery.ui.datepicker-ru.min.js │ │ │ │ ├── jquery.ui.datepicker-sk.min.js │ │ │ │ ├── jquery.ui.datepicker-sl.min.js │ │ │ │ ├── jquery.ui.datepicker-sq.min.js │ │ │ │ ├── jquery.ui.datepicker-sr-SR.min.js │ │ │ │ ├── jquery.ui.datepicker-sr.min.js │ │ │ │ ├── jquery.ui.datepicker-sv.min.js │ │ │ │ ├── jquery.ui.datepicker-ta.min.js │ │ │ │ ├── jquery.ui.datepicker-th.min.js │ │ │ │ ├── jquery.ui.datepicker-tj.min.js │ │ │ │ ├── jquery.ui.datepicker-tr.min.js │ │ │ │ ├── jquery.ui.datepicker-uk.min.js │ │ │ │ ├── jquery.ui.datepicker-vi.min.js │ │ │ │ ├── jquery.ui.datepicker-zh-CN.min.js │ │ │ │ ├── jquery.ui.datepicker-zh-HK.min.js │ │ │ │ └── jquery.ui.datepicker-zh-TW.min.js │ │ │ │ ├── jquery-ui.custom.min.js │ │ │ │ ├── jquery.ui.accordion.min.js │ │ │ │ ├── jquery.ui.autocomplete.min.js │ │ │ │ ├── jquery.ui.button.min.js │ │ │ │ ├── jquery.ui.core.min.js │ │ │ │ ├── jquery.ui.datepicker.min.js │ │ │ │ ├── jquery.ui.dialog.min.js │ │ │ │ ├── jquery.ui.draggable.min.js │ │ │ │ ├── jquery.ui.droppable.min.js │ │ │ │ ├── jquery.ui.effect-blind.min.js │ │ │ │ ├── jquery.ui.effect-bounce.min.js │ │ │ │ ├── jquery.ui.effect-clip.min.js │ │ │ │ ├── jquery.ui.effect-drop.min.js │ │ │ │ ├── jquery.ui.effect-explode.min.js │ │ │ │ ├── jquery.ui.effect-fade.min.js │ │ │ │ ├── jquery.ui.effect-fold.min.js │ │ │ │ ├── jquery.ui.effect-highlight.min.js │ │ │ │ ├── jquery.ui.effect-pulsate.min.js │ │ │ │ ├── jquery.ui.effect-scale.min.js │ │ │ │ ├── jquery.ui.effect-shake.min.js │ │ │ │ ├── jquery.ui.effect-slide.min.js │ │ │ │ ├── jquery.ui.effect-transfer.min.js │ │ │ │ ├── jquery.ui.effect.min.js │ │ │ │ ├── jquery.ui.menu.min.js │ │ │ │ ├── jquery.ui.mouse.min.js │ │ │ │ ├── jquery.ui.position.min.js │ │ │ │ ├── jquery.ui.progressbar.min.js │ │ │ │ ├── jquery.ui.resizable.min.js │ │ │ │ ├── jquery.ui.selectable.min.js │ │ │ │ ├── jquery.ui.slider.min.js │ │ │ │ ├── jquery.ui.sortable.min.js │ │ │ │ ├── jquery.ui.spinner.min.js │ │ │ │ ├── jquery.ui.tabs.min.js │ │ │ │ ├── jquery.ui.tooltip.min.js │ │ │ │ └── jquery.ui.widget.min.js │ │ ├── index.html │ │ └── js │ │ │ ├── jquery-1.8.2.js │ │ │ ├── jquery-ui-1.9.1.custom.js │ │ │ └── jquery-ui-1.9.1.custom.min.js │ ├── plugins │ │ ├── dataTables │ │ │ ├── dataTables.bootstrap.js │ │ │ └── jquery.dataTables.js │ │ ├── flot │ │ │ ├── excanvas.min.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.resize.js │ │ │ └── jquery.flot.tooltip.min.js │ │ ├── metisMenu │ │ │ └── jquery.metisMenu.js │ │ └── morris │ │ │ ├── morris.js │ │ │ └── raphael-2.1.0.min.js │ ├── reman-vpn.js │ ├── sb-admin.js │ └── waiting.js ├── login.php ├── networks.php ├── users.php ├── vpn.php └── vpnmanapi.php ├── ovpnctrl ├── .cproject ├── .project ├── .settings │ └── org.eclipse.cdt.managedbuilder.core.prefs ├── Debug │ ├── .gitignore │ ├── gcc47sh.sh │ ├── makefile │ ├── objects.mk │ ├── sources.mk │ └── src │ │ └── subdir.mk └── src │ ├── CfgMng.cpp │ ├── CfgMng.h │ ├── ClientNotification.cpp │ ├── ClientNotification.h │ ├── DbDrv.cpp │ ├── DbDrv.h │ ├── OvpnMng.cpp │ ├── OvpnMng.h │ ├── OvpnResponseMng.cpp │ ├── OvpnResponseMng.h │ ├── easylogging++.h │ ├── globals.h │ └── ovpnctrl.cpp └── vpn ├── bin ├── create_fw_chain.sh ├── node_down_script.sh ├── node_up_script.sh └── openvpn.sh └── template ├── nodecfg.tmpl ├── ovpnctrl.tmpl ├── script_down.tmpl ├── script_up.tmpl └── srvcfg.tmpl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/README.md -------------------------------------------------------------------------------- /db/vpnmandb_v0_1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/db/vpnmandb_v0_1.sql -------------------------------------------------------------------------------- /frontend/AccountController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/AccountController.php -------------------------------------------------------------------------------- /frontend/ConfigMng.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/ConfigMng.php -------------------------------------------------------------------------------- /frontend/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/Controller.php -------------------------------------------------------------------------------- /frontend/NetworkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/NetworkController.php -------------------------------------------------------------------------------- /frontend/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/UserController.php -------------------------------------------------------------------------------- /frontend/VpnController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/VpnController.php -------------------------------------------------------------------------------- /frontend/accounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/accounts.php -------------------------------------------------------------------------------- /frontend/check.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /frontend/configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/configuration.php -------------------------------------------------------------------------------- /frontend/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/css/bootstrap.css -------------------------------------------------------------------------------- /frontend/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/css/bootstrap.min.css -------------------------------------------------------------------------------- /frontend/css/jquery.colourPicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/css/jquery.colourPicker.css -------------------------------------------------------------------------------- /frontend/css/plugins/dataTables/dataTables.bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/css/plugins/dataTables/dataTables.bootstrap.css -------------------------------------------------------------------------------- /frontend/css/plugins/morris/morris-0.4.3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/css/plugins/morris/morris-0.4.3.min.css -------------------------------------------------------------------------------- /frontend/css/plugins/social-buttons/social-buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/css/plugins/social-buttons/social-buttons.css -------------------------------------------------------------------------------- /frontend/css/plugins/timeline/timeline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/css/plugins/timeline/timeline.css -------------------------------------------------------------------------------- /frontend/css/sb-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/css/sb-admin.css -------------------------------------------------------------------------------- /frontend/dologin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/dologin.php -------------------------------------------------------------------------------- /frontend/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /frontend/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /frontend/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /frontend/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /frontend/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /frontend/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /frontend/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /frontend/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/less/bordered-pulled.less -------------------------------------------------------------------------------- /frontend/font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/less/core.less -------------------------------------------------------------------------------- /frontend/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/less/fixed-width.less -------------------------------------------------------------------------------- /frontend/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/less/font-awesome.less -------------------------------------------------------------------------------- /frontend/font-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/less/icons.less -------------------------------------------------------------------------------- /frontend/font-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/less/larger.less -------------------------------------------------------------------------------- /frontend/font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/less/list.less -------------------------------------------------------------------------------- /frontend/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/less/mixins.less -------------------------------------------------------------------------------- /frontend/font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/less/path.less -------------------------------------------------------------------------------- /frontend/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/less/rotated-flipped.less -------------------------------------------------------------------------------- /frontend/font-awesome/less/spinning.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/less/spinning.less -------------------------------------------------------------------------------- /frontend/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/less/stacked.less -------------------------------------------------------------------------------- /frontend/font-awesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/less/variables.less -------------------------------------------------------------------------------- /frontend/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /frontend/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/scss/_core.scss -------------------------------------------------------------------------------- /frontend/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/scss/_fixed-width.scss -------------------------------------------------------------------------------- /frontend/font-awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/scss/_icons.scss -------------------------------------------------------------------------------- /frontend/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/scss/_larger.scss -------------------------------------------------------------------------------- /frontend/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/scss/_list.scss -------------------------------------------------------------------------------- /frontend/font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/scss/_mixins.scss -------------------------------------------------------------------------------- /frontend/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/scss/_path.scss -------------------------------------------------------------------------------- /frontend/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /frontend/font-awesome/scss/_spinning.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/scss/_spinning.scss -------------------------------------------------------------------------------- /frontend/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/scss/_stacked.scss -------------------------------------------------------------------------------- /frontend/font-awesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/scss/_variables.scss -------------------------------------------------------------------------------- /frontend/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/font-awesome/scss/font-awesome.scss -------------------------------------------------------------------------------- /frontend/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /frontend/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /frontend/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /frontend/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /frontend/history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/history.php -------------------------------------------------------------------------------- /frontend/img/icon_zipbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/img/icon_zipbox.png -------------------------------------------------------------------------------- /frontend/img/logo_alphasi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/img/logo_alphasi2.png -------------------------------------------------------------------------------- /frontend/img/logo_vpnman2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/img/logo_vpnman2.png -------------------------------------------------------------------------------- /frontend/include/cfgmng.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/include/cfgmng.php -------------------------------------------------------------------------------- /frontend/include/config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/include/config.inc.php -------------------------------------------------------------------------------- /frontend/include/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/include/menu.php -------------------------------------------------------------------------------- /frontend/include/zip.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/include/zip.lib.php -------------------------------------------------------------------------------- /frontend/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/index.php -------------------------------------------------------------------------------- /frontend/js/DataTables/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/Contributing.md -------------------------------------------------------------------------------- /frontend/js/DataTables/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/Readme.md -------------------------------------------------------------------------------- /frontend/js/DataTables/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/bower.json -------------------------------------------------------------------------------- /frontend/js/DataTables/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/composer.json -------------------------------------------------------------------------------- /frontend/js/DataTables/dataTables.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/dataTables.jquery.json -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/AutoFill/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/AutoFill/Readme.txt -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/AutoFill/css/dataTables.autoFill.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/AutoFill/css/dataTables.autoFill.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/AutoFill/css/dataTables.autoFill.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/AutoFill/css/dataTables.autoFill.min.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/AutoFill/images/filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/AutoFill/images/filler.png -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/AutoFill/js/dataTables.autoFill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/AutoFill/js/dataTables.autoFill.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/AutoFill/js/dataTables.autoFill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/AutoFill/js/dataTables.autoFill.min.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/ColReorder/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/ColReorder/Readme.txt -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/ColReorder/css/dataTables.colReorder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/ColReorder/css/dataTables.colReorder.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/ColReorder/css/dataTables.colReorder.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/ColReorder/css/dataTables.colReorder.min.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/ColReorder/images/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/ColReorder/images/insert.png -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/ColReorder/js/dataTables.colReorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/ColReorder/js/dataTables.colReorder.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/ColReorder/js/dataTables.colReorder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/ColReorder/js/dataTables.colReorder.min.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/ColVis/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/ColVis/Readme.txt -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/ColVis/css/dataTables.colVis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/ColVis/css/dataTables.colVis.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/ColVis/css/dataTables.colVis.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/ColVis/css/dataTables.colVis.min.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/ColVis/css/dataTables.colvis.jqueryui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/ColVis/css/dataTables.colvis.jqueryui.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/ColVis/js/dataTables.colVis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/ColVis/js/dataTables.colVis.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/ColVis/js/dataTables.colVis.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/ColVis/js/dataTables.colVis.min.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/FixedColumns/css/dataTables.fixedColumns.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/FixedColumns/css/dataTables.fixedColumns.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/FixedColumns/css/dataTables.fixedColumns.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/FixedColumns/css/dataTables.fixedColumns.min.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/FixedColumns/js/dataTables.fixedColumns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/FixedColumns/js/dataTables.fixedColumns.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/FixedColumns/js/dataTables.fixedColumns.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/FixedColumns/js/dataTables.fixedColumns.min.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/FixedHeader/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/FixedHeader/Readme.txt -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/FixedHeader/css/dataTables.fixedHeader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/FixedHeader/css/dataTables.fixedHeader.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/FixedHeader/css/dataTables.fixedHeader.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/FixedHeader/css/dataTables.fixedHeader.min.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/FixedHeader/js/dataTables.fixedHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/FixedHeader/js/dataTables.fixedHeader.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/FixedHeader/js/dataTables.fixedHeader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/FixedHeader/js/dataTables.fixedHeader.min.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/KeyTable/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/KeyTable/Readme.txt -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/KeyTable/css/dataTables.keyTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/KeyTable/css/dataTables.keyTable.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/KeyTable/css/dataTables.keyTable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/KeyTable/css/dataTables.keyTable.min.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/KeyTable/js/dataTables.keyTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/KeyTable/js/dataTables.keyTable.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/KeyTable/js/dataTables.keyTable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/KeyTable/js/dataTables.keyTable.min.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/Responsive/css/dataTables.responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/Responsive/css/dataTables.responsive.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/Responsive/css/dataTables.responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/Responsive/css/dataTables.responsive.scss -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/Responsive/js/dataTables.responsive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/Responsive/js/dataTables.responsive.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/Responsive/js/dataTables.responsive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/Responsive/js/dataTables.responsive.min.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/Scroller/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/Scroller/Readme.txt -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/Scroller/css/dataTables.scroller.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/Scroller/css/dataTables.scroller.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/Scroller/css/dataTables.scroller.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/Scroller/css/dataTables.scroller.min.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/Scroller/images/loading-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/Scroller/images/loading-background.png -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/Scroller/js/dataTables.scroller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/Scroller/js/dataTables.scroller.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/Scroller/js/dataTables.scroller.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/Scroller/js/dataTables.scroller.min.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/Readme.txt -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/css/dataTables.tableTools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/css/dataTables.tableTools.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/css/dataTables.tableTools.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/css/dataTables.tableTools.min.css -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/images/background.png -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/images/collection.png -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/images/collection_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/images/collection_hover.png -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/images/copy.png -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/images/copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/images/copy_hover.png -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/images/csv.png -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/images/csv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/images/csv_hover.png -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/images/pdf.png -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/images/pdf_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/images/pdf_hover.png -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/images/print.png -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/images/print_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/images/print_hover.png -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/images/psd/collection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/images/psd/collection.psd -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/images/psd/copy document.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/images/psd/copy document.psd -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/images/psd/file_types.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/images/psd/file_types.psd -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/images/psd/printer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/images/psd/printer.psd -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/images/xls.png -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/images/xls_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/images/xls_hover.png -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/js/dataTables.tableTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/js/dataTables.tableTools.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/js/dataTables.tableTools.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/js/dataTables.tableTools.min.js -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/swf/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/swf/copy_csv_xls.swf -------------------------------------------------------------------------------- /frontend/js/DataTables/extensions/TableTools/swf/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/extensions/TableTools/swf/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /frontend/js/DataTables/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/license.txt -------------------------------------------------------------------------------- /frontend/js/DataTables/media/css/jquery.dataTables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/css/jquery.dataTables.css -------------------------------------------------------------------------------- /frontend/js/DataTables/media/css/jquery.dataTables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/css/jquery.dataTables.min.css -------------------------------------------------------------------------------- /frontend/js/DataTables/media/css/jquery.dataTables_themeroller.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/css/jquery.dataTables_themeroller.css -------------------------------------------------------------------------------- /frontend/js/DataTables/media/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/images/Sorting icons.psd -------------------------------------------------------------------------------- /frontend/js/DataTables/media/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/images/back_disabled.png -------------------------------------------------------------------------------- /frontend/js/DataTables/media/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/images/back_enabled.png -------------------------------------------------------------------------------- /frontend/js/DataTables/media/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/images/back_enabled_hover.png -------------------------------------------------------------------------------- /frontend/js/DataTables/media/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/images/favicon.ico -------------------------------------------------------------------------------- /frontend/js/DataTables/media/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/images/forward_disabled.png -------------------------------------------------------------------------------- /frontend/js/DataTables/media/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/images/forward_enabled.png -------------------------------------------------------------------------------- /frontend/js/DataTables/media/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /frontend/js/DataTables/media/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/images/sort_asc.png -------------------------------------------------------------------------------- /frontend/js/DataTables/media/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /frontend/js/DataTables/media/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/images/sort_both.png -------------------------------------------------------------------------------- /frontend/js/DataTables/media/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/images/sort_desc.png -------------------------------------------------------------------------------- /frontend/js/DataTables/media/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /frontend/js/DataTables/media/js/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/js/jquery.dataTables.js -------------------------------------------------------------------------------- /frontend/js/DataTables/media/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /frontend/js/DataTables/media/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/media/js/jquery.js -------------------------------------------------------------------------------- /frontend/js/DataTables/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/DataTables/package.json -------------------------------------------------------------------------------- /frontend/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/bootstrap.js -------------------------------------------------------------------------------- /frontend/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/bootstrap.min.js -------------------------------------------------------------------------------- /frontend/js/colourPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/colourPicker.js -------------------------------------------------------------------------------- /frontend/js/demo/dashboard-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/demo/dashboard-demo.js -------------------------------------------------------------------------------- /frontend/js/demo/flot-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/demo/flot-demo.js -------------------------------------------------------------------------------- /frontend/js/demo/morris-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/demo/morris-demo.js -------------------------------------------------------------------------------- /frontend/js/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-1.10.2.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/README.txt -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/benchmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/benchmark.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/css/960/min/960.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/css/960/min/960.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/css/960/min/960_16_col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/css/960/min/960_16_col.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/css/jquery-mobile-1.0/images/ajax-loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/css/jquery-mobile-1.0/images/ajax-loader.png -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/css/jquery-mobile-1.0/images/icons-18-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/css/jquery-mobile-1.0/images/icons-18-white.png -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/css/jquery-mobile-1.0/jquery.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/css/jquery-mobile-1.0/jquery.mobile.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/css/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/css/mobile.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/css/normalize/min/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/css/normalize/min/normalize.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/css/prettify/min/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/css/prettify/min/prettify.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/css/style.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/images/arrow_left_12x12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/images/arrow_left_12x12.png -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/images/arrow_right_12x12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/images/arrow_right_12x12.png -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/images/subtlepatterns.com/cubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/images/subtlepatterns.com/cubes.png -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/jquery-google-maps-basic-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/jquery-google-maps-basic-example.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/jquery-google-maps-clustering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/jquery-google-maps-clustering.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/jquery-google-maps-data-attribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/jquery-google-maps-data-attribute.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/jquery-google-maps-extend-with-pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/jquery-google-maps-extend-with-pagination.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/jquery-google-maps-filtering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/jquery-google-maps-filtering.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/jquery-google-maps-fusion-tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/jquery-google-maps-fusion-tables.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/jquery-google-maps-geocoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/jquery-google-maps-geocoding.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/jquery-google-maps-geolocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/jquery-google-maps-geolocation.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/jquery-google-maps-json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/jquery-google-maps-json.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/jquery-google-maps-microdata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/jquery-google-maps-microdata.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/jquery-google-maps-microformat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/jquery-google-maps-microformat.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/jquery-google-maps-mobile-boilerplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/jquery-google-maps-mobile-boilerplate.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/jquery-google-maps-mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/jquery-google-maps-mobile.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/jquery-google-maps-rdfa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/jquery-google-maps-rdfa.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/jquery-google-maps-streetview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/jquery-google-maps-streetview.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/jquery-mobile-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/jquery-mobile-example.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/js/backbone-0.5.3/backbone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/js/backbone-0.5.3/backbone.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/js/demo.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/js/jquery-1.7.1/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/js/jquery-1.7.1/jquery.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/js/jquery-mobile-1.0/jquery.mobile.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/js/jquery-mobile-1.0/jquery.mobile.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/js/jquery.ui-1.8.15/jquery.ui.autocomplete.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/js/jquery.ui-1.8.15/jquery.ui.autocomplete.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/js/marker-with-label-1.1.5/marker.with.label.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/js/marker-with-label-1.1.5/marker.with.label.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/js/markerclustererplus-2.0.6/markerclusterer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/js/markerclustererplus-2.0.6/markerclusterer.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/js/modernizr-2.0.6/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/js/modernizr-2.0.6/modernizr.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/js/prettify/prettify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/js/prettify/prettify.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/js/underscore-1.2.2/underscore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/js/underscore-1.2.2/underscore.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/demos/json/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/demos/json/demo.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/ui/jquery.ui.map.extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/ui/jquery.ui.map.extensions.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/ui/jquery.ui.map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/ui/jquery.ui.map.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/ui/jquery.ui.map.microdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/ui/jquery.ui.map.microdata.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/ui/jquery.ui.map.microformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/ui/jquery.ui.map.microformat.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/ui/jquery.ui.map.overlays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/ui/jquery.ui.map.overlays.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/ui/jquery.ui.map.rdfa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/ui/jquery.ui.map.rdfa.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/ui/jquery.ui.map.services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/ui/jquery.ui.map.services.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/ui/min/jquery.ui.map.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/ui/min/jquery.ui.map.full.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/ui/min/jquery.ui.map.microdata.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/ui/min/jquery.ui.map.microdata.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/ui/min/jquery.ui.map.microformat.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/ui/min/jquery.ui.map.microformat.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/ui/min/jquery.ui.map.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/ui/min/jquery.ui.map.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/ui/min/jquery.ui.map.overlays.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/ui/min/jquery.ui.map.overlays.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/ui/min/jquery.ui.map.rdfa.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/ui/min/jquery.ui.map.rdfa.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui-map/ui/min/jquery.ui.map.services.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui-map/ui/min/jquery.ui.map.services.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /frontend/js/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /frontend/js/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /frontend/js/jquery-ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /frontend/js/jquery-ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /frontend/js/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /frontend/js/jquery-ui/css/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/css/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /frontend/js/jquery-ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /frontend/js/jquery-ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /frontend/js/jquery-ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /frontend/js/jquery-ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /frontend/js/jquery-ui/css/ui-lightness/jquery-ui-1.9.1.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/css/ui-lightness/jquery-ui-1.9.1.custom.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/css/ui-lightness/jquery-ui-1.9.1.custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/css/ui-lightness/jquery-ui-1.9.1.custom.min.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/AUTHORS.txt -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/MIT-LICENSE.txt -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/README.md -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/accordion/collapsible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/accordion/collapsible.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/accordion/custom-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/accordion/custom-icons.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/accordion/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/accordion/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/accordion/fillspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/accordion/fillspace.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/accordion/hoverintent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/accordion/hoverintent.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/accordion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/accordion/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/accordion/no-auto-height.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/accordion/no-auto-height.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/accordion/sortable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/accordion/sortable.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/autocomplete/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/autocomplete/categories.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/autocomplete/combobox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/autocomplete/combobox.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/autocomplete/custom-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/autocomplete/custom-data.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/autocomplete/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/autocomplete/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/autocomplete/folding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/autocomplete/folding.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/autocomplete/images/jquery_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/autocomplete/images/jquery_32x32.png -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/autocomplete/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/autocomplete/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/autocomplete/london.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/autocomplete/london.xml -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/autocomplete/maxheight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/autocomplete/maxheight.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/autocomplete/multiple-remote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/autocomplete/multiple-remote.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/autocomplete/multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/autocomplete/multiple.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/autocomplete/remote-jsonp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/autocomplete/remote-jsonp.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/autocomplete/remote-with-cache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/autocomplete/remote-with-cache.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/autocomplete/remote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/autocomplete/remote.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/autocomplete/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/autocomplete/search.php -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/autocomplete/xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/autocomplete/xml.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/button/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/button/checkbox.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/button/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/button/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/button/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/button/icons.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/button/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/button/radio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/button/radio.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/button/splitbutton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/button/splitbutton.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/button/toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/button/toolbar.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/datepicker/alt-field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/datepicker/alt-field.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/datepicker/animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/datepicker/animation.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/datepicker/buttonbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/datepicker/buttonbar.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/datepicker/date-formats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/datepicker/date-formats.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/datepicker/date-range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/datepicker/date-range.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/datepicker/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/datepicker/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/datepicker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/datepicker/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/datepicker/inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/datepicker/inline.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/datepicker/localization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/datepicker/localization.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/datepicker/min-max.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/datepicker/min-max.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/datepicker/other-months.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/datepicker/other-months.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/datepicker/show-week.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/datepicker/show-week.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/demos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/demos.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/dialog/animated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/dialog/animated.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/dialog/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/dialog/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/dialog/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/dialog/modal-confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/dialog/modal-confirmation.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/dialog/modal-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/dialog/modal-form.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/dialog/modal-message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/dialog/modal-message.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/dialog/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/dialog/modal.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/draggable/constrain-movement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/draggable/constrain-movement.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/draggable/cursor-style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/draggable/cursor-style.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/draggable/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/draggable/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/draggable/delay-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/draggable/delay-start.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/draggable/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/draggable/events.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/draggable/handle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/draggable/handle.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/draggable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/draggable/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/draggable/revert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/draggable/revert.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/draggable/scroll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/draggable/scroll.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/draggable/snap-to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/draggable/snap-to.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/draggable/sortable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/draggable/sortable.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/draggable/visual-feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/draggable/visual-feedback.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/droppable/accepted-elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/droppable/accepted-elements.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/droppable/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/droppable/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/droppable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/droppable/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/droppable/photo-manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/droppable/photo-manager.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/droppable/propagation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/droppable/propagation.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/droppable/revert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/droppable/revert.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/droppable/shopping-cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/droppable/shopping-cart.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/droppable/visual-feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/droppable/visual-feedback.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/effect/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/effect/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/effect/easing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/effect/easing.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/effect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/effect/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/images/calendar.gif -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/images/demo-config-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/images/demo-config-on.gif -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/images/icon-docs-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/images/icon-docs-info.gif -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/images/pbar-ani.gif -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/menu/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/menu/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/menu/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/menu/icons.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/menu/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/position/cycler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/position/cycler.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/position/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/position/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/position/images/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/position/images/earth.jpg -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/position/images/flight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/position/images/flight.jpg -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/position/images/rocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/position/images/rocket.jpg -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/position/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/position/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/progressbar/animated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/progressbar/animated.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/progressbar/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/progressbar/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/progressbar/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/progressbar/images/pbar-ani.gif -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/progressbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/progressbar/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/progressbar/resize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/progressbar/resize.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/resizable/animate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/resizable/animate.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/resizable/aspect-ratio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/resizable/aspect-ratio.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/resizable/constrain-area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/resizable/constrain-area.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/resizable/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/resizable/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/resizable/delay-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/resizable/delay-start.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/resizable/helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/resizable/helper.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/resizable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/resizable/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/resizable/max-min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/resizable/max-min.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/resizable/snap-to-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/resizable/snap-to-grid.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/resizable/synchronous-resize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/resizable/synchronous-resize.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/resizable/textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/resizable/textarea.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/resizable/visual-feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/resizable/visual-feedback.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/selectable/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/selectable/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/selectable/display-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/selectable/display-grid.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/selectable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/selectable/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/selectable/serialize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/selectable/serialize.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/slider/colorpicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/slider/colorpicker.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/slider/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/slider/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/slider/hotelrooms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/slider/hotelrooms.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/slider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/slider/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/slider/multiple-vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/slider/multiple-vertical.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/slider/range-vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/slider/range-vertical.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/slider/range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/slider/range.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/slider/rangemax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/slider/rangemax.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/slider/rangemin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/slider/rangemin.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/slider/side-scroll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/slider/side-scroll.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/slider/slider-vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/slider/slider-vertical.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/slider/steps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/slider/steps.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/sortable/connect-lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/sortable/connect-lists.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/sortable/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/sortable/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/sortable/delay-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/sortable/delay-start.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/sortable/display-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/sortable/display-grid.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/sortable/empty-lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/sortable/empty-lists.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/sortable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/sortable/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/sortable/items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/sortable/items.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/sortable/placeholder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/sortable/placeholder.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/sortable/portlets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/sortable/portlets.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/spinner/currency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/spinner/currency.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/spinner/decimal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/spinner/decimal.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/spinner/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/spinner/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/spinner/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/spinner/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/spinner/latlong.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/spinner/latlong.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/spinner/overflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/spinner/overflow.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/spinner/time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/spinner/time.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tabs/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tabs/ajax.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tabs/ajax/content1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tabs/ajax/content1.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tabs/ajax/content2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tabs/ajax/content2.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tabs/ajax/content3-slow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tabs/ajax/content3-slow.php -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tabs/ajax/content4-broken.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tabs/bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tabs/bottom.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tabs/collapsible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tabs/collapsible.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tabs/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tabs/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tabs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tabs/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tabs/manipulation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tabs/manipulation.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tabs/mouseover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tabs/mouseover.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tabs/sortable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tabs/sortable.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tabs/vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tabs/vertical.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tooltip/ajax/content1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tooltip/ajax/content1.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tooltip/ajax/content2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tooltip/ajax/content2.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tooltip/custom-animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tooltip/custom-animation.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tooltip/custom-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tooltip/custom-content.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tooltip/custom-style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tooltip/custom-style.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tooltip/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tooltip/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tooltip/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tooltip/forms.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tooltip/images/st-stephens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tooltip/images/st-stephens.jpg -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tooltip/images/tower-bridge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tooltip/images/tower-bridge.jpg -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tooltip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tooltip/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tooltip/tracking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tooltip/tracking.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/tooltip/video-player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/tooltip/video-player.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/widget/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/widget/default.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/demos/widget/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/demos/widget/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/accordion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/accordion.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/autocomplete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/autocomplete.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/blind-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/blind-effect.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/bounce-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/bounce-effect.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/button.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/clip-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/clip-effect.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/datepicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/datepicker.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/dialog.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/draggable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/draggable.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/drop-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/drop-effect.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/droppable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/droppable.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/explode-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/explode-effect.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/fade-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/fade-effect.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/fold-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/fold-effect.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/highlight-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/highlight-effect.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/jQuery.widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/jQuery.widget.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/menu.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/mouse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/mouse.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/position.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/progressbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/progressbar.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/puff-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/puff-effect.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/pulsate-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/pulsate-effect.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/resizable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/resizable.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/scale-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/scale-effect.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/selectable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/selectable.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/shake-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/shake-effect.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/size-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/size-effect.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/slide-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/slide-effect.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/slider.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/sortable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/sortable.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/spinner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/spinner.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/tabs.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/tooltip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/tooltip.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/docs/transfer-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/docs/transfer-effect.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/external/globalize.culture.de-DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/external/globalize.culture.de-DE.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/external/globalize.culture.ja-JP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/external/globalize.culture.ja-JP.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/external/globalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/external/globalize.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/external/jquery.bgiframe-2.1.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/external/jquery.bgiframe-2.1.2.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/external/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/external/jquery.cookie.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/external/jquery.metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/external/jquery.metadata.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/external/jquery.mousewheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/external/jquery.mousewheel.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/external/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/external/jshint.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/external/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/external/qunit.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/external/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/external/qunit.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/grunt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/grunt.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/jquery-1.8.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/jquery-1.8.2.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/package.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery-ui.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.accordion.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.all.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.autocomplete.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.base.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.button.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.core.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.dialog.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.menu.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.progressbar.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.resizable.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.selectable.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.slider.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.spinner.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.tabs.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/jquery.ui.tooltip.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery-ui.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.all.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.base.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.button.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.core.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.dialog.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.menu.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.slider.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.spinner.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.tabs.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.theme.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.tooltip.css -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.accordion.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.accordion.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.autocomplete.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.autocomplete.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.button.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.button.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.core.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.core.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.datepicker.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.datepicker.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.dialog.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.dialog.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.draggable.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.draggable.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.droppable.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.droppable.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.effect-blind.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.effect-blind.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.effect-bounce.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.effect-bounce.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.effect-clip.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.effect-clip.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.effect-drop.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.effect-drop.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.effect-explode.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.effect-explode.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.effect-fade.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.effect-fade.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.effect-fold.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.effect-fold.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.effect-highlight.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.effect-highlight.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.effect-pulsate.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.effect-pulsate.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.effect-scale.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.effect-scale.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.effect-shake.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.effect-shake.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.effect-slide.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.effect-slide.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.effect-transfer.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.effect-transfer.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.effect.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.effect.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.menu.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.menu.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.mouse.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.mouse.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.position.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.position.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.progressbar.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.progressbar.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.resizable.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.resizable.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.selectable.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.selectable.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.slider.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.slider.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.sortable.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.sortable.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.spinner.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.spinner.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.tabs.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.tabs.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.tooltip.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.tooltip.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui.widget.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui.widget.jquery.json -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery-ui.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery-ui.custom.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.accordion.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.autocomplete.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.button.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.core.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.dialog.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.draggable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.draggable.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.droppable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.droppable.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-blind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-blind.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-bounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-bounce.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-clip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-clip.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-drop.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-explode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-explode.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-fade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-fade.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-fold.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-highlight.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-pulsate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-pulsate.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-scale.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-shake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-shake.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-slide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-slide.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect-transfer.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.effect.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.menu.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.mouse.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.position.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.progressbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.progressbar.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.resizable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.resizable.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.selectable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.selectable.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.slider.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.sortable.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.spinner.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.tabs.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.tooltip.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/jquery.ui.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/jquery.ui.widget.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/i18n/jquery-ui-i18n.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/i18n/jquery-ui-i18n.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery-ui.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery-ui.custom.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.accordion.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.accordion.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.autocomplete.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.autocomplete.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.button.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.button.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.dialog.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.dialog.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.draggable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.draggable.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.droppable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.droppable.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-blind.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-blind.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-bounce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-bounce.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-clip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-clip.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-drop.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-drop.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fade.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fade.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fold.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fold.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-scale.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-scale.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-shake.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-shake.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-slide.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-slide.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.effect.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.menu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.menu.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.position.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.position.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.progressbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.progressbar.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.resizable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.resizable.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.selectable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.selectable.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.slider.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.sortable.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.spinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.spinner.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.tabs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.tabs.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.tooltip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.tooltip.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/index.html -------------------------------------------------------------------------------- /frontend/js/jquery-ui/js/jquery-1.8.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/js/jquery-1.8.2.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/js/jquery-ui-1.9.1.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/js/jquery-ui-1.9.1.custom.js -------------------------------------------------------------------------------- /frontend/js/jquery-ui/js/jquery-ui-1.9.1.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/jquery-ui/js/jquery-ui-1.9.1.custom.min.js -------------------------------------------------------------------------------- /frontend/js/plugins/dataTables/dataTables.bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/plugins/dataTables/dataTables.bootstrap.js -------------------------------------------------------------------------------- /frontend/js/plugins/dataTables/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/plugins/dataTables/jquery.dataTables.js -------------------------------------------------------------------------------- /frontend/js/plugins/flot/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/plugins/flot/excanvas.min.js -------------------------------------------------------------------------------- /frontend/js/plugins/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/plugins/flot/jquery.flot.js -------------------------------------------------------------------------------- /frontend/js/plugins/flot/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/plugins/flot/jquery.flot.pie.js -------------------------------------------------------------------------------- /frontend/js/plugins/flot/jquery.flot.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/plugins/flot/jquery.flot.resize.js -------------------------------------------------------------------------------- /frontend/js/plugins/flot/jquery.flot.tooltip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/plugins/flot/jquery.flot.tooltip.min.js -------------------------------------------------------------------------------- /frontend/js/plugins/metisMenu/jquery.metisMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/plugins/metisMenu/jquery.metisMenu.js -------------------------------------------------------------------------------- /frontend/js/plugins/morris/morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/plugins/morris/morris.js -------------------------------------------------------------------------------- /frontend/js/plugins/morris/raphael-2.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/plugins/morris/raphael-2.1.0.min.js -------------------------------------------------------------------------------- /frontend/js/reman-vpn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/reman-vpn.js -------------------------------------------------------------------------------- /frontend/js/sb-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/sb-admin.js -------------------------------------------------------------------------------- /frontend/js/waiting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/js/waiting.js -------------------------------------------------------------------------------- /frontend/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/login.php -------------------------------------------------------------------------------- /frontend/networks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/networks.php -------------------------------------------------------------------------------- /frontend/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/users.php -------------------------------------------------------------------------------- /frontend/vpn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/vpn.php -------------------------------------------------------------------------------- /frontend/vpnmanapi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/frontend/vpnmanapi.php -------------------------------------------------------------------------------- /ovpnctrl/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/.cproject -------------------------------------------------------------------------------- /ovpnctrl/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/.project -------------------------------------------------------------------------------- /ovpnctrl/.settings/org.eclipse.cdt.managedbuilder.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/.settings/org.eclipse.cdt.managedbuilder.core.prefs -------------------------------------------------------------------------------- /ovpnctrl/Debug/.gitignore: -------------------------------------------------------------------------------- 1 | ovpnctrl 2 | 3 | 4 | -------------------------------------------------------------------------------- /ovpnctrl/Debug/gcc47sh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/Debug/gcc47sh.sh -------------------------------------------------------------------------------- /ovpnctrl/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/Debug/makefile -------------------------------------------------------------------------------- /ovpnctrl/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/Debug/objects.mk -------------------------------------------------------------------------------- /ovpnctrl/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/Debug/sources.mk -------------------------------------------------------------------------------- /ovpnctrl/Debug/src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/Debug/src/subdir.mk -------------------------------------------------------------------------------- /ovpnctrl/src/CfgMng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/src/CfgMng.cpp -------------------------------------------------------------------------------- /ovpnctrl/src/CfgMng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/src/CfgMng.h -------------------------------------------------------------------------------- /ovpnctrl/src/ClientNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/src/ClientNotification.cpp -------------------------------------------------------------------------------- /ovpnctrl/src/ClientNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/src/ClientNotification.h -------------------------------------------------------------------------------- /ovpnctrl/src/DbDrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/src/DbDrv.cpp -------------------------------------------------------------------------------- /ovpnctrl/src/DbDrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/src/DbDrv.h -------------------------------------------------------------------------------- /ovpnctrl/src/OvpnMng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/src/OvpnMng.cpp -------------------------------------------------------------------------------- /ovpnctrl/src/OvpnMng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/src/OvpnMng.h -------------------------------------------------------------------------------- /ovpnctrl/src/OvpnResponseMng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/src/OvpnResponseMng.cpp -------------------------------------------------------------------------------- /ovpnctrl/src/OvpnResponseMng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/src/OvpnResponseMng.h -------------------------------------------------------------------------------- /ovpnctrl/src/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/src/easylogging++.h -------------------------------------------------------------------------------- /ovpnctrl/src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/src/globals.h -------------------------------------------------------------------------------- /ovpnctrl/src/ovpnctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/ovpnctrl/src/ovpnctrl.cpp -------------------------------------------------------------------------------- /vpn/bin/create_fw_chain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/vpn/bin/create_fw_chain.sh -------------------------------------------------------------------------------- /vpn/bin/node_down_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/vpn/bin/node_down_script.sh -------------------------------------------------------------------------------- /vpn/bin/node_up_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/vpn/bin/node_up_script.sh -------------------------------------------------------------------------------- /vpn/bin/openvpn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/vpn/bin/openvpn.sh -------------------------------------------------------------------------------- /vpn/template/nodecfg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/vpn/template/nodecfg.tmpl -------------------------------------------------------------------------------- /vpn/template/ovpnctrl.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/vpn/template/ovpnctrl.tmpl -------------------------------------------------------------------------------- /vpn/template/script_down.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/vpn/template/script_down.tmpl -------------------------------------------------------------------------------- /vpn/template/script_up.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/vpn/template/script_up.tmpl -------------------------------------------------------------------------------- /vpn/template/srvcfg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha-si/vpnman/HEAD/vpn/template/srvcfg.tmpl --------------------------------------------------------------------------------