├── .editorconfig ├── .gitattributes ├── .gitignore ├── .htaccess ├── .travis.yml ├── .vscode └── settings.json ├── DATA TESTING & DATA UJI ├── data peserta.xlsx └── data testing.xlsx ├── OVERVIEW ├── 1.PNG ├── 2.PNG ├── 3.PNG ├── 4.PNG ├── 5.PNG └── 6.PNG ├── README.md ├── application ├── .htaccess ├── cache │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── Home.php │ ├── Landing.php │ ├── Log.php │ ├── My404.php │ ├── Profile.php │ ├── User.php │ ├── admin │ │ ├── Data_testing.php │ │ ├── Data_uji.php │ │ ├── Home.php │ │ ├── Profile.php │ │ └── User_management.php │ └── index.html ├── core │ ├── MY_Controller.php │ ├── MY_Model.php │ └── index.html ├── helpers │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ └── index.html │ └── index.html ├── libraries │ └── index.html ├── logs │ └── index.html ├── models │ ├── M_admin.php │ ├── M_data_testing.php │ ├── M_data_testing_normalized.php │ ├── M_data_uji.php │ ├── M_data_uji_normalized.php │ ├── M_log.php │ ├── M_login.php │ ├── M_register.php │ ├── M_user.php │ └── index.html ├── third_party │ ├── PHPExcel.php │ ├── PHPExcel │ │ ├── Autoloader.php │ │ ├── CachedObjectStorage │ │ │ ├── APC.php │ │ │ ├── CacheBase.php │ │ │ ├── DiscISAM.php │ │ │ ├── ICache.php │ │ │ ├── Igbinary.php │ │ │ ├── Memcache.php │ │ │ ├── Memory.php │ │ │ ├── MemoryGZip.php │ │ │ ├── MemorySerialized.php │ │ │ ├── PHPTemp.php │ │ │ ├── SQLite.php │ │ │ ├── SQLite3.php │ │ │ └── Wincache.php │ │ ├── CachedObjectStorageFactory.php │ │ ├── CalcEngine │ │ │ ├── CyclicReferenceStack.php │ │ │ └── Logger.php │ │ ├── Calculation.php │ │ ├── Calculation │ │ │ ├── Database.php │ │ │ ├── DateTime.php │ │ │ ├── Engineering.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── Financial.php │ │ │ ├── FormulaParser.php │ │ │ ├── FormulaToken.php │ │ │ ├── Function.php │ │ │ ├── Functions.php │ │ │ ├── Logical.php │ │ │ ├── LookupRef.php │ │ │ ├── MathTrig.php │ │ │ ├── Statistical.php │ │ │ ├── TextData.php │ │ │ ├── Token │ │ │ │ └── Stack.php │ │ │ └── functionlist.txt │ │ ├── Cell.php │ │ ├── Cell │ │ │ ├── AdvancedValueBinder.php │ │ │ ├── DataType.php │ │ │ ├── DataValidation.php │ │ │ ├── DefaultValueBinder.php │ │ │ ├── Hyperlink.php │ │ │ └── IValueBinder.php │ │ ├── Chart.php │ │ ├── Chart │ │ │ ├── Axis.php │ │ │ ├── DataSeries.php │ │ │ ├── DataSeriesValues.php │ │ │ ├── Exception.php │ │ │ ├── GridLines.php │ │ │ ├── Layout.php │ │ │ ├── Legend.php │ │ │ ├── PlotArea.php │ │ │ ├── Properties.php │ │ │ ├── Renderer │ │ │ │ ├── PHP Charting Libraries.txt │ │ │ │ └── jpgraph.php │ │ │ └── Title.php │ │ ├── Comment.php │ │ ├── DocumentProperties.php │ │ ├── DocumentSecurity.php │ │ ├── Exception.php │ │ ├── HashTable.php │ │ ├── Helper │ │ │ └── HTML.php │ │ ├── IComparable.php │ │ ├── IOFactory.php │ │ ├── NamedRange.php │ │ ├── Reader │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── DefaultReadFilter.php │ │ │ ├── Excel2003XML.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ └── Theme.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── Escher.php │ │ │ │ ├── MD5.php │ │ │ │ └── RC4.php │ │ │ ├── Exception.php │ │ │ ├── Gnumeric.php │ │ │ ├── HTML.php │ │ │ ├── IReadFilter.php │ │ │ ├── IReader.php │ │ │ ├── OOCalc.php │ │ │ └── SYLK.php │ │ ├── ReferenceHelper.php │ │ ├── RichText.php │ │ ├── RichText │ │ │ ├── ITextElement.php │ │ │ ├── Run.php │ │ │ └── TextElement.php │ │ ├── Settings.php │ │ ├── Shared │ │ │ ├── CodePage.php │ │ │ ├── Date.php │ │ │ ├── Drawing.php │ │ │ ├── Escher.php │ │ │ ├── Escher │ │ │ │ ├── DgContainer.php │ │ │ │ ├── DgContainer │ │ │ │ │ ├── SpgrContainer.php │ │ │ │ │ └── SpgrContainer │ │ │ │ │ │ └── SpContainer.php │ │ │ │ ├── DggContainer.php │ │ │ │ └── DggContainer │ │ │ │ │ ├── BstoreContainer.php │ │ │ │ │ └── BstoreContainer │ │ │ │ │ ├── BSE.php │ │ │ │ │ └── BSE │ │ │ │ │ └── Blip.php │ │ │ ├── Excel5.php │ │ │ ├── File.php │ │ │ ├── Font.php │ │ │ ├── JAMA │ │ │ │ ├── CHANGELOG.TXT │ │ │ │ ├── CholeskyDecomposition.php │ │ │ │ ├── EigenvalueDecomposition.php │ │ │ │ ├── LUDecomposition.php │ │ │ │ ├── Matrix.php │ │ │ │ ├── QRDecomposition.php │ │ │ │ ├── SingularValueDecomposition.php │ │ │ │ └── utils │ │ │ │ │ ├── Error.php │ │ │ │ │ └── Maths.php │ │ │ ├── OLE.php │ │ │ ├── OLE │ │ │ │ ├── ChainedBlockStream.php │ │ │ │ ├── PPS.php │ │ │ │ └── PPS │ │ │ │ │ ├── File.php │ │ │ │ │ └── Root.php │ │ │ ├── OLERead.php │ │ │ ├── PCLZip │ │ │ │ ├── gnu-lgpl.txt │ │ │ │ ├── pclzip.lib.php │ │ │ │ └── readme.txt │ │ │ ├── PasswordHasher.php │ │ │ ├── String.php │ │ │ ├── TimeZone.php │ │ │ ├── XMLWriter.php │ │ │ ├── ZipArchive.php │ │ │ ├── ZipStreamWrapper.php │ │ │ └── trend │ │ │ │ ├── bestFitClass.php │ │ │ │ ├── exponentialBestFitClass.php │ │ │ │ ├── linearBestFitClass.php │ │ │ │ ├── logarithmicBestFitClass.php │ │ │ │ ├── polynomialBestFitClass.php │ │ │ │ ├── powerBestFitClass.php │ │ │ │ └── trendClass.php │ │ ├── Style.php │ │ ├── Style │ │ │ ├── Alignment.php │ │ │ ├── Border.php │ │ │ ├── Borders.php │ │ │ ├── Color.php │ │ │ ├── Conditional.php │ │ │ ├── Fill.php │ │ │ ├── Font.php │ │ │ ├── NumberFormat.php │ │ │ ├── Protection.php │ │ │ └── Supervisor.php │ │ ├── Worksheet.php │ │ ├── Worksheet │ │ │ ├── AutoFilter.php │ │ │ ├── AutoFilter │ │ │ │ ├── Column.php │ │ │ │ └── Column │ │ │ │ │ └── Rule.php │ │ │ ├── BaseDrawing.php │ │ │ ├── CellIterator.php │ │ │ ├── Column.php │ │ │ ├── ColumnCellIterator.php │ │ │ ├── ColumnDimension.php │ │ │ ├── ColumnIterator.php │ │ │ ├── Dimension.php │ │ │ ├── Drawing.php │ │ │ ├── Drawing │ │ │ │ └── Shadow.php │ │ │ ├── HeaderFooter.php │ │ │ ├── HeaderFooterDrawing.php │ │ │ ├── MemoryDrawing.php │ │ │ ├── PageMargins.php │ │ │ ├── PageSetup.php │ │ │ ├── Protection.php │ │ │ ├── Row.php │ │ │ ├── RowCellIterator.php │ │ │ ├── RowDimension.php │ │ │ ├── RowIterator.php │ │ │ └── SheetView.php │ │ ├── WorksheetIterator.php │ │ ├── Writer │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ ├── Comments.php │ │ │ │ ├── ContentTypes.php │ │ │ │ ├── DocProps.php │ │ │ │ ├── Drawing.php │ │ │ │ ├── Rels.php │ │ │ │ ├── RelsRibbon.php │ │ │ │ ├── RelsVBA.php │ │ │ │ ├── StringTable.php │ │ │ │ ├── Style.php │ │ │ │ ├── Theme.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── WriterPart.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── BIFFwriter.php │ │ │ │ ├── Escher.php │ │ │ │ ├── Font.php │ │ │ │ ├── Parser.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── Xf.php │ │ │ ├── Exception.php │ │ │ ├── HTML.php │ │ │ ├── IWriter.php │ │ │ ├── OpenDocument.php │ │ │ ├── OpenDocument │ │ │ │ ├── Cell │ │ │ │ │ └── Comment.php │ │ │ │ ├── Content.php │ │ │ │ ├── Meta.php │ │ │ │ ├── MetaInf.php │ │ │ │ ├── Mimetype.php │ │ │ │ ├── Settings.php │ │ │ │ ├── Styles.php │ │ │ │ ├── Thumbnails.php │ │ │ │ └── WriterPart.php │ │ │ ├── PDF.php │ │ │ └── PDF │ │ │ │ ├── Core.php │ │ │ │ ├── DomPDF.php │ │ │ │ ├── mPDF.php │ │ │ │ └── tcPDF.php │ │ └── locale │ │ │ ├── bg │ │ │ └── config │ │ │ ├── cs │ │ │ ├── config │ │ │ └── functions │ │ │ ├── da │ │ │ ├── config │ │ │ └── functions │ │ │ ├── de │ │ │ ├── config │ │ │ └── functions │ │ │ ├── en │ │ │ └── uk │ │ │ │ └── config │ │ │ ├── es │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fi │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fr │ │ │ ├── config │ │ │ └── functions │ │ │ ├── hu │ │ │ ├── config │ │ │ └── functions │ │ │ ├── it │ │ │ ├── config │ │ │ └── functions │ │ │ ├── nl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── no │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pt │ │ │ ├── br │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ ├── config │ │ │ └── functions │ │ │ ├── ru │ │ │ ├── config │ │ │ └── functions │ │ │ ├── sv │ │ │ ├── config │ │ │ └── functions │ │ │ └── tr │ │ │ ├── config │ │ │ └── functions │ └── index.html └── views │ ├── View_log.php │ ├── View_logging.php │ ├── _admin │ ├── _template │ │ ├── content.php │ │ ├── footer.php │ │ ├── header.php │ │ └── sidebar_menu.php │ ├── data_testing │ │ ├── View_create.php │ │ ├── View_edit.php │ │ ├── View_import.php │ │ └── View_list.php │ ├── data_uji │ │ ├── View_detail_uji.php │ │ ├── View_detail_uji_batch.php │ │ ├── View_import.php │ │ ├── View_list.php │ │ └── View_rangking.php │ ├── profile │ │ ├── View.php │ │ └── View_edit.php │ └── user_management │ │ ├── View_detail.php │ │ ├── View_edit.php │ │ └── View_list.php │ ├── _user │ ├── _template │ │ ├── content.php │ │ ├── footer.php │ │ ├── header.php │ │ ├── header1.php │ │ └── sidebar_menu.php │ ├── biodata │ │ └── View_create.php │ ├── landing_page │ │ └── View.php │ └── profile │ │ ├── View.php │ │ ├── View_edit.1.php │ │ └── View_edit.php │ ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ ├── html │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ └── index.html │ ├── index.html │ ├── login_page.php │ ├── register_page.php │ └── welcome_message.php ├── assets ├── .gitignore ├── .npmignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── TES │ ├── ajax │ │ └── ajax_document.js │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es-mx.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── oc.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── colordialog │ │ │ │ └── dialogs │ │ │ │ │ ├── colordialog.css │ │ │ │ │ └── colordialog.js │ │ │ ├── copyformatting │ │ │ │ ├── cursors │ │ │ │ │ ├── cursor-disabled.svg │ │ │ │ │ └── cursor.svg │ │ │ │ └── styles │ │ │ │ │ └── copyformatting.css │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── div │ │ │ │ └── dialogs │ │ │ │ │ └── div.js │ │ │ ├── find │ │ │ │ └── dialogs │ │ │ │ │ └── find.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── liststyle │ │ │ │ └── dialogs │ │ │ │ │ └── liststyle.js │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scayt │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── scayt.css │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ └── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── envelope.png │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── kiss.png │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ └── wink_smile.png │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tableselection │ │ │ │ └── styles │ │ │ │ │ └── tableselection.css │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ └── wsc.css │ │ ├── samples │ │ │ ├── css │ │ │ │ └── samples.css │ │ │ ├── img │ │ │ │ ├── github-top.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── header-separator.png │ │ │ │ ├── logo.png │ │ │ │ └── navigation-tip.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── sample.js │ │ │ │ └── sf.js │ │ │ ├── old │ │ │ │ ├── ajax.html │ │ │ │ ├── api.html │ │ │ │ ├── appendto.html │ │ │ │ ├── assets │ │ │ │ │ ├── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ ├── posteddata.php │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── uilanguages │ │ │ │ │ │ └── languages.js │ │ │ │ ├── datafiltering.html │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── divreplace.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── index.html │ │ │ │ ├── inlineall.html │ │ │ │ ├── inlinebycode.html │ │ │ │ ├── inlinetextarea.html │ │ │ │ ├── jquery.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── readonly.html │ │ │ │ ├── replacebyclass.html │ │ │ │ ├── replacebycode.html │ │ │ │ ├── sample.css │ │ │ │ ├── sample.js │ │ │ │ ├── sample_posteddata.php │ │ │ │ ├── tabindex.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ ├── uicolor.html │ │ │ │ ├── uilanguages.html │ │ │ │ ├── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ │ └── xhtmlstyle.html │ │ │ └── toolbarconfigurator │ │ │ │ ├── css │ │ │ │ └── fontello.css │ │ │ │ ├── font │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.json │ │ │ │ ├── fontello.eot │ │ │ │ ├── fontello.svg │ │ │ │ ├── fontello.ttf │ │ │ │ └── fontello.woff │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ ├── toolbarmodifier.js │ │ │ │ └── toolbartextmodifier.js │ │ │ │ └── lib │ │ │ │ └── codemirror │ │ │ │ ├── LICENSE │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── javascript.js │ │ │ │ ├── neo.css │ │ │ │ ├── show-hint.css │ │ │ │ └── show-hint.js │ │ ├── skins │ │ │ └── moono-lisa │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ └── styles.js │ ├── css │ │ ├── ace-ie.min.css │ │ ├── ace-part2.min.css │ │ ├── ace-rtl.min.css │ │ ├── ace-skins.min.css │ │ ├── ace.min.css │ │ ├── bootstrap-colorpicker.min.css │ │ ├── bootstrap-datepicker3.min.css │ │ ├── bootstrap-datetimepicker.min.css │ │ ├── bootstrap-duallistbox.min.css │ │ ├── bootstrap-editable.min.css │ │ ├── bootstrap-multiselect.min.css │ │ ├── bootstrap-timepicker.min.css │ │ ├── bootstrap.min.css │ │ ├── chosen.min.css │ │ ├── colorbox.min.css │ │ ├── daterangepicker.min.css │ │ ├── dropzone.min.css │ │ ├── font-awesome.min.css │ │ ├── fonts.googleapis.com.css │ │ ├── fullcalendar.min.css │ │ ├── jquery-ui.custom.min.css │ │ ├── jquery-ui.min.css │ │ ├── jquery.gritter.min.css │ │ ├── prettify.min.css │ │ ├── select2.min.css │ │ └── ui.jqgrid.min.css │ ├── font-awesome │ │ └── 4.5.0 │ │ │ ├── css │ │ │ └── font-awesome.min.css │ │ │ └── fonts │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ ├── avatars │ │ │ ├── avatar.png │ │ │ ├── avatar1.png │ │ │ ├── avatar2.png │ │ │ ├── avatar3.png │ │ │ ├── avatar4.png │ │ │ ├── avatar5.png │ │ │ ├── profile-pic.jpg │ │ │ └── user.jpg │ │ ├── bootstrap-colorpicker │ │ │ ├── alpha-horizontal.png │ │ │ ├── alpha.png │ │ │ ├── hue-horizontal.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ │ ├── email │ │ │ ├── email1.png │ │ │ ├── email2.png │ │ │ ├── email3.png │ │ │ └── email4.png │ │ ├── gallery │ │ │ ├── image-1.jpg │ │ │ ├── image-2.jpg │ │ │ ├── image-3.jpg │ │ │ ├── image-4.jpg │ │ │ ├── image-5.jpg │ │ │ ├── image-6.jpg │ │ │ ├── thumb-1.jpg │ │ │ ├── thumb-2.jpg │ │ │ ├── thumb-3.jpg │ │ │ ├── thumb-4.jpg │ │ │ ├── thumb-5.jpg │ │ │ └── thumb-6.jpg │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── logo │ │ │ ├── halosultra.jpg │ │ │ ├── kominfo.png │ │ │ ├── logots.png │ │ │ ├── logots1.png │ │ │ ├── pemprov.png │ │ │ └── rumahaku.jpeg │ │ ├── no_image.png │ │ ├── placeholder │ │ │ ├── 165x90.png │ │ │ ├── 255x150.png │ │ │ ├── 530x270.png │ │ │ └── 550x280.png │ │ ├── putih.png │ │ └── ts.png │ ├── js │ │ ├── ace-editable.min.js │ │ ├── ace-elements.min.js │ │ ├── ace-extra.min.js │ │ ├── ace.min.js │ │ ├── autosize.min.js │ │ ├── bootbox.js │ │ ├── bootstrap-colorpicker.min.js │ │ ├── bootstrap-datepicker.min.js │ │ ├── bootstrap-datetimepicker.min.js │ │ ├── bootstrap-editable.min.js │ │ ├── bootstrap-markdown.min.js │ │ ├── bootstrap-multiselect.min.js │ │ ├── bootstrap-tag.min.js │ │ ├── bootstrap-timepicker.min.js │ │ ├── bootstrap-wysiwyg.min.js │ │ ├── bootstrap.min.js │ │ ├── buttons.colVis.min.js │ │ ├── buttons.flash.min.js │ │ ├── buttons.html5.min.js │ │ ├── buttons.print.min.js │ │ ├── chosen.jquery.min.js │ │ ├── ckeditor │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ ├── build-config.js │ │ │ ├── ckeditor.js │ │ │ ├── config.js │ │ │ ├── contents.css │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── oc.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── a11yhelp │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es-mx.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── clipboard │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── paste.js │ │ │ │ ├── colordialog │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── colordialog.css │ │ │ │ │ │ └── colordialog.js │ │ │ │ ├── copyformatting │ │ │ │ │ ├── cursors │ │ │ │ │ │ ├── cursor-disabled.svg │ │ │ │ │ │ └── cursor.svg │ │ │ │ │ └── styles │ │ │ │ │ │ └── copyformatting.css │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ ├── div │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── div.js │ │ │ │ ├── find │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── find.js │ │ │ │ ├── flash │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── flash.js │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── forms │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── button.js │ │ │ │ │ │ ├── checkbox.js │ │ │ │ │ │ ├── form.js │ │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ │ ├── radio.js │ │ │ │ │ │ ├── select.js │ │ │ │ │ │ ├── textarea.js │ │ │ │ │ │ └── textfield.js │ │ │ │ │ └── images │ │ │ │ │ │ └── hiddenfield.gif │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── iframe │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── iframe.js │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── image │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── link │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── liststyle │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── liststyle.js │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── icon.png │ │ │ │ ├── pagebreak │ │ │ │ │ └── images │ │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── pastefromword │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── preview │ │ │ │ │ └── preview.html │ │ │ │ ├── scayt │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── moono-lisa │ │ │ │ │ │ └── scayt.css │ │ │ │ ├── showblocks │ │ │ │ │ └── images │ │ │ │ │ │ ├── block_address.png │ │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ │ ├── block_div.png │ │ │ │ │ │ ├── block_h1.png │ │ │ │ │ │ ├── block_h2.png │ │ │ │ │ │ ├── block_h3.png │ │ │ │ │ │ ├── block_h4.png │ │ │ │ │ │ ├── block_h5.png │ │ │ │ │ │ ├── block_h6.png │ │ │ │ │ │ ├── block_p.png │ │ │ │ │ │ └── block_pre.png │ │ │ │ ├── smiley │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── smiley.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ ├── envelope.png │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ ├── heart.png │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ ├── kiss.png │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ │ └── wink_smile.png │ │ │ │ ├── specialchar │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es-mx.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ └── specialchar.js │ │ │ │ ├── table │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── table.js │ │ │ │ ├── tableselection │ │ │ │ │ └── styles │ │ │ │ │ │ └── tableselection.css │ │ │ │ ├── tabletools │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ ├── templates │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── templates.css │ │ │ │ │ │ └── templates.js │ │ │ │ │ └── templates │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ └── template3.gif │ │ │ │ ├── widget │ │ │ │ │ └── images │ │ │ │ │ │ └── handle.png │ │ │ │ └── wsc │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── wsc.css │ │ │ ├── samples │ │ │ │ ├── css │ │ │ │ │ └── samples.css │ │ │ │ ├── img │ │ │ │ │ ├── github-top.png │ │ │ │ │ ├── header-bg.png │ │ │ │ │ ├── header-separator.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── logo.svg │ │ │ │ │ └── navigation-tip.png │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── sample.js │ │ │ │ │ └── sf.js │ │ │ │ ├── old │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── api.html │ │ │ │ │ ├── appendto.html │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── inlineall │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ │ ├── posteddata.php │ │ │ │ │ │ ├── sample.jpg │ │ │ │ │ │ └── uilanguages │ │ │ │ │ │ │ └── languages.js │ │ │ │ │ ├── datafiltering.html │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ │ └── dialog.html │ │ │ │ │ ├── divreplace.html │ │ │ │ │ ├── enterkey │ │ │ │ │ │ └── enterkey.html │ │ │ │ │ ├── htmlwriter │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ │ └── outputhtml.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inlineall.html │ │ │ │ │ ├── inlinebycode.html │ │ │ │ │ ├── inlinetextarea.html │ │ │ │ │ ├── jquery.html │ │ │ │ │ ├── magicline │ │ │ │ │ │ └── magicline.html │ │ │ │ │ ├── readonly.html │ │ │ │ │ ├── replacebyclass.html │ │ │ │ │ ├── replacebycode.html │ │ │ │ │ ├── sample.css │ │ │ │ │ ├── sample.js │ │ │ │ │ ├── sample_posteddata.php │ │ │ │ │ ├── tabindex.html │ │ │ │ │ ├── toolbar │ │ │ │ │ │ └── toolbar.html │ │ │ │ │ ├── uicolor.html │ │ │ │ │ ├── uilanguages.html │ │ │ │ │ ├── wysiwygarea │ │ │ │ │ │ └── fullpage.html │ │ │ │ │ └── xhtmlstyle.html │ │ │ │ └── toolbarconfigurator │ │ │ │ │ ├── css │ │ │ │ │ └── fontello.css │ │ │ │ │ ├── font │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── config.json │ │ │ │ │ ├── fontello.eot │ │ │ │ │ ├── fontello.svg │ │ │ │ │ ├── fontello.ttf │ │ │ │ │ └── fontello.woff │ │ │ │ │ ├── index.html │ │ │ │ │ ├── js │ │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ │ ├── toolbarmodifier.js │ │ │ │ │ └── toolbartextmodifier.js │ │ │ │ │ └── lib │ │ │ │ │ └── codemirror │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── codemirror.css │ │ │ │ │ ├── codemirror.js │ │ │ │ │ ├── javascript.js │ │ │ │ │ ├── neo.css │ │ │ │ │ ├── show-hint.css │ │ │ │ │ └── show-hint.js │ │ │ ├── skins │ │ │ │ └── moono-lisa │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ └── spinner.gif │ │ │ │ │ └── readme.md │ │ │ └── styles.js │ │ ├── ckfinder │ │ │ ├── CHANGELOG.html │ │ │ ├── LICENSE.html │ │ │ ├── README.html │ │ │ ├── ckfinder.html │ │ │ ├── ckfinder.js │ │ │ ├── config.js │ │ │ ├── config.php │ │ │ ├── core │ │ │ │ └── connector │ │ │ │ │ └── php │ │ │ │ │ ├── connector.php │ │ │ │ │ └── vendor │ │ │ │ │ ├── autoload.php │ │ │ │ │ ├── aws │ │ │ │ │ └── aws-sdk-php │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── Acm │ │ │ │ │ │ ├── AcmClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── AcmException.php │ │ │ │ │ │ ├── Api │ │ │ │ │ │ ├── AbstractModel.php │ │ │ │ │ │ ├── ApiProvider.php │ │ │ │ │ │ ├── DateTimeResult.php │ │ │ │ │ │ ├── DocModel.php │ │ │ │ │ │ ├── ErrorParser │ │ │ │ │ │ │ ├── JsonParserTrait.php │ │ │ │ │ │ │ ├── JsonRpcErrorParser.php │ │ │ │ │ │ │ ├── RestJsonErrorParser.php │ │ │ │ │ │ │ └── XmlErrorParser.php │ │ │ │ │ │ ├── ListShape.php │ │ │ │ │ │ ├── MapShape.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Parser │ │ │ │ │ │ │ ├── AbstractParser.php │ │ │ │ │ │ │ ├── AbstractRestParser.php │ │ │ │ │ │ │ ├── Crc32ValidatingParser.php │ │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ │ └── ParserException.php │ │ │ │ │ │ │ ├── JsonParser.php │ │ │ │ │ │ │ ├── JsonRpcParser.php │ │ │ │ │ │ │ ├── PayloadParserTrait.php │ │ │ │ │ │ │ ├── QueryParser.php │ │ │ │ │ │ │ ├── RestJsonParser.php │ │ │ │ │ │ │ ├── RestXmlParser.php │ │ │ │ │ │ │ └── XmlParser.php │ │ │ │ │ │ ├── Serializer │ │ │ │ │ │ │ ├── Ec2ParamBuilder.php │ │ │ │ │ │ │ ├── JsonBody.php │ │ │ │ │ │ │ ├── JsonRpcSerializer.php │ │ │ │ │ │ │ ├── QueryParamBuilder.php │ │ │ │ │ │ │ ├── QuerySerializer.php │ │ │ │ │ │ │ ├── RestJsonSerializer.php │ │ │ │ │ │ │ ├── RestSerializer.php │ │ │ │ │ │ │ ├── RestXmlSerializer.php │ │ │ │ │ │ │ └── XmlBody.php │ │ │ │ │ │ ├── Service.php │ │ │ │ │ │ ├── Shape.php │ │ │ │ │ │ ├── ShapeMap.php │ │ │ │ │ │ ├── StructureShape.php │ │ │ │ │ │ ├── TimestampShape.php │ │ │ │ │ │ └── Validator.php │ │ │ │ │ │ ├── ApiGateway │ │ │ │ │ │ ├── ApiGatewayClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── ApiGatewayException.php │ │ │ │ │ │ ├── ApplicationAutoScaling │ │ │ │ │ │ ├── ApplicationAutoScalingClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── ApplicationAutoScalingException.php │ │ │ │ │ │ ├── ApplicationDiscoveryService │ │ │ │ │ │ ├── ApplicationDiscoveryServiceClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── ApplicationDiscoveryServiceException.php │ │ │ │ │ │ ├── Appstream │ │ │ │ │ │ ├── AppstreamClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── AppstreamException.php │ │ │ │ │ │ ├── Athena │ │ │ │ │ │ ├── AthenaClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── AthenaException.php │ │ │ │ │ │ ├── AutoScaling │ │ │ │ │ │ ├── AutoScalingClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── AutoScalingException.php │ │ │ │ │ │ ├── AwsClient.php │ │ │ │ │ │ ├── AwsClientInterface.php │ │ │ │ │ │ ├── AwsClientTrait.php │ │ │ │ │ │ ├── Batch │ │ │ │ │ │ ├── BatchClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── BatchException.php │ │ │ │ │ │ ├── Budgets │ │ │ │ │ │ ├── BudgetsClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── BudgetsException.php │ │ │ │ │ │ ├── CacheInterface.php │ │ │ │ │ │ ├── ClientResolver.php │ │ │ │ │ │ ├── CloudDirectory │ │ │ │ │ │ ├── CloudDirectoryClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── CloudDirectoryException.php │ │ │ │ │ │ ├── CloudFormation │ │ │ │ │ │ ├── CloudFormationClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── CloudFormationException.php │ │ │ │ │ │ ├── CloudFront │ │ │ │ │ │ ├── CloudFrontClient.php │ │ │ │ │ │ ├── CookieSigner.php │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── CloudFrontException.php │ │ │ │ │ │ ├── Signer.php │ │ │ │ │ │ └── UrlSigner.php │ │ │ │ │ │ ├── CloudHsm │ │ │ │ │ │ ├── CloudHsmClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── CloudHsmException.php │ │ │ │ │ │ ├── CloudSearch │ │ │ │ │ │ ├── CloudSearchClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── CloudSearchException.php │ │ │ │ │ │ ├── CloudSearchDomain │ │ │ │ │ │ ├── CloudSearchDomainClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── CloudSearchDomainException.php │ │ │ │ │ │ ├── CloudTrail │ │ │ │ │ │ ├── CloudTrailClient.php │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── CloudTrailException.php │ │ │ │ │ │ ├── LogFileIterator.php │ │ │ │ │ │ ├── LogFileReader.php │ │ │ │ │ │ └── LogRecordIterator.php │ │ │ │ │ │ ├── CloudWatch │ │ │ │ │ │ ├── CloudWatchClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── CloudWatchException.php │ │ │ │ │ │ ├── CloudWatchEvents │ │ │ │ │ │ ├── CloudWatchEventsClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── CloudWatchEventsException.php │ │ │ │ │ │ ├── CloudWatchLogs │ │ │ │ │ │ ├── CloudWatchLogsClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── CloudWatchLogsException.php │ │ │ │ │ │ ├── CodeBuild │ │ │ │ │ │ ├── CodeBuildClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── CodeBuildException.php │ │ │ │ │ │ ├── CodeCommit │ │ │ │ │ │ ├── CodeCommitClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── CodeCommitException.php │ │ │ │ │ │ ├── CodeDeploy │ │ │ │ │ │ ├── CodeDeployClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── CodeDeployException.php │ │ │ │ │ │ ├── CodePipeline │ │ │ │ │ │ ├── CodePipelineClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── CodePipelineException.php │ │ │ │ │ │ ├── CodeStar │ │ │ │ │ │ ├── CodeStarClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── CodeStarException.php │ │ │ │ │ │ ├── CognitoIdentity │ │ │ │ │ │ ├── CognitoIdentityClient.php │ │ │ │ │ │ ├── CognitoIdentityProvider.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── CognitoIdentityException.php │ │ │ │ │ │ ├── CognitoIdentityProvider │ │ │ │ │ │ ├── CognitoIdentityProviderClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── CognitoIdentityProviderException.php │ │ │ │ │ │ ├── CognitoSync │ │ │ │ │ │ ├── CognitoSyncClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── CognitoSyncException.php │ │ │ │ │ │ ├── Command.php │ │ │ │ │ │ ├── CommandInterface.php │ │ │ │ │ │ ├── CommandPool.php │ │ │ │ │ │ ├── ConfigService │ │ │ │ │ │ ├── ConfigServiceClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── ConfigServiceException.php │ │ │ │ │ │ ├── CostandUsageReportService │ │ │ │ │ │ ├── CostandUsageReportServiceClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── CostandUsageReportServiceException.php │ │ │ │ │ │ ├── Credentials │ │ │ │ │ │ ├── AssumeRoleCredentialProvider.php │ │ │ │ │ │ ├── CredentialProvider.php │ │ │ │ │ │ ├── Credentials.php │ │ │ │ │ │ ├── CredentialsInterface.php │ │ │ │ │ │ ├── EcsCredentialProvider.php │ │ │ │ │ │ └── InstanceProfileProvider.php │ │ │ │ │ │ ├── DAX │ │ │ │ │ │ ├── DAXClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── DAXException.php │ │ │ │ │ │ ├── DataPipeline │ │ │ │ │ │ ├── DataPipelineClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── DataPipelineException.php │ │ │ │ │ │ ├── DatabaseMigrationService │ │ │ │ │ │ ├── DatabaseMigrationServiceClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── DatabaseMigrationServiceException.php │ │ │ │ │ │ ├── DeviceFarm │ │ │ │ │ │ ├── DeviceFarmClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── DeviceFarmException.php │ │ │ │ │ │ ├── DirectConnect │ │ │ │ │ │ ├── DirectConnectClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── DirectConnectException.php │ │ │ │ │ │ ├── DirectoryService │ │ │ │ │ │ ├── DirectoryServiceClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── DirectoryServiceException.php │ │ │ │ │ │ ├── DoctrineCacheAdapter.php │ │ │ │ │ │ ├── DynamoDb │ │ │ │ │ │ ├── BinaryValue.php │ │ │ │ │ │ ├── DynamoDbClient.php │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── DynamoDbException.php │ │ │ │ │ │ ├── LockingSessionConnection.php │ │ │ │ │ │ ├── Marshaler.php │ │ │ │ │ │ ├── NumberValue.php │ │ │ │ │ │ ├── SessionConnectionInterface.php │ │ │ │ │ │ ├── SessionHandler.php │ │ │ │ │ │ ├── SetValue.php │ │ │ │ │ │ ├── StandardSessionConnection.php │ │ │ │ │ │ └── WriteRequestBatch.php │ │ │ │ │ │ ├── DynamoDbStreams │ │ │ │ │ │ ├── DynamoDbStreamsClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── DynamoDbStreamsException.php │ │ │ │ │ │ ├── Ec2 │ │ │ │ │ │ ├── Ec2Client.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── Ec2Exception.php │ │ │ │ │ │ ├── Ecr │ │ │ │ │ │ ├── EcrClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── EcrException.php │ │ │ │ │ │ ├── Ecs │ │ │ │ │ │ ├── EcsClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── EcsException.php │ │ │ │ │ │ ├── Efs │ │ │ │ │ │ ├── EfsClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── EfsException.php │ │ │ │ │ │ ├── ElastiCache │ │ │ │ │ │ ├── ElastiCacheClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── ElastiCacheException.php │ │ │ │ │ │ ├── ElasticBeanstalk │ │ │ │ │ │ ├── ElasticBeanstalkClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── ElasticBeanstalkException.php │ │ │ │ │ │ ├── ElasticLoadBalancing │ │ │ │ │ │ ├── ElasticLoadBalancingClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── ElasticLoadBalancingException.php │ │ │ │ │ │ ├── ElasticLoadBalancingV2 │ │ │ │ │ │ ├── ElasticLoadBalancingV2Client.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── ElasticLoadBalancingV2Exception.php │ │ │ │ │ │ ├── ElasticTranscoder │ │ │ │ │ │ ├── ElasticTranscoderClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── ElasticTranscoderException.php │ │ │ │ │ │ ├── ElasticsearchService │ │ │ │ │ │ ├── ElasticsearchServiceClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── ElasticsearchServiceException.php │ │ │ │ │ │ ├── Emr │ │ │ │ │ │ ├── EmrClient.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ │ └── EmrException.php │ │ │ │ │ │ ├── Endpoint │ │ │ │ │ │ ├── EndpointProvider.php │ │ │ │ │ │ ├── Partition.php │ │ │ │ │ │ ├── PartitionEndpointProvider.php │ │ │ │ │ │ ├── PartitionInterface.php │ │ │ │ │ │ └── PatternEndpointProvider.php │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AwsException.php │ │ │ │ │ │ ├── CouldNotCreateChecksumException.php │ │ │ │ │ │ ├── CredentialsException.php │ │ │ │ │ │ ├── MultipartUploadException.php │ │ │ │ │ │ ├── UnresolvedApiException.php │ │ │ │ │ │ ├── UnresolvedEndpointException.php │ │ │ │ │ │ └── UnresolvedSignatureException.php │ │ │ │ │ │ ├── Firehose │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── FirehoseException.php │ │ │ │ │ │ └── FirehoseClient.php │ │ │ │ │ │ ├── GameLift │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── GameLiftException.php │ │ │ │ │ │ └── GameLiftClient.php │ │ │ │ │ │ ├── Glacier │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── GlacierException.php │ │ │ │ │ │ ├── GlacierClient.php │ │ │ │ │ │ ├── MultipartUploader.php │ │ │ │ │ │ └── TreeHash.php │ │ │ │ │ │ ├── Greengrass │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── GreengrassException.php │ │ │ │ │ │ └── GreengrassClient.php │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ ├── GuzzleV5 │ │ │ │ │ │ │ ├── GuzzleHandler.php │ │ │ │ │ │ │ ├── GuzzleStream.php │ │ │ │ │ │ │ └── PsrStream.php │ │ │ │ │ │ └── GuzzleV6 │ │ │ │ │ │ │ └── GuzzleHandler.php │ │ │ │ │ │ ├── HandlerList.php │ │ │ │ │ │ ├── HasDataTrait.php │ │ │ │ │ │ ├── HashInterface.php │ │ │ │ │ │ ├── HashingStream.php │ │ │ │ │ │ ├── Health │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── HealthException.php │ │ │ │ │ │ └── HealthClient.php │ │ │ │ │ │ ├── History.php │ │ │ │ │ │ ├── Iam │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── IamException.php │ │ │ │ │ │ └── IamClient.php │ │ │ │ │ │ ├── IdempotencyTokenMiddleware.php │ │ │ │ │ │ ├── ImportExport │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── ImportExportException.php │ │ │ │ │ │ └── ImportExportClient.php │ │ │ │ │ │ ├── Inspector │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── InspectorException.php │ │ │ │ │ │ └── InspectorClient.php │ │ │ │ │ │ ├── Iot │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── IotException.php │ │ │ │ │ │ └── IotClient.php │ │ │ │ │ │ ├── IotDataPlane │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── IotDataPlaneException.php │ │ │ │ │ │ └── IotDataPlaneClient.php │ │ │ │ │ │ ├── JsonCompiler.php │ │ │ │ │ │ ├── Kinesis │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── KinesisException.php │ │ │ │ │ │ └── KinesisClient.php │ │ │ │ │ │ ├── KinesisAnalytics │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── KinesisAnalyticsException.php │ │ │ │ │ │ └── KinesisAnalyticsClient.php │ │ │ │ │ │ ├── Kms │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── KmsException.php │ │ │ │ │ │ └── KmsClient.php │ │ │ │ │ │ ├── Lambda │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── LambdaException.php │ │ │ │ │ │ └── LambdaClient.php │ │ │ │ │ │ ├── LexModelBuildingService │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── LexModelBuildingServiceException.php │ │ │ │ │ │ └── LexModelBuildingServiceClient.php │ │ │ │ │ │ ├── LexRuntimeService │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── LexRuntimeServiceException.php │ │ │ │ │ │ └── LexRuntimeServiceClient.php │ │ │ │ │ │ ├── Lightsail │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── LightsailException.php │ │ │ │ │ │ └── LightsailClient.php │ │ │ │ │ │ ├── LruArrayCache.php │ │ │ │ │ │ ├── MTurk │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── MTurkException.php │ │ │ │ │ │ └── MTurkClient.php │ │ │ │ │ │ ├── MachineLearning │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── MachineLearningException.php │ │ │ │ │ │ └── MachineLearningClient.php │ │ │ │ │ │ ├── MarketplaceCommerceAnalytics │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── MarketplaceCommerceAnalyticsException.php │ │ │ │ │ │ └── MarketplaceCommerceAnalyticsClient.php │ │ │ │ │ │ ├── MarketplaceEntitlementService │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── MarketplaceEntitlementServiceException.php │ │ │ │ │ │ └── MarketplaceEntitlementServiceClient.php │ │ │ │ │ │ ├── MarketplaceMetering │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── MarketplaceMeteringException.php │ │ │ │ │ │ └── MarketplaceMeteringClient.php │ │ │ │ │ │ ├── Middleware.php │ │ │ │ │ │ ├── MockHandler.php │ │ │ │ │ │ ├── MultiRegionClient.php │ │ │ │ │ │ ├── Multipart │ │ │ │ │ │ ├── AbstractUploadManager.php │ │ │ │ │ │ ├── AbstractUploader.php │ │ │ │ │ │ └── UploadState.php │ │ │ │ │ │ ├── OpsWorks │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── OpsWorksException.php │ │ │ │ │ │ └── OpsWorksClient.php │ │ │ │ │ │ ├── OpsWorksCM │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── OpsWorksCMException.php │ │ │ │ │ │ └── OpsWorksCMClient.php │ │ │ │ │ │ ├── Organizations │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── OrganizationsException.php │ │ │ │ │ │ └── OrganizationsClient.php │ │ │ │ │ │ ├── PhpHash.php │ │ │ │ │ │ ├── Pinpoint │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── PinpointException.php │ │ │ │ │ │ └── PinpointClient.php │ │ │ │ │ │ ├── Polly │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── PollyException.php │ │ │ │ │ │ └── PollyClient.php │ │ │ │ │ │ ├── PresignUrlMiddleware.php │ │ │ │ │ │ ├── PsrCacheAdapter.php │ │ │ │ │ │ ├── Rds │ │ │ │ │ │ ├── AuthTokenGenerator.php │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── RdsException.php │ │ │ │ │ │ └── RdsClient.php │ │ │ │ │ │ ├── Redshift │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── RedshiftException.php │ │ │ │ │ │ └── RedshiftClient.php │ │ │ │ │ │ ├── Rekognition │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── RekognitionException.php │ │ │ │ │ │ └── RekognitionClient.php │ │ │ │ │ │ ├── ResourceGroupsTaggingAPI │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── ResourceGroupsTaggingAPIException.php │ │ │ │ │ │ └── ResourceGroupsTaggingAPIClient.php │ │ │ │ │ │ ├── Result.php │ │ │ │ │ │ ├── ResultInterface.php │ │ │ │ │ │ ├── ResultPaginator.php │ │ │ │ │ │ ├── RetryMiddleware.php │ │ │ │ │ │ ├── Route53 │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── Route53Exception.php │ │ │ │ │ │ └── Route53Client.php │ │ │ │ │ │ ├── Route53Domains │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── Route53DomainsException.php │ │ │ │ │ │ └── Route53DomainsClient.php │ │ │ │ │ │ ├── S3 │ │ │ │ │ │ ├── AmbiguousSuccessParser.php │ │ │ │ │ │ ├── ApplyChecksumMiddleware.php │ │ │ │ │ │ ├── BatchDelete.php │ │ │ │ │ │ ├── BucketEndpointMiddleware.php │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ ├── DeleteMultipleObjectsException.php │ │ │ │ │ │ │ ├── PermanentRedirectException.php │ │ │ │ │ │ │ ├── S3Exception.php │ │ │ │ │ │ │ └── S3MultipartUploadException.php │ │ │ │ │ │ ├── GetBucketLocationParser.php │ │ │ │ │ │ ├── MultipartCopy.php │ │ │ │ │ │ ├── MultipartUploader.php │ │ │ │ │ │ ├── MultipartUploadingTrait.php │ │ │ │ │ │ ├── ObjectCopier.php │ │ │ │ │ │ ├── ObjectUploader.php │ │ │ │ │ │ ├── PermanentRedirectMiddleware.php │ │ │ │ │ │ ├── PostObject.php │ │ │ │ │ │ ├── PostObjectV4.php │ │ │ │ │ │ ├── PutObjectUrlMiddleware.php │ │ │ │ │ │ ├── RetryableMalformedResponseParser.php │ │ │ │ │ │ ├── S3Client.php │ │ │ │ │ │ ├── S3ClientInterface.php │ │ │ │ │ │ ├── S3ClientTrait.php │ │ │ │ │ │ ├── S3EndpointMiddleware.php │ │ │ │ │ │ ├── S3MultiRegionClient.php │ │ │ │ │ │ ├── S3UriParser.php │ │ │ │ │ │ ├── SSECMiddleware.php │ │ │ │ │ │ ├── StreamWrapper.php │ │ │ │ │ │ └── Transfer.php │ │ │ │ │ │ ├── Sdk.php │ │ │ │ │ │ ├── ServiceCatalog │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── ServiceCatalogException.php │ │ │ │ │ │ └── ServiceCatalogClient.php │ │ │ │ │ │ ├── Ses │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── SesException.php │ │ │ │ │ │ └── SesClient.php │ │ │ │ │ │ ├── Sfn │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── SfnException.php │ │ │ │ │ │ └── SfnClient.php │ │ │ │ │ │ ├── Shield │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── ShieldException.php │ │ │ │ │ │ └── ShieldClient.php │ │ │ │ │ │ ├── Signature │ │ │ │ │ │ ├── AnonymousSignature.php │ │ │ │ │ │ ├── S3SignatureV4.php │ │ │ │ │ │ ├── SignatureInterface.php │ │ │ │ │ │ ├── SignatureProvider.php │ │ │ │ │ │ ├── SignatureTrait.php │ │ │ │ │ │ └── SignatureV4.php │ │ │ │ │ │ ├── Sms │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── SmsException.php │ │ │ │ │ │ └── SmsClient.php │ │ │ │ │ │ ├── SnowBall │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── SnowBallException.php │ │ │ │ │ │ └── SnowBallClient.php │ │ │ │ │ │ ├── Sns │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── SnsException.php │ │ │ │ │ │ └── SnsClient.php │ │ │ │ │ │ ├── Sqs │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── SqsException.php │ │ │ │ │ │ └── SqsClient.php │ │ │ │ │ │ ├── Ssm │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── SsmException.php │ │ │ │ │ │ └── SsmClient.php │ │ │ │ │ │ ├── StorageGateway │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── StorageGatewayException.php │ │ │ │ │ │ └── StorageGatewayClient.php │ │ │ │ │ │ ├── Sts │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── StsException.php │ │ │ │ │ │ └── StsClient.php │ │ │ │ │ │ ├── Support │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── SupportException.php │ │ │ │ │ │ └── SupportClient.php │ │ │ │ │ │ ├── Swf │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── SwfException.php │ │ │ │ │ │ └── SwfClient.php │ │ │ │ │ │ ├── TraceMiddleware.php │ │ │ │ │ │ ├── Waf │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── WafException.php │ │ │ │ │ │ └── WafClient.php │ │ │ │ │ │ ├── WafRegional │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── WafRegionalException.php │ │ │ │ │ │ └── WafRegionalClient.php │ │ │ │ │ │ ├── Waiter.php │ │ │ │ │ │ ├── WorkDocs │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── WorkDocsException.php │ │ │ │ │ │ └── WorkDocsClient.php │ │ │ │ │ │ ├── WorkSpaces │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── WorkSpacesException.php │ │ │ │ │ │ └── WorkSpacesClient.php │ │ │ │ │ │ ├── WrappedHttpHandler.php │ │ │ │ │ │ ├── XRay │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── XRayException.php │ │ │ │ │ │ └── XRayClient.php │ │ │ │ │ │ ├── data │ │ │ │ │ │ ├── acm │ │ │ │ │ │ │ └── 2015-12-08 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── apigateway │ │ │ │ │ │ │ └── 2015-07-09 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── application-autoscaling │ │ │ │ │ │ │ └── 2016-02-06 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── appstream │ │ │ │ │ │ │ └── 2016-12-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── athena │ │ │ │ │ │ │ └── 2017-05-18 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── autoscaling │ │ │ │ │ │ │ └── 2011-01-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── batch │ │ │ │ │ │ │ └── 2016-08-10 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── budgets │ │ │ │ │ │ │ └── 2016-10-20 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── clouddirectory │ │ │ │ │ │ │ └── 2016-05-10 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── cloudformation │ │ │ │ │ │ │ └── 2010-05-15 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── cloudfront │ │ │ │ │ │ │ ├── 2015-07-27 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ │ ├── 2016-01-28 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ │ ├── 2016-08-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ │ ├── 2016-08-20 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ │ ├── 2016-09-07 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ │ ├── 2016-09-29 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ │ ├── 2016-11-25 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ │ └── 2017-03-25 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── cloudhsm │ │ │ │ │ │ │ └── 2014-05-30 │ │ │ │ │ │ │ │ └── api-2.json.php │ │ │ │ │ │ ├── cloudsearch │ │ │ │ │ │ │ └── 2013-01-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── cloudsearchdomain │ │ │ │ │ │ │ └── 2013-01-01 │ │ │ │ │ │ │ │ └── api-2.json.php │ │ │ │ │ │ ├── cloudtrail │ │ │ │ │ │ │ └── 2013-11-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── codebuild │ │ │ │ │ │ │ └── 2016-10-06 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── codecommit │ │ │ │ │ │ │ └── 2015-04-13 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── codedeploy │ │ │ │ │ │ │ └── 2014-10-06 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── codepipeline │ │ │ │ │ │ │ └── 2015-07-09 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── codestar │ │ │ │ │ │ │ └── 2017-04-19 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── cognito-identity │ │ │ │ │ │ │ └── 2014-06-30 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── cognito-idp │ │ │ │ │ │ │ └── 2016-04-18 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── cognito-sync │ │ │ │ │ │ │ └── 2014-06-30 │ │ │ │ │ │ │ │ └── api-2.json.php │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── 2014-11-12 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── cur │ │ │ │ │ │ │ └── 2017-01-06 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── data.iot │ │ │ │ │ │ │ └── 2015-05-28 │ │ │ │ │ │ │ │ └── api-2.json.php │ │ │ │ │ │ ├── datapipeline │ │ │ │ │ │ │ └── 2012-10-29 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── dax │ │ │ │ │ │ │ └── 2017-04-19 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── devicefarm │ │ │ │ │ │ │ └── 2015-06-23 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── directconnect │ │ │ │ │ │ │ └── 2012-10-25 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── discovery │ │ │ │ │ │ │ └── 2015-11-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── dms │ │ │ │ │ │ │ └── 2016-01-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── ds │ │ │ │ │ │ │ └── 2015-04-16 │ │ │ │ │ │ │ │ └── api-2.json.php │ │ │ │ │ │ ├── dynamodb │ │ │ │ │ │ │ ├── 2011-12-05 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ │ └── 2012-08-10 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── ec2 │ │ │ │ │ │ │ ├── 2015-10-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ │ ├── 2016-04-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ │ ├── 2016-09-15 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ │ └── 2016-11-15 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── ecr │ │ │ │ │ │ │ └── 2015-09-21 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── ecs │ │ │ │ │ │ │ └── 2014-11-13 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── elasticache │ │ │ │ │ │ │ └── 2015-02-02 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── elasticbeanstalk │ │ │ │ │ │ │ └── 2010-12-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── elasticfilesystem │ │ │ │ │ │ │ └── 2015-02-01 │ │ │ │ │ │ │ │ └── api-2.json.php │ │ │ │ │ │ ├── elasticloadbalancing │ │ │ │ │ │ │ └── 2012-06-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── elasticloadbalancingv2 │ │ │ │ │ │ │ └── 2015-12-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── elasticmapreduce │ │ │ │ │ │ │ └── 2009-03-31 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── elastictranscoder │ │ │ │ │ │ │ └── 2012-09-25 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── email │ │ │ │ │ │ │ └── 2010-12-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── endpoints.json.php │ │ │ │ │ │ ├── entitlement.marketplace │ │ │ │ │ │ │ └── 2017-01-11 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── 2015-01-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── events │ │ │ │ │ │ │ └── 2015-10-07 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── firehose │ │ │ │ │ │ │ └── 2015-08-04 │ │ │ │ │ │ │ │ └── api-2.json.php │ │ │ │ │ │ ├── gamelift │ │ │ │ │ │ │ └── 2015-10-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── glacier │ │ │ │ │ │ │ └── 2012-06-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── greengrass │ │ │ │ │ │ │ └── 2017-06-07 │ │ │ │ │ │ │ │ └── api-2.json.php │ │ │ │ │ │ ├── health │ │ │ │ │ │ │ └── 2016-08-04 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── iam │ │ │ │ │ │ │ └── 2010-05-08 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── importexport │ │ │ │ │ │ │ └── 2010-06-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── inspector │ │ │ │ │ │ │ └── 2016-02-16 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── iot │ │ │ │ │ │ │ └── 2015-05-28 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── kinesis │ │ │ │ │ │ │ └── 2013-12-02 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── kinesisanalytics │ │ │ │ │ │ │ └── 2015-08-14 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── kms │ │ │ │ │ │ │ └── 2014-11-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── lambda │ │ │ │ │ │ │ └── 2015-03-31 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── lex-models │ │ │ │ │ │ │ └── 2017-04-19 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── lightsail │ │ │ │ │ │ │ └── 2016-11-28 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── logs │ │ │ │ │ │ │ └── 2014-03-28 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── machinelearning │ │ │ │ │ │ │ └── 2014-12-12 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── manifest.json.php │ │ │ │ │ │ ├── marketplacecommerceanalytics │ │ │ │ │ │ │ └── 2015-07-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── metering.marketplace │ │ │ │ │ │ │ └── 2016-01-14 │ │ │ │ │ │ │ │ └── api-2.json.php │ │ │ │ │ │ ├── monitoring │ │ │ │ │ │ │ └── 2010-08-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── mturk-requester │ │ │ │ │ │ │ └── 2017-01-17 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── opsworks │ │ │ │ │ │ │ └── 2013-02-18 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── opsworkscm │ │ │ │ │ │ │ └── 2016-11-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── organizations │ │ │ │ │ │ │ └── 2016-11-28 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── pinpoint │ │ │ │ │ │ │ └── 2016-12-01 │ │ │ │ │ │ │ │ └── api-2.json.php │ │ │ │ │ │ ├── polly │ │ │ │ │ │ │ └── 2016-06-10 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── rds │ │ │ │ │ │ │ ├── 2014-09-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ │ └── 2014-10-31 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── redshift │ │ │ │ │ │ │ └── 2012-12-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── rekognition │ │ │ │ │ │ │ └── 2016-06-27 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── resourcegroupstaggingapi │ │ │ │ │ │ │ └── 2017-01-26 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── route53 │ │ │ │ │ │ │ └── 2013-04-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── route53domains │ │ │ │ │ │ │ └── 2014-05-15 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── runtime.lex │ │ │ │ │ │ │ └── 2016-11-28 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── s3 │ │ │ │ │ │ │ └── 2006-03-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── servicecatalog │ │ │ │ │ │ │ └── 2015-12-10 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── shield │ │ │ │ │ │ │ └── 2016-06-02 │ │ │ │ │ │ │ │ └── api-2.json.php │ │ │ │ │ │ ├── sms │ │ │ │ │ │ │ └── 2016-10-24 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── snowball │ │ │ │ │ │ │ └── 2016-06-30 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── sns │ │ │ │ │ │ │ └── 2010-03-31 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── sqs │ │ │ │ │ │ │ └── 2012-11-05 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ │ │ │ └── waiters-2.json.php │ │ │ │ │ │ ├── ssm │ │ │ │ │ │ │ └── 2014-11-06 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── states │ │ │ │ │ │ │ └── 2016-11-23 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── storagegateway │ │ │ │ │ │ │ └── 2013-06-30 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── streams.dynamodb │ │ │ │ │ │ │ └── 2012-08-10 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── sts │ │ │ │ │ │ │ └── 2011-06-15 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── support │ │ │ │ │ │ │ └── 2013-04-15 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── swf │ │ │ │ │ │ │ └── 2012-01-25 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── waf-regional │ │ │ │ │ │ │ └── 2016-11-28 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── waf │ │ │ │ │ │ │ └── 2015-08-24 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── workdocs │ │ │ │ │ │ │ └── 2016-05-01 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ ├── workspaces │ │ │ │ │ │ │ └── 2015-04-08 │ │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ └── xray │ │ │ │ │ │ │ └── 2016-04-12 │ │ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ │ │ └── paginators-1.json.php │ │ │ │ │ │ └── functions.php │ │ │ │ │ ├── cksource │ │ │ │ │ └── ckfinder │ │ │ │ │ │ ├── config.template.php │ │ │ │ │ │ └── src │ │ │ │ │ │ └── CKSource │ │ │ │ │ │ └── CKFinder │ │ │ │ │ │ ├── Acl │ │ │ │ │ │ ├── Acl.php │ │ │ │ │ │ ├── AclInterface.php │ │ │ │ │ │ ├── MaskBuilder.php │ │ │ │ │ │ ├── Permission.php │ │ │ │ │ │ └── User │ │ │ │ │ │ │ ├── RoleContextInterface.php │ │ │ │ │ │ │ └── SessionRoleContext.php │ │ │ │ │ │ ├── Authentication │ │ │ │ │ │ ├── AuthenticationInterface.php │ │ │ │ │ │ └── CallableAuthentication.php │ │ │ │ │ │ ├── Backend │ │ │ │ │ │ ├── Adapter │ │ │ │ │ │ │ ├── AwsS3.php │ │ │ │ │ │ │ ├── Azure.php │ │ │ │ │ │ │ ├── Cache │ │ │ │ │ │ │ │ └── Storage │ │ │ │ │ │ │ │ │ └── Memory.php │ │ │ │ │ │ │ ├── Dropbox.php │ │ │ │ │ │ │ ├── EmulateRenameDirectoryInterface.php │ │ │ │ │ │ │ └── Local.php │ │ │ │ │ │ ├── Backend.php │ │ │ │ │ │ └── BackendFactory.php │ │ │ │ │ │ ├── CKFinder.php │ │ │ │ │ │ ├── Cache │ │ │ │ │ │ ├── Adapter │ │ │ │ │ │ │ ├── AdapterInterface.php │ │ │ │ │ │ │ └── BackendAdapter.php │ │ │ │ │ │ └── CacheManager.php │ │ │ │ │ │ ├── Command │ │ │ │ │ │ ├── CommandAbstract.php │ │ │ │ │ │ ├── CopyFiles.php │ │ │ │ │ │ ├── CreateFolder.php │ │ │ │ │ │ ├── DeleteFiles.php │ │ │ │ │ │ ├── DeleteFolder.php │ │ │ │ │ │ ├── DownloadFile.php │ │ │ │ │ │ ├── FileUpload.php │ │ │ │ │ │ ├── GetFileUrl.php │ │ │ │ │ │ ├── GetFiles.php │ │ │ │ │ │ ├── GetFolders.php │ │ │ │ │ │ ├── GetResizedImages.php │ │ │ │ │ │ ├── ImageEdit.php │ │ │ │ │ │ ├── ImageInfo.php │ │ │ │ │ │ ├── ImagePreview.php │ │ │ │ │ │ ├── ImageResize.php │ │ │ │ │ │ ├── Init.php │ │ │ │ │ │ ├── MoveFiles.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Proxy.php │ │ │ │ │ │ ├── QuickUpload.php │ │ │ │ │ │ ├── RenameFile.php │ │ │ │ │ │ ├── RenameFolder.php │ │ │ │ │ │ ├── SaveImage.php │ │ │ │ │ │ └── Thumbnail.php │ │ │ │ │ │ ├── CommandResolver.php │ │ │ │ │ │ ├── Config.php │ │ │ │ │ │ ├── ContainerAwareInterface.php │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ ├── Event │ │ │ │ │ │ ├── AfterCommandEvent.php │ │ │ │ │ │ ├── BeforeCommandEvent.php │ │ │ │ │ │ ├── CKFinderEvent.php │ │ │ │ │ │ ├── CopyFileEvent.php │ │ │ │ │ │ ├── CreateFolderEvent.php │ │ │ │ │ │ ├── DeleteFileEvent.php │ │ │ │ │ │ ├── DeleteFolderEvent.php │ │ │ │ │ │ ├── DownloadFileEvent.php │ │ │ │ │ │ ├── EditFileEvent.php │ │ │ │ │ │ ├── FileUploadEvent.php │ │ │ │ │ │ ├── MoveFileEvent.php │ │ │ │ │ │ ├── ProxyDownloadEvent.php │ │ │ │ │ │ ├── RenameFileEvent.php │ │ │ │ │ │ ├── RenameFolderEvent.php │ │ │ │ │ │ └── ResizeImageEvent.php │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AccessDeniedException.php │ │ │ │ │ │ ├── AlreadyExistsException.php │ │ │ │ │ │ ├── CKFinderException.php │ │ │ │ │ │ ├── FileNotFoundException.php │ │ │ │ │ │ ├── FolderNotFoundException.php │ │ │ │ │ │ ├── InvalidCommandException.php │ │ │ │ │ │ ├── InvalidConfigException.php │ │ │ │ │ │ ├── InvalidCsrfTokenException.php │ │ │ │ │ │ ├── InvalidExtensionException.php │ │ │ │ │ │ ├── InvalidNameException.php │ │ │ │ │ │ ├── InvalidPluginException.php │ │ │ │ │ │ ├── InvalidRequestException.php │ │ │ │ │ │ ├── InvalidResourceTypeException.php │ │ │ │ │ │ ├── InvalidUploadException.php │ │ │ │ │ │ ├── MethodNotAllowedException.php │ │ │ │ │ │ └── UnauthorizedException.php │ │ │ │ │ │ ├── ExceptionHandler.php │ │ │ │ │ │ ├── Filesystem │ │ │ │ │ │ ├── File │ │ │ │ │ │ │ ├── CopiedFile.php │ │ │ │ │ │ │ ├── DeletedFile.php │ │ │ │ │ │ │ ├── DownloadedFile.php │ │ │ │ │ │ │ ├── EditedFile.php │ │ │ │ │ │ │ ├── EditedImage.php │ │ │ │ │ │ │ ├── ExistingFile.php │ │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ │ ├── MovedFile.php │ │ │ │ │ │ │ ├── RenamedFile.php │ │ │ │ │ │ │ └── UploadedFile.php │ │ │ │ │ │ ├── Folder │ │ │ │ │ │ │ ├── Folder.php │ │ │ │ │ │ │ └── WorkingFolder.php │ │ │ │ │ │ └── Path.php │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ ├── Operation │ │ │ │ │ │ └── OperationManager.php │ │ │ │ │ │ ├── Plugin │ │ │ │ │ │ └── PluginInterface.php │ │ │ │ │ │ ├── Request │ │ │ │ │ │ └── Transformer │ │ │ │ │ │ │ ├── JsonTransformer.php │ │ │ │ │ │ │ └── TransformerInterface.php │ │ │ │ │ │ ├── ResizedImage │ │ │ │ │ │ ├── ResizedImage.php │ │ │ │ │ │ ├── ResizedImageAbstract.php │ │ │ │ │ │ └── ResizedImageRepository.php │ │ │ │ │ │ ├── ResourceType │ │ │ │ │ │ ├── ResourceType.php │ │ │ │ │ │ └── ResourceTypeFactory.php │ │ │ │ │ │ ├── Response │ │ │ │ │ │ └── JsonResponse.php │ │ │ │ │ │ ├── Security │ │ │ │ │ │ └── Csrf │ │ │ │ │ │ │ ├── DoubleSubmitCookieTokenValidator.php │ │ │ │ │ │ │ └── TokenValidatorInterface.php │ │ │ │ │ │ ├── Thumbnail │ │ │ │ │ │ ├── Thumbnail.php │ │ │ │ │ │ └── ThumbnailRepository.php │ │ │ │ │ │ ├── Translator.php │ │ │ │ │ │ ├── Utils.php │ │ │ │ │ │ └── locales │ │ │ │ │ │ ├── bg.json │ │ │ │ │ │ ├── ca.json │ │ │ │ │ │ ├── cs.json │ │ │ │ │ │ ├── cy.json │ │ │ │ │ │ ├── da.json │ │ │ │ │ │ ├── de.json │ │ │ │ │ │ ├── el.json │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ ├── eo.json │ │ │ │ │ │ ├── es-mx.json │ │ │ │ │ │ ├── es.json │ │ │ │ │ │ ├── et.json │ │ │ │ │ │ ├── eu.json │ │ │ │ │ │ ├── fa.json │ │ │ │ │ │ ├── fi.json │ │ │ │ │ │ ├── fr.json │ │ │ │ │ │ ├── gu.json │ │ │ │ │ │ ├── he.json │ │ │ │ │ │ ├── hi.json │ │ │ │ │ │ ├── hr.json │ │ │ │ │ │ ├── hu.json │ │ │ │ │ │ ├── id.json │ │ │ │ │ │ ├── it.json │ │ │ │ │ │ ├── ja.json │ │ │ │ │ │ ├── ko.json │ │ │ │ │ │ ├── ku.json │ │ │ │ │ │ ├── lt.json │ │ │ │ │ │ ├── lv.json │ │ │ │ │ │ ├── nb.json │ │ │ │ │ │ ├── nl.json │ │ │ │ │ │ ├── nn.json │ │ │ │ │ │ ├── pl.json │ │ │ │ │ │ ├── pt-br.json │ │ │ │ │ │ ├── ro.json │ │ │ │ │ │ ├── ru.json │ │ │ │ │ │ ├── sk.json │ │ │ │ │ │ ├── sl.json │ │ │ │ │ │ ├── sr.json │ │ │ │ │ │ ├── sv.json │ │ │ │ │ │ ├── tr.json │ │ │ │ │ │ ├── vi.json │ │ │ │ │ │ ├── zh-cn.json │ │ │ │ │ │ └── zh-tw.json │ │ │ │ │ ├── composer │ │ │ │ │ ├── ClassLoader.php │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── autoload_classmap.php │ │ │ │ │ ├── autoload_files.php │ │ │ │ │ ├── autoload_namespaces.php │ │ │ │ │ ├── autoload_psr4.php │ │ │ │ │ ├── autoload_real.php │ │ │ │ │ ├── autoload_static.php │ │ │ │ │ └── installed.json │ │ │ │ │ ├── guzzlehttp │ │ │ │ │ ├── guzzle │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Client.php │ │ │ │ │ │ │ ├── ClientInterface.php │ │ │ │ │ │ │ ├── Cookie │ │ │ │ │ │ │ ├── CookieJar.php │ │ │ │ │ │ │ ├── CookieJarInterface.php │ │ │ │ │ │ │ ├── FileCookieJar.php │ │ │ │ │ │ │ ├── SessionCookieJar.php │ │ │ │ │ │ │ └── SetCookie.php │ │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ ├── BadResponseException.php │ │ │ │ │ │ │ ├── ClientException.php │ │ │ │ │ │ │ ├── ConnectException.php │ │ │ │ │ │ │ ├── GuzzleException.php │ │ │ │ │ │ │ ├── RequestException.php │ │ │ │ │ │ │ ├── SeekException.php │ │ │ │ │ │ │ ├── ServerException.php │ │ │ │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ │ │ │ └── TransferException.php │ │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ │ ├── CurlFactory.php │ │ │ │ │ │ │ ├── CurlFactoryInterface.php │ │ │ │ │ │ │ ├── CurlHandler.php │ │ │ │ │ │ │ ├── CurlMultiHandler.php │ │ │ │ │ │ │ ├── EasyHandle.php │ │ │ │ │ │ │ ├── MockHandler.php │ │ │ │ │ │ │ ├── Proxy.php │ │ │ │ │ │ │ └── StreamHandler.php │ │ │ │ │ │ │ ├── HandlerStack.php │ │ │ │ │ │ │ ├── MessageFormatter.php │ │ │ │ │ │ │ ├── Middleware.php │ │ │ │ │ │ │ ├── Pool.php │ │ │ │ │ │ │ ├── PrepareBodyMiddleware.php │ │ │ │ │ │ │ ├── RedirectMiddleware.php │ │ │ │ │ │ │ ├── RequestOptions.php │ │ │ │ │ │ │ ├── RetryMiddleware.php │ │ │ │ │ │ │ ├── TransferStats.php │ │ │ │ │ │ │ ├── UriTemplate.php │ │ │ │ │ │ │ ├── functions.php │ │ │ │ │ │ │ └── functions_include.php │ │ │ │ │ ├── promises │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── AggregateException.php │ │ │ │ │ │ │ ├── CancellationException.php │ │ │ │ │ │ │ ├── Coroutine.php │ │ │ │ │ │ │ ├── EachPromise.php │ │ │ │ │ │ │ ├── FulfilledPromise.php │ │ │ │ │ │ │ ├── Promise.php │ │ │ │ │ │ │ ├── PromiseInterface.php │ │ │ │ │ │ │ ├── PromisorInterface.php │ │ │ │ │ │ │ ├── RejectedPromise.php │ │ │ │ │ │ │ ├── RejectionException.php │ │ │ │ │ │ │ ├── TaskQueue.php │ │ │ │ │ │ │ ├── TaskQueueInterface.php │ │ │ │ │ │ │ ├── functions.php │ │ │ │ │ │ │ └── functions_include.php │ │ │ │ │ └── psr7 │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── AppendStream.php │ │ │ │ │ │ ├── BufferStream.php │ │ │ │ │ │ ├── CachingStream.php │ │ │ │ │ │ ├── DroppingStream.php │ │ │ │ │ │ ├── FnStream.php │ │ │ │ │ │ ├── InflateStream.php │ │ │ │ │ │ ├── LazyOpenStream.php │ │ │ │ │ │ ├── LimitStream.php │ │ │ │ │ │ ├── MessageTrait.php │ │ │ │ │ │ ├── MultipartStream.php │ │ │ │ │ │ ├── NoSeekStream.php │ │ │ │ │ │ ├── PumpStream.php │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ ├── ServerRequest.php │ │ │ │ │ │ ├── Stream.php │ │ │ │ │ │ ├── StreamDecoratorTrait.php │ │ │ │ │ │ ├── StreamWrapper.php │ │ │ │ │ │ ├── UploadedFile.php │ │ │ │ │ │ ├── Uri.php │ │ │ │ │ │ ├── UriNormalizer.php │ │ │ │ │ │ ├── UriResolver.php │ │ │ │ │ │ ├── functions.php │ │ │ │ │ │ └── functions_include.php │ │ │ │ │ ├── league │ │ │ │ │ ├── flysystem-aws-s3-v3 │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── AwsS3Adapter.php │ │ │ │ │ ├── flysystem-azure │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Adapter.php │ │ │ │ │ │ │ └── AzureAdapter.php │ │ │ │ │ ├── flysystem-cached-adapter │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── CacheInterface.php │ │ │ │ │ │ │ ├── CachedAdapter.php │ │ │ │ │ │ │ └── Storage │ │ │ │ │ │ │ ├── AbstractCache.php │ │ │ │ │ │ │ ├── Adapter.php │ │ │ │ │ │ │ ├── Memcached.php │ │ │ │ │ │ │ ├── Memory.php │ │ │ │ │ │ │ ├── Noop.php │ │ │ │ │ │ │ ├── PhpRedis.php │ │ │ │ │ │ │ ├── Predis.php │ │ │ │ │ │ │ ├── Psr6Cache.php │ │ │ │ │ │ │ └── Stash.php │ │ │ │ │ └── flysystem │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── Adapter │ │ │ │ │ │ ├── AbstractAdapter.php │ │ │ │ │ │ ├── AbstractFtpAdapter.php │ │ │ │ │ │ ├── Ftp.php │ │ │ │ │ │ ├── Ftpd.php │ │ │ │ │ │ ├── Local.php │ │ │ │ │ │ ├── NullAdapter.php │ │ │ │ │ │ ├── Polyfill │ │ │ │ │ │ │ ├── NotSupportingVisibilityTrait.php │ │ │ │ │ │ │ ├── StreamedCopyTrait.php │ │ │ │ │ │ │ ├── StreamedReadingTrait.php │ │ │ │ │ │ │ ├── StreamedTrait.php │ │ │ │ │ │ │ └── StreamedWritingTrait.php │ │ │ │ │ │ └── SynologyFtp.php │ │ │ │ │ │ ├── AdapterInterface.php │ │ │ │ │ │ ├── Config.php │ │ │ │ │ │ ├── ConfigAwareTrait.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ ├── FileExistsException.php │ │ │ │ │ │ ├── FileNotFoundException.php │ │ │ │ │ │ ├── Filesystem.php │ │ │ │ │ │ ├── FilesystemInterface.php │ │ │ │ │ │ ├── FilesystemNotFoundException.php │ │ │ │ │ │ ├── Handler.php │ │ │ │ │ │ ├── MountManager.php │ │ │ │ │ │ ├── NotSupportedException.php │ │ │ │ │ │ ├── Plugin │ │ │ │ │ │ ├── AbstractPlugin.php │ │ │ │ │ │ ├── EmptyDir.php │ │ │ │ │ │ ├── ForcedCopy.php │ │ │ │ │ │ ├── ForcedRename.php │ │ │ │ │ │ ├── GetWithMetadata.php │ │ │ │ │ │ ├── ListFiles.php │ │ │ │ │ │ ├── ListPaths.php │ │ │ │ │ │ ├── ListWith.php │ │ │ │ │ │ ├── PluggableTrait.php │ │ │ │ │ │ └── PluginNotFoundException.php │ │ │ │ │ │ ├── PluginInterface.php │ │ │ │ │ │ ├── ReadInterface.php │ │ │ │ │ │ ├── RootViolationException.php │ │ │ │ │ │ ├── SafeStorage.php │ │ │ │ │ │ ├── UnreadableFileException.php │ │ │ │ │ │ ├── Util.php │ │ │ │ │ │ └── Util │ │ │ │ │ │ ├── ContentListingFormatter.php │ │ │ │ │ │ ├── MimeType.php │ │ │ │ │ │ └── StreamHasher.php │ │ │ │ │ ├── microsoft │ │ │ │ │ └── azure-storage │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── Blob │ │ │ │ │ │ ├── BlobRestProxy.php │ │ │ │ │ │ ├── Internal │ │ │ │ │ │ │ └── IBlob.php │ │ │ │ │ │ └── Models │ │ │ │ │ │ │ ├── AccessCondition.php │ │ │ │ │ │ │ ├── AppendBlockOptions.php │ │ │ │ │ │ │ ├── AppendBlockResult.php │ │ │ │ │ │ │ ├── Blob.php │ │ │ │ │ │ │ ├── BlobBlockType.php │ │ │ │ │ │ │ ├── BlobContinuationToken.php │ │ │ │ │ │ │ ├── BlobContinuationTokenTrait.php │ │ │ │ │ │ │ ├── BlobPrefix.php │ │ │ │ │ │ │ ├── BlobProperties.php │ │ │ │ │ │ │ ├── BlobServiceOptions.php │ │ │ │ │ │ │ ├── BlobType.php │ │ │ │ │ │ │ ├── Block.php │ │ │ │ │ │ │ ├── BlockList.php │ │ │ │ │ │ │ ├── BreakLeaseResult.php │ │ │ │ │ │ │ ├── CommitBlobBlocksOptions.php │ │ │ │ │ │ │ ├── Container.php │ │ │ │ │ │ │ ├── ContainerACL.php │ │ │ │ │ │ │ ├── ContainerProperties.php │ │ │ │ │ │ │ ├── CopyBlobOptions.php │ │ │ │ │ │ │ ├── CopyBlobResult.php │ │ │ │ │ │ │ ├── CopyState.php │ │ │ │ │ │ │ ├── CreateBlobBlockOptions.php │ │ │ │ │ │ │ ├── CreateBlobOptions.php │ │ │ │ │ │ │ ├── CreateBlobPagesOptions.php │ │ │ │ │ │ │ ├── CreateBlobPagesResult.php │ │ │ │ │ │ │ ├── CreateBlobSnapshotOptions.php │ │ │ │ │ │ │ ├── CreateBlobSnapshotResult.php │ │ │ │ │ │ │ ├── CreateContainerOptions.php │ │ │ │ │ │ │ ├── DeleteBlobOptions.php │ │ │ │ │ │ │ ├── GetBlobMetadataOptions.php │ │ │ │ │ │ │ ├── GetBlobMetadataResult.php │ │ │ │ │ │ │ ├── GetBlobOptions.php │ │ │ │ │ │ │ ├── GetBlobPropertiesOptions.php │ │ │ │ │ │ │ ├── GetBlobPropertiesResult.php │ │ │ │ │ │ │ ├── GetBlobResult.php │ │ │ │ │ │ │ ├── GetContainerACLResult.php │ │ │ │ │ │ │ ├── GetContainerPropertiesResult.php │ │ │ │ │ │ │ ├── LeaseMode.php │ │ │ │ │ │ │ ├── LeaseResult.php │ │ │ │ │ │ │ ├── ListBlobBlocksOptions.php │ │ │ │ │ │ │ ├── ListBlobBlocksResult.php │ │ │ │ │ │ │ ├── ListBlobsOptions.php │ │ │ │ │ │ │ ├── ListBlobsResult.php │ │ │ │ │ │ │ ├── ListContainersOptions.php │ │ │ │ │ │ │ ├── ListContainersResult.php │ │ │ │ │ │ │ ├── ListPageBlobRangesOptions.php │ │ │ │ │ │ │ ├── ListPageBlobRangesResult.php │ │ │ │ │ │ │ ├── PageWriteOption.php │ │ │ │ │ │ │ ├── PublicAccessType.php │ │ │ │ │ │ │ ├── PutBlobResult.php │ │ │ │ │ │ │ ├── PutBlockResult.php │ │ │ │ │ │ │ ├── SetBlobMetadataResult.php │ │ │ │ │ │ │ ├── SetBlobPropertiesOptions.php │ │ │ │ │ │ │ └── SetBlobPropertiesResult.php │ │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── CloudConfigurationManager.php │ │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ │ ├── InvalidArgumentTypeException.php │ │ │ │ │ │ │ └── ServiceException.php │ │ │ │ │ │ ├── Internal │ │ │ │ │ │ │ ├── ACLBase.php │ │ │ │ │ │ │ ├── Authentication │ │ │ │ │ │ │ │ ├── IAuthScheme.php │ │ │ │ │ │ │ │ ├── SharedAccessSignatureAuthScheme.php │ │ │ │ │ │ │ │ ├── SharedKeyAuthScheme.php │ │ │ │ │ │ │ │ └── TableSharedKeyLiteAuthScheme.php │ │ │ │ │ │ │ ├── ConnectionStringParser.php │ │ │ │ │ │ │ ├── ConnectionStringSource.php │ │ │ │ │ │ │ ├── Http │ │ │ │ │ │ │ │ ├── HttpCallContext.php │ │ │ │ │ │ │ │ └── HttpFormatter.php │ │ │ │ │ │ │ ├── MetadataTrait.php │ │ │ │ │ │ │ ├── Middlewares │ │ │ │ │ │ │ │ └── CommonRequestMiddleware.php │ │ │ │ │ │ │ ├── Resources.php │ │ │ │ │ │ │ ├── RestProxy.php │ │ │ │ │ │ │ ├── Serialization │ │ │ │ │ │ │ │ ├── ISerializer.php │ │ │ │ │ │ │ │ ├── JsonSerializer.php │ │ │ │ │ │ │ │ ├── MessageSerializer.php │ │ │ │ │ │ │ │ └── XmlSerializer.php │ │ │ │ │ │ │ ├── ServiceRestProxy.php │ │ │ │ │ │ │ ├── ServiceRestTrait.php │ │ │ │ │ │ │ ├── ServiceSettings.php │ │ │ │ │ │ │ ├── StorageServiceSettings.php │ │ │ │ │ │ │ ├── Utilities.php │ │ │ │ │ │ │ └── Validate.php │ │ │ │ │ │ ├── LocationMode.php │ │ │ │ │ │ ├── Logger.php │ │ │ │ │ │ ├── MarkerContinuationTokenTrait.php │ │ │ │ │ │ ├── Middlewares │ │ │ │ │ │ │ ├── HistoryMiddleware.php │ │ │ │ │ │ │ ├── IMiddleware.php │ │ │ │ │ │ │ ├── MiddlewareBase.php │ │ │ │ │ │ │ ├── MiddlewareStack.php │ │ │ │ │ │ │ ├── RetryMiddleware.php │ │ │ │ │ │ │ └── RetryMiddlewareFactory.php │ │ │ │ │ │ ├── Models │ │ │ │ │ │ │ ├── AccessPolicy.php │ │ │ │ │ │ │ ├── CORS.php │ │ │ │ │ │ │ ├── ContinuationToken.php │ │ │ │ │ │ │ ├── GetServicePropertiesResult.php │ │ │ │ │ │ │ ├── GetServiceStatsResult.php │ │ │ │ │ │ │ ├── Logging.php │ │ │ │ │ │ │ ├── Metrics.php │ │ │ │ │ │ │ ├── Range.php │ │ │ │ │ │ │ ├── RetentionPolicy.php │ │ │ │ │ │ │ ├── ServiceOptions.php │ │ │ │ │ │ │ ├── ServiceProperties.php │ │ │ │ │ │ │ └── SignedIdentifier.php │ │ │ │ │ │ ├── ServicesBuilder.php │ │ │ │ │ │ └── SharedAccessSignatureHelper.php │ │ │ │ │ │ ├── File │ │ │ │ │ │ ├── FileRestProxy.php │ │ │ │ │ │ ├── Internal │ │ │ │ │ │ │ └── IFile.php │ │ │ │ │ │ └── Models │ │ │ │ │ │ │ ├── CopyFileResult.php │ │ │ │ │ │ │ ├── CreateDirectoryOptions.php │ │ │ │ │ │ │ ├── CreateFileOptions.php │ │ │ │ │ │ │ ├── CreateShareOptions.php │ │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ │ ├── FileContinuationToken.php │ │ │ │ │ │ │ ├── FileContinuationTokenTrait.php │ │ │ │ │ │ │ ├── FileProperties.php │ │ │ │ │ │ │ ├── FileServiceOptions.php │ │ │ │ │ │ │ ├── GetDirectoryMetadataResult.php │ │ │ │ │ │ │ ├── GetDirectoryPropertiesResult.php │ │ │ │ │ │ │ ├── GetFileMetadataResult.php │ │ │ │ │ │ │ ├── GetFileOptions.php │ │ │ │ │ │ │ ├── GetFileResult.php │ │ │ │ │ │ │ ├── GetShareAclResult.php │ │ │ │ │ │ │ ├── GetSharePropertiesResult.php │ │ │ │ │ │ │ ├── GetShareStatsResult.php │ │ │ │ │ │ │ ├── ListDirectoriesAndFilesOptions.php │ │ │ │ │ │ │ ├── ListDirectoriesAndFilesResult.php │ │ │ │ │ │ │ ├── ListFileRangesResult.php │ │ │ │ │ │ │ ├── ListSharesOptions.php │ │ │ │ │ │ │ ├── ListSharesResult.php │ │ │ │ │ │ │ ├── PutFileRangeOptions.php │ │ │ │ │ │ │ ├── Share.php │ │ │ │ │ │ │ ├── ShareACL.php │ │ │ │ │ │ │ └── ShareProperties.php │ │ │ │ │ │ ├── Queue │ │ │ │ │ │ ├── Internal │ │ │ │ │ │ │ └── IQueue.php │ │ │ │ │ │ ├── Models │ │ │ │ │ │ │ ├── CreateMessageOptions.php │ │ │ │ │ │ │ ├── CreateQueueOptions.php │ │ │ │ │ │ │ ├── GetQueueMetadataResult.php │ │ │ │ │ │ │ ├── ListMessagesOptions.php │ │ │ │ │ │ │ ├── ListMessagesResult.php │ │ │ │ │ │ │ ├── ListQueuesOptions.php │ │ │ │ │ │ │ ├── ListQueuesResult.php │ │ │ │ │ │ │ ├── PeekMessagesOptions.php │ │ │ │ │ │ │ ├── PeekMessagesResult.php │ │ │ │ │ │ │ ├── Queue.php │ │ │ │ │ │ │ ├── QueueACL.php │ │ │ │ │ │ │ ├── QueueContinuationToken.php │ │ │ │ │ │ │ ├── QueueContinuationTokenTrait.php │ │ │ │ │ │ │ ├── QueueMessage.php │ │ │ │ │ │ │ ├── QueueServiceOptions.php │ │ │ │ │ │ │ └── UpdateMessageResult.php │ │ │ │ │ │ └── QueueRestProxy.php │ │ │ │ │ │ └── Table │ │ │ │ │ │ ├── Internal │ │ │ │ │ │ ├── AcceptOptionTrait.php │ │ │ │ │ │ ├── IMimeReaderWriter.php │ │ │ │ │ │ ├── IODataReaderWriter.php │ │ │ │ │ │ ├── ITable.php │ │ │ │ │ │ ├── JsonODataReaderWriter.php │ │ │ │ │ │ └── MimeReaderWriter.php │ │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── AcceptJSONContentType.php │ │ │ │ │ │ ├── BatchOperation.php │ │ │ │ │ │ ├── BatchOperationParameterName.php │ │ │ │ │ │ ├── BatchOperationType.php │ │ │ │ │ │ ├── BatchOperations.php │ │ │ │ │ │ ├── BatchResult.php │ │ │ │ │ │ ├── DeleteEntityOptions.php │ │ │ │ │ │ ├── EdmType.php │ │ │ │ │ │ ├── Entity.php │ │ │ │ │ │ ├── Filters │ │ │ │ │ │ │ ├── BinaryFilter.php │ │ │ │ │ │ │ ├── ConstantFilter.php │ │ │ │ │ │ │ ├── Filter.php │ │ │ │ │ │ │ ├── PropertyNameFilter.php │ │ │ │ │ │ │ ├── QueryStringFilter.php │ │ │ │ │ │ │ └── UnaryFilter.php │ │ │ │ │ │ ├── GetEntityOptions.php │ │ │ │ │ │ ├── GetEntityResult.php │ │ │ │ │ │ ├── GetTableOptions.php │ │ │ │ │ │ ├── GetTableResult.php │ │ │ │ │ │ ├── InsertEntityResult.php │ │ │ │ │ │ ├── Property.php │ │ │ │ │ │ ├── Query.php │ │ │ │ │ │ ├── QueryEntitiesOptions.php │ │ │ │ │ │ ├── QueryEntitiesResult.php │ │ │ │ │ │ ├── QueryTablesOptions.php │ │ │ │ │ │ ├── QueryTablesResult.php │ │ │ │ │ │ ├── TableACL.php │ │ │ │ │ │ ├── TableContinuationToken.php │ │ │ │ │ │ ├── TableContinuationTokenTrait.php │ │ │ │ │ │ ├── TableServiceCreateOptions.php │ │ │ │ │ │ ├── TableServiceOptions.php │ │ │ │ │ │ └── UpdateEntityResult.php │ │ │ │ │ │ └── TableRestProxy.php │ │ │ │ │ ├── monolog │ │ │ │ │ └── monolog │ │ │ │ │ │ └── src │ │ │ │ │ │ └── Monolog │ │ │ │ │ │ ├── ErrorHandler.php │ │ │ │ │ │ ├── Formatter │ │ │ │ │ │ ├── ChromePHPFormatter.php │ │ │ │ │ │ ├── ElasticaFormatter.php │ │ │ │ │ │ ├── FlowdockFormatter.php │ │ │ │ │ │ ├── FluentdFormatter.php │ │ │ │ │ │ ├── FormatterInterface.php │ │ │ │ │ │ ├── GelfMessageFormatter.php │ │ │ │ │ │ ├── HtmlFormatter.php │ │ │ │ │ │ ├── JsonFormatter.php │ │ │ │ │ │ ├── LineFormatter.php │ │ │ │ │ │ ├── LogglyFormatter.php │ │ │ │ │ │ ├── LogstashFormatter.php │ │ │ │ │ │ ├── MongoDBFormatter.php │ │ │ │ │ │ ├── NormalizerFormatter.php │ │ │ │ │ │ ├── ScalarFormatter.php │ │ │ │ │ │ └── WildfireFormatter.php │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ ├── AbstractHandler.php │ │ │ │ │ │ ├── AbstractProcessingHandler.php │ │ │ │ │ │ ├── AbstractSyslogHandler.php │ │ │ │ │ │ ├── AmqpHandler.php │ │ │ │ │ │ ├── BrowserConsoleHandler.php │ │ │ │ │ │ ├── BufferHandler.php │ │ │ │ │ │ ├── ChromePHPHandler.php │ │ │ │ │ │ ├── CouchDBHandler.php │ │ │ │ │ │ ├── CubeHandler.php │ │ │ │ │ │ ├── Curl │ │ │ │ │ │ │ └── Util.php │ │ │ │ │ │ ├── DeduplicationHandler.php │ │ │ │ │ │ ├── DoctrineCouchDBHandler.php │ │ │ │ │ │ ├── DynamoDbHandler.php │ │ │ │ │ │ ├── ElasticSearchHandler.php │ │ │ │ │ │ ├── ErrorLogHandler.php │ │ │ │ │ │ ├── FilterHandler.php │ │ │ │ │ │ ├── FingersCrossed │ │ │ │ │ │ │ ├── ActivationStrategyInterface.php │ │ │ │ │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ │ │ │ │ └── ErrorLevelActivationStrategy.php │ │ │ │ │ │ ├── FingersCrossedHandler.php │ │ │ │ │ │ ├── FirePHPHandler.php │ │ │ │ │ │ ├── FleepHookHandler.php │ │ │ │ │ │ ├── FlowdockHandler.php │ │ │ │ │ │ ├── GelfHandler.php │ │ │ │ │ │ ├── GroupHandler.php │ │ │ │ │ │ ├── HandlerInterface.php │ │ │ │ │ │ ├── HandlerWrapper.php │ │ │ │ │ │ ├── HipChatHandler.php │ │ │ │ │ │ ├── IFTTTHandler.php │ │ │ │ │ │ ├── LogEntriesHandler.php │ │ │ │ │ │ ├── LogglyHandler.php │ │ │ │ │ │ ├── MailHandler.php │ │ │ │ │ │ ├── MandrillHandler.php │ │ │ │ │ │ ├── MissingExtensionException.php │ │ │ │ │ │ ├── MongoDBHandler.php │ │ │ │ │ │ ├── NativeMailerHandler.php │ │ │ │ │ │ ├── NewRelicHandler.php │ │ │ │ │ │ ├── NullHandler.php │ │ │ │ │ │ ├── PHPConsoleHandler.php │ │ │ │ │ │ ├── PsrHandler.php │ │ │ │ │ │ ├── PushoverHandler.php │ │ │ │ │ │ ├── RavenHandler.php │ │ │ │ │ │ ├── RedisHandler.php │ │ │ │ │ │ ├── RollbarHandler.php │ │ │ │ │ │ ├── RotatingFileHandler.php │ │ │ │ │ │ ├── SamplingHandler.php │ │ │ │ │ │ ├── Slack │ │ │ │ │ │ │ └── SlackRecord.php │ │ │ │ │ │ ├── SlackHandler.php │ │ │ │ │ │ ├── SlackWebhookHandler.php │ │ │ │ │ │ ├── SlackbotHandler.php │ │ │ │ │ │ ├── SocketHandler.php │ │ │ │ │ │ ├── StreamHandler.php │ │ │ │ │ │ ├── SwiftMailerHandler.php │ │ │ │ │ │ ├── SyslogHandler.php │ │ │ │ │ │ ├── SyslogUdp │ │ │ │ │ │ │ └── UdpSocket.php │ │ │ │ │ │ ├── SyslogUdpHandler.php │ │ │ │ │ │ ├── TestHandler.php │ │ │ │ │ │ ├── WhatFailureGroupHandler.php │ │ │ │ │ │ └── ZendMonitorHandler.php │ │ │ │ │ │ ├── Logger.php │ │ │ │ │ │ ├── Processor │ │ │ │ │ │ ├── GitProcessor.php │ │ │ │ │ │ ├── IntrospectionProcessor.php │ │ │ │ │ │ ├── MemoryPeakUsageProcessor.php │ │ │ │ │ │ ├── MemoryProcessor.php │ │ │ │ │ │ ├── MemoryUsageProcessor.php │ │ │ │ │ │ ├── MercurialProcessor.php │ │ │ │ │ │ ├── ProcessIdProcessor.php │ │ │ │ │ │ ├── PsrLogMessageProcessor.php │ │ │ │ │ │ ├── TagProcessor.php │ │ │ │ │ │ ├── UidProcessor.php │ │ │ │ │ │ └── WebProcessor.php │ │ │ │ │ │ └── Registry.php │ │ │ │ │ ├── mtdowling │ │ │ │ │ └── jmespath.php │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── AstRuntime.php │ │ │ │ │ │ ├── CompilerRuntime.php │ │ │ │ │ │ ├── DebugRuntime.php │ │ │ │ │ │ ├── Env.php │ │ │ │ │ │ ├── FnDispatcher.php │ │ │ │ │ │ ├── JmesPath.php │ │ │ │ │ │ ├── Lexer.php │ │ │ │ │ │ ├── Parser.php │ │ │ │ │ │ ├── SyntaxErrorException.php │ │ │ │ │ │ ├── TreeCompiler.php │ │ │ │ │ │ ├── TreeInterpreter.php │ │ │ │ │ │ └── Utils.php │ │ │ │ │ ├── pimple │ │ │ │ │ └── pimple │ │ │ │ │ │ └── src │ │ │ │ │ │ └── Pimple │ │ │ │ │ │ ├── Container.php │ │ │ │ │ │ └── ServiceProviderInterface.php │ │ │ │ │ ├── psr │ │ │ │ │ ├── cache │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── CacheException.php │ │ │ │ │ │ │ ├── CacheItemInterface.php │ │ │ │ │ │ │ ├── CacheItemPoolInterface.php │ │ │ │ │ │ │ └── InvalidArgumentException.php │ │ │ │ │ ├── http-message │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── MessageInterface.php │ │ │ │ │ │ │ ├── RequestInterface.php │ │ │ │ │ │ │ ├── ResponseInterface.php │ │ │ │ │ │ │ ├── ServerRequestInterface.php │ │ │ │ │ │ │ ├── StreamInterface.php │ │ │ │ │ │ │ ├── UploadedFileInterface.php │ │ │ │ │ │ │ └── UriInterface.php │ │ │ │ │ └── log │ │ │ │ │ │ └── Psr │ │ │ │ │ │ └── Log │ │ │ │ │ │ ├── AbstractLogger.php │ │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ │ ├── LogLevel.php │ │ │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ │ │ ├── LoggerInterface.php │ │ │ │ │ │ ├── LoggerTrait.php │ │ │ │ │ │ └── NullLogger.php │ │ │ │ │ ├── spatie │ │ │ │ │ ├── dropbox-api │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Client.php │ │ │ │ │ │ │ └── Exceptions │ │ │ │ │ │ │ └── BadRequest.php │ │ │ │ │ └── flysystem-dropbox │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ └── src │ │ │ │ │ │ └── DropboxAdapter.php │ │ │ │ │ └── symfony │ │ │ │ │ ├── debug │ │ │ │ │ ├── BufferingLogger.php │ │ │ │ │ ├── Debug.php │ │ │ │ │ ├── DebugClassLoader.php │ │ │ │ │ ├── ErrorHandler.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── ClassNotFoundException.php │ │ │ │ │ │ ├── ContextErrorException.php │ │ │ │ │ │ ├── DummyException.php │ │ │ │ │ │ ├── FatalErrorException.php │ │ │ │ │ │ ├── FatalThrowableError.php │ │ │ │ │ │ ├── FlattenException.php │ │ │ │ │ │ ├── OutOfMemoryException.php │ │ │ │ │ │ ├── UndefinedFunctionException.php │ │ │ │ │ │ └── UndefinedMethodException.php │ │ │ │ │ ├── ExceptionHandler.php │ │ │ │ │ └── FatalErrorHandler │ │ │ │ │ │ ├── ClassNotFoundFatalErrorHandler.php │ │ │ │ │ │ ├── FatalErrorHandlerInterface.php │ │ │ │ │ │ ├── UndefinedFunctionFatalErrorHandler.php │ │ │ │ │ │ └── UndefinedMethodFatalErrorHandler.php │ │ │ │ │ ├── event-dispatcher │ │ │ │ │ ├── ContainerAwareEventDispatcher.php │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── TraceableEventDispatcher.php │ │ │ │ │ │ ├── TraceableEventDispatcherInterface.php │ │ │ │ │ │ └── WrappedListener.php │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ └── RegisterListenersPass.php │ │ │ │ │ ├── Event.php │ │ │ │ │ ├── EventDispatcher.php │ │ │ │ │ ├── EventDispatcherInterface.php │ │ │ │ │ ├── EventSubscriberInterface.php │ │ │ │ │ ├── GenericEvent.php │ │ │ │ │ └── ImmutableEventDispatcher.php │ │ │ │ │ ├── http-foundation │ │ │ │ │ ├── AcceptHeader.php │ │ │ │ │ ├── AcceptHeaderItem.php │ │ │ │ │ ├── ApacheRequest.php │ │ │ │ │ ├── BinaryFileResponse.php │ │ │ │ │ ├── Cookie.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── ConflictingHeadersException.php │ │ │ │ │ ├── ExpressionRequestMatcher.php │ │ │ │ │ ├── File │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ ├── AccessDeniedException.php │ │ │ │ │ │ │ ├── FileException.php │ │ │ │ │ │ │ ├── FileNotFoundException.php │ │ │ │ │ │ │ ├── UnexpectedTypeException.php │ │ │ │ │ │ │ └── UploadException.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ ├── MimeType │ │ │ │ │ │ │ ├── ExtensionGuesser.php │ │ │ │ │ │ │ ├── ExtensionGuesserInterface.php │ │ │ │ │ │ │ ├── FileBinaryMimeTypeGuesser.php │ │ │ │ │ │ │ ├── FileinfoMimeTypeGuesser.php │ │ │ │ │ │ │ ├── MimeTypeExtensionGuesser.php │ │ │ │ │ │ │ ├── MimeTypeGuesser.php │ │ │ │ │ │ │ └── MimeTypeGuesserInterface.php │ │ │ │ │ │ └── UploadedFile.php │ │ │ │ │ ├── FileBag.php │ │ │ │ │ ├── HeaderBag.php │ │ │ │ │ ├── IpUtils.php │ │ │ │ │ ├── JsonResponse.php │ │ │ │ │ ├── ParameterBag.php │ │ │ │ │ ├── RedirectResponse.php │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── RequestMatcher.php │ │ │ │ │ ├── RequestMatcherInterface.php │ │ │ │ │ ├── RequestStack.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── stubs │ │ │ │ │ │ │ └── SessionHandlerInterface.php │ │ │ │ │ ├── Response.php │ │ │ │ │ ├── ResponseHeaderBag.php │ │ │ │ │ ├── ServerBag.php │ │ │ │ │ ├── Session │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ ├── AttributeBag.php │ │ │ │ │ │ │ ├── AttributeBagInterface.php │ │ │ │ │ │ │ └── NamespacedAttributeBag.php │ │ │ │ │ │ ├── Flash │ │ │ │ │ │ │ ├── AutoExpireFlashBag.php │ │ │ │ │ │ │ ├── FlashBag.php │ │ │ │ │ │ │ └── FlashBagInterface.php │ │ │ │ │ │ ├── Session.php │ │ │ │ │ │ ├── SessionBagInterface.php │ │ │ │ │ │ ├── SessionInterface.php │ │ │ │ │ │ └── Storage │ │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ │ ├── LegacyPdoSessionHandler.php │ │ │ │ │ │ │ ├── MemcacheSessionHandler.php │ │ │ │ │ │ │ ├── MemcachedSessionHandler.php │ │ │ │ │ │ │ ├── MongoDbSessionHandler.php │ │ │ │ │ │ │ ├── NativeFileSessionHandler.php │ │ │ │ │ │ │ ├── NativeSessionHandler.php │ │ │ │ │ │ │ ├── NullSessionHandler.php │ │ │ │ │ │ │ ├── PdoSessionHandler.php │ │ │ │ │ │ │ └── WriteCheckSessionHandler.php │ │ │ │ │ │ │ ├── MetadataBag.php │ │ │ │ │ │ │ ├── MockArraySessionStorage.php │ │ │ │ │ │ │ ├── MockFileSessionStorage.php │ │ │ │ │ │ │ ├── NativeSessionStorage.php │ │ │ │ │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ │ │ │ │ ├── Proxy │ │ │ │ │ │ │ ├── AbstractProxy.php │ │ │ │ │ │ │ ├── NativeProxy.php │ │ │ │ │ │ │ └── SessionHandlerProxy.php │ │ │ │ │ │ │ └── SessionStorageInterface.php │ │ │ │ │ └── StreamedResponse.php │ │ │ │ │ ├── http-kernel │ │ │ │ │ ├── Bundle │ │ │ │ │ │ ├── Bundle.php │ │ │ │ │ │ └── BundleInterface.php │ │ │ │ │ ├── CacheClearer │ │ │ │ │ │ ├── CacheClearerInterface.php │ │ │ │ │ │ └── ChainCacheClearer.php │ │ │ │ │ ├── CacheWarmer │ │ │ │ │ │ ├── CacheWarmer.php │ │ │ │ │ │ ├── CacheWarmerAggregate.php │ │ │ │ │ │ ├── CacheWarmerInterface.php │ │ │ │ │ │ └── WarmableInterface.php │ │ │ │ │ ├── Client.php │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── EnvParametersResource.php │ │ │ │ │ │ └── FileLocator.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── ControllerReference.php │ │ │ │ │ │ ├── ControllerResolver.php │ │ │ │ │ │ ├── ControllerResolverInterface.php │ │ │ │ │ │ └── TraceableControllerResolver.php │ │ │ │ │ ├── DataCollector │ │ │ │ │ │ ├── ConfigDataCollector.php │ │ │ │ │ │ ├── DataCollector.php │ │ │ │ │ │ ├── DataCollectorInterface.php │ │ │ │ │ │ ├── DumpDataCollector.php │ │ │ │ │ │ ├── EventDataCollector.php │ │ │ │ │ │ ├── ExceptionDataCollector.php │ │ │ │ │ │ ├── LateDataCollectorInterface.php │ │ │ │ │ │ ├── LoggerDataCollector.php │ │ │ │ │ │ ├── MemoryDataCollector.php │ │ │ │ │ │ ├── RequestDataCollector.php │ │ │ │ │ │ ├── RouterDataCollector.php │ │ │ │ │ │ ├── TimeDataCollector.php │ │ │ │ │ │ └── Util │ │ │ │ │ │ │ └── ValueExporter.php │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── ErrorHandler.php │ │ │ │ │ │ ├── ExceptionHandler.php │ │ │ │ │ │ └── TraceableEventDispatcher.php │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ ├── AddClassesToCachePass.php │ │ │ │ │ │ ├── ConfigurableExtension.php │ │ │ │ │ │ ├── ContainerAwareHttpKernel.php │ │ │ │ │ │ ├── Extension.php │ │ │ │ │ │ ├── FragmentRendererPass.php │ │ │ │ │ │ ├── LazyLoadingFragmentHandler.php │ │ │ │ │ │ ├── MergeExtensionConfigurationPass.php │ │ │ │ │ │ └── RegisterListenersPass.php │ │ │ │ │ ├── Event │ │ │ │ │ │ ├── FilterControllerEvent.php │ │ │ │ │ │ ├── FilterResponseEvent.php │ │ │ │ │ │ ├── FinishRequestEvent.php │ │ │ │ │ │ ├── GetResponseEvent.php │ │ │ │ │ │ ├── GetResponseForControllerResultEvent.php │ │ │ │ │ │ ├── GetResponseForExceptionEvent.php │ │ │ │ │ │ ├── KernelEvent.php │ │ │ │ │ │ └── PostResponseEvent.php │ │ │ │ │ ├── EventListener │ │ │ │ │ │ ├── AddRequestFormatsListener.php │ │ │ │ │ │ ├── DebugHandlersListener.php │ │ │ │ │ │ ├── DumpListener.php │ │ │ │ │ │ ├── ErrorsLoggerListener.php │ │ │ │ │ │ ├── EsiListener.php │ │ │ │ │ │ ├── ExceptionListener.php │ │ │ │ │ │ ├── FragmentListener.php │ │ │ │ │ │ ├── LocaleListener.php │ │ │ │ │ │ ├── ProfilerListener.php │ │ │ │ │ │ ├── ResponseListener.php │ │ │ │ │ │ ├── RouterListener.php │ │ │ │ │ │ ├── SaveSessionListener.php │ │ │ │ │ │ ├── SessionListener.php │ │ │ │ │ │ ├── StreamedResponseListener.php │ │ │ │ │ │ ├── SurrogateListener.php │ │ │ │ │ │ ├── TestSessionListener.php │ │ │ │ │ │ ├── TranslatorListener.php │ │ │ │ │ │ └── ValidateRequestListener.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── AccessDeniedHttpException.php │ │ │ │ │ │ ├── BadRequestHttpException.php │ │ │ │ │ │ ├── ConflictHttpException.php │ │ │ │ │ │ ├── FatalErrorException.php │ │ │ │ │ │ ├── FlattenException.php │ │ │ │ │ │ ├── GoneHttpException.php │ │ │ │ │ │ ├── HttpException.php │ │ │ │ │ │ ├── HttpExceptionInterface.php │ │ │ │ │ │ ├── LengthRequiredHttpException.php │ │ │ │ │ │ ├── MethodNotAllowedHttpException.php │ │ │ │ │ │ ├── NotAcceptableHttpException.php │ │ │ │ │ │ ├── NotFoundHttpException.php │ │ │ │ │ │ ├── PreconditionFailedHttpException.php │ │ │ │ │ │ ├── PreconditionRequiredHttpException.php │ │ │ │ │ │ ├── ServiceUnavailableHttpException.php │ │ │ │ │ │ ├── TooManyRequestsHttpException.php │ │ │ │ │ │ ├── UnauthorizedHttpException.php │ │ │ │ │ │ ├── UnprocessableEntityHttpException.php │ │ │ │ │ │ └── UnsupportedMediaTypeHttpException.php │ │ │ │ │ ├── Fragment │ │ │ │ │ │ ├── AbstractSurrogateFragmentRenderer.php │ │ │ │ │ │ ├── EsiFragmentRenderer.php │ │ │ │ │ │ ├── FragmentHandler.php │ │ │ │ │ │ ├── FragmentRendererInterface.php │ │ │ │ │ │ ├── HIncludeFragmentRenderer.php │ │ │ │ │ │ ├── InlineFragmentRenderer.php │ │ │ │ │ │ ├── RoutableFragmentRenderer.php │ │ │ │ │ │ └── SsiFragmentRenderer.php │ │ │ │ │ ├── HttpCache │ │ │ │ │ │ ├── Esi.php │ │ │ │ │ │ ├── EsiResponseCacheStrategy.php │ │ │ │ │ │ ├── EsiResponseCacheStrategyInterface.php │ │ │ │ │ │ ├── HttpCache.php │ │ │ │ │ │ ├── ResponseCacheStrategy.php │ │ │ │ │ │ ├── ResponseCacheStrategyInterface.php │ │ │ │ │ │ ├── Ssi.php │ │ │ │ │ │ ├── Store.php │ │ │ │ │ │ ├── StoreInterface.php │ │ │ │ │ │ └── SurrogateInterface.php │ │ │ │ │ ├── HttpKernel.php │ │ │ │ │ ├── HttpKernelInterface.php │ │ │ │ │ ├── Kernel.php │ │ │ │ │ ├── KernelEvents.php │ │ │ │ │ ├── KernelInterface.php │ │ │ │ │ ├── Log │ │ │ │ │ │ ├── DebugLoggerInterface.php │ │ │ │ │ │ ├── LoggerInterface.php │ │ │ │ │ │ └── NullLogger.php │ │ │ │ │ ├── Profiler │ │ │ │ │ │ ├── BaseMemcacheProfilerStorage.php │ │ │ │ │ │ ├── FileProfilerStorage.php │ │ │ │ │ │ ├── MemcacheProfilerStorage.php │ │ │ │ │ │ ├── MemcachedProfilerStorage.php │ │ │ │ │ │ ├── MongoDbProfilerStorage.php │ │ │ │ │ │ ├── MysqlProfilerStorage.php │ │ │ │ │ │ ├── PdoProfilerStorage.php │ │ │ │ │ │ ├── Profile.php │ │ │ │ │ │ ├── Profiler.php │ │ │ │ │ │ ├── ProfilerStorageInterface.php │ │ │ │ │ │ ├── RedisProfilerStorage.php │ │ │ │ │ │ └── SqliteProfilerStorage.php │ │ │ │ │ ├── TerminableInterface.php │ │ │ │ │ └── UriSigner.php │ │ │ │ │ └── polyfill-mbstring │ │ │ │ │ ├── Mbstring.php │ │ │ │ │ ├── Resources │ │ │ │ │ └── unidata │ │ │ │ │ │ ├── lowerCase.php │ │ │ │ │ │ └── upperCase.php │ │ │ │ │ └── bootstrap.php │ │ │ ├── lang │ │ │ │ ├── az.json │ │ │ │ ├── bg.json │ │ │ │ ├── bs.json │ │ │ │ ├── ca.json │ │ │ │ ├── cs.json │ │ │ │ ├── cy.json │ │ │ │ ├── da.json │ │ │ │ ├── de-ch.json │ │ │ │ ├── de.json │ │ │ │ ├── el.json │ │ │ │ ├── en.json │ │ │ │ ├── eo.json │ │ │ │ ├── es-mx.json │ │ │ │ ├── es.json │ │ │ │ ├── et.json │ │ │ │ ├── eu.json │ │ │ │ ├── fa.json │ │ │ │ ├── fi.json │ │ │ │ ├── fr.json │ │ │ │ ├── gu.json │ │ │ │ ├── he.json │ │ │ │ ├── hi.json │ │ │ │ ├── hr.json │ │ │ │ ├── hu.json │ │ │ │ ├── it.json │ │ │ │ ├── ja.json │ │ │ │ ├── ko.json │ │ │ │ ├── ku.json │ │ │ │ ├── lt.json │ │ │ │ ├── lv.json │ │ │ │ ├── nb.json │ │ │ │ ├── nl.json │ │ │ │ ├── nn.json │ │ │ │ ├── no.json │ │ │ │ ├── pl.json │ │ │ │ ├── pt-br.json │ │ │ │ ├── ro.json │ │ │ │ ├── ru.json │ │ │ │ ├── sk.json │ │ │ │ ├── sl.json │ │ │ │ ├── sr.json │ │ │ │ ├── sv.json │ │ │ │ ├── tr.json │ │ │ │ ├── uk.json │ │ │ │ ├── uz-cyrl.json │ │ │ │ ├── uz-latn.json │ │ │ │ ├── vi.json │ │ │ │ ├── zh-cn.json │ │ │ │ └── zh-tw.json │ │ │ ├── libs │ │ │ │ ├── caman.js │ │ │ │ ├── images │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ └── icons-png │ │ │ │ │ │ ├── action-black.png │ │ │ │ │ │ ├── action-white.png │ │ │ │ │ │ ├── alert-black.png │ │ │ │ │ │ ├── alert-white.png │ │ │ │ │ │ ├── arrow-d-black.png │ │ │ │ │ │ ├── arrow-d-l-black.png │ │ │ │ │ │ ├── arrow-d-l-white.png │ │ │ │ │ │ ├── arrow-d-r-black.png │ │ │ │ │ │ ├── arrow-d-r-white.png │ │ │ │ │ │ ├── arrow-d-white.png │ │ │ │ │ │ ├── arrow-l-black.png │ │ │ │ │ │ ├── arrow-l-white.png │ │ │ │ │ │ ├── arrow-r-black.png │ │ │ │ │ │ ├── arrow-r-white.png │ │ │ │ │ │ ├── arrow-u-black.png │ │ │ │ │ │ ├── arrow-u-l-black.png │ │ │ │ │ │ ├── arrow-u-l-white.png │ │ │ │ │ │ ├── arrow-u-r-black.png │ │ │ │ │ │ ├── arrow-u-r-white.png │ │ │ │ │ │ ├── arrow-u-white.png │ │ │ │ │ │ ├── audio-black.png │ │ │ │ │ │ ├── audio-white.png │ │ │ │ │ │ ├── back-black.png │ │ │ │ │ │ ├── back-white.png │ │ │ │ │ │ ├── bars-black.png │ │ │ │ │ │ ├── bars-white.png │ │ │ │ │ │ ├── bullets-black.png │ │ │ │ │ │ ├── bullets-white.png │ │ │ │ │ │ ├── calendar-black.png │ │ │ │ │ │ ├── calendar-white.png │ │ │ │ │ │ ├── camera-black.png │ │ │ │ │ │ ├── camera-white.png │ │ │ │ │ │ ├── carat-d-black.png │ │ │ │ │ │ ├── carat-d-white.png │ │ │ │ │ │ ├── carat-l-black.png │ │ │ │ │ │ ├── carat-l-white.png │ │ │ │ │ │ ├── carat-r-black.png │ │ │ │ │ │ ├── carat-r-white.png │ │ │ │ │ │ ├── carat-u-black.png │ │ │ │ │ │ ├── carat-u-white.png │ │ │ │ │ │ ├── check-black.png │ │ │ │ │ │ ├── check-white.png │ │ │ │ │ │ ├── clock-black.png │ │ │ │ │ │ ├── clock-white.png │ │ │ │ │ │ ├── cloud-black.png │ │ │ │ │ │ ├── cloud-white.png │ │ │ │ │ │ ├── comment-black.png │ │ │ │ │ │ ├── comment-white.png │ │ │ │ │ │ ├── delete-black.png │ │ │ │ │ │ ├── delete-white.png │ │ │ │ │ │ ├── edit-black.png │ │ │ │ │ │ ├── edit-white.png │ │ │ │ │ │ ├── eye-black.png │ │ │ │ │ │ ├── eye-white.png │ │ │ │ │ │ ├── forbidden-black.png │ │ │ │ │ │ ├── forbidden-white.png │ │ │ │ │ │ ├── forward-black.png │ │ │ │ │ │ ├── forward-white.png │ │ │ │ │ │ ├── gear-black.png │ │ │ │ │ │ ├── gear-white.png │ │ │ │ │ │ ├── grid-black.png │ │ │ │ │ │ ├── grid-white.png │ │ │ │ │ │ ├── heart-black.png │ │ │ │ │ │ ├── heart-white.png │ │ │ │ │ │ ├── home-black.png │ │ │ │ │ │ ├── home-white.png │ │ │ │ │ │ ├── info-black.png │ │ │ │ │ │ ├── info-white.png │ │ │ │ │ │ ├── location-black.png │ │ │ │ │ │ ├── location-white.png │ │ │ │ │ │ ├── lock-black.png │ │ │ │ │ │ ├── lock-white.png │ │ │ │ │ │ ├── mail-black.png │ │ │ │ │ │ ├── mail-white.png │ │ │ │ │ │ ├── minus-black.png │ │ │ │ │ │ ├── minus-white.png │ │ │ │ │ │ ├── navigation-black.png │ │ │ │ │ │ ├── navigation-white.png │ │ │ │ │ │ ├── phone-black.png │ │ │ │ │ │ ├── phone-white.png │ │ │ │ │ │ ├── plus-black.png │ │ │ │ │ │ ├── plus-white.png │ │ │ │ │ │ ├── power-black.png │ │ │ │ │ │ ├── power-white.png │ │ │ │ │ │ ├── recycle-black.png │ │ │ │ │ │ ├── recycle-white.png │ │ │ │ │ │ ├── refresh-black.png │ │ │ │ │ │ ├── refresh-white.png │ │ │ │ │ │ ├── search-black.png │ │ │ │ │ │ ├── search-white.png │ │ │ │ │ │ ├── shop-black.png │ │ │ │ │ │ ├── shop-white.png │ │ │ │ │ │ ├── star-black.png │ │ │ │ │ │ ├── star-white.png │ │ │ │ │ │ ├── tag-black.png │ │ │ │ │ │ ├── tag-white.png │ │ │ │ │ │ ├── user-black.png │ │ │ │ │ │ ├── user-white.png │ │ │ │ │ │ ├── video-black.png │ │ │ │ │ │ └── video-white.png │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.mobile.icons.css │ │ │ │ ├── jquery.mobile.js │ │ │ │ ├── jquery.mobile.structure.css │ │ │ │ └── jquery.mobile.theme.css │ │ │ ├── plugins │ │ │ │ └── README.md │ │ │ ├── samples │ │ │ │ ├── ckeditor.html │ │ │ │ ├── css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── adjoined-separator.png │ │ │ │ │ │ ├── alert.png │ │ │ │ │ │ ├── icon-close.png │ │ │ │ │ │ ├── icon-download.png │ │ │ │ │ │ ├── icon-navigation-a-github.png │ │ │ │ │ │ ├── icon-question-mark.png │ │ │ │ │ │ ├── icon-sdk-book.png │ │ │ │ │ │ ├── icon-sdk-documentation.png │ │ │ │ │ │ ├── icon-sdk-gear.png │ │ │ │ │ │ ├── icon-sdk-sample.png │ │ │ │ │ │ ├── icon-toggler-light.png │ │ │ │ │ │ ├── icon-toggler.png │ │ │ │ │ │ ├── icon-tree-a-collapser.png │ │ │ │ │ │ ├── icon-tree-a-link.png │ │ │ │ │ │ └── tip.png │ │ │ │ │ └── sample.css │ │ │ │ ├── full-page-open.html │ │ │ │ ├── full-page.html │ │ │ │ ├── img │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── logo.png │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── html5shiv.min.js │ │ │ │ │ ├── sf.js │ │ │ │ │ └── tree-a.js │ │ │ │ ├── localization.html │ │ │ │ ├── modals.html │ │ │ │ ├── other-custom-configuration.html │ │ │ │ ├── other-read-only.html │ │ │ │ ├── plugin-examples.html │ │ │ │ ├── plugins │ │ │ │ │ └── StatusBarInfo │ │ │ │ │ │ └── StatusBarInfo.js │ │ │ │ ├── popups.html │ │ │ │ ├── skins-jquery-mobile.html │ │ │ │ ├── skins-moono.html │ │ │ │ ├── user-interface-compact.html │ │ │ │ ├── user-interface-default.html │ │ │ │ ├── user-interface-listview.html │ │ │ │ ├── user-interface-mobile.html │ │ │ │ └── widget.html │ │ │ ├── skins │ │ │ │ ├── core │ │ │ │ │ ├── ckfinder.css │ │ │ │ │ ├── file-icons │ │ │ │ │ │ ├── 16 │ │ │ │ │ │ │ ├── 7z.png │ │ │ │ │ │ │ ├── access.png │ │ │ │ │ │ │ ├── audio.png │ │ │ │ │ │ │ ├── calc.png │ │ │ │ │ │ │ ├── css.png │ │ │ │ │ │ │ ├── csv.png │ │ │ │ │ │ │ ├── directory.png │ │ │ │ │ │ │ ├── draw.png │ │ │ │ │ │ │ ├── excel.png │ │ │ │ │ │ │ ├── html.png │ │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ │ ├── impress.png │ │ │ │ │ │ │ ├── javascript.png │ │ │ │ │ │ │ ├── log.png │ │ │ │ │ │ │ ├── msword.png │ │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ │ ├── php.png │ │ │ │ │ │ │ ├── plain.png │ │ │ │ │ │ │ ├── powerpoint.png │ │ │ │ │ │ │ ├── rar.png │ │ │ │ │ │ │ ├── readme.png │ │ │ │ │ │ │ ├── rtf.png │ │ │ │ │ │ │ ├── sql.png │ │ │ │ │ │ │ ├── tar.png │ │ │ │ │ │ │ ├── unknown.png │ │ │ │ │ │ │ ├── video.png │ │ │ │ │ │ │ ├── writer.png │ │ │ │ │ │ │ └── zip.png │ │ │ │ │ │ ├── 22 │ │ │ │ │ │ │ ├── 7z.png │ │ │ │ │ │ │ ├── access.png │ │ │ │ │ │ │ ├── audio.png │ │ │ │ │ │ │ ├── calc.png │ │ │ │ │ │ │ ├── css.png │ │ │ │ │ │ │ ├── csv.png │ │ │ │ │ │ │ ├── directory.png │ │ │ │ │ │ │ ├── draw.png │ │ │ │ │ │ │ ├── excel.png │ │ │ │ │ │ │ ├── html.png │ │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ │ ├── javascript.png │ │ │ │ │ │ │ ├── log.png │ │ │ │ │ │ │ ├── msword.png │ │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ │ ├── php.png │ │ │ │ │ │ │ ├── plain.png │ │ │ │ │ │ │ ├── powerpoint.png │ │ │ │ │ │ │ ├── rar.png │ │ │ │ │ │ │ ├── readme.png │ │ │ │ │ │ │ ├── rtf.png │ │ │ │ │ │ │ ├── sql.png │ │ │ │ │ │ │ ├── tar.png │ │ │ │ │ │ │ ├── unknown.png │ │ │ │ │ │ │ ├── video.png │ │ │ │ │ │ │ └── zip.png │ │ │ │ │ │ ├── 32 │ │ │ │ │ │ │ ├── 7z.png │ │ │ │ │ │ │ ├── access.png │ │ │ │ │ │ │ ├── audio.png │ │ │ │ │ │ │ ├── calc.png │ │ │ │ │ │ │ ├── css.png │ │ │ │ │ │ │ ├── csv.png │ │ │ │ │ │ │ ├── directory.png │ │ │ │ │ │ │ ├── draw.png │ │ │ │ │ │ │ ├── excel.png │ │ │ │ │ │ │ ├── html.png │ │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ │ ├── impress.png │ │ │ │ │ │ │ ├── javascript.png │ │ │ │ │ │ │ ├── log.png │ │ │ │ │ │ │ ├── msword.png │ │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ │ ├── php.png │ │ │ │ │ │ │ ├── plain.png │ │ │ │ │ │ │ ├── powerpoint.png │ │ │ │ │ │ │ ├── rar.png │ │ │ │ │ │ │ ├── readme.png │ │ │ │ │ │ │ ├── rtf.png │ │ │ │ │ │ │ ├── sql.png │ │ │ │ │ │ │ ├── tar.png │ │ │ │ │ │ │ ├── unknown.png │ │ │ │ │ │ │ ├── video.png │ │ │ │ │ │ │ ├── writer.png │ │ │ │ │ │ │ └── zip.png │ │ │ │ │ │ ├── 48 │ │ │ │ │ │ │ ├── 7z.png │ │ │ │ │ │ │ ├── access.png │ │ │ │ │ │ │ ├── audio.png │ │ │ │ │ │ │ ├── calc.png │ │ │ │ │ │ │ ├── css.png │ │ │ │ │ │ │ ├── csv.png │ │ │ │ │ │ │ ├── directory.png │ │ │ │ │ │ │ ├── draw.png │ │ │ │ │ │ │ ├── excel.png │ │ │ │ │ │ │ ├── html.png │ │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ │ ├── impress.png │ │ │ │ │ │ │ ├── javascript.png │ │ │ │ │ │ │ ├── log.png │ │ │ │ │ │ │ ├── msword.png │ │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ │ ├── php.png │ │ │ │ │ │ │ ├── plain.png │ │ │ │ │ │ │ ├── powerpoint.png │ │ │ │ │ │ │ ├── rar.png │ │ │ │ │ │ │ ├── readme.png │ │ │ │ │ │ │ ├── rtf.png │ │ │ │ │ │ │ ├── sql.png │ │ │ │ │ │ │ ├── tar.png │ │ │ │ │ │ │ ├── unknown.png │ │ │ │ │ │ │ ├── video.png │ │ │ │ │ │ │ ├── writer.png │ │ │ │ │ │ │ └── zip.png │ │ │ │ │ │ ├── 64 │ │ │ │ │ │ │ ├── 7z.png │ │ │ │ │ │ │ ├── access.png │ │ │ │ │ │ │ ├── audio.png │ │ │ │ │ │ │ ├── calc.png │ │ │ │ │ │ │ ├── css.png │ │ │ │ │ │ │ ├── csv.png │ │ │ │ │ │ │ ├── directory.png │ │ │ │ │ │ │ ├── draw.png │ │ │ │ │ │ │ ├── excel.png │ │ │ │ │ │ │ ├── html.png │ │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ │ ├── impress.png │ │ │ │ │ │ │ ├── javascript.png │ │ │ │ │ │ │ ├── log.png │ │ │ │ │ │ │ ├── msword.png │ │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ │ ├── php.png │ │ │ │ │ │ │ ├── plain.png │ │ │ │ │ │ │ ├── powerpoint.png │ │ │ │ │ │ │ ├── rar.png │ │ │ │ │ │ │ ├── readme.png │ │ │ │ │ │ │ ├── rtf.png │ │ │ │ │ │ │ ├── sql.png │ │ │ │ │ │ │ ├── tar.png │ │ │ │ │ │ │ ├── unknown.png │ │ │ │ │ │ │ ├── video.png │ │ │ │ │ │ │ ├── writer.png │ │ │ │ │ │ │ └── zip.png │ │ │ │ │ │ ├── 128 │ │ │ │ │ │ │ ├── 7z.png │ │ │ │ │ │ │ ├── access.png │ │ │ │ │ │ │ ├── audio.png │ │ │ │ │ │ │ ├── calc.png │ │ │ │ │ │ │ ├── css.png │ │ │ │ │ │ │ ├── csv.png │ │ │ │ │ │ │ ├── directory.png │ │ │ │ │ │ │ ├── draw.png │ │ │ │ │ │ │ ├── excel.png │ │ │ │ │ │ │ ├── html.png │ │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ │ ├── impress.png │ │ │ │ │ │ │ ├── javascript.png │ │ │ │ │ │ │ ├── log.png │ │ │ │ │ │ │ ├── msword.png │ │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ │ ├── php.png │ │ │ │ │ │ │ ├── plain.png │ │ │ │ │ │ │ ├── powerpoint.png │ │ │ │ │ │ │ ├── rar.png │ │ │ │ │ │ │ ├── readme.png │ │ │ │ │ │ │ ├── rtf.png │ │ │ │ │ │ │ ├── sql.png │ │ │ │ │ │ │ ├── tar.png │ │ │ │ │ │ │ ├── unknown.png │ │ │ │ │ │ │ ├── video.png │ │ │ │ │ │ │ ├── writer.png │ │ │ │ │ │ │ └── zip.png │ │ │ │ │ │ └── 256 │ │ │ │ │ │ │ ├── 7z.png │ │ │ │ │ │ │ ├── access.png │ │ │ │ │ │ │ ├── audio.png │ │ │ │ │ │ │ ├── calc.png │ │ │ │ │ │ │ ├── css.png │ │ │ │ │ │ │ ├── csv.png │ │ │ │ │ │ │ ├── directory.png │ │ │ │ │ │ │ ├── draw.png │ │ │ │ │ │ │ ├── excel.png │ │ │ │ │ │ │ ├── html.png │ │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ │ ├── javascript.png │ │ │ │ │ │ │ ├── log.png │ │ │ │ │ │ │ ├── msword.png │ │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ │ ├── php.png │ │ │ │ │ │ │ ├── plain.png │ │ │ │ │ │ │ ├── powerpoint.png │ │ │ │ │ │ │ ├── rar.png │ │ │ │ │ │ │ ├── readme.png │ │ │ │ │ │ │ ├── rtf.png │ │ │ │ │ │ │ ├── sql.png │ │ │ │ │ │ │ ├── tar.png │ │ │ │ │ │ │ ├── unknown.png │ │ │ │ │ │ │ ├── video.png │ │ │ │ │ │ │ └── zip.png │ │ │ │ │ └── images │ │ │ │ │ │ └── custom │ │ │ │ │ │ ├── 32 │ │ │ │ │ │ └── image.png │ │ │ │ │ │ ├── 48 │ │ │ │ │ │ └── image.png │ │ │ │ │ │ ├── 64 │ │ │ │ │ │ └── image.png │ │ │ │ │ │ ├── 128 │ │ │ │ │ │ └── image.png │ │ │ │ │ │ └── 256 │ │ │ │ │ │ └── image.png │ │ │ │ ├── jquery-mobile │ │ │ │ │ └── icons.css │ │ │ │ └── moono │ │ │ │ │ ├── ckfinder.css │ │ │ │ │ ├── icons.css │ │ │ │ │ └── images │ │ │ │ │ └── ajax-loader.gif │ │ │ └── userfiles │ │ │ │ └── .htaccess │ │ ├── dataTables.buttons.min.js │ │ ├── dataTables.select.min.js │ │ ├── daterangepicker.min.js │ │ ├── dropzone.min.js │ │ ├── excanvas.min.js │ │ ├── fullcalendar.min.js │ │ ├── grid.locale-en.js │ │ ├── holder.min.js │ │ ├── html5shiv.min.js │ │ ├── jquery-1.11.3.min.js │ │ ├── jquery-2.1.4.min.js │ │ ├── jquery-additional-methods.min.js │ │ ├── jquery-typeahead.js │ │ ├── jquery-ui.custom.min.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.bootstrap-duallistbox.min.js │ │ ├── jquery.colorbox.min.js │ │ ├── jquery.dataTables.bootstrap.min.js │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.easypiechart.min.js │ │ ├── jquery.flot.min.js │ │ ├── jquery.flot.pie.min.js │ │ ├── jquery.flot.resize.min.js │ │ ├── jquery.gritter.min.js │ │ ├── jquery.hotkeys.index.min.js │ │ ├── jquery.inputlimiter.min.js │ │ ├── jquery.jqGrid.min.js │ │ ├── jquery.knob.min.js │ │ ├── jquery.maskedinput.min.js │ │ ├── jquery.mobile.custom.min.js │ │ ├── jquery.nestable.min.js │ │ ├── jquery.raty.min.js │ │ ├── jquery.sparkline.index.min.js │ │ ├── jquery.ui.touch-punch.min.js │ │ ├── jquery.validate.min.js │ │ ├── markdown.min.js │ │ ├── moment.min.js │ │ ├── prettify.min.js │ │ ├── respond.min.js │ │ ├── select2.min.js │ │ ├── spin.js │ │ ├── spinbox.min.js │ │ ├── tree.min.js │ │ └── wizard.min.js │ ├── swf │ │ └── flashExport.swf │ └── upload │ │ └── .ckfinder │ │ └── cache │ │ ├── .htaccess │ │ ├── data │ │ └── Images │ │ │ ├── Struktur Organisasi Diskominfo.png.cache │ │ │ ├── Welcome Scan.jpg.cache │ │ │ └── WhatsApp Image 2018-04-22 at 15_13_48.jpeg.cache │ │ └── thumbs │ │ ├── .htaccess │ │ └── Images │ │ ├── Struktur Organisasi Diskominfo.png │ │ └── Struktur Organisasi Diskominfo__150x150.png │ │ ├── Welcome Scan.jpg │ │ └── Welcome Scan__150x150.jpg │ │ └── WhatsApp Image 2018-04-22 at 15_13_48.jpeg │ │ └── WhatsApp Image 2018-04-22 at 15_13_48__150x150.jpeg ├── bower.json ├── bower_components │ ├── Flot │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── API.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── NEWS.md │ │ ├── PLUGINS.md │ │ ├── README.md │ │ ├── component.json │ │ ├── examples │ │ │ ├── ajax │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ └── index.html │ │ │ ├── annotating │ │ │ │ └── index.html │ │ │ ├── axes-interacting │ │ │ │ └── index.html │ │ │ ├── axes-multiple │ │ │ │ └── index.html │ │ │ ├── axes-time-zones │ │ │ │ ├── date.js │ │ │ │ ├── index.html │ │ │ │ └── tz │ │ │ │ │ ├── africa │ │ │ │ │ ├── antarctica │ │ │ │ │ ├── asia │ │ │ │ │ ├── australasia │ │ │ │ │ ├── backward │ │ │ │ │ ├── etcetera │ │ │ │ │ ├── europe │ │ │ │ │ ├── factory │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ ├── leapseconds │ │ │ │ │ ├── northamerica │ │ │ │ │ ├── pacificnew │ │ │ │ │ ├── solar87 │ │ │ │ │ ├── solar88 │ │ │ │ │ ├── solar89 │ │ │ │ │ ├── southamerica │ │ │ │ │ ├── systemv │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ └── zone.tab │ │ │ ├── axes-time │ │ │ │ └── index.html │ │ │ ├── background.png │ │ │ ├── basic-options │ │ │ │ └── index.html │ │ │ ├── basic-usage │ │ │ │ └── index.html │ │ │ ├── canvas │ │ │ │ └── index.html │ │ │ ├── categories │ │ │ │ └── index.html │ │ │ ├── examples.css │ │ │ ├── image │ │ │ │ ├── hs-2004-27-a-large-web.jpg │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interacting │ │ │ │ └── index.html │ │ │ ├── navigate │ │ │ │ ├── arrow-down.gif │ │ │ │ ├── arrow-left.gif │ │ │ │ ├── arrow-right.gif │ │ │ │ ├── arrow-up.gif │ │ │ │ └── index.html │ │ │ ├── percentiles │ │ │ │ └── index.html │ │ │ ├── realtime │ │ │ │ └── index.html │ │ │ ├── resize │ │ │ │ └── index.html │ │ │ ├── selection │ │ │ │ └── index.html │ │ │ ├── series-errorbars │ │ │ │ └── index.html │ │ │ ├── series-pie │ │ │ │ └── index.html │ │ │ ├── series-toggle │ │ │ │ └── index.html │ │ │ ├── series-types │ │ │ │ └── index.html │ │ │ ├── shared │ │ │ │ └── jquery-ui │ │ │ │ │ └── jquery-ui.min.css │ │ │ ├── stacking │ │ │ │ └── index.html │ │ │ ├── symbols │ │ │ │ └── index.html │ │ │ ├── threshold │ │ │ │ └── index.html │ │ │ ├── tracking │ │ │ │ └── index.html │ │ │ ├── visitors │ │ │ │ └── index.html │ │ │ └── zooming │ │ │ │ └── index.html │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── flot.jquery.json │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.flot.canvas.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.errorbars.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.threshold.js │ │ ├── jquery.flot.time.js │ │ ├── jquery.js │ │ └── package.json │ ├── Ionicons │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── cheatsheet.html │ │ ├── component.json │ │ ├── composer.json │ │ ├── css │ │ │ ├── ionicons.css │ │ │ └── ionicons.min.css │ │ ├── fonts │ │ │ ├── ionicons.eot │ │ │ ├── ionicons.svg │ │ │ ├── ionicons.ttf │ │ │ └── ionicons.woff │ │ ├── less │ │ │ ├── _ionicons-font.less │ │ │ ├── _ionicons-icons.less │ │ │ ├── _ionicons-variables.less │ │ │ └── ionicons.less │ │ ├── png │ │ │ └── 512 │ │ │ │ ├── alert-circled.png │ │ │ │ ├── alert.png │ │ │ │ ├── android-add-contact.png │ │ │ │ ├── android-add.png │ │ │ │ ├── android-alarm.png │ │ │ │ ├── android-archive.png │ │ │ │ ├── android-arrow-back.png │ │ │ │ ├── android-arrow-down-left.png │ │ │ │ ├── android-arrow-down-right.png │ │ │ │ ├── android-arrow-forward.png │ │ │ │ ├── android-arrow-up-left.png │ │ │ │ ├── android-arrow-up-right.png │ │ │ │ ├── android-battery.png │ │ │ │ ├── android-book.png │ │ │ │ ├── android-calendar.png │ │ │ │ ├── android-call.png │ │ │ │ ├── android-camera.png │ │ │ │ ├── android-chat.png │ │ │ │ ├── android-checkmark.png │ │ │ │ ├── android-clock.png │ │ │ │ ├── android-close.png │ │ │ │ ├── android-contact.png │ │ │ │ ├── android-contacts.png │ │ │ │ ├── android-data.png │ │ │ │ ├── android-developer.png │ │ │ │ ├── android-display.png │ │ │ │ ├── android-download.png │ │ │ │ ├── android-drawer.png │ │ │ │ ├── android-dropdown.png │ │ │ │ ├── android-earth.png │ │ │ │ ├── android-folder.png │ │ │ │ ├── android-forums.png │ │ │ │ ├── android-friends.png │ │ │ │ ├── android-hand.png │ │ │ │ ├── android-image.png │ │ │ │ ├── android-inbox.png │ │ │ │ ├── android-information.png │ │ │ │ ├── android-keypad.png │ │ │ │ ├── android-lightbulb.png │ │ │ │ ├── android-locate.png │ │ │ │ ├── android-location.png │ │ │ │ ├── android-mail.png │ │ │ │ ├── android-microphone.png │ │ │ │ ├── android-mixer.png │ │ │ │ ├── android-more.png │ │ │ │ ├── android-note.png │ │ │ │ ├── android-playstore.png │ │ │ │ ├── android-printer.png │ │ │ │ ├── android-promotion.png │ │ │ │ ├── android-reminder.png │ │ │ │ ├── android-remove.png │ │ │ │ ├── android-search.png │ │ │ │ ├── android-send.png │ │ │ │ ├── android-settings.png │ │ │ │ ├── android-share.png │ │ │ │ ├── android-social-user.png │ │ │ │ ├── android-social.png │ │ │ │ ├── android-sort.png │ │ │ │ ├── android-stair-drawer.png │ │ │ │ ├── android-star.png │ │ │ │ ├── android-stopwatch.png │ │ │ │ ├── android-storage.png │ │ │ │ ├── android-system-back.png │ │ │ │ ├── android-system-home.png │ │ │ │ ├── android-system-windows.png │ │ │ │ ├── android-timer.png │ │ │ │ ├── android-trash.png │ │ │ │ ├── android-user-menu.png │ │ │ │ ├── android-volume.png │ │ │ │ ├── android-wifi.png │ │ │ │ ├── aperture.png │ │ │ │ ├── archive.png │ │ │ │ ├── arrow-down-a.png │ │ │ │ ├── arrow-down-b.png │ │ │ │ ├── arrow-down-c.png │ │ │ │ ├── arrow-expand.png │ │ │ │ ├── arrow-graph-down-left.png │ │ │ │ ├── arrow-graph-down-right.png │ │ │ │ ├── arrow-graph-up-left.png │ │ │ │ ├── arrow-graph-up-right.png │ │ │ │ ├── arrow-left-a.png │ │ │ │ ├── arrow-left-b.png │ │ │ │ ├── arrow-left-c.png │ │ │ │ ├── arrow-move.png │ │ │ │ ├── arrow-resize.png │ │ │ │ ├── arrow-return-left.png │ │ │ │ ├── arrow-return-right.png │ │ │ │ ├── arrow-right-a.png │ │ │ │ ├── arrow-right-b.png │ │ │ │ ├── arrow-right-c.png │ │ │ │ ├── arrow-shrink.png │ │ │ │ ├── arrow-swap.png │ │ │ │ ├── arrow-up-a.png │ │ │ │ ├── arrow-up-b.png │ │ │ │ ├── arrow-up-c.png │ │ │ │ ├── asterisk.png │ │ │ │ ├── at.png │ │ │ │ ├── bag.png │ │ │ │ ├── battery-charging.png │ │ │ │ ├── battery-empty.png │ │ │ │ ├── battery-full.png │ │ │ │ ├── battery-half.png │ │ │ │ ├── battery-low.png │ │ │ │ ├── beaker.png │ │ │ │ ├── beer.png │ │ │ │ ├── bluetooth.png │ │ │ │ ├── bonfire.png │ │ │ │ ├── bookmark.png │ │ │ │ ├── briefcase.png │ │ │ │ ├── bug.png │ │ │ │ ├── calculator.png │ │ │ │ ├── calendar.png │ │ │ │ ├── camera.png │ │ │ │ ├── card.png │ │ │ │ ├── cash.png │ │ │ │ ├── chatbox-working.png │ │ │ │ ├── chatbox.png │ │ │ │ ├── chatboxes.png │ │ │ │ ├── chatbubble-working.png │ │ │ │ ├── chatbubble.png │ │ │ │ ├── chatbubbles.png │ │ │ │ ├── checkmark-circled.png │ │ │ │ ├── checkmark-round.png │ │ │ │ ├── checkmark.png │ │ │ │ ├── chevron-down.png │ │ │ │ ├── chevron-left.png │ │ │ │ ├── chevron-right.png │ │ │ │ ├── chevron-up.png │ │ │ │ ├── clipboard.png │ │ │ │ ├── clock.png │ │ │ │ ├── close-circled.png │ │ │ │ ├── close-round.png │ │ │ │ ├── close.png │ │ │ │ ├── closed-captioning.png │ │ │ │ ├── cloud.png │ │ │ │ ├── code-download.png │ │ │ │ ├── code-working.png │ │ │ │ ├── code.png │ │ │ │ ├── coffee.png │ │ │ │ ├── compass.png │ │ │ │ ├── compose.png │ │ │ │ ├── connection-bars.png │ │ │ │ ├── contrast.png │ │ │ │ ├── cube.png │ │ │ │ ├── disc.png │ │ │ │ ├── document-text.png │ │ │ │ ├── document.png │ │ │ │ ├── drag.png │ │ │ │ ├── earth.png │ │ │ │ ├── edit.png │ │ │ │ ├── egg.png │ │ │ │ ├── eject.png │ │ │ │ ├── email.png │ │ │ │ ├── eye-disabled.png │ │ │ │ ├── eye.png │ │ │ │ ├── female.png │ │ │ │ ├── filing.png │ │ │ │ ├── film-marker.png │ │ │ │ ├── fireball.png │ │ │ │ ├── flag.png │ │ │ │ ├── flame.png │ │ │ │ ├── flash-off.png │ │ │ │ ├── flash.png │ │ │ │ ├── flask.png │ │ │ │ ├── folder.png │ │ │ │ ├── fork-repo.png │ │ │ │ ├── fork.png │ │ │ │ ├── forward.png │ │ │ │ ├── funnel.png │ │ │ │ ├── game-controller-a.png │ │ │ │ ├── game-controller-b.png │ │ │ │ ├── gear-a.png │ │ │ │ ├── gear-b.png │ │ │ │ ├── grid.png │ │ │ │ ├── hammer.png │ │ │ │ ├── happy.png │ │ │ │ ├── headphone.png │ │ │ │ ├── heart-broken.png │ │ │ │ ├── heart.png │ │ │ │ ├── help-buoy.png │ │ │ │ ├── help-circled.png │ │ │ │ ├── help.png │ │ │ │ ├── home.png │ │ │ │ ├── icecream.png │ │ │ │ ├── icon-social-google-plus-outline.png │ │ │ │ ├── icon-social-google-plus.png │ │ │ │ ├── image.png │ │ │ │ ├── images.png │ │ │ │ ├── information-circled.png │ │ │ │ ├── information.png │ │ │ │ ├── ionic.png │ │ │ │ ├── ios7-alarm-outline.png │ │ │ │ ├── ios7-alarm.png │ │ │ │ ├── ios7-albums-outline.png │ │ │ │ ├── ios7-albums.png │ │ │ │ ├── ios7-americanfootball-outline.png │ │ │ │ ├── ios7-americanfootball.png │ │ │ │ ├── ios7-analytics-outline.png │ │ │ │ ├── ios7-analytics.png │ │ │ │ ├── ios7-arrow-back.png │ │ │ │ ├── ios7-arrow-down.png │ │ │ │ ├── ios7-arrow-forward.png │ │ │ │ ├── ios7-arrow-left.png │ │ │ │ ├── ios7-arrow-right.png │ │ │ │ ├── ios7-arrow-thin-down.png │ │ │ │ ├── ios7-arrow-thin-left.png │ │ │ │ ├── ios7-arrow-thin-right.png │ │ │ │ ├── ios7-arrow-thin-up.png │ │ │ │ ├── ios7-arrow-up.png │ │ │ │ ├── ios7-at-outline.png │ │ │ │ ├── ios7-at.png │ │ │ │ ├── ios7-barcode-outline.png │ │ │ │ ├── ios7-barcode.png │ │ │ │ ├── ios7-baseball-outline.png │ │ │ │ ├── ios7-baseball.png │ │ │ │ ├── ios7-basketball-outline.png │ │ │ │ ├── ios7-basketball.png │ │ │ │ ├── ios7-bell-outline.png │ │ │ │ ├── ios7-bell.png │ │ │ │ ├── ios7-bolt-outline.png │ │ │ │ ├── ios7-bolt.png │ │ │ │ ├── ios7-bookmarks-outline.png │ │ │ │ ├── ios7-bookmarks.png │ │ │ │ ├── ios7-box-outline.png │ │ │ │ ├── ios7-box.png │ │ │ │ ├── ios7-briefcase-outline.png │ │ │ │ ├── ios7-briefcase.png │ │ │ │ ├── ios7-browsers-outline.png │ │ │ │ ├── ios7-browsers.png │ │ │ │ ├── ios7-calculator-outline.png │ │ │ │ ├── ios7-calculator.png │ │ │ │ ├── ios7-calendar-outline.png │ │ │ │ ├── ios7-calendar.png │ │ │ │ ├── ios7-camera-outline.png │ │ │ │ ├── ios7-camera.png │ │ │ │ ├── ios7-cart-outline.png │ │ │ │ ├── ios7-cart.png │ │ │ │ ├── ios7-chatboxes-outline.png │ │ │ │ ├── ios7-chatboxes.png │ │ │ │ ├── ios7-chatbubble-outline.png │ │ │ │ ├── ios7-chatbubble.png │ │ │ │ ├── ios7-checkmark-empty.png │ │ │ │ ├── ios7-checkmark-outline.png │ │ │ │ ├── ios7-checkmark.png │ │ │ │ ├── ios7-circle-filled.png │ │ │ │ ├── ios7-circle-outline.png │ │ │ │ ├── ios7-clock-outline.png │ │ │ │ ├── ios7-clock.png │ │ │ │ ├── ios7-close-empty.png │ │ │ │ ├── ios7-close-outline.png │ │ │ │ ├── ios7-close.png │ │ │ │ ├── ios7-cloud-download-outline.png │ │ │ │ ├── ios7-cloud-download.png │ │ │ │ ├── ios7-cloud-outline.png │ │ │ │ ├── ios7-cloud-upload-outline.png │ │ │ │ ├── ios7-cloud-upload.png │ │ │ │ ├── ios7-cloud.png │ │ │ │ ├── ios7-cloudy-night-outline.png │ │ │ │ ├── ios7-cloudy-night.png │ │ │ │ ├── ios7-cloudy-outline.png │ │ │ │ ├── ios7-cloudy.png │ │ │ │ ├── ios7-cog-outline.png │ │ │ │ ├── ios7-cog.png │ │ │ │ ├── ios7-compose-outline.png │ │ │ │ ├── ios7-compose.png │ │ │ │ ├── ios7-contact-outline.png │ │ │ │ ├── ios7-contact.png │ │ │ │ ├── ios7-copy-outline.png │ │ │ │ ├── ios7-copy.png │ │ │ │ ├── ios7-download-outline.png │ │ │ │ ├── ios7-download.png │ │ │ │ ├── ios7-drag.png │ │ │ │ ├── ios7-email-outline.png │ │ │ │ ├── ios7-email.png │ │ │ │ ├── ios7-expand.png │ │ │ │ ├── ios7-eye-outline.png │ │ │ │ ├── ios7-eye.png │ │ │ │ ├── ios7-fastforward-outline.png │ │ │ │ ├── ios7-fastforward.png │ │ │ │ ├── ios7-filing-outline.png │ │ │ │ ├── ios7-filing.png │ │ │ │ ├── ios7-film-outline.png │ │ │ │ ├── ios7-film.png │ │ │ │ ├── ios7-flag-outline.png │ │ │ │ ├── ios7-flag.png │ │ │ │ ├── ios7-folder-outline.png │ │ │ │ ├── ios7-folder.png │ │ │ │ ├── ios7-football-outline.png │ │ │ │ ├── ios7-football.png │ │ │ │ ├── ios7-gear-outline.png │ │ │ │ ├── ios7-gear.png │ │ │ │ ├── ios7-glasses-outline.png │ │ │ │ ├── ios7-glasses.png │ │ │ │ ├── ios7-heart-outline.png │ │ │ │ ├── ios7-heart.png │ │ │ │ ├── ios7-help-empty.png │ │ │ │ ├── ios7-help-outline.png │ │ │ │ ├── ios7-help.png │ │ │ │ ├── ios7-home-outline.png │ │ │ │ ├── ios7-home.png │ │ │ │ ├── ios7-infinite-outline.png │ │ │ │ ├── ios7-infinite.png │ │ │ │ ├── ios7-information-empty.png │ │ │ │ ├── ios7-information-outline.png │ │ │ │ ├── ios7-information.png │ │ │ │ ├── ios7-ionic-outline.png │ │ │ │ ├── ios7-keypad-outline.png │ │ │ │ ├── ios7-keypad.png │ │ │ │ ├── ios7-lightbulb-outline.png │ │ │ │ ├── ios7-lightbulb.png │ │ │ │ ├── ios7-location-outline.png │ │ │ │ ├── ios7-location.png │ │ │ │ ├── ios7-locked-outline.png │ │ │ │ ├── ios7-locked.png │ │ │ │ ├── ios7-loop-strong.png │ │ │ │ ├── ios7-loop.png │ │ │ │ ├── ios7-medkit-outline.png │ │ │ │ ├── ios7-medkit.png │ │ │ │ ├── ios7-mic-off.png │ │ │ │ ├── ios7-mic-outline.png │ │ │ │ ├── ios7-mic.png │ │ │ │ ├── ios7-minus-empty.png │ │ │ │ ├── ios7-minus-outline.png │ │ │ │ ├── ios7-minus.png │ │ │ │ ├── ios7-monitor-outline.png │ │ │ │ ├── ios7-monitor.png │ │ │ │ ├── ios7-moon-outline.png │ │ │ │ ├── ios7-moon.png │ │ │ │ ├── ios7-more-outline.png │ │ │ │ ├── ios7-more.png │ │ │ │ ├── ios7-musical-note.png │ │ │ │ ├── ios7-musical-notes.png │ │ │ │ ├── ios7-navigate-outline.png │ │ │ │ ├── ios7-navigate.png │ │ │ │ ├── ios7-paper-outline.png │ │ │ │ ├── ios7-paper.png │ │ │ │ ├── ios7-paperplane-outline.png │ │ │ │ ├── ios7-paperplane.png │ │ │ │ ├── ios7-partlysunny-outline.png │ │ │ │ ├── ios7-partlysunny.png │ │ │ │ ├── ios7-pause-outline.png │ │ │ │ ├── ios7-pause.png │ │ │ │ ├── ios7-paw-outline.png │ │ │ │ ├── ios7-paw.png │ │ │ │ ├── ios7-people-outline.png │ │ │ │ ├── ios7-people.png │ │ │ │ ├── ios7-person-outline.png │ │ │ │ ├── ios7-person.png │ │ │ │ ├── ios7-personadd-outline.png │ │ │ │ ├── ios7-personadd.png │ │ │ │ ├── ios7-photos-outline.png │ │ │ │ ├── ios7-photos.png │ │ │ │ ├── ios7-pie-outline.png │ │ │ │ ├── ios7-pie.png │ │ │ │ ├── ios7-play-outline.png │ │ │ │ ├── ios7-play.png │ │ │ │ ├── ios7-plus-empty.png │ │ │ │ ├── ios7-plus-outline.png │ │ │ │ ├── ios7-plus.png │ │ │ │ ├── ios7-pricetag-outline.png │ │ │ │ ├── ios7-pricetag.png │ │ │ │ ├── ios7-pricetags-outline.png │ │ │ │ ├── ios7-pricetags.png │ │ │ │ ├── ios7-printer-outline.png │ │ │ │ ├── ios7-printer.png │ │ │ │ ├── ios7-pulse-strong.png │ │ │ │ ├── ios7-pulse.png │ │ │ │ ├── ios7-rainy-outline.png │ │ │ │ ├── ios7-rainy.png │ │ │ │ ├── ios7-recording-outline.png │ │ │ │ ├── ios7-recording.png │ │ │ │ ├── ios7-redo-outline.png │ │ │ │ ├── ios7-redo.png │ │ │ │ ├── ios7-refresh-empty.png │ │ │ │ ├── ios7-refresh-outline.png │ │ │ │ ├── ios7-refresh.png │ │ │ │ ├── ios7-reload.png │ │ │ │ ├── ios7-reverse-camera-outline.png │ │ │ │ ├── ios7-reverse-camera.png │ │ │ │ ├── ios7-rewind-outline.png │ │ │ │ ├── ios7-rewind.png │ │ │ │ ├── ios7-search-strong.png │ │ │ │ ├── ios7-search.png │ │ │ │ ├── ios7-settings-strong.png │ │ │ │ ├── ios7-settings.png │ │ │ │ ├── ios7-shrink.png │ │ │ │ ├── ios7-skipbackward-outline.png │ │ │ │ ├── ios7-skipbackward.png │ │ │ │ ├── ios7-skipforward-outline.png │ │ │ │ ├── ios7-skipforward.png │ │ │ │ ├── ios7-snowy.png │ │ │ │ ├── ios7-speedometer-outline.png │ │ │ │ ├── ios7-speedometer.png │ │ │ │ ├── ios7-star-half.png │ │ │ │ ├── ios7-star-outline.png │ │ │ │ ├── ios7-star.png │ │ │ │ ├── ios7-stopwatch-outline.png │ │ │ │ ├── ios7-stopwatch.png │ │ │ │ ├── ios7-sunny-outline.png │ │ │ │ ├── ios7-sunny.png │ │ │ │ ├── ios7-telephone-outline.png │ │ │ │ ├── ios7-telephone.png │ │ │ │ ├── ios7-tennisball-outline.png │ │ │ │ ├── ios7-tennisball.png │ │ │ │ ├── ios7-thunderstorm-outline.png │ │ │ │ ├── ios7-thunderstorm.png │ │ │ │ ├── ios7-time-outline.png │ │ │ │ ├── ios7-time.png │ │ │ │ ├── ios7-timer-outline.png │ │ │ │ ├── ios7-timer.png │ │ │ │ ├── ios7-toggle-outline.png │ │ │ │ ├── ios7-toggle.png │ │ │ │ ├── ios7-trash-outline.png │ │ │ │ ├── ios7-trash.png │ │ │ │ ├── ios7-undo-outline.png │ │ │ │ ├── ios7-undo.png │ │ │ │ ├── ios7-unlocked-outline.png │ │ │ │ ├── ios7-unlocked.png │ │ │ │ ├── ios7-upload-outline.png │ │ │ │ ├── ios7-upload.png │ │ │ │ ├── ios7-videocam-outline.png │ │ │ │ ├── ios7-videocam.png │ │ │ │ ├── ios7-volume-high.png │ │ │ │ ├── ios7-volume-low.png │ │ │ │ ├── ios7-wineglass-outline.png │ │ │ │ ├── ios7-wineglass.png │ │ │ │ ├── ios7-world-outline.png │ │ │ │ ├── ios7-world.png │ │ │ │ ├── ipad.png │ │ │ │ ├── iphone.png │ │ │ │ ├── ipod.png │ │ │ │ ├── jet.png │ │ │ │ ├── key.png │ │ │ │ ├── knife.png │ │ │ │ ├── laptop.png │ │ │ │ ├── leaf.png │ │ │ │ ├── levels.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── link.png │ │ │ │ ├── load-a.png │ │ │ │ ├── load-b.png │ │ │ │ ├── load-c.png │ │ │ │ ├── load-d.png │ │ │ │ ├── location.png │ │ │ │ ├── locked.png │ │ │ │ ├── log-in.png │ │ │ │ ├── log-out.png │ │ │ │ ├── loop.png │ │ │ │ ├── magnet.png │ │ │ │ ├── male.png │ │ │ │ ├── man.png │ │ │ │ ├── map.png │ │ │ │ ├── medkit.png │ │ │ │ ├── merge.png │ │ │ │ ├── mic-a.png │ │ │ │ ├── mic-b.png │ │ │ │ ├── mic-c.png │ │ │ │ ├── minus-circled.png │ │ │ │ ├── minus-round.png │ │ │ │ ├── minus.png │ │ │ │ ├── model-s.png │ │ │ │ ├── monitor.png │ │ │ │ ├── more.png │ │ │ │ ├── mouse.png │ │ │ │ ├── music-note.png │ │ │ │ ├── navicon-round.png │ │ │ │ ├── navicon.png │ │ │ │ ├── navigate.png │ │ │ │ ├── network.png │ │ │ │ ├── no-smoking.png │ │ │ │ ├── nuclear.png │ │ │ │ ├── outlet.png │ │ │ │ ├── paper-airplane.png │ │ │ │ ├── paperclip.png │ │ │ │ ├── pause.png │ │ │ │ ├── person-add.png │ │ │ │ ├── person-stalker.png │ │ │ │ ├── person.png │ │ │ │ ├── pie-graph.png │ │ │ │ ├── pin.png │ │ │ │ ├── pinpoint.png │ │ │ │ ├── pizza.png │ │ │ │ ├── plane.png │ │ │ │ ├── planet.png │ │ │ │ ├── play.png │ │ │ │ ├── playstation.png │ │ │ │ ├── plus-circled.png │ │ │ │ ├── plus-round.png │ │ │ │ ├── plus.png │ │ │ │ ├── podium.png │ │ │ │ ├── pound.png │ │ │ │ ├── power.png │ │ │ │ ├── pricetag.png │ │ │ │ ├── pricetags.png │ │ │ │ ├── printer.png │ │ │ │ ├── pull-request.png │ │ │ │ ├── qr-scanner.png │ │ │ │ ├── quote.png │ │ │ │ ├── radio-waves.png │ │ │ │ ├── record.png │ │ │ │ ├── refresh.png │ │ │ │ ├── reply-all.png │ │ │ │ ├── reply.png │ │ │ │ ├── ribbon-a.png │ │ │ │ ├── ribbon-b.png │ │ │ │ ├── sad.png │ │ │ │ ├── scissors.png │ │ │ │ ├── search.png │ │ │ │ ├── settings.png │ │ │ │ ├── share.png │ │ │ │ ├── shuffle.png │ │ │ │ ├── skip-backward.png │ │ │ │ ├── skip-forward.png │ │ │ │ ├── social-android-outline.png │ │ │ │ ├── social-android.png │ │ │ │ ├── social-apple-outline.png │ │ │ │ ├── social-apple.png │ │ │ │ ├── social-bitcoin-outline.png │ │ │ │ ├── social-bitcoin.png │ │ │ │ ├── social-buffer-outline.png │ │ │ │ ├── social-buffer.png │ │ │ │ ├── social-designernews-outline.png │ │ │ │ ├── social-designernews.png │ │ │ │ ├── social-dribbble-outline.png │ │ │ │ ├── social-dribbble.png │ │ │ │ ├── social-dropbox-outline.png │ │ │ │ ├── social-dropbox.png │ │ │ │ ├── social-facebook-outline.png │ │ │ │ ├── social-facebook.png │ │ │ │ ├── social-foursquare-outline.png │ │ │ │ ├── social-foursquare.png │ │ │ │ ├── social-freebsd-devil.png │ │ │ │ ├── social-github-outline.png │ │ │ │ ├── social-github.png │ │ │ │ ├── social-google-outline.png │ │ │ │ ├── social-google.png │ │ │ │ ├── social-googleplus-outline.png │ │ │ │ ├── social-googleplus.png │ │ │ │ ├── social-hackernews-outline.png │ │ │ │ ├── social-hackernews.png │ │ │ │ ├── social-instagram-outline.png │ │ │ │ ├── social-instagram.png │ │ │ │ ├── social-linkedin-outline.png │ │ │ │ ├── social-linkedin.png │ │ │ │ ├── social-pinterest-outline.png │ │ │ │ ├── social-pinterest.png │ │ │ │ ├── social-reddit-outline.png │ │ │ │ ├── social-reddit.png │ │ │ │ ├── social-rss-outline.png │ │ │ │ ├── social-rss.png │ │ │ │ ├── social-skype-outline.png │ │ │ │ ├── social-skype.png │ │ │ │ ├── social-tumblr-outline.png │ │ │ │ ├── social-tumblr.png │ │ │ │ ├── social-tux.png │ │ │ │ ├── social-twitter-outline.png │ │ │ │ ├── social-twitter.png │ │ │ │ ├── social-usd-outline.png │ │ │ │ ├── social-usd.png │ │ │ │ ├── social-vimeo-outline.png │ │ │ │ ├── social-vimeo.png │ │ │ │ ├── social-windows-outline.png │ │ │ │ ├── social-windows.png │ │ │ │ ├── social-wordpress-outline.png │ │ │ │ ├── social-wordpress.png │ │ │ │ ├── social-yahoo-outline.png │ │ │ │ ├── social-yahoo.png │ │ │ │ ├── social-youtube-outline.png │ │ │ │ ├── social-youtube.png │ │ │ │ ├── speakerphone.png │ │ │ │ ├── speedometer.png │ │ │ │ ├── spoon.png │ │ │ │ ├── star.png │ │ │ │ ├── stats-bars.png │ │ │ │ ├── steam.png │ │ │ │ ├── stop.png │ │ │ │ ├── thermometer.png │ │ │ │ ├── thumbsdown.png │ │ │ │ ├── thumbsup.png │ │ │ │ ├── toggle-filled.png │ │ │ │ ├── toggle.png │ │ │ │ ├── trash-a.png │ │ │ │ ├── trash-b.png │ │ │ │ ├── trophy.png │ │ │ │ ├── umbrella.png │ │ │ │ ├── university.png │ │ │ │ ├── unlocked.png │ │ │ │ ├── upload.png │ │ │ │ ├── usb.png │ │ │ │ ├── videocamera.png │ │ │ │ ├── volume-high.png │ │ │ │ ├── volume-low.png │ │ │ │ ├── volume-medium.png │ │ │ │ ├── volume-mute.png │ │ │ │ ├── wand.png │ │ │ │ ├── waterdrop.png │ │ │ │ ├── wifi.png │ │ │ │ ├── wineglass.png │ │ │ │ ├── woman.png │ │ │ │ ├── wrench.png │ │ │ │ └── xbox.png │ │ ├── readme.md │ │ ├── scss │ │ │ ├── _ionicons-font.scss │ │ │ ├── _ionicons-icons.scss │ │ │ ├── _ionicons-variables.scss │ │ │ └── ionicons.scss │ │ └── src │ │ │ ├── alert-circled.svg │ │ │ ├── alert.svg │ │ │ ├── android-add-circle.svg │ │ │ ├── android-add.svg │ │ │ ├── android-alarm-clock.svg │ │ │ ├── android-alert.svg │ │ │ ├── android-apps.svg │ │ │ ├── android-archive.svg │ │ │ ├── android-arrow-back.svg │ │ │ ├── android-arrow-down.svg │ │ │ ├── android-arrow-dropdown-circle.svg │ │ │ ├── android-arrow-dropdown.svg │ │ │ ├── android-arrow-dropleft-circle.svg │ │ │ ├── android-arrow-dropleft.svg │ │ │ ├── android-arrow-dropright-circle.svg │ │ │ ├── android-arrow-dropright.svg │ │ │ ├── android-arrow-dropup-circle.svg │ │ │ ├── android-arrow-dropup.svg │ │ │ ├── android-arrow-forward.svg │ │ │ ├── android-arrow-up.svg │ │ │ ├── android-attach.svg │ │ │ ├── android-bar.svg │ │ │ ├── android-bicycle.svg │ │ │ ├── android-boat.svg │ │ │ ├── android-bookmark.svg │ │ │ ├── android-bulb.svg │ │ │ ├── android-bus.svg │ │ │ ├── android-calendar.svg │ │ │ ├── android-call.svg │ │ │ ├── android-camera.svg │ │ │ ├── android-cancel.svg │ │ │ ├── android-car.svg │ │ │ ├── android-cart.svg │ │ │ ├── android-chat.svg │ │ │ ├── android-checkbox-blank.svg │ │ │ ├── android-checkbox-outline-blank.svg │ │ │ ├── android-checkbox-outline.svg │ │ │ ├── android-checkbox.svg │ │ │ ├── android-checkmark-circle.svg │ │ │ ├── android-clipboard.svg │ │ │ ├── android-close.svg │ │ │ ├── android-cloud-circle.svg │ │ │ ├── android-cloud-done.svg │ │ │ ├── android-cloud-outline.svg │ │ │ ├── android-cloud.svg │ │ │ ├── android-color-palette.svg │ │ │ ├── android-compass.svg │ │ │ ├── android-contact.svg │ │ │ ├── android-contacts.svg │ │ │ ├── android-contract.svg │ │ │ ├── android-create.svg │ │ │ ├── android-delete.svg │ │ │ ├── android-desktop.svg │ │ │ ├── android-document.svg │ │ │ ├── android-done-all.svg │ │ │ ├── android-done.svg │ │ │ ├── android-download.svg │ │ │ ├── android-drafts.svg │ │ │ ├── android-exit.svg │ │ │ ├── android-expand.svg │ │ │ ├── android-favorite-outline.svg │ │ │ ├── android-favorite.svg │ │ │ ├── android-film.svg │ │ │ ├── android-folder-open.svg │ │ │ ├── android-folder.svg │ │ │ ├── android-funnel.svg │ │ │ ├── android-globe.svg │ │ │ ├── android-hand.svg │ │ │ ├── android-hangout.svg │ │ │ ├── android-happy.svg │ │ │ ├── android-home.svg │ │ │ ├── android-image.svg │ │ │ ├── android-laptop.svg │ │ │ ├── android-list.svg │ │ │ ├── android-locate.svg │ │ │ ├── android-lock.svg │ │ │ ├── android-mail.svg │ │ │ ├── android-map.svg │ │ │ ├── android-menu.svg │ │ │ ├── android-microphone-off.svg │ │ │ ├── android-microphone.svg │ │ │ ├── android-more-horizontal.svg │ │ │ ├── android-more-vertical.svg │ │ │ ├── android-navigate.svg │ │ │ ├── android-notifications-none.svg │ │ │ ├── android-notifications-off.svg │ │ │ ├── android-notifications.svg │ │ │ ├── android-open.svg │ │ │ ├── android-options.svg │ │ │ ├── android-people.svg │ │ │ ├── android-person-add.svg │ │ │ ├── android-person.svg │ │ │ ├── android-phone-landscape.svg │ │ │ ├── android-phone-portrait.svg │ │ │ ├── android-pin.svg │ │ │ ├── android-plane.svg │ │ │ ├── android-playstore.svg │ │ │ ├── android-print.svg │ │ │ ├── android-radio-button-off.svg │ │ │ ├── android-radio-button-on.svg │ │ │ ├── android-refresh.svg │ │ │ ├── android-remove-circle.svg │ │ │ ├── android-remove.svg │ │ │ ├── android-restaurant.svg │ │ │ ├── android-sad.svg │ │ │ ├── android-search.svg │ │ │ ├── android-send.svg │ │ │ ├── android-settings.svg │ │ │ ├── android-share-alt.svg │ │ │ ├── android-share.svg │ │ │ ├── android-star-half.svg │ │ │ ├── android-star-outline.svg │ │ │ ├── android-star.svg │ │ │ ├── android-stopwatch.svg │ │ │ ├── android-subway.svg │ │ │ ├── android-sunny.svg │ │ │ ├── android-sync.svg │ │ │ ├── android-textsms.svg │ │ │ ├── android-time.svg │ │ │ ├── android-train.svg │ │ │ ├── android-unlock.svg │ │ │ ├── android-upload.svg │ │ │ ├── android-volume-down.svg │ │ │ ├── android-volume-mute.svg │ │ │ ├── android-volume-off.svg │ │ │ ├── android-volume-up.svg │ │ │ ├── android-walk.svg │ │ │ ├── android-warning.svg │ │ │ ├── android-watch.svg │ │ │ ├── android-wifi.svg │ │ │ ├── aperture.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-down-a.svg │ │ │ ├── arrow-down-b.svg │ │ │ ├── arrow-down-c.svg │ │ │ ├── arrow-expand.svg │ │ │ ├── arrow-graph-down-left.svg │ │ │ ├── arrow-graph-down-right.svg │ │ │ ├── arrow-graph-up-left.svg │ │ │ ├── arrow-graph-up-right.svg │ │ │ ├── arrow-left-a.svg │ │ │ ├── arrow-left-b.svg │ │ │ ├── arrow-left-c.svg │ │ │ ├── arrow-move.svg │ │ │ ├── arrow-resize.svg │ │ │ ├── arrow-return-left.svg │ │ │ ├── arrow-return-right.svg │ │ │ ├── arrow-right-a.svg │ │ │ ├── arrow-right-b.svg │ │ │ ├── arrow-right-c.svg │ │ │ ├── arrow-shrink.svg │ │ │ ├── arrow-swap.svg │ │ │ ├── arrow-up-a.svg │ │ │ ├── arrow-up-b.svg │ │ │ ├── arrow-up-c.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── backspace-outline.svg │ │ │ ├── backspace.svg │ │ │ ├── bag.svg │ │ │ ├── battery-charging.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── battery-low.svg │ │ │ ├── beaker.svg │ │ │ ├── beer.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bonfire.svg │ │ │ ├── bookmark.svg │ │ │ ├── bowtie.svg │ │ │ ├── briefcase.svg │ │ │ ├── bug.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar.svg │ │ │ ├── camera.svg │ │ │ ├── card.svg │ │ │ ├── cash.svg │ │ │ ├── chatbox-working.svg │ │ │ ├── chatbox.svg │ │ │ ├── chatboxes.svg │ │ │ ├── chatbubble-working.svg │ │ │ ├── chatbubble.svg │ │ │ ├── chatbubbles.svg │ │ │ ├── checkmark-circled.svg │ │ │ ├── checkmark-round.svg │ │ │ ├── checkmark.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── close-circled.svg │ │ │ ├── close-round.svg │ │ │ ├── close.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── cloud.svg │ │ │ ├── code-download.svg │ │ │ ├── code-working.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── compass.svg │ │ │ ├── compose.svg │ │ │ ├── connection-bars.svg │ │ │ ├── contrast.svg │ │ │ ├── crop.svg │ │ │ ├── cube.svg │ │ │ ├── disc.svg │ │ │ ├── document-text.svg │ │ │ ├── document.svg │ │ │ ├── drag.svg │ │ │ ├── earth.svg │ │ │ ├── easel.svg │ │ │ ├── edit.svg │ │ │ ├── egg.svg │ │ │ ├── eject.svg │ │ │ ├── email-unread.svg │ │ │ ├── email.svg │ │ │ ├── erlenmeyer-flask-bubbles.svg │ │ │ ├── erlenmeyer-flask.svg │ │ │ ├── eye-disabled.svg │ │ │ ├── eye.svg │ │ │ ├── female.svg │ │ │ ├── filing.svg │ │ │ ├── film-marker.svg │ │ │ ├── fireball.svg │ │ │ ├── flag.svg │ │ │ ├── flame.svg │ │ │ ├── flash-off.svg │ │ │ ├── flash.svg │ │ │ ├── folder.svg │ │ │ ├── fork-repo.svg │ │ │ ├── fork.svg │ │ │ ├── forward.svg │ │ │ ├── funnel.svg │ │ │ ├── gear-a.svg │ │ │ ├── gear-b.svg │ │ │ ├── grid.svg │ │ │ ├── hammer.svg │ │ │ ├── happy-outline.svg │ │ │ ├── happy.svg │ │ │ ├── headphone.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart.svg │ │ │ ├── help-buoy.svg │ │ │ ├── help-circled.svg │ │ │ ├── help.svg │ │ │ ├── home.svg │ │ │ ├── icecream.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── information-circled.svg │ │ │ ├── information.svg │ │ │ ├── ionic.svg │ │ │ ├── ios-alarm-outline.svg │ │ │ ├── ios-alarm.svg │ │ │ ├── ios-albums-outline.svg │ │ │ ├── ios-albums.svg │ │ │ ├── ios-americanfootball-outline.svg │ │ │ ├── ios-americanfootball.svg │ │ │ ├── ios-analytics-outline.svg │ │ │ ├── ios-analytics.svg │ │ │ ├── ios-arrow-back.svg │ │ │ ├── ios-arrow-down.svg │ │ │ ├── ios-arrow-forward.svg │ │ │ ├── ios-arrow-left.svg │ │ │ ├── ios-arrow-right.svg │ │ │ ├── ios-arrow-thin-down.svg │ │ │ ├── ios-arrow-thin-left.svg │ │ │ ├── ios-arrow-thin-right.svg │ │ │ ├── ios-arrow-thin-up.svg │ │ │ ├── ios-arrow-up.svg │ │ │ ├── ios-at-outline.svg │ │ │ ├── ios-at.svg │ │ │ ├── ios-barcode-outline.svg │ │ │ ├── ios-barcode.svg │ │ │ ├── ios-baseball-outline.svg │ │ │ ├── ios-baseball.svg │ │ │ ├── ios-basketball-outline.svg │ │ │ ├── ios-basketball.svg │ │ │ ├── ios-bell-outline.svg │ │ │ ├── ios-bell.svg │ │ │ ├── ios-body-outline.svg │ │ │ ├── ios-body.svg │ │ │ ├── ios-bolt-outline.svg │ │ │ ├── ios-bolt.svg │ │ │ ├── ios-book-outline.svg │ │ │ ├── ios-book.svg │ │ │ ├── ios-bookmarks-outline.svg │ │ │ ├── ios-bookmarks.svg │ │ │ ├── ios-box-outline.svg │ │ │ ├── ios-box.svg │ │ │ ├── ios-briefcase-outline.svg │ │ │ ├── ios-briefcase.svg │ │ │ ├── ios-browsers-outline.svg │ │ │ ├── ios-browsers.svg │ │ │ ├── ios-calculator-outline.svg │ │ │ ├── ios-calculator.svg │ │ │ ├── ios-calendar-outline.svg │ │ │ ├── ios-calendar.svg │ │ │ ├── ios-camera-outline.svg │ │ │ ├── ios-camera.svg │ │ │ ├── ios-cart-outline.svg │ │ │ ├── ios-cart.svg │ │ │ ├── ios-chatboxes-outline.svg │ │ │ ├── ios-chatboxes.svg │ │ │ ├── ios-chatbubble-outline.svg │ │ │ ├── ios-chatbubble.svg │ │ │ ├── ios-checkmark-empty.svg │ │ │ ├── ios-checkmark-outline.svg │ │ │ ├── ios-checkmark.svg │ │ │ ├── ios-circle-filled.svg │ │ │ ├── ios-circle-outline.svg │ │ │ ├── ios-clock-outline.svg │ │ │ ├── ios-clock.svg │ │ │ ├── ios-close-empty.svg │ │ │ ├── ios-close-outline.svg │ │ │ ├── ios-close.svg │ │ │ ├── ios-cloud-download-outline.svg │ │ │ ├── ios-cloud-download.svg │ │ │ ├── ios-cloud-outline.svg │ │ │ ├── ios-cloud-upload-outline.svg │ │ │ ├── ios-cloud-upload.svg │ │ │ ├── ios-cloud.svg │ │ │ ├── ios-cloudy-night-outline.svg │ │ │ ├── ios-cloudy-night.svg │ │ │ ├── ios-cloudy-outline.svg │ │ │ ├── ios-cloudy.svg │ │ │ ├── ios-cog-outline.svg │ │ │ ├── ios-cog.svg │ │ │ ├── ios-color-filter-outline.svg │ │ │ ├── ios-color-filter.svg │ │ │ ├── ios-color-wand-outline.svg │ │ │ ├── ios-color-wand.svg │ │ │ ├── ios-compose-outline.svg │ │ │ ├── ios-compose.svg │ │ │ ├── ios-contact-outline.svg │ │ │ ├── ios-contact.svg │ │ │ ├── ios-copy-outline.svg │ │ │ ├── ios-copy.svg │ │ │ ├── ios-crop-strong.svg │ │ │ ├── ios-crop.svg │ │ │ ├── ios-download-outline.svg │ │ │ ├── ios-download.svg │ │ │ ├── ios-drag.svg │ │ │ ├── ios-email-outline.svg │ │ │ ├── ios-email.svg │ │ │ ├── ios-eye-outline.svg │ │ │ ├── ios-eye.svg │ │ │ ├── ios-fastforward-outline.svg │ │ │ ├── ios-fastforward.svg │ │ │ ├── ios-filing-outline.svg │ │ │ ├── ios-filing.svg │ │ │ ├── ios-film-outline.svg │ │ │ ├── ios-film.svg │ │ │ ├── ios-flag-outline.svg │ │ │ ├── ios-flag.svg │ │ │ ├── ios-flame-outline.svg │ │ │ ├── ios-flame.svg │ │ │ ├── ios-flask-outline.svg │ │ │ ├── ios-flask.svg │ │ │ ├── ios-flower-outline.svg │ │ │ ├── ios-flower.svg │ │ │ ├── ios-folder-outline.svg │ │ │ ├── ios-folder.svg │ │ │ ├── ios-football-outline.svg │ │ │ ├── ios-football.svg │ │ │ ├── ios-game-controller-a-outline.svg │ │ │ ├── ios-game-controller-a.svg │ │ │ ├── ios-game-controller-b-outline.svg │ │ │ ├── ios-game-controller-b.svg │ │ │ ├── ios-gear-outline.svg │ │ │ ├── ios-gear.svg │ │ │ ├── ios-glasses-outline.svg │ │ │ ├── ios-glasses.svg │ │ │ ├── ios-grid-view-outline.svg │ │ │ ├── ios-grid-view.svg │ │ │ ├── ios-heart-outline.svg │ │ │ ├── ios-heart.svg │ │ │ ├── ios-help-empty.svg │ │ │ ├── ios-help-outline.svg │ │ │ ├── ios-help.svg │ │ │ ├── ios-home-outline.svg │ │ │ ├── ios-home.svg │ │ │ ├── ios-infinite-outline.svg │ │ │ ├── ios-infinite.svg │ │ │ ├── ios-information-empty.svg │ │ │ ├── ios-information-outline.svg │ │ │ ├── ios-information.svg │ │ │ ├── ios-ionic-outline.svg │ │ │ ├── ios-keypad-outline.svg │ │ │ ├── ios-keypad.svg │ │ │ ├── ios-lightbulb-outline.svg │ │ │ ├── ios-lightbulb.svg │ │ │ ├── ios-list-outline.svg │ │ │ ├── ios-list.svg │ │ │ ├── ios-location-outline.svg │ │ │ ├── ios-location.svg │ │ │ ├── ios-locked-outline.svg │ │ │ ├── ios-locked.svg │ │ │ ├── ios-loop-strong.svg │ │ │ ├── ios-loop.svg │ │ │ ├── ios-medical-outline.svg │ │ │ ├── ios-medical.svg │ │ │ ├── ios-medkit-outline.svg │ │ │ ├── ios-medkit.svg │ │ │ ├── ios-mic-off.svg │ │ │ ├── ios-mic-outline.svg │ │ │ ├── ios-mic.svg │ │ │ ├── ios-minus-empty.svg │ │ │ ├── ios-minus-outline.svg │ │ │ ├── ios-minus.svg │ │ │ ├── ios-monitor-outline.svg │ │ │ ├── ios-monitor.svg │ │ │ ├── ios-moon-outline.svg │ │ │ ├── ios-moon.svg │ │ │ ├── ios-more-outline.svg │ │ │ ├── ios-more.svg │ │ │ ├── ios-musical-note.svg │ │ │ ├── ios-musical-notes.svg │ │ │ ├── ios-navigate-outline.svg │ │ │ ├── ios-navigate.svg │ │ │ ├── ios-nutrition-outline.svg │ │ │ ├── ios-nutrition.svg │ │ │ ├── ios-paper-outline.svg │ │ │ ├── ios-paper.svg │ │ │ ├── ios-paperplane-outline.svg │ │ │ ├── ios-paperplane.svg │ │ │ ├── ios-partlysunny-outline.svg │ │ │ ├── ios-partlysunny.svg │ │ │ ├── ios-pause-outline.svg │ │ │ ├── ios-pause.svg │ │ │ ├── ios-paw-outline.svg │ │ │ ├── ios-paw.svg │ │ │ ├── ios-people-outline.svg │ │ │ ├── ios-people.svg │ │ │ ├── ios-person-outline.svg │ │ │ ├── ios-person.svg │ │ │ ├── ios-personadd-outline.svg │ │ │ ├── ios-personadd.svg │ │ │ ├── ios-photos-outline.svg │ │ │ ├── ios-photos.svg │ │ │ ├── ios-pie-outline.svg │ │ │ ├── ios-pie.svg │ │ │ ├── ios-pint-outline.svg │ │ │ ├── ios-pint.svg │ │ │ ├── ios-play-outline.svg │ │ │ ├── ios-play.svg │ │ │ ├── ios-plus-empty.svg │ │ │ ├── ios-plus-outline.svg │ │ │ ├── ios-plus.svg │ │ │ ├── ios-pricetag-outline.svg │ │ │ ├── ios-pricetag.svg │ │ │ ├── ios-pricetags-outline.svg │ │ │ ├── ios-pricetags.svg │ │ │ ├── ios-printer-outline.svg │ │ │ ├── ios-printer.svg │ │ │ ├── ios-pulse-strong.svg │ │ │ ├── ios-pulse.svg │ │ │ ├── ios-rainy-outline.svg │ │ │ ├── ios-rainy.svg │ │ │ ├── ios-recording-outline.svg │ │ │ ├── ios-recording.svg │ │ │ ├── ios-redo-outline.svg │ │ │ ├── ios-redo.svg │ │ │ ├── ios-refresh-empty.svg │ │ │ ├── ios-refresh-outline.svg │ │ │ ├── ios-refresh.svg │ │ │ ├── ios-reload.svg │ │ │ ├── ios-reverse-camera-outline.svg │ │ │ ├── ios-reverse-camera.svg │ │ │ ├── ios-rewind-outline.svg │ │ │ ├── ios-rewind.svg │ │ │ ├── ios-rose-outline.svg │ │ │ ├── ios-rose.svg │ │ │ ├── ios-search-strong.svg │ │ │ ├── ios-search.svg │ │ │ ├── ios-settings-strong.svg │ │ │ ├── ios-settings.svg │ │ │ ├── ios-shuffle-strong.svg │ │ │ ├── ios-shuffle.svg │ │ │ ├── ios-skipbackward-outline.svg │ │ │ ├── ios-skipbackward.svg │ │ │ ├── ios-skipforward-outline.svg │ │ │ ├── ios-skipforward.svg │ │ │ ├── ios-snowy.svg │ │ │ ├── ios-speedometer-outline.svg │ │ │ ├── ios-speedometer.svg │ │ │ ├── ios-star-half.svg │ │ │ ├── ios-star-outline.svg │ │ │ ├── ios-star.svg │ │ │ ├── ios-stopwatch-outline.svg │ │ │ ├── ios-stopwatch.svg │ │ │ ├── ios-sunny-outline.svg │ │ │ ├── ios-sunny.svg │ │ │ ├── ios-telephone-outline.svg │ │ │ ├── ios-telephone.svg │ │ │ ├── ios-tennisball-outline.svg │ │ │ ├── ios-tennisball.svg │ │ │ ├── ios-thunderstorm-outline.svg │ │ │ ├── ios-thunderstorm.svg │ │ │ ├── ios-time-outline.svg │ │ │ ├── ios-time.svg │ │ │ ├── ios-timer-outline.svg │ │ │ ├── ios-timer.svg │ │ │ ├── ios-toggle-outline.svg │ │ │ ├── ios-toggle.svg │ │ │ ├── ios-trash-outline.svg │ │ │ ├── ios-trash.svg │ │ │ ├── ios-undo-outline.svg │ │ │ ├── ios-undo.svg │ │ │ ├── ios-unlocked-outline.svg │ │ │ ├── ios-unlocked.svg │ │ │ ├── ios-upload-outline.svg │ │ │ ├── ios-upload.svg │ │ │ ├── ios-videocam-outline.svg │ │ │ ├── ios-videocam.svg │ │ │ ├── ios-volume-high.svg │ │ │ ├── ios-volume-low.svg │ │ │ ├── ios-wineglass-outline.svg │ │ │ ├── ios-wineglass.svg │ │ │ ├── ios-world-outline.svg │ │ │ ├── ios-world.svg │ │ │ ├── ipad.svg │ │ │ ├── iphone.svg │ │ │ ├── ipod.svg │ │ │ ├── jet.svg │ │ │ ├── key.svg │ │ │ ├── knife.svg │ │ │ ├── laptop.svg │ │ │ ├── leaf.svg │ │ │ ├── levels.svg │ │ │ ├── lightbulb.svg │ │ │ ├── link.svg │ │ │ ├── load-a.svg │ │ │ ├── load-b.svg │ │ │ ├── load-c.svg │ │ │ ├── load-d.svg │ │ │ ├── location.svg │ │ │ ├── lock-combination.svg │ │ │ ├── locked.svg │ │ │ ├── log-in.svg │ │ │ ├── log-out.svg │ │ │ ├── loop.svg │ │ │ ├── magnet.svg │ │ │ ├── male.svg │ │ │ ├── man.svg │ │ │ ├── map.svg │ │ │ ├── medkit.svg │ │ │ ├── merge.svg │ │ │ ├── mic-a.svg │ │ │ ├── mic-b.svg │ │ │ ├── mic-c.svg │ │ │ ├── minus-circled.svg │ │ │ ├── minus-round.svg │ │ │ ├── minus.svg │ │ │ ├── model-s.svg │ │ │ ├── monitor.svg │ │ │ ├── more.svg │ │ │ ├── mouse.svg │ │ │ ├── music-note.svg │ │ │ ├── navicon-round.svg │ │ │ ├── navicon.svg │ │ │ ├── navigate.svg │ │ │ ├── network.svg │ │ │ ├── no-smoking.svg │ │ │ ├── nuclear.svg │ │ │ ├── outlet.svg │ │ │ ├── paintbrush.svg │ │ │ ├── paintbucket.svg │ │ │ ├── paper-airplane.svg │ │ │ ├── paperclip.svg │ │ │ ├── pause.svg │ │ │ ├── person-add.svg │ │ │ ├── person-stalker.svg │ │ │ ├── person.svg │ │ │ ├── pie-graph.svg │ │ │ ├── pin.svg │ │ │ ├── pinpoint.svg │ │ │ ├── pizza.svg │ │ │ ├── plane.svg │ │ │ ├── planet.svg │ │ │ ├── play.svg │ │ │ ├── playstation.svg │ │ │ ├── plus-circled.svg │ │ │ ├── plus-round.svg │ │ │ ├── plus.svg │ │ │ ├── podium.svg │ │ │ ├── pound.svg │ │ │ ├── power.svg │ │ │ ├── pricetag.svg │ │ │ ├── pricetags.svg │ │ │ ├── printer.svg │ │ │ ├── pull-request.svg │ │ │ ├── qr-scanner.svg │ │ │ ├── quote.svg │ │ │ ├── radio-waves.svg │ │ │ ├── record.svg │ │ │ ├── refresh.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── ribbon-a.svg │ │ │ ├── ribbon-b.svg │ │ │ ├── sad-outline.svg │ │ │ ├── sad.svg │ │ │ ├── scissors.svg │ │ │ ├── search.svg │ │ │ ├── settings.svg │ │ │ ├── share.svg │ │ │ ├── shuffle.svg │ │ │ ├── skip-backward.svg │ │ │ ├── skip-forward.svg │ │ │ ├── social-android-outline.svg │ │ │ ├── social-android.svg │ │ │ ├── social-angular-outline.svg │ │ │ ├── social-angular.svg │ │ │ ├── social-apple-outline.svg │ │ │ ├── social-apple.svg │ │ │ ├── social-bitcoin-outline.svg │ │ │ ├── social-bitcoin.svg │ │ │ ├── social-buffer-outline.svg │ │ │ ├── social-buffer.svg │ │ │ ├── social-chrome-outline.svg │ │ │ ├── social-chrome.svg │ │ │ ├── social-codepen-outline.svg │ │ │ ├── social-codepen.svg │ │ │ ├── social-css3-outline.svg │ │ │ ├── social-css3.svg │ │ │ ├── social-designernews-outline.svg │ │ │ ├── social-designernews.svg │ │ │ ├── social-dribbble-outline.svg │ │ │ ├── social-dribbble.svg │ │ │ ├── social-dropbox-outline.svg │ │ │ ├── social-dropbox.svg │ │ │ ├── social-euro-outline.svg │ │ │ ├── social-euro.svg │ │ │ ├── social-facebook-outline.svg │ │ │ ├── social-facebook.svg │ │ │ ├── social-foursquare-outline.svg │ │ │ ├── social-foursquare.svg │ │ │ ├── social-freebsd-devil.svg │ │ │ ├── social-github-outline.svg │ │ │ ├── social-github.svg │ │ │ ├── social-google-outline.svg │ │ │ ├── social-google.svg │ │ │ ├── social-googleplus-outline.svg │ │ │ ├── social-googleplus.svg │ │ │ ├── social-hackernews-outline.svg │ │ │ ├── social-hackernews.svg │ │ │ ├── social-html5-outline.svg │ │ │ ├── social-html5.svg │ │ │ ├── social-instagram-outline.svg │ │ │ ├── social-instagram.svg │ │ │ ├── social-javascript-outline.svg │ │ │ ├── social-javascript.svg │ │ │ ├── social-linkedin-outline.svg │ │ │ ├── social-linkedin.svg │ │ │ ├── social-markdown.svg │ │ │ ├── social-nodejs.svg │ │ │ ├── social-octocat.svg │ │ │ ├── social-pinterest-outline.svg │ │ │ ├── social-pinterest.svg │ │ │ ├── social-python.svg │ │ │ ├── social-reddit-outline.svg │ │ │ ├── social-reddit.svg │ │ │ ├── social-rss-outline.svg │ │ │ ├── social-rss.svg │ │ │ ├── social-sass.svg │ │ │ ├── social-skype-outline.svg │ │ │ ├── social-skype.svg │ │ │ ├── social-snapchat-outline.svg │ │ │ ├── social-snapchat.svg │ │ │ ├── social-tumblr-outline.svg │ │ │ ├── social-tumblr.svg │ │ │ ├── social-tux.svg │ │ │ ├── social-twitch-outline.svg │ │ │ ├── social-twitch.svg │ │ │ ├── social-twitter-outline.svg │ │ │ ├── social-twitter.svg │ │ │ ├── social-usd-outline.svg │ │ │ ├── social-usd.svg │ │ │ ├── social-vimeo-outline.svg │ │ │ ├── social-vimeo.svg │ │ │ ├── social-whatsapp-outline.svg │ │ │ ├── social-whatsapp.svg │ │ │ ├── social-windows-outline.svg │ │ │ ├── social-windows.svg │ │ │ ├── social-wordpress-outline.svg │ │ │ ├── social-wordpress.svg │ │ │ ├── social-yahoo-outline.svg │ │ │ ├── social-yahoo.svg │ │ │ ├── social-yen-outline.svg │ │ │ ├── social-yen.svg │ │ │ ├── social-youtube-outline.svg │ │ │ ├── social-youtube.svg │ │ │ ├── soup-can-outline.svg │ │ │ ├── soup-can.svg │ │ │ ├── speakerphone.svg │ │ │ ├── speedometer.svg │ │ │ ├── spoon.svg │ │ │ ├── star.svg │ │ │ ├── stats-bars.svg │ │ │ ├── steam.svg │ │ │ ├── stop.svg │ │ │ ├── thermometer.svg │ │ │ ├── thumbsdown.svg │ │ │ ├── thumbsup.svg │ │ │ ├── toggle-filled.svg │ │ │ ├── toggle.svg │ │ │ ├── transgender.svg │ │ │ ├── trash-a.svg │ │ │ ├── trash-b.svg │ │ │ ├── trophy.svg │ │ │ ├── tshirt-outline.svg │ │ │ ├── tshirt.svg │ │ │ ├── umbrella.svg │ │ │ ├── university.svg │ │ │ ├── unlocked.svg │ │ │ ├── upload.svg │ │ │ ├── usb.svg │ │ │ ├── videocamera.svg │ │ │ ├── volume-high.svg │ │ │ ├── volume-low.svg │ │ │ ├── volume-medium.svg │ │ │ ├── volume-mute.svg │ │ │ ├── wand.svg │ │ │ ├── waterdrop.svg │ │ │ ├── wifi.svg │ │ │ ├── wineglass.svg │ │ │ ├── woman.svg │ │ │ ├── wrench.svg │ │ │ └── xbox.svg │ ├── PACE │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── install.json │ │ ├── pace.coffee │ │ ├── pace.js │ │ ├── pace.min.js │ │ └── themes │ │ │ ├── black │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ ├── blue │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ ├── green │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ ├── orange │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ ├── pink │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ ├── purple │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ ├── red │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ ├── silver │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ ├── white │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ │ └── yellow │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ ├── bootstrap-colorpicker │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-colorpicker.css │ │ │ │ ├── bootstrap-colorpicker.css.map │ │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ │ └── bootstrap-colorpicker.min.css.map │ │ │ ├── img │ │ │ │ └── bootstrap-colorpicker │ │ │ │ │ ├── alpha-horizontal.png │ │ │ │ │ ├── alpha.png │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ ├── hue.png │ │ │ │ │ └── saturation.png │ │ │ └── js │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ └── bootstrap-colorpicker.min.js │ │ ├── docs │ │ │ ├── assets │ │ │ │ └── main.css │ │ │ ├── helpers │ │ │ │ └── code │ │ │ │ │ └── index.js │ │ │ ├── includes │ │ │ │ ├── api.hbs │ │ │ │ ├── example.hbs │ │ │ │ ├── examples.hbs │ │ │ │ ├── examples │ │ │ │ │ ├── 01_basic.hbs │ │ │ │ │ ├── 02_component.hbs │ │ │ │ │ ├── 03_component_options.hbs │ │ │ │ │ ├── 04_events.hbs │ │ │ │ │ ├── 05_transparent.hbs │ │ │ │ │ ├── 06_horizontal.hbs │ │ │ │ │ ├── 07_inline.hbs │ │ │ │ │ ├── 08_palette.hbs │ │ │ │ │ ├── 09_size.hbs │ │ │ │ │ ├── 10_disabled.hbs │ │ │ │ │ └── 11_modal.hbs │ │ │ │ └── social.hbs │ │ │ ├── layout.hbs │ │ │ └── pages │ │ │ │ └── index.hbs │ │ ├── package-lock.json │ │ ├── serve.js │ │ ├── spec │ │ │ ├── color │ │ │ │ └── hex-color-spec.js │ │ │ └── support │ │ │ │ └── jasmine.json │ │ └── src │ │ │ ├── js │ │ │ ├── colorpicker-color.js │ │ │ ├── colorpicker-component.js │ │ │ ├── colorpicker-defaults.js │ │ │ └── colorpicker-plugin-wrapper.js │ │ │ ├── less │ │ │ └── colorpicker.less │ │ │ └── sass │ │ │ └── _colorpicker.scss │ ├── bootstrap-datepicker │ │ ├── .bower.json │ │ ├── .editorconfig │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── build.less │ │ │ ├── build3.less │ │ │ ├── build_standalone.less │ │ │ └── build_standalone3.less │ │ ├── composer.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-datepicker.css │ │ │ │ ├── bootstrap-datepicker.css.map │ │ │ │ ├── bootstrap-datepicker.min.css │ │ │ │ ├── bootstrap-datepicker.standalone.css │ │ │ │ ├── bootstrap-datepicker.standalone.css.map │ │ │ │ ├── bootstrap-datepicker.standalone.min.css │ │ │ │ ├── bootstrap-datepicker3.css │ │ │ │ ├── bootstrap-datepicker3.css.map │ │ │ │ ├── bootstrap-datepicker3.min.css │ │ │ │ ├── bootstrap-datepicker3.standalone.css │ │ │ │ ├── bootstrap-datepicker3.standalone.css.map │ │ │ │ └── bootstrap-datepicker3.standalone.min.css │ │ │ ├── js │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ └── bootstrap-datepicker.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ ├── docs │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── _screenshots │ │ │ │ ├── demo_head.html │ │ │ │ ├── markup_component.html │ │ │ │ ├── markup_daterange.html │ │ │ │ ├── markup_inline.html │ │ │ │ ├── markup_input.html │ │ │ │ ├── option_calendarweeks.html │ │ │ │ ├── option_clearbtn.html │ │ │ │ ├── option_daysofweekdisabled.html │ │ │ │ ├── option_enddate.html │ │ │ │ ├── option_language.html │ │ │ │ ├── option_multidate.html │ │ │ │ ├── option_startdate.html │ │ │ │ ├── option_todaybtn.html │ │ │ │ ├── option_todayhighlight.html │ │ │ │ ├── option_weekstart.html │ │ │ │ └── script │ │ │ │ │ ├── common.css │ │ │ │ │ ├── common.js │ │ │ │ │ ├── debug.js │ │ │ │ │ ├── html-imports.min.js │ │ │ │ │ └── screenshot.js │ │ │ ├── _static │ │ │ │ └── screenshots │ │ │ │ │ ├── demo_head.png │ │ │ │ │ ├── markup_component.png │ │ │ │ │ ├── markup_daterange.png │ │ │ │ │ ├── markup_inline.png │ │ │ │ │ ├── markup_input.png │ │ │ │ │ ├── option_calendarweeks.png │ │ │ │ │ ├── option_clearbtn.png │ │ │ │ │ ├── option_daysofweekdisabled.png │ │ │ │ │ ├── option_enddate.png │ │ │ │ │ ├── option_language.png │ │ │ │ │ ├── option_multidate.png │ │ │ │ │ ├── option_startdate.png │ │ │ │ │ ├── option_todaybtn.png │ │ │ │ │ ├── option_todayhighlight.png │ │ │ │ │ └── option_weekstart.png │ │ │ ├── conf.py │ │ │ ├── events.rst │ │ │ ├── i18n.rst │ │ │ ├── index.rst │ │ │ ├── keyboard.rst │ │ │ ├── make.bat │ │ │ ├── markup.rst │ │ │ ├── methods.rst │ │ │ ├── options.rst │ │ │ └── requirements.txt │ │ ├── grunt │ │ │ └── .jshintrc │ │ ├── js │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── bootstrap-datepicker.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker-en-CA.js │ │ │ │ ├── bootstrap-datepicker.ar-tn.js │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ ├── bootstrap-datepicker.az.js │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ ├── bootstrap-datepicker.bn.js │ │ │ │ ├── bootstrap-datepicker.br.js │ │ │ │ ├── bootstrap-datepicker.bs.js │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ ├── bootstrap-datepicker.en-AU.js │ │ │ │ ├── bootstrap-datepicker.en-CA.js │ │ │ │ ├── bootstrap-datepicker.en-GB.js │ │ │ │ ├── bootstrap-datepicker.en-IE.js │ │ │ │ ├── bootstrap-datepicker.en-NZ.js │ │ │ │ ├── bootstrap-datepicker.en-ZA.js │ │ │ │ ├── bootstrap-datepicker.eo.js │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ ├── bootstrap-datepicker.eu.js │ │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ ├── bootstrap-datepicker.fo.js │ │ │ │ ├── bootstrap-datepicker.fr-CH.js │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ ├── bootstrap-datepicker.hi.js │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ ├── bootstrap-datepicker.hy.js │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ ├── bootstrap-datepicker.it-CH.js │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ ├── bootstrap-datepicker.kh.js │ │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ │ ├── bootstrap-datepicker.km.js │ │ │ │ ├── bootstrap-datepicker.ko.js │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ ├── bootstrap-datepicker.me.js │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ ├── bootstrap-datepicker.mn.js │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ ├── bootstrap-datepicker.oc.js │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ ├── bootstrap-datepicker.si.js │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ ├── bootstrap-datepicker.sr-latin.js │ │ │ │ ├── bootstrap-datepicker.sr.js │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ ├── bootstrap-datepicker.ta.js │ │ │ │ ├── bootstrap-datepicker.tg.js │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ ├── bootstrap-datepicker.tk.js │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ ├── bootstrap-datepicker.uk.js │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.js │ │ │ │ ├── bootstrap-datepicker.uz-latn.js │ │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── less │ │ │ ├── .csslintrc │ │ │ ├── datepicker.less │ │ │ └── datepicker3.less │ │ ├── package.json │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ ├── coverage.js │ │ │ │ ├── jquery-1.7.1.min.js │ │ │ │ ├── mock.js │ │ │ │ ├── qunit-logging.js │ │ │ │ ├── qunit.css │ │ │ │ ├── qunit.js │ │ │ │ └── utils.js │ │ │ ├── suites │ │ │ │ ├── calendar-weeks.js │ │ │ │ ├── component.js │ │ │ │ ├── data-api.js │ │ │ │ ├── events.js │ │ │ │ ├── formats.js │ │ │ │ ├── inline.js │ │ │ │ ├── keyboard_navigation │ │ │ │ │ ├── 2011.js │ │ │ │ │ ├── 2012.js │ │ │ │ │ └── all.js │ │ │ │ ├── methods.js │ │ │ │ ├── methods_jquery.js │ │ │ │ ├── mouse_navigation │ │ │ │ │ ├── 2011.js │ │ │ │ │ ├── 2012.js │ │ │ │ │ └── all.js │ │ │ │ ├── noconflict.js │ │ │ │ ├── options.js │ │ │ │ ├── timezone.js │ │ │ │ └── touch_navigation │ │ │ │ │ └── all.js │ │ │ ├── tests.html │ │ │ └── timezone.html │ │ └── yarn.lock │ ├── bootstrap-daterangepicker │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── daterangepicker.css │ │ ├── daterangepicker.js │ │ ├── daterangepicker.scss │ │ ├── demo.html │ │ ├── drp.png │ │ ├── example │ │ │ ├── amd │ │ │ │ ├── index.html │ │ │ │ ├── main.js │ │ │ │ └── require.js │ │ │ └── browserify │ │ │ │ ├── README.md │ │ │ │ ├── bundle.js │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ ├── package.js │ │ ├── package.json │ │ └── website │ │ │ ├── index.html │ │ │ ├── website.css │ │ │ └── website.js │ ├── bootstrap-slider │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bootstrap-slider.js │ │ ├── bower.json │ │ ├── locks.png │ │ └── slider.css │ ├── bootstrap-timepicker │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── css │ │ │ └── timepicker.less │ │ └── js │ │ │ └── bootstrap-timepicker.js │ ├── bootstrap │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── Gruntfile.js │ │ ├── ISSUE_TEMPLATE.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── grunt │ │ │ ├── .jshintrc │ │ │ ├── bs-commonjs-generator.js │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ ├── bs-lessdoc-parser.js │ │ │ ├── bs-raw-files-generator.js │ │ │ ├── change-version.js │ │ │ ├── configBridge.json │ │ │ ├── npm-shrinkwrap.json │ │ │ └── sauce_browsers.yml │ │ ├── js │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── affix.js │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── transition.js │ │ ├── less │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── reset-text.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── nuget │ │ │ ├── MyGet.ps1 │ │ │ ├── bootstrap.less.nuspec │ │ │ └── bootstrap.nuspec │ │ ├── package.js │ │ └── package.json │ ├── chart.js │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Chart.js │ │ ├── Chart.min.js │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── docs │ │ │ ├── 00-Getting-Started.md │ │ │ ├── 01-Line-Chart.md │ │ │ ├── 02-Bar-Chart.md │ │ │ ├── 03-Radar-Chart.md │ │ │ ├── 04-Polar-Area-Chart.md │ │ │ ├── 05-Pie-Doughnut-Chart.md │ │ │ ├── 06-Advanced.md │ │ │ └── 07-Notes.md │ │ ├── gulpfile.js │ │ ├── package.json │ │ ├── samples │ │ │ ├── bar.html │ │ │ ├── doughnut.html │ │ │ ├── line-customTooltips.html │ │ │ ├── line.html │ │ │ ├── pie-customTooltips.html │ │ │ ├── pie.html │ │ │ ├── polar-area.html │ │ │ └── radar.html │ │ └── src │ │ │ ├── Chart.Bar.js │ │ │ ├── Chart.Core.js │ │ │ ├── Chart.Doughnut.js │ │ │ ├── Chart.Line.js │ │ │ ├── Chart.PolarArea.js │ │ │ └── Chart.Radar.js │ ├── ckeditor │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── bower.json │ │ ├── ckeditor.js │ │ ├── composer.json │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── _translationstatus.txt │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es-mx.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── oc.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── package.json │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── adobeair │ │ │ │ └── plugin.js │ │ │ ├── ajax │ │ │ │ └── plugin.js │ │ │ ├── autocomplete │ │ │ │ ├── plugin.js │ │ │ │ └── skins │ │ │ │ │ └── default.css │ │ │ ├── autoembed │ │ │ │ ├── lang │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── autogrow │ │ │ │ └── plugin.js │ │ │ ├── autolink │ │ │ │ └── plugin.js │ │ │ ├── balloonpanel │ │ │ │ ├── plugin.js │ │ │ │ └── skins │ │ │ │ │ ├── kama │ │ │ │ │ └── balloonpanel.css │ │ │ │ │ ├── moono-lisa │ │ │ │ │ ├── balloonpanel.css │ │ │ │ │ └── images │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── close.png │ │ │ │ │ └── moono │ │ │ │ │ ├── balloonpanel.css │ │ │ │ │ └── images │ │ │ │ │ ├── close.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── close.png │ │ │ ├── balloontoolbar │ │ │ │ ├── plugin.js │ │ │ │ └── skins │ │ │ │ │ ├── default.css │ │ │ │ │ ├── kama │ │ │ │ │ └── balloontoolbar.css │ │ │ │ │ ├── moono-lisa │ │ │ │ │ └── balloontoolbar.css │ │ │ │ │ └── moono │ │ │ │ │ └── balloontoolbar.css │ │ │ ├── bbcode │ │ │ │ └── plugin.js │ │ │ ├── bidi │ │ │ │ ├── icons │ │ │ │ │ ├── bidiltr.png │ │ │ │ │ ├── bidirtl.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ ├── bidiltr.png │ │ │ │ │ │ └── bidirtl.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── cloudservices │ │ │ │ └── plugin.js │ │ │ ├── codesnippet │ │ │ │ ├── dialogs │ │ │ │ │ └── codesnippet.js │ │ │ │ ├── icons │ │ │ │ │ ├── codesnippet.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── codesnippet.png │ │ │ │ ├── lang │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── lib │ │ │ │ │ └── highlight │ │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.ru.md │ │ │ │ │ │ ├── highlight.pack.js │ │ │ │ │ │ └── styles │ │ │ │ │ │ ├── arta.css │ │ │ │ │ │ ├── ascetic.css │ │ │ │ │ │ ├── atelier-dune.dark.css │ │ │ │ │ │ ├── atelier-dune.light.css │ │ │ │ │ │ ├── atelier-forest.dark.css │ │ │ │ │ │ ├── atelier-forest.light.css │ │ │ │ │ │ ├── atelier-heath.dark.css │ │ │ │ │ │ ├── atelier-heath.light.css │ │ │ │ │ │ ├── atelier-lakeside.dark.css │ │ │ │ │ │ ├── atelier-lakeside.light.css │ │ │ │ │ │ ├── atelier-seaside.dark.css │ │ │ │ │ │ ├── atelier-seaside.light.css │ │ │ │ │ │ ├── brown_paper.css │ │ │ │ │ │ ├── brown_papersq.png │ │ │ │ │ │ ├── dark.css │ │ │ │ │ │ ├── default.css │ │ │ │ │ │ ├── docco.css │ │ │ │ │ │ ├── far.css │ │ │ │ │ │ ├── foundation.css │ │ │ │ │ │ ├── github.css │ │ │ │ │ │ ├── googlecode.css │ │ │ │ │ │ ├── idea.css │ │ │ │ │ │ ├── ir_black.css │ │ │ │ │ │ ├── magula.css │ │ │ │ │ │ ├── mono-blue.css │ │ │ │ │ │ ├── monokai.css │ │ │ │ │ │ ├── monokai_sublime.css │ │ │ │ │ │ ├── obsidian.css │ │ │ │ │ │ ├── paraiso.dark.css │ │ │ │ │ │ ├── paraiso.light.css │ │ │ │ │ │ ├── pojoaque.css │ │ │ │ │ │ ├── pojoaque.jpg │ │ │ │ │ │ ├── railscasts.css │ │ │ │ │ │ ├── rainbow.css │ │ │ │ │ │ ├── school_book.css │ │ │ │ │ │ ├── school_book.png │ │ │ │ │ │ ├── solarized_dark.css │ │ │ │ │ │ ├── solarized_light.css │ │ │ │ │ │ ├── sunburst.css │ │ │ │ │ │ ├── tomorrow-night-blue.css │ │ │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ │ │ ├── tomorrow-night.css │ │ │ │ │ │ ├── tomorrow.css │ │ │ │ │ │ ├── vs.css │ │ │ │ │ │ ├── xcode.css │ │ │ │ │ │ └── zenburn.css │ │ │ │ └── plugin.js │ │ │ ├── codesnippetgeshi │ │ │ │ └── plugin.js │ │ │ ├── colorbutton │ │ │ │ ├── icons │ │ │ │ │ ├── bgcolor.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── bgcolor.png │ │ │ │ │ │ └── textcolor.png │ │ │ │ │ └── textcolor.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── colordialog │ │ │ │ ├── dialogs │ │ │ │ │ ├── colordialog.css │ │ │ │ │ └── colordialog.js │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── copyformatting │ │ │ │ ├── cursors │ │ │ │ │ ├── cursor-disabled.svg │ │ │ │ │ └── cursor.svg │ │ │ │ ├── icons │ │ │ │ │ ├── copyformatting.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── copyformatting.png │ │ │ │ ├── lang │ │ │ │ │ ├── az.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── styles │ │ │ │ │ └── copyformatting.css │ │ │ ├── devtools │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── dialogadvtab │ │ │ │ └── plugin.js │ │ │ ├── div │ │ │ │ ├── dialogs │ │ │ │ │ └── div.js │ │ │ │ ├── icons │ │ │ │ │ ├── creatediv.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── creatediv.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── divarea │ │ │ │ └── plugin.js │ │ │ ├── docprops │ │ │ │ ├── dialogs │ │ │ │ │ └── docprops.js │ │ │ │ ├── icons │ │ │ │ │ ├── docprops-rtl.png │ │ │ │ │ ├── docprops.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ ├── docprops-rtl.png │ │ │ │ │ │ └── docprops.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── easyimage │ │ │ │ ├── dialogs │ │ │ │ │ └── easyimagealt.js │ │ │ │ ├── icons │ │ │ │ │ ├── easyimagealigncenter.png │ │ │ │ │ ├── easyimagealignleft.png │ │ │ │ │ ├── easyimagealignright.png │ │ │ │ │ ├── easyimagealt.png │ │ │ │ │ ├── easyimagefull.png │ │ │ │ │ ├── easyimageside.png │ │ │ │ │ ├── easyimageupload.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ ├── easyimagealigncenter.png │ │ │ │ │ │ ├── easyimagealignleft.png │ │ │ │ │ │ ├── easyimagealignright.png │ │ │ │ │ │ ├── easyimagealt.png │ │ │ │ │ │ ├── easyimagefull.png │ │ │ │ │ │ ├── easyimageside.png │ │ │ │ │ │ └── easyimageupload.png │ │ │ │ ├── lang │ │ │ │ │ └── en.js │ │ │ │ ├── plugin.js │ │ │ │ └── styles │ │ │ │ │ └── easyimage.css │ │ │ ├── embed │ │ │ │ ├── icons │ │ │ │ │ ├── embed.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── embed.png │ │ │ │ └── plugin.js │ │ │ ├── embedbase │ │ │ │ ├── dialogs │ │ │ │ │ └── embedbase.js │ │ │ │ ├── lang │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── embedsemantic │ │ │ │ ├── icons │ │ │ │ │ ├── embedsemantic.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── embedsemantic.png │ │ │ │ └── plugin.js │ │ │ ├── emoji │ │ │ │ ├── emoji.json │ │ │ │ ├── plugin.js │ │ │ │ └── skins │ │ │ │ │ └── default.css │ │ │ ├── find │ │ │ │ ├── dialogs │ │ │ │ │ └── find.js │ │ │ │ ├── icons │ │ │ │ │ ├── find-rtl.png │ │ │ │ │ ├── find.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── find-rtl.png │ │ │ │ │ │ ├── find.png │ │ │ │ │ │ └── replace.png │ │ │ │ │ └── replace.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ ├── icons │ │ │ │ │ ├── flash.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── flash.png │ │ │ │ ├── images │ │ │ │ │ └── placeholder.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── font │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ ├── icons │ │ │ │ │ ├── button.png │ │ │ │ │ ├── checkbox.png │ │ │ │ │ ├── form.png │ │ │ │ │ ├── hiddenfield.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ ├── checkbox.png │ │ │ │ │ │ ├── form.png │ │ │ │ │ │ ├── hiddenfield.png │ │ │ │ │ │ ├── imagebutton.png │ │ │ │ │ │ ├── radio.png │ │ │ │ │ │ ├── select-rtl.png │ │ │ │ │ │ ├── select.png │ │ │ │ │ │ ├── textarea-rtl.png │ │ │ │ │ │ ├── textarea.png │ │ │ │ │ │ ├── textfield-rtl.png │ │ │ │ │ │ └── textfield.png │ │ │ │ │ ├── imagebutton.png │ │ │ │ │ ├── radio.png │ │ │ │ │ ├── select-rtl.png │ │ │ │ │ ├── select.png │ │ │ │ │ ├── textarea-rtl.png │ │ │ │ │ ├── textarea.png │ │ │ │ │ ├── textfield-rtl.png │ │ │ │ │ └── textfield.png │ │ │ │ ├── images │ │ │ │ │ └── hiddenfield.gif │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── iframe.png │ │ │ │ │ └── iframe.png │ │ │ │ ├── images │ │ │ │ │ └── placeholder.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── iframedialog │ │ │ │ └── plugin.js │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── image2 │ │ │ │ ├── dialogs │ │ │ │ │ └── image2.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── image.png │ │ │ │ │ └── image.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── imagebase │ │ │ │ ├── lang │ │ │ │ │ └── en.js │ │ │ │ ├── plugin.js │ │ │ │ └── styles │ │ │ │ │ └── imagebase.css │ │ │ ├── indentblock │ │ │ │ └── plugin.js │ │ │ ├── justify │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── justifyblock.png │ │ │ │ │ │ ├── justifycenter.png │ │ │ │ │ │ ├── justifyleft.png │ │ │ │ │ │ └── justifyright.png │ │ │ │ │ ├── justifyblock.png │ │ │ │ │ ├── justifycenter.png │ │ │ │ │ ├── justifyleft.png │ │ │ │ │ └── justifyright.png │ │ │ │ └── plugin.js │ │ │ ├── language │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── language.png │ │ │ │ │ └── language.png │ │ │ │ ├── lang │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── liststyle │ │ │ │ ├── dialogs │ │ │ │ │ └── liststyle.js │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── mathjax │ │ │ │ ├── dialogs │ │ │ │ │ └── mathjax.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── mathjax.png │ │ │ │ │ └── mathjax.png │ │ │ │ ├── images │ │ │ │ │ └── loader.gif │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── mentions │ │ │ │ └── plugin.js │ │ │ ├── newpage │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── newpage-rtl.png │ │ │ │ │ │ └── newpage.png │ │ │ │ │ ├── newpage-rtl.png │ │ │ │ │ └── newpage.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── pagebreak │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── pagebreak-rtl.png │ │ │ │ │ │ └── pagebreak.png │ │ │ │ │ ├── pagebreak-rtl.png │ │ │ │ │ └── pagebreak.png │ │ │ │ ├── images │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── panelbutton │ │ │ │ └── plugin.js │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── placeholder │ │ │ │ ├── dialogs │ │ │ │ │ └── placeholder.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── placeholder.png │ │ │ │ │ └── placeholder.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── preview │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── preview-rtl.png │ │ │ │ │ │ └── preview.png │ │ │ │ │ ├── preview-rtl.png │ │ │ │ │ └── preview.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── preview.html │ │ │ ├── print │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── print.png │ │ │ │ │ └── print.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── save │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── save.png │ │ │ │ │ └── save.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── scayt │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── scayt.css │ │ │ ├── selectall │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── selectall.png │ │ │ │ │ └── selectall.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── sharedspace │ │ │ │ └── plugin.js │ │ │ ├── showblocks │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── showblocks-rtl.png │ │ │ │ │ │ └── showblocks.png │ │ │ │ │ ├── showblocks-rtl.png │ │ │ │ │ └── showblocks.png │ │ │ │ ├── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── smiley.png │ │ │ │ │ └── smiley.png │ │ │ │ ├── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── envelope.png │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── kiss.png │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ └── wink_smile.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── sourcedialog │ │ │ │ ├── dialogs │ │ │ │ │ └── sourcedialog.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── sourcedialog-rtl.png │ │ │ │ │ │ └── sourcedialog.png │ │ │ │ │ ├── sourcedialog-rtl.png │ │ │ │ │ └── sourcedialog.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── stylesheetparser │ │ │ │ └── plugin.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tableresize │ │ │ │ └── plugin.js │ │ │ ├── tableselection │ │ │ │ └── styles │ │ │ │ │ └── tableselection.css │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── templates-rtl.png │ │ │ │ │ │ └── templates.png │ │ │ │ │ ├── templates-rtl.png │ │ │ │ │ └── templates.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── textmatch │ │ │ │ └── plugin.js │ │ │ ├── textwatcher │ │ │ │ └── plugin.js │ │ │ ├── uicolor │ │ │ │ ├── dialogs │ │ │ │ │ ├── uicolor.css │ │ │ │ │ └── uicolor.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── uicolor.png │ │ │ │ │ └── uicolor.png │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── uploadfile │ │ │ │ └── plugin.js │ │ │ ├── widget │ │ │ │ └── images │ │ │ │ │ └── handle.png │ │ │ ├── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── wsc.css │ │ │ └── xml │ │ │ │ └── plugin.js │ │ ├── samples │ │ │ ├── css │ │ │ │ └── samples.css │ │ │ ├── img │ │ │ │ ├── github-top.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── header-separator.png │ │ │ │ ├── logo.png │ │ │ │ ├── logo.svg │ │ │ │ └── navigation-tip.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── sample.js │ │ │ │ └── sf.js │ │ │ ├── old │ │ │ │ ├── ajax.html │ │ │ │ ├── api.html │ │ │ │ ├── appendto.html │ │ │ │ ├── assets │ │ │ │ │ ├── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ ├── posteddata.php │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── uilanguages │ │ │ │ │ │ └── languages.js │ │ │ │ ├── autocomplete │ │ │ │ │ ├── customview.html │ │ │ │ │ ├── smiley.html │ │ │ │ │ └── utils.js │ │ │ │ ├── autogrow │ │ │ │ │ └── autogrow.html │ │ │ │ ├── bbcode │ │ │ │ │ └── bbcode.html │ │ │ │ ├── codesnippet │ │ │ │ │ └── codesnippet.html │ │ │ │ ├── datafiltering.html │ │ │ │ ├── devtools │ │ │ │ │ └── devtools.html │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── divarea │ │ │ │ │ └── divarea.html │ │ │ │ ├── divreplace.html │ │ │ │ ├── docprops │ │ │ │ │ └── docprops.html │ │ │ │ ├── easyimage │ │ │ │ │ └── easyimage.html │ │ │ │ ├── emoji │ │ │ │ │ └── emoji.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── image2 │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── image1.jpg │ │ │ │ │ │ └── image2.jpg │ │ │ │ │ └── image2.html │ │ │ │ ├── index.html │ │ │ │ ├── inlineall.html │ │ │ │ ├── inlinebycode.html │ │ │ │ ├── inlinetextarea.html │ │ │ │ ├── jquery.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── mathjax │ │ │ │ │ └── mathjax.html │ │ │ │ ├── mentions │ │ │ │ │ └── mentions.html │ │ │ │ ├── placeholder │ │ │ │ │ └── placeholder.html │ │ │ │ ├── readonly.html │ │ │ │ ├── replacebyclass.html │ │ │ │ ├── replacebycode.html │ │ │ │ ├── sample.css │ │ │ │ ├── sample.js │ │ │ │ ├── sample_posteddata.php │ │ │ │ ├── sharedspace │ │ │ │ │ └── sharedspace.html │ │ │ │ ├── sourcedialog │ │ │ │ │ └── sourcedialog.html │ │ │ │ ├── stylesheetparser │ │ │ │ │ ├── assets │ │ │ │ │ │ └── sample.css │ │ │ │ │ └── stylesheetparser.html │ │ │ │ ├── tabindex.html │ │ │ │ ├── tableresize │ │ │ │ │ └── tableresize.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ ├── uicolor.html │ │ │ │ ├── uicolor │ │ │ │ │ └── uicolor.html │ │ │ │ ├── uilanguages.html │ │ │ │ ├── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ │ └── xhtmlstyle.html │ │ │ └── toolbarconfigurator │ │ │ │ ├── css │ │ │ │ └── fontello.css │ │ │ │ ├── font │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.json │ │ │ │ ├── fontello.eot │ │ │ │ ├── fontello.svg │ │ │ │ ├── fontello.ttf │ │ │ │ └── fontello.woff │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ ├── toolbarmodifier.js │ │ │ │ └── toolbartextmodifier.js │ │ │ │ └── lib │ │ │ │ └── codemirror │ │ │ │ ├── LICENSE │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── javascript.js │ │ │ │ ├── neo.css │ │ │ │ ├── show-hint.css │ │ │ │ └── show-hint.js │ │ ├── skins │ │ │ ├── kama │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ │ ├── mini.gif │ │ │ │ │ ├── spinner.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── sprites_ie6.png │ │ │ │ │ └── toolbar_start.gif │ │ │ │ ├── readme.md │ │ │ │ └── skin.js │ │ │ ├── moono-lisa │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── anchor.png │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── anchor.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ │ ├── readme.md │ │ │ │ └── skin.js │ │ └── styles.js │ ├── datatables.net-bs │ │ ├── .bower.json │ │ ├── License.txt │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── css │ │ │ ├── dataTables.bootstrap.css │ │ │ └── dataTables.bootstrap.min.css │ │ └── js │ │ │ ├── dataTables.bootstrap.js │ │ │ └── dataTables.bootstrap.min.js │ ├── datatables.net │ │ ├── .bower.json │ │ ├── License.txt │ │ ├── Readme.md │ │ ├── bower.json │ │ └── js │ │ │ ├── jquery.dataTables.js │ │ │ └── jquery.dataTables.min.js │ ├── eve-raphael │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── e.html │ │ ├── eve.js │ │ └── package.json │ ├── fastclick │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ └── lib │ │ │ └── fastclick.js │ ├── font-awesome │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── HELP-US-OUT.txt │ │ ├── bower.json │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.css.map │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.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 │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ ├── fullcalendar │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ └── dist │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.d.ts │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.css │ │ │ ├── fullcalendar.min.js │ │ │ ├── fullcalendar.print.css │ │ │ ├── fullcalendar.print.min.css │ │ │ ├── gcal.js │ │ │ ├── gcal.min.js │ │ │ ├── locale-all.js │ │ │ └── locale │ │ │ ├── af.js │ │ │ ├── ar-dz.js │ │ │ ├── ar-kw.js │ │ │ ├── ar-ly.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en-ie.js │ │ │ ├── en-nz.js │ │ │ ├── es-do.js │ │ │ ├── es-us.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-ch.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── kk.js │ │ │ ├── ko.js │ │ │ ├── lb.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms-my.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl-be.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ ├── inputmask │ │ ├── .bower.json │ │ ├── bower.json │ │ └── dist │ │ │ ├── inputmask │ │ │ ├── bindings │ │ │ │ └── inputmask.binding.js │ │ │ ├── dependencyLibs │ │ │ │ ├── inputmask.dependencyLib.jqlite.js │ │ │ │ ├── inputmask.dependencyLib.jquery.js │ │ │ │ └── inputmask.dependencyLib.js │ │ │ ├── global │ │ │ │ ├── document.js │ │ │ │ └── window.js │ │ │ ├── inputmask.date.extensions.js │ │ │ ├── inputmask.extensions.js │ │ │ ├── inputmask.js │ │ │ ├── inputmask.numeric.extensions.js │ │ │ ├── inputmask.phone.extensions.js │ │ │ ├── inputmask.regex.extensions.js │ │ │ ├── jquery.inputmask.js │ │ │ └── phone-codes │ │ │ │ ├── phone-be.js │ │ │ │ ├── phone-nl.js │ │ │ │ ├── phone-ru.js │ │ │ │ ├── phone-uk.js │ │ │ │ └── phone.js │ │ │ ├── jquery.inputmask.bundle.js │ │ │ └── min │ │ │ ├── inputmask │ │ │ ├── inputmask.date.extensions.min.js │ │ │ ├── inputmask.extensions.min.js │ │ │ ├── inputmask.min.js │ │ │ ├── inputmask.numeric.extensions.min.js │ │ │ ├── inputmask.phone.extensions.min.js │ │ │ ├── inputmask.regex.extensions.min.js │ │ │ └── jquery.inputmask.min.js │ │ │ └── jquery.inputmask.bundle.min.js │ ├── ion.rangeSlider │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── License.md │ │ ├── _tmp │ │ │ └── logo-ion-range-slider.png │ │ ├── bower.json │ │ ├── css │ │ │ ├── ion.rangeSlider.css │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ ├── ion.rangeSlider.skinHTML5.css │ │ │ ├── ion.rangeSlider.skinModern.css │ │ │ ├── ion.rangeSlider.skinNice.css │ │ │ ├── ion.rangeSlider.skinSimple.css │ │ │ └── normalize.css │ │ ├── history.md │ │ ├── img │ │ │ ├── sprite-skin-flat.png │ │ │ ├── sprite-skin-modern.png │ │ │ ├── sprite-skin-nice.png │ │ │ └── sprite-skin-simple.png │ │ ├── index.md │ │ ├── js │ │ │ ├── ion.rangeSlider.js │ │ │ └── ion.rangeSlider.min.js │ │ ├── package.json │ │ ├── readme.md │ │ └── readme.ru.md │ ├── jquery-knob │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ └── jquery.knob.min.js │ │ ├── excanvas.js │ │ ├── index.html │ │ ├── js │ │ │ └── jquery.knob.js │ │ ├── knob.jquery.json │ │ ├── package.json │ │ └── secretplan.jpg │ ├── jquery-slimscroll │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── examples │ │ │ ├── allow-page-scroll.html │ │ │ ├── chaining.html │ │ │ ├── disable-fade-out.html │ │ │ ├── dynamic-content.html │ │ │ ├── height-width.html │ │ │ ├── index.html │ │ │ ├── libs │ │ │ │ └── prettify │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── prettify.js │ │ │ ├── mouse-wheel.html │ │ │ ├── multiple-elements.html │ │ │ ├── navigation.html │ │ │ ├── nested.html │ │ │ ├── programmatic-scrolling.html │ │ │ ├── rail.html │ │ │ ├── scroll-events.html │ │ │ ├── scrollbar.html │ │ │ ├── start-position.html │ │ │ └── style.css │ │ ├── jquery.slimscroll.js │ │ ├── jquery.slimscroll.min.js │ │ └── package.json │ ├── jquery-sparkline │ │ ├── .bower.json │ │ ├── Changelog.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── jquery.sparkline.js │ │ │ └── jquery.sparkline.min.js │ │ ├── minheader.txt │ │ ├── sparkline.jquery.json │ │ ├── src │ │ │ ├── base.js │ │ │ ├── chart-bar.js │ │ │ ├── chart-box.js │ │ │ ├── chart-bullet.js │ │ │ ├── chart-discrete.js │ │ │ ├── chart-line.js │ │ │ ├── chart-pie.js │ │ │ ├── chart-tristate.js │ │ │ ├── defaults.js │ │ │ ├── footer.js │ │ │ ├── header.js │ │ │ ├── interact.js │ │ │ ├── rangemap.js │ │ │ ├── simpledraw.js │ │ │ ├── utils.js │ │ │ ├── vcanvas-base.js │ │ │ ├── vcanvas-canvas.js │ │ │ └── vcanvas-vml.js │ │ └── version.txt │ ├── jquery-ui │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── jquery-ui.js │ │ ├── jquery-ui.min.js │ │ ├── package.json │ │ ├── themes │ │ │ ├── base │ │ │ │ ├── accordion.css │ │ │ │ ├── all.css │ │ │ │ ├── autocomplete.css │ │ │ │ ├── base.css │ │ │ │ ├── button.css │ │ │ │ ├── core.css │ │ │ │ ├── datepicker.css │ │ │ │ ├── dialog.css │ │ │ │ ├── draggable.css │ │ │ │ ├── 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_444444_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── menu.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── resizable.css │ │ │ │ ├── selectable.css │ │ │ │ ├── selectmenu.css │ │ │ │ ├── slider.css │ │ │ │ ├── sortable.css │ │ │ │ ├── spinner.css │ │ │ │ ├── tabs.css │ │ │ │ ├── theme.css │ │ │ │ └── tooltip.css │ │ │ ├── black-tie │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_8_333333_40x40.png │ │ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_40_111111_1x400.png │ │ │ │ │ ├── ui-bg_glass_55_1c1c1c_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f9f9f9_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_40_aaaaaa_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_50_aaaaaa_1x100.png │ │ │ │ │ ├── ui-bg_inset-hard_45_cd0a0a_1x100.png │ │ │ │ │ ├── ui-bg_inset-hard_55_ffeb80_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_4ca300_256x240.png │ │ │ │ │ ├── ui-icons_bbbbbb_256x240.png │ │ │ │ │ ├── ui-icons_ededed_256x240.png │ │ │ │ │ ├── ui-icons_ffcf29_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── blitzer │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png │ │ │ │ │ ├── ui-bg_dots-small_65_a6a6a6_2x2.png │ │ │ │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf8ee_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f6f6f6_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_15_cc0000_1x100.png │ │ │ │ │ ├── ui-icons_004276_256x240.png │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── cupertino │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── dark-hive │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_20_0972a5_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_33_003147_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_35_222222_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_44_444444_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_loop_25_000000_21x21.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── dot-luv │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_15_0b3e6f_40x40.png │ │ │ │ │ ├── ui-bg_dots-medium_30_0b58a2_4x4.png │ │ │ │ │ ├── ui-bg_dots-small_20_333333_2x2.png │ │ │ │ │ ├── ui-bg_dots-small_30_a32d00_2x2.png │ │ │ │ │ ├── ui-bg_dots-small_40_00498f_2x2.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_40_292929_40x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_20_111111_500x100.png │ │ │ │ │ ├── ui-icons_00498f_256x240.png │ │ │ │ │ ├── ui-icons_98d2fb_256x240.png │ │ │ │ │ ├── ui-icons_9ccdfc_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── eggplant │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_994d53_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_fafafa_40x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_30_3d3644_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_dcd9de_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eae6ea_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_30273a_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_45_5f5964_1x100.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_734d99_256x240.png │ │ │ │ │ ├── ui-icons_8d78a5_256x240.png │ │ │ │ │ ├── ui-icons_a8a3ae_256x240.png │ │ │ │ │ ├── ui-icons_ebccce_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── excite-bike │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-small_25_c5ddfc_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_e69700_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_22_1484e6_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_26_2293f7_40x40.png │ │ │ │ │ ├── ui-bg_flat_0_e69700_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_e6b900_40x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_f9f9f9_1x100.png │ │ │ │ │ ├── ui-bg_inset-hard_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-icons_0a82eb_256x240.png │ │ │ │ │ ├── ui-icons_0b54d5_256x240.png │ │ │ │ │ ├── ui-icons_5fa5e3_256x240.png │ │ │ │ │ ├── ui-icons_fcdd4a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── flick │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_f6f6f6_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_0073ea_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_50_dddddd_1x100.png │ │ │ │ │ ├── ui-icons_0073ea_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_666666_256x240.png │ │ │ │ │ ├── ui-icons_ff0084_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── hot-sneaks │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-small_40_db4865_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-small_50_93c3cd_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-small_50_ff3853_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-small_75_ccd232_40x40.png │ │ │ │ │ ├── ui-bg_dots-medium_80_ffff38_4x4.png │ │ │ │ │ ├── ui-bg_dots-small_35_35414f_2x2.png │ │ │ │ │ ├── ui-bg_flat_75_ba9217_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_white-lines_85_f7f7ba_40x100.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_88a206_256x240.png │ │ │ │ │ ├── ui-icons_c02669_256x240.png │ │ │ │ │ ├── ui-icons_e1e463_256x240.png │ │ │ │ │ ├── ui-icons_ffeb33_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── humanity │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_75_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f5f0e5_1x400.png │ │ │ │ │ ├── ui-bg_glass_25_cb842e_1x400.png │ │ │ │ │ ├── ui-bg_glass_70_ede4d4_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f4f0ec_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_65_fee4bd_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_75_f5f5b5_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_100_f4f0ec_1x100.png │ │ │ │ │ ├── ui-icons_c47a23_256x240.png │ │ │ │ │ ├── ui-icons_cb672b_256x240.png │ │ │ │ │ ├── ui-icons_f08000_256x240.png │ │ │ │ │ ├── ui-icons_f35f07_256x240.png │ │ │ │ │ ├── ui-icons_ff7519_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── le-frog │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-small_0_aaaaaa_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_15_444444_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_95_ffdc2e_40x40.png │ │ │ │ │ ├── ui-bg_glass_55_fbf5d0_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_30_285c00_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_33_3a8104_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_50_4eb305_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_60_4ca20b_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_10_285c00_1x100.png │ │ │ │ │ ├── ui-icons_4eb305_256x240.png │ │ │ │ │ ├── ui-icons_72b42d_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── mint-choc │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_glass_15_5f391b_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_20_1c160d_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_25_453326_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_30_44372c_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_20_201913_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_20_619226_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_10_201913_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_9bcc60_256x240.png │ │ │ │ │ ├── ui-icons_add978_256x240.png │ │ │ │ │ ├── ui-icons_e3ddc9_256x240.png │ │ │ │ │ ├── ui-icons_f1fd86_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── overcast │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_c0402a_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_eeeeee_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f8f8f8_1x400.png │ │ │ │ │ ├── ui-bg_glass_35_dddddd_1x400.png │ │ │ │ │ ├── ui-bg_glass_60_eeeeee_1x400.png │ │ │ │ │ ├── ui-bg_inset-hard_75_999999_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_50_c9c9c9_1x100.png │ │ │ │ │ ├── ui-icons_3383bb_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_70b2e1_256x240.png │ │ │ │ │ ├── ui-icons_999999_256x240.png │ │ │ │ │ └── ui-icons_fbc856_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── pepper-grinder │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonal-maze_20_6e4f1c_10x10.png │ │ │ │ │ ├── ui-bg_diagonal-maze_40_000000_10x10.png │ │ │ │ │ ├── ui-bg_fine-grain_10_eceadf_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_10_f8f7f6_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_15_eceadf_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_15_f7f3de_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_15_ffffff_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_65_654b24_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_68_b83400_60x60.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_3572ac_256x240.png │ │ │ │ │ ├── ui-icons_8c291d_256x240.png │ │ │ │ │ ├── ui-icons_b83400_256x240.png │ │ │ │ │ ├── ui-icons_fbdb93_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── redmond │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ │ │ └── ui-icons_f9bd01_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── smoothness │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── 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.min.css │ │ │ │ └── theme.css │ │ │ ├── south-street │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_glass_55_fcf0ba_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_100_ece8da_500x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f5f3e5_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_fafaf4_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_15_459e00_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_95_cccccc_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_67b021_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_95_ffedad_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_15_2b2922_1x100.png │ │ │ │ │ ├── ui-icons_808080_256x240.png │ │ │ │ │ ├── ui-icons_847e71_256x240.png │ │ │ │ │ ├── ui-icons_8DC262_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-icons_eeeeee_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── start │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_55_999999_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_glass_45_0078ae_1x400.png │ │ │ │ │ ├── ui-bg_glass_55_f8da4e_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_79c9ec_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_45_e14f1c_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_50_6eac2c_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_75_2191c0_500x100.png │ │ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ │ │ ├── ui-icons_0078ae_256x240.png │ │ │ │ │ ├── ui-icons_056b93_256x240.png │ │ │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ │ │ ├── ui-icons_e0fdff_256x240.png │ │ │ │ │ ├── ui-icons_f5e175_256x240.png │ │ │ │ │ ├── ui-icons_f7a50d_256x240.png │ │ │ │ │ └── ui-icons_fcd113_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── sunny │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-medium_20_d34d17_40x40.png │ │ │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_45_817865_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_60_fece2f_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_70_ffdd57_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_90_fff9e5_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_feeebd_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_30_ffffff_1x100.png │ │ │ │ │ ├── ui-icons_3d3d3d_256x240.png │ │ │ │ │ ├── ui-icons_bd7b00_256x240.png │ │ │ │ │ ├── ui-icons_d19405_256x240.png │ │ │ │ │ ├── ui-icons_eb990f_256x240.png │ │ │ │ │ ├── ui-icons_ed9f26_256x240.png │ │ │ │ │ ├── ui-icons_fadc7a_256x240.png │ │ │ │ │ └── ui-icons_ffe180_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── swanky-purse │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diamond_10_4f4221_10x8.png │ │ │ │ │ ├── ui-bg_diamond_20_372806_10x8.png │ │ │ │ │ ├── ui-bg_diamond_25_675423_10x8.png │ │ │ │ │ ├── ui-bg_diamond_25_d5ac5d_10x8.png │ │ │ │ │ ├── ui-bg_diamond_8_261803_10x8.png │ │ │ │ │ ├── ui-bg_diamond_8_443113_10x8.png │ │ │ │ │ ├── ui-bg_flat_75_ddd4b0_40x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_65_fee4bd_1x100.png │ │ │ │ │ ├── ui-icons_070603_256x240.png │ │ │ │ │ ├── ui-icons_e8e2b5_256x240.png │ │ │ │ │ ├── ui-icons_e9cd86_256x240.png │ │ │ │ │ ├── ui-icons_efec9f_256x240.png │ │ │ │ │ ├── ui-icons_f2ec64_256x240.png │ │ │ │ │ ├── ui-icons_f9f2bd_256x240.png │ │ │ │ │ └── ui-icons_ff7519_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── trontastic │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-small_50_262626_40x40.png │ │ │ │ │ ├── ui-bg_flat_0_303030_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_4c4c4c_40x100.png │ │ │ │ │ ├── ui-bg_glass_40_0a0a0a_1x400.png │ │ │ │ │ ├── ui-bg_glass_55_f1fbe5_1x400.png │ │ │ │ │ ├── ui-bg_glass_60_000000_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_55_000000_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_85_9fda58_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_95_f6ecd5_500x100.png │ │ │ │ │ ├── ui-icons_000000_256x240.png │ │ │ │ │ ├── ui-icons_1f1f1f_256x240.png │ │ │ │ │ ├── ui-icons_9fda58_256x240.png │ │ │ │ │ ├── ui-icons_b8ec79_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── ui-darkness │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ │ │ ├── ui-bg_glass_20_555555_1x400.png │ │ │ │ │ ├── ui-bg_glass_40_0078a3_1x400.png │ │ │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_25_000000_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ │ ├── ui-lightness │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── 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.min.css │ │ │ │ └── theme.css │ │ │ └── vader │ │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_16_121212_500x100.png │ │ │ │ ├── ui-bg_highlight-hard_15_888888_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_55_555555_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_35_adadad_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_60_dddddd_1x100.png │ │ │ │ ├── ui-bg_inset-soft_15_121212_1x100.png │ │ │ │ ├── ui-icons_666666_256x240.png │ │ │ │ ├── ui-icons_aaaaaa_256x240.png │ │ │ │ ├── ui-icons_bbbbbb_256x240.png │ │ │ │ ├── ui-icons_c98000_256x240.png │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ └── ui-icons_f29a00_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── theme.css │ │ └── ui │ │ │ ├── .jshintrc │ │ │ ├── accordion.js │ │ │ ├── autocomplete.js │ │ │ ├── button.js │ │ │ ├── core.js │ │ │ ├── datepicker.js │ │ │ ├── dialog.js │ │ │ ├── draggable.js │ │ │ ├── droppable.js │ │ │ ├── effect-blind.js │ │ │ ├── effect-bounce.js │ │ │ ├── effect-clip.js │ │ │ ├── effect-drop.js │ │ │ ├── effect-explode.js │ │ │ ├── effect-fade.js │ │ │ ├── effect-fold.js │ │ │ ├── effect-highlight.js │ │ │ ├── effect-puff.js │ │ │ ├── effect-pulsate.js │ │ │ ├── effect-scale.js │ │ │ ├── effect-shake.js │ │ │ ├── effect-size.js │ │ │ ├── effect-slide.js │ │ │ ├── effect-transfer.js │ │ │ ├── effect.js │ │ │ ├── i18n │ │ │ ├── datepicker-af.js │ │ │ ├── datepicker-ar-DZ.js │ │ │ ├── datepicker-ar.js │ │ │ ├── datepicker-az.js │ │ │ ├── datepicker-be.js │ │ │ ├── datepicker-bg.js │ │ │ ├── datepicker-bs.js │ │ │ ├── datepicker-ca.js │ │ │ ├── datepicker-cs.js │ │ │ ├── datepicker-cy-GB.js │ │ │ ├── datepicker-da.js │ │ │ ├── datepicker-de.js │ │ │ ├── datepicker-el.js │ │ │ ├── datepicker-en-AU.js │ │ │ ├── datepicker-en-GB.js │ │ │ ├── datepicker-en-NZ.js │ │ │ ├── datepicker-eo.js │ │ │ ├── datepicker-es.js │ │ │ ├── datepicker-et.js │ │ │ ├── datepicker-eu.js │ │ │ ├── datepicker-fa.js │ │ │ ├── datepicker-fi.js │ │ │ ├── datepicker-fo.js │ │ │ ├── datepicker-fr-CA.js │ │ │ ├── datepicker-fr-CH.js │ │ │ ├── datepicker-fr.js │ │ │ ├── datepicker-gl.js │ │ │ ├── datepicker-he.js │ │ │ ├── datepicker-hi.js │ │ │ ├── datepicker-hr.js │ │ │ ├── datepicker-hu.js │ │ │ ├── datepicker-hy.js │ │ │ ├── datepicker-id.js │ │ │ ├── datepicker-is.js │ │ │ ├── datepicker-it-CH.js │ │ │ ├── datepicker-it.js │ │ │ ├── datepicker-ja.js │ │ │ ├── datepicker-ka.js │ │ │ ├── datepicker-kk.js │ │ │ ├── datepicker-km.js │ │ │ ├── datepicker-ko.js │ │ │ ├── datepicker-ky.js │ │ │ ├── datepicker-lb.js │ │ │ ├── datepicker-lt.js │ │ │ ├── datepicker-lv.js │ │ │ ├── datepicker-mk.js │ │ │ ├── datepicker-ml.js │ │ │ ├── datepicker-ms.js │ │ │ ├── datepicker-nb.js │ │ │ ├── datepicker-nl-BE.js │ │ │ ├── datepicker-nl.js │ │ │ ├── datepicker-nn.js │ │ │ ├── datepicker-no.js │ │ │ ├── datepicker-pl.js │ │ │ ├── datepicker-pt-BR.js │ │ │ ├── datepicker-pt.js │ │ │ ├── datepicker-rm.js │ │ │ ├── datepicker-ro.js │ │ │ ├── datepicker-ru.js │ │ │ ├── datepicker-sk.js │ │ │ ├── datepicker-sl.js │ │ │ ├── datepicker-sq.js │ │ │ ├── datepicker-sr-SR.js │ │ │ ├── datepicker-sr.js │ │ │ ├── datepicker-sv.js │ │ │ ├── datepicker-ta.js │ │ │ ├── datepicker-th.js │ │ │ ├── datepicker-tj.js │ │ │ ├── datepicker-tr.js │ │ │ ├── datepicker-uk.js │ │ │ ├── datepicker-vi.js │ │ │ ├── datepicker-zh-CN.js │ │ │ ├── datepicker-zh-HK.js │ │ │ └── datepicker-zh-TW.js │ │ │ ├── menu.js │ │ │ ├── minified │ │ │ ├── accordion.min.js │ │ │ ├── autocomplete.min.js │ │ │ ├── button.min.js │ │ │ ├── core.min.js │ │ │ ├── datepicker.min.js │ │ │ ├── dialog.min.js │ │ │ ├── draggable.min.js │ │ │ ├── droppable.min.js │ │ │ ├── effect-blind.min.js │ │ │ ├── effect-bounce.min.js │ │ │ ├── effect-clip.min.js │ │ │ ├── effect-drop.min.js │ │ │ ├── effect-explode.min.js │ │ │ ├── effect-fade.min.js │ │ │ ├── effect-fold.min.js │ │ │ ├── effect-highlight.min.js │ │ │ ├── effect-puff.min.js │ │ │ ├── effect-pulsate.min.js │ │ │ ├── effect-scale.min.js │ │ │ ├── effect-shake.min.js │ │ │ ├── effect-size.min.js │ │ │ ├── effect-slide.min.js │ │ │ ├── effect-transfer.min.js │ │ │ ├── effect.min.js │ │ │ ├── i18n │ │ │ │ ├── datepicker-af.min.js │ │ │ │ ├── datepicker-ar-DZ.min.js │ │ │ │ ├── datepicker-ar.min.js │ │ │ │ ├── datepicker-az.min.js │ │ │ │ ├── datepicker-be.min.js │ │ │ │ ├── datepicker-bg.min.js │ │ │ │ ├── datepicker-bs.min.js │ │ │ │ ├── datepicker-ca.min.js │ │ │ │ ├── datepicker-cs.min.js │ │ │ │ ├── datepicker-cy-GB.min.js │ │ │ │ ├── datepicker-da.min.js │ │ │ │ ├── datepicker-de.min.js │ │ │ │ ├── datepicker-el.min.js │ │ │ │ ├── datepicker-en-AU.min.js │ │ │ │ ├── datepicker-en-GB.min.js │ │ │ │ ├── datepicker-en-NZ.min.js │ │ │ │ ├── datepicker-eo.min.js │ │ │ │ ├── datepicker-es.min.js │ │ │ │ ├── datepicker-et.min.js │ │ │ │ ├── datepicker-eu.min.js │ │ │ │ ├── datepicker-fa.min.js │ │ │ │ ├── datepicker-fi.min.js │ │ │ │ ├── datepicker-fo.min.js │ │ │ │ ├── datepicker-fr-CA.min.js │ │ │ │ ├── datepicker-fr-CH.min.js │ │ │ │ ├── datepicker-fr.min.js │ │ │ │ ├── datepicker-gl.min.js │ │ │ │ ├── datepicker-he.min.js │ │ │ │ ├── datepicker-hi.min.js │ │ │ │ ├── datepicker-hr.min.js │ │ │ │ ├── datepicker-hu.min.js │ │ │ │ ├── datepicker-hy.min.js │ │ │ │ ├── datepicker-id.min.js │ │ │ │ ├── datepicker-is.min.js │ │ │ │ ├── datepicker-it-CH.min.js │ │ │ │ ├── datepicker-it.min.js │ │ │ │ ├── datepicker-ja.min.js │ │ │ │ ├── datepicker-ka.min.js │ │ │ │ ├── datepicker-kk.min.js │ │ │ │ ├── datepicker-km.min.js │ │ │ │ ├── datepicker-ko.min.js │ │ │ │ ├── datepicker-ky.min.js │ │ │ │ ├── datepicker-lb.min.js │ │ │ │ ├── datepicker-lt.min.js │ │ │ │ ├── datepicker-lv.min.js │ │ │ │ ├── datepicker-mk.min.js │ │ │ │ ├── datepicker-ml.min.js │ │ │ │ ├── datepicker-ms.min.js │ │ │ │ ├── datepicker-nb.min.js │ │ │ │ ├── datepicker-nl-BE.min.js │ │ │ │ ├── datepicker-nl.min.js │ │ │ │ ├── datepicker-nn.min.js │ │ │ │ ├── datepicker-no.min.js │ │ │ │ ├── datepicker-pl.min.js │ │ │ │ ├── datepicker-pt-BR.min.js │ │ │ │ ├── datepicker-pt.min.js │ │ │ │ ├── datepicker-rm.min.js │ │ │ │ ├── datepicker-ro.min.js │ │ │ │ ├── datepicker-ru.min.js │ │ │ │ ├── datepicker-sk.min.js │ │ │ │ ├── datepicker-sl.min.js │ │ │ │ ├── datepicker-sq.min.js │ │ │ │ ├── datepicker-sr-SR.min.js │ │ │ │ ├── datepicker-sr.min.js │ │ │ │ ├── datepicker-sv.min.js │ │ │ │ ├── datepicker-ta.min.js │ │ │ │ ├── datepicker-th.min.js │ │ │ │ ├── datepicker-tj.min.js │ │ │ │ ├── datepicker-tr.min.js │ │ │ │ ├── datepicker-uk.min.js │ │ │ │ ├── datepicker-vi.min.js │ │ │ │ ├── datepicker-zh-CN.min.js │ │ │ │ ├── datepicker-zh-HK.min.js │ │ │ │ └── datepicker-zh-TW.min.js │ │ │ ├── menu.min.js │ │ │ ├── mouse.min.js │ │ │ ├── position.min.js │ │ │ ├── progressbar.min.js │ │ │ ├── resizable.min.js │ │ │ ├── selectable.min.js │ │ │ ├── selectmenu.min.js │ │ │ ├── slider.min.js │ │ │ ├── sortable.min.js │ │ │ ├── spinner.min.js │ │ │ ├── tabs.min.js │ │ │ ├── tooltip.min.js │ │ │ └── widget.min.js │ │ │ ├── mouse.js │ │ │ ├── position.js │ │ │ ├── progressbar.js │ │ │ ├── resizable.js │ │ │ ├── selectable.js │ │ │ ├── selectmenu.js │ │ │ ├── slider.js │ │ │ ├── sortable.js │ │ │ ├── spinner.js │ │ │ ├── tabs.js │ │ │ ├── tooltip.js │ │ │ └── widget.js │ ├── jquery │ │ ├── .bower.json │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── core.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ ├── external │ │ │ └── sizzle │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── sizzle.js │ │ │ │ ├── sizzle.min.js │ │ │ │ └── sizzle.min.map │ │ └── src │ │ │ ├── .eslintrc.json │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── location.js │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── DOMEval.js │ │ │ ├── access.js │ │ │ ├── camelCase.js │ │ │ ├── init.js │ │ │ ├── nodeName.js │ │ │ ├── parseHTML.js │ │ │ ├── ready-no-deferred.js │ │ │ ├── ready.js │ │ │ ├── readyException.js │ │ │ ├── stripAndCollapse.js │ │ │ ├── support.js │ │ │ ├── toType.js │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── adjustCSS.js │ │ │ ├── curCSS.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── showHide.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── getStyles.js │ │ │ │ ├── isHiddenWithinTree.js │ │ │ │ ├── rboxStyle.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ └── swap.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── Data.js │ │ │ └── var │ │ │ │ ├── acceptData.js │ │ │ │ ├── dataPriv.js │ │ │ │ └── dataUser.js │ │ │ ├── deferred.js │ │ │ ├── deferred │ │ │ └── exceptionHook.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ └── animatedSelector.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ ├── focusin.js │ │ │ ├── support.js │ │ │ └── trigger.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── buildFragment.js │ │ │ ├── getAll.js │ │ │ ├── setGlobalEval.js │ │ │ ├── support.js │ │ │ ├── var │ │ │ │ ├── rcheckableType.js │ │ │ │ ├── rscriptType.js │ │ │ │ └── rtagName.js │ │ │ └── wrapMap.js │ │ │ ├── offset.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-native.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ ├── dir.js │ │ │ │ ├── rneedsContext.js │ │ │ │ └── siblings.js │ │ │ ├── var │ │ │ ├── ObjectFunctionString.js │ │ │ ├── arr.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── document.js │ │ │ ├── documentElement.js │ │ │ ├── fnToString.js │ │ │ ├── getProto.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── isFunction.js │ │ │ ├── isWindow.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rcssNum.js │ │ │ ├── rnothtmlwhite.js │ │ │ ├── slice.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ │ └── wrap.js │ ├── jvectormap │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── LICENSE-AGPL │ │ ├── LICENSE-COMMERCIAL │ │ ├── README.md │ │ ├── build.sh │ │ ├── converter │ │ │ ├── converter.py │ │ │ ├── processor.py │ │ │ └── simplifier.py │ │ ├── jquery-jvectormap.css │ │ ├── jquery-jvectormap.js │ │ ├── jvectormap.jquery.json │ │ ├── lib │ │ │ └── jquery-mousewheel.js │ │ ├── src │ │ │ ├── abstract-canvas-element.js │ │ │ ├── abstract-element.js │ │ │ ├── abstract-shape-element.js │ │ │ ├── color-scale.js │ │ │ ├── data-series.js │ │ │ ├── jvectormap.js │ │ │ ├── legend.js │ │ │ ├── map-object.js │ │ │ ├── map.js │ │ │ ├── marker.js │ │ │ ├── multimap.js │ │ │ ├── numeric-scale.js │ │ │ ├── ordinal-scale.js │ │ │ ├── proj.js │ │ │ ├── region.js │ │ │ ├── simple-scale.js │ │ │ ├── svg-canvas-element.js │ │ │ ├── svg-circle-element.js │ │ │ ├── svg-element.js │ │ │ ├── svg-group-element.js │ │ │ ├── svg-image-element.js │ │ │ ├── svg-path-element.js │ │ │ ├── svg-shape-element.js │ │ │ ├── svg-text-element.js │ │ │ ├── vector-canvas.js │ │ │ ├── vml-canvas-element.js │ │ │ ├── vml-circle-element.js │ │ │ ├── vml-element.js │ │ │ ├── vml-group-element.js │ │ │ ├── vml-image-element.js │ │ │ ├── vml-path-element.js │ │ │ └── vml-shape-element.js │ │ └── tests │ │ │ ├── assets │ │ │ ├── bg-red-green.png │ │ │ ├── bg-yellow-blue.png │ │ │ ├── icon-bank.png │ │ │ ├── icon-factory.png │ │ │ ├── jquery-1.8.2.js │ │ │ ├── jquery-jvectormap-data-us-lcc-en.js │ │ │ ├── jquery-jvectormap-map.js │ │ │ ├── jquery-jvectormap-us-aea-en.js │ │ │ ├── jquery-jvectormap-us-lcc-en.js │ │ │ ├── jquery-jvectormap-us-merc-en.js │ │ │ ├── jquery-jvectormap-us-mill-en.js │ │ │ ├── jquery-jvectormap-world-mill-en.js │ │ │ └── us │ │ │ │ ├── jquery-jvectormap-data-us-ak-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-al-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ar-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-az-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ca-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-co-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ct-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-dc-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-de-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-fl-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ga-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-hi-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ia-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-id-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-il-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-in-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ks-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ky-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-la-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ma-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-md-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-me-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-mi-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-mn-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-mo-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ms-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-mt-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-nc-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-nd-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ne-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-nh-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-nj-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-nm-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-nv-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ny-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-oh-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ok-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-or-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-pa-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ri-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-sc-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-sd-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-tn-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-tx-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-ut-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-va-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-vt-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-wa-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-wi-lcc-en.js │ │ │ │ ├── jquery-jvectormap-data-us-wv-lcc-en.js │ │ │ │ └── jquery-jvectormap-data-us-wy-lcc-en.js │ │ │ ├── basic.html │ │ │ ├── build.html │ │ │ ├── custom.html │ │ │ ├── drill-down.html │ │ │ ├── hidden.html │ │ │ ├── markers.html │ │ │ ├── memory.html │ │ │ ├── processor │ │ │ ├── continents.json │ │ │ ├── continents_wb.json │ │ │ ├── france_regions_2016.json │ │ │ ├── russia.json │ │ │ ├── russia_fd.json │ │ │ └── tz.json │ │ │ ├── reverse-projection.html │ │ │ ├── us.json │ │ │ └── world.json │ ├── mocha │ │ ├── .bower.json │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── media │ │ │ └── logo.svg │ │ ├── mocha.css │ │ └── mocha.js │ ├── moment │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── locale │ │ │ ├── af.js │ │ │ ├── ar-dz.js │ │ │ ├── ar-kw.js │ │ │ ├── ar-ly.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── bm.js │ │ │ ├── bn.js │ │ │ ├── bo.js │ │ │ ├── br.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── dv.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en-ie.js │ │ │ ├── en-il.js │ │ │ ├── en-nz.js │ │ │ ├── eo.js │ │ │ ├── es-do.js │ │ │ ├── es-us.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-ch.js │ │ │ ├── fr.js │ │ │ ├── fy.js │ │ │ ├── gd.js │ │ │ ├── gl.js │ │ │ ├── gom-latn.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── hy-am.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── jv.js │ │ │ ├── ka.js │ │ │ ├── kk.js │ │ │ ├── km.js │ │ │ ├── kn.js │ │ │ ├── ko.js │ │ │ ├── ky.js │ │ │ ├── lb.js │ │ │ ├── lo.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── me.js │ │ │ ├── mi.js │ │ │ ├── mk.js │ │ │ ├── ml.js │ │ │ ├── mn.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── ms.js │ │ │ ├── mt.js │ │ │ ├── my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl-be.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pa-in.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sd.js │ │ │ ├── se.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── ss.js │ │ │ ├── sv.js │ │ │ ├── sw.js │ │ │ ├── ta.js │ │ │ ├── te.js │ │ │ ├── tet.js │ │ │ ├── tg.js │ │ │ ├── th.js │ │ │ ├── tl-ph.js │ │ │ ├── tlh.js │ │ │ ├── tr.js │ │ │ ├── tzl.js │ │ │ ├── tzm-latn.js │ │ │ ├── tzm.js │ │ │ ├── ug-cn.js │ │ │ ├── uk.js │ │ │ ├── ur.js │ │ │ ├── uz-latn.js │ │ │ ├── uz.js │ │ │ ├── vi.js │ │ │ ├── x-pseudo.js │ │ │ ├── yo.js │ │ │ ├── zh-cn.js │ │ │ ├── zh-hk.js │ │ │ └── zh-tw.js │ │ ├── min │ │ │ ├── locales.js │ │ │ ├── locales.min.js │ │ │ ├── moment-with-locales.js │ │ │ ├── moment-with-locales.min.js │ │ │ └── moment.min.js │ │ ├── moment.d.ts │ │ ├── moment.js │ │ ├── package-lock.json │ │ ├── src │ │ │ ├── lib │ │ │ │ ├── create │ │ │ │ │ ├── check-overflow.js │ │ │ │ │ ├── date-from-array.js │ │ │ │ │ ├── from-anything.js │ │ │ │ │ ├── from-array.js │ │ │ │ │ ├── from-object.js │ │ │ │ │ ├── from-string-and-array.js │ │ │ │ │ ├── from-string-and-format.js │ │ │ │ │ ├── from-string.js │ │ │ │ │ ├── local.js │ │ │ │ │ ├── parsing-flags.js │ │ │ │ │ ├── utc.js │ │ │ │ │ └── valid.js │ │ │ │ ├── duration │ │ │ │ │ ├── abs.js │ │ │ │ │ ├── add-subtract.js │ │ │ │ │ ├── as.js │ │ │ │ │ ├── bubble.js │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── create.js │ │ │ │ │ ├── duration.js │ │ │ │ │ ├── get.js │ │ │ │ │ ├── humanize.js │ │ │ │ │ ├── iso-string.js │ │ │ │ │ ├── prototype.js │ │ │ │ │ └── valid.js │ │ │ │ ├── format │ │ │ │ │ └── format.js │ │ │ │ ├── locale │ │ │ │ │ ├── base-config.js │ │ │ │ │ ├── calendar.js │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── formats.js │ │ │ │ │ ├── invalid.js │ │ │ │ │ ├── lists.js │ │ │ │ │ ├── locale.js │ │ │ │ │ ├── locales.js │ │ │ │ │ ├── ordinal.js │ │ │ │ │ ├── pre-post-format.js │ │ │ │ │ ├── prototype.js │ │ │ │ │ ├── relative.js │ │ │ │ │ └── set.js │ │ │ │ ├── moment │ │ │ │ │ ├── add-subtract.js │ │ │ │ │ ├── calendar.js │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── compare.js │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── creation-data.js │ │ │ │ │ ├── diff.js │ │ │ │ │ ├── format.js │ │ │ │ │ ├── from.js │ │ │ │ │ ├── get-set.js │ │ │ │ │ ├── locale.js │ │ │ │ │ ├── min-max.js │ │ │ │ │ ├── moment.js │ │ │ │ │ ├── now.js │ │ │ │ │ ├── prototype.js │ │ │ │ │ ├── start-end-of.js │ │ │ │ │ ├── to-type.js │ │ │ │ │ ├── to.js │ │ │ │ │ └── valid.js │ │ │ │ ├── parse │ │ │ │ │ ├── regex.js │ │ │ │ │ └── token.js │ │ │ │ ├── units │ │ │ │ │ ├── aliases.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── day-of-month.js │ │ │ │ │ ├── day-of-week.js │ │ │ │ │ ├── day-of-year.js │ │ │ │ │ ├── hour.js │ │ │ │ │ ├── millisecond.js │ │ │ │ │ ├── minute.js │ │ │ │ │ ├── month.js │ │ │ │ │ ├── offset.js │ │ │ │ │ ├── priorities.js │ │ │ │ │ ├── quarter.js │ │ │ │ │ ├── second.js │ │ │ │ │ ├── timestamp.js │ │ │ │ │ ├── timezone.js │ │ │ │ │ ├── units.js │ │ │ │ │ ├── week-calendar-utils.js │ │ │ │ │ ├── week-year.js │ │ │ │ │ ├── week.js │ │ │ │ │ └── year.js │ │ │ │ └── utils │ │ │ │ │ ├── abs-ceil.js │ │ │ │ │ ├── abs-floor.js │ │ │ │ │ ├── abs-round.js │ │ │ │ │ ├── compare-arrays.js │ │ │ │ │ ├── defaults.js │ │ │ │ │ ├── deprecate.js │ │ │ │ │ ├── extend.js │ │ │ │ │ ├── has-own-prop.js │ │ │ │ │ ├── hooks.js │ │ │ │ │ ├── index-of.js │ │ │ │ │ ├── is-array.js │ │ │ │ │ ├── is-date.js │ │ │ │ │ ├── is-function.js │ │ │ │ │ ├── is-number.js │ │ │ │ │ ├── is-object-empty.js │ │ │ │ │ ├── is-object.js │ │ │ │ │ ├── is-undefined.js │ │ │ │ │ ├── keys.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── mod.js │ │ │ │ │ ├── some.js │ │ │ │ │ ├── to-int.js │ │ │ │ │ └── zero-fill.js │ │ │ ├── locale │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── bg.js │ │ │ │ ├── bm.js │ │ │ │ ├── bn.js │ │ │ │ ├── bo.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── dv.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-ie.js │ │ │ │ ├── en-il.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-do.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── fy.js │ │ │ │ ├── gd.js │ │ │ │ ├── gl.js │ │ │ │ ├── gom-latn.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── jv.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── km.js │ │ │ │ ├── kn.js │ │ │ │ ├── ko.js │ │ │ │ ├── ky.js │ │ │ │ ├── lb.js │ │ │ │ ├── lo.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── me.js │ │ │ │ ├── mi.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mn.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── ms.js │ │ │ │ ├── mt.js │ │ │ │ ├── my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl-be.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── pa-in.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sd.js │ │ │ │ ├── se.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── ss.js │ │ │ │ ├── sv.js │ │ │ │ ├── sw.js │ │ │ │ ├── ta.js │ │ │ │ ├── te.js │ │ │ │ ├── tet.js │ │ │ │ ├── tg.js │ │ │ │ ├── th.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tlh.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzl.js │ │ │ │ ├── tzm-latn.js │ │ │ │ ├── tzm.js │ │ │ │ ├── ug-cn.js │ │ │ │ ├── uk.js │ │ │ │ ├── ur.js │ │ │ │ ├── uz-latn.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── x-pseudo.js │ │ │ │ ├── yo.js │ │ │ │ ├── zh-cn.js │ │ │ │ ├── zh-hk.js │ │ │ │ └── zh-tw.js │ │ │ └── moment.js │ │ └── templates │ │ │ ├── default.js │ │ │ ├── locale-header.js │ │ │ └── test-header.js │ ├── morris.js │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bower.json │ │ ├── bower.travis.json │ │ ├── examples │ │ │ ├── _template.html │ │ │ ├── area-as-line.html │ │ │ ├── area.html │ │ │ ├── bar-colors.html │ │ │ ├── bar-no-axes.html │ │ │ ├── bar.html │ │ │ ├── days.html │ │ │ ├── decimal-custom-hover.html │ │ │ ├── diagonal-xlabels-bar.html │ │ │ ├── diagonal-xlabels.html │ │ │ ├── donut-colors.html │ │ │ ├── donut-formatter.html │ │ │ ├── donut.html │ │ │ ├── dst.html │ │ │ ├── events.html │ │ │ ├── goals.html │ │ │ ├── lib │ │ │ │ ├── example.css │ │ │ │ └── example.js │ │ │ ├── months-no-smooth.html │ │ │ ├── negative.html │ │ │ ├── no-grid.html │ │ │ ├── non-continuous.html │ │ │ ├── non-date.html │ │ │ ├── quarters.html │ │ │ ├── resize.html │ │ │ ├── stacked_bars.html │ │ │ ├── timestamps.html │ │ │ ├── updating.html │ │ │ ├── weeks.html │ │ │ └── years.html │ │ ├── less │ │ │ └── morris.core.less │ │ ├── lib │ │ │ ├── morris.area.coffee │ │ │ ├── morris.bar.coffee │ │ │ ├── morris.coffee │ │ │ ├── morris.donut.coffee │ │ │ ├── morris.grid.coffee │ │ │ ├── morris.hover.coffee │ │ │ └── morris.line.coffee │ │ ├── morris.css │ │ ├── morris.js │ │ ├── morris.min.js │ │ ├── package.json │ │ └── spec │ │ │ ├── lib │ │ │ ├── area │ │ │ │ └── area_spec.coffee │ │ │ ├── bar │ │ │ │ ├── bar_spec.coffee │ │ │ │ └── colours.coffee │ │ │ ├── commas_spec.coffee │ │ │ ├── donut │ │ │ │ └── donut_spec.coffee │ │ │ ├── grid │ │ │ │ ├── auto_grid_lines_spec.coffee │ │ │ │ ├── set_data_spec.coffee │ │ │ │ └── y_label_format_spec.coffee │ │ │ ├── hover_spec.coffee │ │ │ ├── label_series_spec.coffee │ │ │ ├── line │ │ │ │ └── line_spec.coffee │ │ │ ├── pad_spec.coffee │ │ │ └── parse_time_spec.coffee │ │ │ ├── specs.html │ │ │ ├── support │ │ │ └── placeholder.coffee │ │ │ └── viz │ │ │ ├── examples.js │ │ │ ├── exemplary │ │ │ ├── area0.png │ │ │ ├── bar0.png │ │ │ ├── line0.png │ │ │ └── stacked_bar0.png │ │ │ ├── run.sh │ │ │ └── visual_specs.js │ ├── raphael │ │ ├── .bower.json │ │ ├── bower.json │ │ ├── dev │ │ │ ├── banner.txt │ │ │ ├── raphael.amd.js │ │ │ ├── raphael.core.js │ │ │ ├── raphael.svg.js │ │ │ ├── raphael.vml.js │ │ │ └── test │ │ │ │ ├── svg │ │ │ │ └── dom.js │ │ │ │ └── vml │ │ │ │ └── dom.js │ │ ├── license.txt │ │ ├── raphael.js │ │ ├── raphael.min.js │ │ ├── raphael.no-deps.js │ │ ├── raphael.no-deps.min.js │ │ ├── webpack.config.js │ │ └── yarn.lock │ └── select2 │ │ ├── .bower.json │ │ ├── .editorconfig │ │ ├── .github │ │ ├── CONTRIBUTING.md │ │ ├── ISSUE_TEMPLATE.md │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .jshintignore │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Gruntfile.js │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── dist │ │ ├── css │ │ │ ├── select2.css │ │ │ └── select2.min.css │ │ └── js │ │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dsb.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hsb.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ │ ├── select2.full.js │ │ │ ├── select2.full.min.js │ │ │ ├── select2.js │ │ │ └── select2.min.js │ │ ├── docs │ │ ├── README.md │ │ ├── announcements-4.0.html │ │ ├── community.html │ │ ├── examples.html │ │ ├── index.html │ │ ├── options-old.html │ │ └── options.html │ │ ├── package.json │ │ ├── select2.jquery.json │ │ ├── src │ │ ├── js │ │ │ ├── banner.end.js │ │ │ ├── banner.start.js │ │ │ ├── jquery.mousewheel.shim.js │ │ │ ├── jquery.select2.js │ │ │ ├── jquery.shim.js │ │ │ ├── select2 │ │ │ │ ├── compat │ │ │ │ │ ├── containerCss.js │ │ │ │ │ ├── dropdownCss.js │ │ │ │ │ ├── initSelection.js │ │ │ │ │ ├── inputData.js │ │ │ │ │ ├── matcher.js │ │ │ │ │ ├── query.js │ │ │ │ │ └── utils.js │ │ │ │ ├── core.js │ │ │ │ ├── data │ │ │ │ │ ├── ajax.js │ │ │ │ │ ├── array.js │ │ │ │ │ ├── base.js │ │ │ │ │ ├── maximumInputLength.js │ │ │ │ │ ├── maximumSelectionLength.js │ │ │ │ │ ├── minimumInputLength.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── tags.js │ │ │ │ │ └── tokenizer.js │ │ │ │ ├── defaults.js │ │ │ │ ├── diacritics.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── dropdown │ │ │ │ │ ├── attachBody.js │ │ │ │ │ ├── attachContainer.js │ │ │ │ │ ├── closeOnSelect.js │ │ │ │ │ ├── hidePlaceholder.js │ │ │ │ │ ├── infiniteScroll.js │ │ │ │ │ ├── minimumResultsForSearch.js │ │ │ │ │ ├── search.js │ │ │ │ │ ├── selectOnClose.js │ │ │ │ │ └── stopPropagation.js │ │ │ │ ├── i18n │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dsb.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hsb.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── ps.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ └── zh-TW.js │ │ │ │ ├── keys.js │ │ │ │ ├── options.js │ │ │ │ ├── results.js │ │ │ │ ├── selection │ │ │ │ │ ├── allowClear.js │ │ │ │ │ ├── base.js │ │ │ │ │ ├── clickMask.js │ │ │ │ │ ├── eventRelay.js │ │ │ │ │ ├── multiple.js │ │ │ │ │ ├── placeholder.js │ │ │ │ │ ├── search.js │ │ │ │ │ ├── single.js │ │ │ │ │ └── stopPropagation.js │ │ │ │ ├── translation.js │ │ │ │ └── utils.js │ │ │ ├── wrapper.end.js │ │ │ └── wrapper.start.js │ │ └── scss │ │ │ ├── _dropdown.scss │ │ │ ├── _multiple.scss │ │ │ ├── _single.scss │ │ │ ├── core.scss │ │ │ ├── mixins │ │ │ └── _gradients.scss │ │ │ └── theme │ │ │ ├── classic │ │ │ ├── _defaults.scss │ │ │ ├── _multiple.scss │ │ │ ├── _single.scss │ │ │ └── layout.scss │ │ │ └── default │ │ │ ├── _multiple.scss │ │ │ ├── _single.scss │ │ │ └── layout.scss │ │ ├── tests │ │ ├── a11y │ │ │ ├── search-tests.js │ │ │ └── selection-tests.js │ │ ├── data │ │ │ ├── array-tests.js │ │ │ ├── base-tests.js │ │ │ ├── inputData-tests.js │ │ │ ├── maximumInputLength-tests.js │ │ │ ├── maximumSelectionLength-tests.js │ │ │ ├── minimumInputLength-tests.js │ │ │ ├── select-tests.js │ │ │ ├── tags-tests.js │ │ │ └── tokenizer-tests.js │ │ ├── dropdown │ │ │ ├── dropdownCss-tests.js │ │ │ ├── positioning-tests.js │ │ │ ├── selectOnClose-tests.js │ │ │ └── stopPropagation-tests.js │ │ ├── helpers.js │ │ ├── integration.html │ │ ├── integration │ │ │ ├── dom-changes.js │ │ │ ├── jquery-calls.js │ │ │ └── select2-methods.js │ │ ├── options │ │ │ ├── ajax-tests.js │ │ │ ├── data-tests.js │ │ │ ├── deprecated-tests.js │ │ │ ├── translation-tests.js │ │ │ └── width-tests.js │ │ ├── results │ │ │ └── focusing-tests.js │ │ ├── selection │ │ │ ├── allowClear-tests.js │ │ │ ├── containerCss-tests.js │ │ │ ├── multiple-tests.js │ │ │ ├── placeholder-tests.js │ │ │ ├── search-tests.js │ │ │ ├── single-tests.js │ │ │ └── stopPropagation-tests.js │ │ ├── unit.html │ │ ├── utils │ │ │ ├── decorator-tests.js │ │ │ └── escapeMarkup-tests.js │ │ └── vendor │ │ │ ├── jquery-1.7.2.js │ │ │ ├── qunit-1.23.1.css │ │ │ └── qunit-1.23.1.js │ │ └── vendor │ │ └── jquery-2.1.0.js ├── build │ ├── bootstrap-less │ │ ├── .csscomb.json │ │ ├── .csslintrc │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── mixins │ │ │ ├── alerts.less │ │ │ ├── background-variant.less │ │ │ ├── border-radius.less │ │ │ ├── buttons.less │ │ │ ├── center-block.less │ │ │ ├── clearfix.less │ │ │ ├── forms.less │ │ │ ├── gradients.less │ │ │ ├── grid-framework.less │ │ │ ├── grid.less │ │ │ ├── hide-text.less │ │ │ ├── image.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── nav-divider.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── opacity.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── reset-text.less │ │ │ ├── resize.less │ │ │ ├── responsive-visibility.less │ │ │ ├── size.less │ │ │ ├── tab-focus.less │ │ │ ├── table-row.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ └── vendor-prefixes.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-embed.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ ├── grunt │ │ └── .jshintrc │ ├── js │ │ ├── .jscsrc │ │ ├── .jshintrc │ │ ├── BoxRefresh.js │ │ ├── BoxWidget.js │ │ ├── ControlSidebar.js │ │ ├── DirectChat.js │ │ ├── Layout.js │ │ ├── PushMenu.js │ │ ├── TodoList.js │ │ └── Tree.js │ ├── less │ │ ├── .csslintrc │ │ ├── 404_500_errors.less │ │ ├── AdminLTE-without-plugins.less │ │ ├── AdminLTE.less │ │ ├── alerts.less │ │ ├── bootstrap-social.less │ │ ├── boxes.less │ │ ├── buttons.less │ │ ├── callout.less │ │ ├── carousel.less │ │ ├── control-sidebar.less │ │ ├── core.less │ │ ├── datepicker.less │ │ ├── direct-chat.less │ │ ├── dropdown.less │ │ ├── forms.less │ │ ├── fullcalendar.less │ │ ├── header.less │ │ ├── info-box.less │ │ ├── invoice.less │ │ ├── labels.less │ │ ├── lockscreen.less │ │ ├── login_and_register.less │ │ ├── mailbox.less │ │ ├── miscellaneous.less │ │ ├── mixins.less │ │ ├── modal.less │ │ ├── navs.less │ │ ├── plugins.less │ │ ├── print.less │ │ ├── products.less │ │ ├── profile.less │ │ ├── progress-bars.less │ │ ├── select2.less │ │ ├── sidebar-mini.less │ │ ├── sidebar.less │ │ ├── skins │ │ │ ├── _all-skins.less │ │ │ ├── skin-black-light.less │ │ │ ├── skin-black.less │ │ │ ├── skin-blue-light.less │ │ │ ├── skin-blue.less │ │ │ ├── skin-green-light.less │ │ │ ├── skin-green.less │ │ │ ├── skin-purple-light.less │ │ │ ├── skin-purple.less │ │ │ ├── skin-red-light.less │ │ │ ├── skin-red.less │ │ │ ├── skin-yellow-light.less │ │ │ └── skin-yellow.less │ │ ├── small-box.less │ │ ├── social-widgets.less │ │ ├── table.less │ │ ├── timeline.less │ │ ├── treeview.less │ │ ├── users-list.less │ │ └── variables.less │ └── scss │ │ └── _variables.scss ├── changelog.md ├── composer.json ├── dist │ ├── css │ │ ├── AdminLTE.css │ │ ├── AdminLTE.min.css │ │ ├── adminlte.css.map │ │ ├── adminlte.min.css.map │ │ ├── alt │ │ │ ├── AdminLTE-bootstrap-social.css │ │ │ ├── AdminLTE-bootstrap-social.min.css │ │ │ ├── AdminLTE-fullcalendar.css │ │ │ ├── AdminLTE-fullcalendar.min.css │ │ │ ├── AdminLTE-select2.css │ │ │ ├── AdminLTE-select2.min.css │ │ │ ├── AdminLTE-without-plugins.css │ │ │ └── AdminLTE-without-plugins.min.css │ │ └── skins │ │ │ ├── _all-skins.css │ │ │ ├── _all-skins.min.css │ │ │ ├── skin-black-light.css │ │ │ ├── skin-black-light.min.css │ │ │ ├── skin-black.css │ │ │ ├── skin-black.min.css │ │ │ ├── skin-blue-light.css │ │ │ ├── skin-blue-light.min.css │ │ │ ├── skin-blue.css │ │ │ ├── skin-blue.min.css │ │ │ ├── skin-green-light.css │ │ │ ├── skin-green-light.min.css │ │ │ ├── skin-green.css │ │ │ ├── skin-green.min.css │ │ │ ├── skin-purple-light.css │ │ │ ├── skin-purple-light.min.css │ │ │ ├── skin-purple.css │ │ │ ├── skin-purple.min.css │ │ │ ├── skin-red-light.css │ │ │ ├── skin-red-light.min.css │ │ │ ├── skin-red.css │ │ │ ├── skin-red.min.css │ │ │ ├── skin-yellow-light.css │ │ │ ├── skin-yellow-light.min.css │ │ │ ├── skin-yellow.css │ │ │ └── skin-yellow.min.css │ ├── img │ │ ├── avatar.png │ │ ├── avatar04.png │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ ├── avatar5.png │ │ ├── credit │ │ │ ├── american-express.png │ │ │ ├── cirrus.png │ │ │ ├── mastercard.png │ │ │ ├── mestro.png │ │ │ ├── paypal.png │ │ │ ├── paypal2.png │ │ │ └── visa.png │ │ ├── default-50x50.gif │ │ ├── icons.png │ │ ├── photo1.png │ │ ├── photo2.png │ │ ├── photo3.jpg │ │ ├── photo4.jpg │ │ ├── user1-128x128.jpg │ │ ├── user2-160x160.jpg │ │ ├── user3-128x128.jpg │ │ ├── user4-128x128.jpg │ │ ├── user5-128x128.jpg │ │ ├── user6-128x128.jpg │ │ ├── user7-128x128.jpg │ │ └── user8-128x128.jpg │ └── js │ │ ├── adminlte.js │ │ ├── adminlte.min.js │ │ ├── demo.js │ │ └── pages │ │ ├── dashboard.js │ │ └── dashboard2.js ├── documentation │ ├── build │ │ ├── include │ │ │ ├── adminlte-options.html │ │ │ ├── advice.html │ │ │ ├── browsers.html │ │ │ ├── components.html │ │ │ ├── dependencies.html │ │ │ ├── download.html │ │ │ ├── faq.html │ │ │ ├── implementations.html │ │ │ ├── introduction.html │ │ │ ├── layout.html │ │ │ ├── license.html │ │ │ ├── plugins.html │ │ │ └── upgrade.html │ │ └── index.html │ ├── docs.js │ ├── index.html │ └── style.css ├── images │ ├── avatars │ │ ├── avatar.png │ │ ├── avatar1.png │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ ├── avatar4.png │ │ ├── avatar5.png │ │ ├── profile-pic.jpg │ │ └── user.jpg │ ├── bootstrap-colorpicker │ │ ├── alpha-horizontal.png │ │ ├── alpha.png │ │ ├── hue-horizontal.png │ │ ├── hue.png │ │ └── saturation.png │ ├── email │ │ ├── email1.png │ │ ├── email2.png │ │ ├── email3.png │ │ └── email4.png │ ├── gallery │ │ ├── image-1.jpg │ │ ├── image-2.jpg │ │ ├── image-3.jpg │ │ ├── image-4.jpg │ │ ├── image-5.jpg │ │ ├── image-6.jpg │ │ ├── thumb-1.jpg │ │ ├── thumb-2.jpg │ │ ├── thumb-3.jpg │ │ ├── thumb-4.jpg │ │ ├── thumb-5.jpg │ │ └── thumb-6.jpg │ ├── logo.png │ ├── logo.svg │ ├── logo │ │ ├── halosultra.jpg │ │ ├── kominfo.png │ │ ├── logots.png │ │ ├── logots1.png │ │ ├── pemprov.png │ │ └── rumahaku.jpeg │ ├── no_image.png │ ├── placeholder │ │ ├── 165x90.png │ │ ├── 255x150.png │ │ ├── 530x270.png │ │ └── 550x280.png │ ├── putih.png │ ├── tehnik_uho.jpg │ └── ts.png ├── index.html ├── index2.html ├── package-lock.json ├── package.json ├── pages │ ├── UI │ │ ├── buttons.html │ │ ├── general.html │ │ ├── icons.html │ │ ├── modals.html │ │ ├── sliders.html │ │ └── timeline.html │ ├── calendar.html │ ├── charts │ │ ├── chartjs.html │ │ ├── flot.html │ │ ├── inline.html │ │ └── morris.html │ ├── examples │ │ ├── 404.html │ │ ├── 500.html │ │ ├── blank.html │ │ ├── invoice-print.html │ │ ├── invoice.html │ │ ├── lockscreen.html │ │ ├── login.html │ │ ├── pace.html │ │ ├── profile.html │ │ └── register.html │ ├── forms │ │ ├── advanced.html │ │ ├── editors.html │ │ └── general.html │ ├── layout │ │ ├── boxed.html │ │ ├── collapsed-sidebar.html │ │ ├── fixed.html │ │ └── top-nav.html │ ├── mailbox │ │ ├── compose.html │ │ ├── mailbox.html │ │ └── read-mail.html │ ├── tables │ │ ├── data.html │ │ └── simple.html │ └── widgets.html ├── plugins │ ├── bootstrap-slider │ │ ├── bootstrap-slider.js │ │ └── slider.css │ ├── bootstrap-wysihtml5 │ │ ├── bootstrap3-wysihtml5.all.js │ │ ├── bootstrap3-wysihtml5.all.min.js │ │ ├── bootstrap3-wysihtml5.css │ │ └── bootstrap3-wysihtml5.min.css │ ├── iCheck │ │ ├── all.css │ │ ├── flat │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── flat.css │ │ │ ├── flat.png │ │ │ ├── flat@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ ├── futurico │ │ │ ├── futurico.css │ │ │ ├── futurico.png │ │ │ └── futurico@2x.png │ │ ├── icheck.js │ │ ├── icheck.min.js │ │ ├── line │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── blue.css │ │ │ ├── green.css │ │ │ ├── grey.css │ │ │ ├── line.css │ │ │ ├── line.png │ │ │ ├── line@2x.png │ │ │ ├── orange.css │ │ │ ├── pink.css │ │ │ ├── purple.css │ │ │ ├── red.css │ │ │ └── yellow.css │ │ ├── minimal │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── minimal.css │ │ │ ├── minimal.png │ │ │ ├── minimal@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ ├── polaris │ │ │ ├── polaris.css │ │ │ ├── polaris.png │ │ │ └── polaris@2x.png │ │ └── square │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── square.css │ │ │ ├── square.png │ │ │ ├── square@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ ├── input-mask │ │ ├── jquery.inputmask.date.extensions.js │ │ ├── jquery.inputmask.extensions.js │ │ ├── jquery.inputmask.js │ │ ├── jquery.inputmask.numeric.extensions.js │ │ ├── jquery.inputmask.phone.extensions.js │ │ ├── jquery.inputmask.regex.extensions.js │ │ └── phone-codes │ │ │ ├── phone-be.json │ │ │ ├── phone-codes.json │ │ │ └── readme.txt │ ├── jQueryUI │ │ ├── jquery-ui.js │ │ └── jquery-ui.min.js │ ├── jvectormap │ │ ├── jquery-jvectormap-1.2.2.css │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ ├── jquery-jvectormap-usa-en.js │ │ └── jquery-jvectormap-world-mill-en.js │ ├── pace │ │ ├── pace.css │ │ ├── pace.js │ │ ├── pace.min.css │ │ └── pace.min.js │ └── timepicker │ │ ├── bootstrap-timepicker.css │ │ ├── bootstrap-timepicker.js │ │ ├── bootstrap-timepicker.min.css │ │ └── bootstrap-timepicker.min.js ├── starter.html └── yarn.lock ├── composer.json ├── contributing.md ├── database └── knn.sql ├── error_log ├── index.php ├── knn_1.code-workspace ├── license.txt ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Log.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ ├── compat │ │ ├── hash.php │ │ ├── index.html │ │ ├── mbstring.php │ │ ├── password.php │ │ └── standard.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_query_builder.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── ibase │ │ │ ├── ibase_driver.php │ │ │ ├── ibase_forge.php │ │ │ ├── ibase_result.php │ │ │ ├── ibase_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ ├── pdo_utility.php │ │ │ └── subdrivers │ │ │ │ ├── index.html │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ └── pdo_sqlsrv_forge.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ ├── sqlite3 │ │ │ ├── index.html │ │ │ ├── sqlite3_driver.php │ │ │ ├── sqlite3_forge.php │ │ │ ├── sqlite3_result.php │ │ │ └── sqlite3_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ ├── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ ├── Cache_memcached.php │ │ ├── Cache_redis.php │ │ ├── Cache_wincache.php │ │ └── index.html │ └── index.html │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Encryption.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Javascript │ ├── Jquery.php │ └── index.html │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session │ ├── Session.php │ ├── SessionHandlerInterface.php │ ├── Session_driver.php │ ├── drivers │ │ ├── Session_database_driver.php │ │ ├── Session_files_driver.php │ │ ├── Session_memcached_driver.php │ │ ├── Session_redis_driver.php │ │ └── index.html │ └── index.html │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ └── index.html ├── upload ├── datatestingexcel │ ├── excel.xlsx │ ├── excel1.xlsx │ ├── excel10.xlsx │ ├── excel11.xlsx │ ├── excel12.xlsx │ ├── excel13.xlsx │ ├── excel14.xlsx │ ├── excel15.xlsx │ ├── excel16.xlsx │ ├── excel17.xlsx │ ├── excel18.xlsx │ ├── excel19.xlsx │ ├── excel2.xlsx │ ├── excel20.xlsx │ ├── excel21.xlsx │ ├── excel22.xlsx │ ├── excel23.xlsx │ ├── excel24.xlsx │ ├── excel25.xlsx │ ├── excel26.xlsx │ ├── excel27.xlsx │ ├── excel28.xlsx │ ├── excel29.xlsx │ ├── excel3.xlsx │ ├── excel30.xlsx │ ├── excel31.xlsx │ ├── excel32.xlsx │ ├── excel33.xlsx │ ├── excel34.xlsx │ ├── excel35.xlsx │ ├── excel36.xlsx │ ├── excel4.xlsx │ ├── excel5.xlsx │ ├── excel6.xlsx │ ├── excel7.xlsx │ ├── excel8.xlsx │ └── excel9.xlsx ├── index.html └── user │ ├── 1553836360-WhatsApp Image 2019-03-01 at 13.44.17.jpeg │ ├── 1553838732-images.png │ └── 1561605417-background (2) - Copy.jpg └── user_guide ├── .buildinfo ├── DCO.html ├── _downloads └── ELDocs.tmbundle.zip ├── _images ├── appflowchart.gif └── smile.gif ├── _static ├── ajax-loader.gif ├── basic.css ├── ci-icon.ico ├── comment-bright.png ├── comment-close.png ├── comment.png ├── css │ ├── badge_only.css │ ├── citheme.css │ └── theme.css ├── doctools.js ├── down-pressed.png ├── down.png ├── file.png ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── images │ └── ci-icon.ico ├── jquery-3.1.0.js ├── jquery.js ├── js │ ├── oldtheme.js │ └── theme.js ├── minus.png ├── plus.png ├── pygments.css ├── searchtools.js ├── underscore-1.3.1.js ├── underscore.js ├── up-pressed.png ├── up.png └── websupport.js ├── changelog.html ├── contributing └── index.html ├── database ├── caching.html ├── call_function.html ├── configuration.html ├── connecting.html ├── db_driver_reference.html ├── examples.html ├── forge.html ├── helpers.html ├── index.html ├── metadata.html ├── queries.html ├── query_builder.html ├── results.html ├── transactions.html └── utilities.html ├── documentation └── index.html ├── general ├── alternative_php.html ├── ancillary_classes.html ├── autoloader.html ├── caching.html ├── cli.html ├── common_functions.html ├── compatibility_functions.html ├── controllers.html ├── core_classes.html ├── creating_drivers.html ├── creating_libraries.html ├── credits.html ├── drivers.html ├── environments.html ├── errors.html ├── helpers.html ├── hooks.html ├── index.html ├── libraries.html ├── managing_apps.html ├── models.html ├── profiling.html ├── requirements.html ├── reserved_names.html ├── routing.html ├── security.html ├── styleguide.html ├── urls.html ├── views.html └── welcome.html ├── genindex.html ├── helpers ├── array_helper.html ├── captcha_helper.html ├── cookie_helper.html ├── date_helper.html ├── directory_helper.html ├── download_helper.html ├── email_helper.html ├── file_helper.html ├── form_helper.html ├── html_helper.html ├── index.html ├── inflector_helper.html ├── language_helper.html ├── number_helper.html ├── path_helper.html ├── security_helper.html ├── smiley_helper.html ├── string_helper.html ├── text_helper.html ├── typography_helper.html ├── url_helper.html └── xml_helper.html ├── index.html ├── installation ├── downloads.html ├── index.html ├── troubleshooting.html ├── upgrade_120.html ├── upgrade_130.html ├── upgrade_131.html ├── upgrade_132.html ├── upgrade_133.html ├── upgrade_140.html ├── upgrade_141.html ├── upgrade_150.html ├── upgrade_152.html ├── upgrade_153.html ├── upgrade_154.html ├── upgrade_160.html ├── upgrade_161.html ├── upgrade_162.html ├── upgrade_163.html ├── upgrade_170.html ├── upgrade_171.html ├── upgrade_172.html ├── upgrade_200.html ├── upgrade_201.html ├── upgrade_202.html ├── upgrade_203.html ├── upgrade_210.html ├── upgrade_211.html ├── upgrade_212.html ├── upgrade_213.html ├── upgrade_214.html ├── upgrade_220.html ├── upgrade_221.html ├── upgrade_222.html ├── upgrade_223.html ├── upgrade_300.html ├── upgrade_301.html ├── upgrade_302.html ├── upgrade_303.html ├── upgrade_304.html ├── upgrade_305.html ├── upgrade_306.html ├── upgrade_310.html ├── upgrade_311.html ├── upgrade_312.html ├── upgrade_313.html ├── upgrade_314.html ├── upgrade_315.html ├── upgrade_316.html ├── upgrade_317.html ├── upgrade_b11.html └── upgrading.html ├── libraries ├── benchmark.html ├── caching.html ├── calendar.html ├── cart.html ├── config.html ├── email.html ├── encrypt.html ├── encryption.html ├── file_uploading.html ├── form_validation.html ├── ftp.html ├── image_lib.html ├── index.html ├── input.html ├── javascript.html ├── language.html ├── loader.html ├── migration.html ├── output.html ├── pagination.html ├── parser.html ├── security.html ├── sessions.html ├── table.html ├── trackback.html ├── typography.html ├── unit_testing.html ├── uri.html ├── user_agent.html ├── xmlrpc.html └── zip.html ├── license.html ├── objects.inv ├── overview ├── appflow.html ├── at_a_glance.html ├── features.html ├── getting_started.html ├── goals.html ├── index.html └── mvc.html ├── search.html ├── searchindex.js └── tutorial ├── conclusion.html ├── create_news_items.html ├── index.html ├── news_section.html └── static_pages.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * linguist-language=php -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/.htaccess -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } -------------------------------------------------------------------------------- /OVERVIEW/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/OVERVIEW/1.PNG -------------------------------------------------------------------------------- /OVERVIEW/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/OVERVIEW/2.PNG -------------------------------------------------------------------------------- /OVERVIEW/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/OVERVIEW/3.PNG -------------------------------------------------------------------------------- /OVERVIEW/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/OVERVIEW/4.PNG -------------------------------------------------------------------------------- /OVERVIEW/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/OVERVIEW/5.PNG -------------------------------------------------------------------------------- /OVERVIEW/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/OVERVIEW/6.PNG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/README.md -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/.htaccess -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/cache/index.html -------------------------------------------------------------------------------- /application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/config/autoload.php -------------------------------------------------------------------------------- /application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/config/config.php -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/config/constants.php -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/config/database.php -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/config/doctypes.php -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/config/foreign_chars.php -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/config/hooks.php -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/config/index.html -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/config/memcached.php -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/config/migration.php -------------------------------------------------------------------------------- /application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/config/mimes.php -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/config/profiler.php -------------------------------------------------------------------------------- /application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/config/routes.php -------------------------------------------------------------------------------- /application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/config/smileys.php -------------------------------------------------------------------------------- /application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/config/user_agents.php -------------------------------------------------------------------------------- /application/controllers/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/controllers/Home.php -------------------------------------------------------------------------------- /application/controllers/Landing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/controllers/Landing.php -------------------------------------------------------------------------------- /application/controllers/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/controllers/Log.php -------------------------------------------------------------------------------- /application/controllers/My404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/controllers/My404.php -------------------------------------------------------------------------------- /application/controllers/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/controllers/Profile.php -------------------------------------------------------------------------------- /application/controllers/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/controllers/User.php -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/controllers/index.html -------------------------------------------------------------------------------- /application/core/MY_Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/core/MY_Controller.php -------------------------------------------------------------------------------- /application/core/MY_Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/core/MY_Model.php -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/core/index.html -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/helpers/index.html -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/hooks/index.html -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/index.html -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/language/index.html -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/libraries/index.html -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/logs/index.html -------------------------------------------------------------------------------- /application/models/M_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/models/M_admin.php -------------------------------------------------------------------------------- /application/models/M_data_testing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/models/M_data_testing.php -------------------------------------------------------------------------------- /application/models/M_data_uji.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/models/M_data_uji.php -------------------------------------------------------------------------------- /application/models/M_log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/models/M_log.php -------------------------------------------------------------------------------- /application/models/M_login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/models/M_login.php -------------------------------------------------------------------------------- /application/models/M_register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/models/M_register.php -------------------------------------------------------------------------------- /application/models/M_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/models/M_user.php -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/models/index.html -------------------------------------------------------------------------------- /application/third_party/PHPExcel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/third_party/PHPExcel.php -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/third_party/index.html -------------------------------------------------------------------------------- /application/views/View_log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/views/View_log.php -------------------------------------------------------------------------------- /application/views/View_logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/views/View_logging.php -------------------------------------------------------------------------------- /application/views/errors/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/views/errors/error_db.php -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/views/errors/index.html -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/views/index.html -------------------------------------------------------------------------------- /application/views/login_page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/views/login_page.php -------------------------------------------------------------------------------- /application/views/register_page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/views/register_page.php -------------------------------------------------------------------------------- /application/views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/application/views/welcome_message.php -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/.gitignore -------------------------------------------------------------------------------- /assets/.npmignore: -------------------------------------------------------------------------------- 1 | documentation/ 2 | composer.json 3 | -------------------------------------------------------------------------------- /assets/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/Gruntfile.js -------------------------------------------------------------------------------- /assets/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/LICENSE -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/TES/ajax/ajax_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ajax/ajax_document.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /assets/TES/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /assets/TES/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/README.md -------------------------------------------------------------------------------- /assets/TES/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/build-config.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/config.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/contents.css -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/af.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/az.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/da.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/de-ch.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/de.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/el.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/en.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/es-mx.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/es.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/et.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/he.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/id.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/is.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/it.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/km.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/no.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/oc.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/si.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/th.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/tt.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /assets/TES/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/ckeditor/styles.js -------------------------------------------------------------------------------- /assets/TES/css/ace-ie.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/css/ace-ie.min.css -------------------------------------------------------------------------------- /assets/TES/css/ace-part2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/css/ace-part2.min.css -------------------------------------------------------------------------------- /assets/TES/css/ace-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/css/ace-rtl.min.css -------------------------------------------------------------------------------- /assets/TES/css/ace-skins.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/css/ace-skins.min.css -------------------------------------------------------------------------------- /assets/TES/css/ace.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/css/ace.min.css -------------------------------------------------------------------------------- /assets/TES/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/TES/css/chosen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/css/chosen.min.css -------------------------------------------------------------------------------- /assets/TES/css/colorbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/css/colorbox.min.css -------------------------------------------------------------------------------- /assets/TES/css/dropzone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/css/dropzone.min.css -------------------------------------------------------------------------------- /assets/TES/css/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/css/jquery-ui.min.css -------------------------------------------------------------------------------- /assets/TES/css/prettify.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/css/prettify.min.css -------------------------------------------------------------------------------- /assets/TES/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/css/select2.min.css -------------------------------------------------------------------------------- /assets/TES/css/ui.jqgrid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/css/ui.jqgrid.min.css -------------------------------------------------------------------------------- /assets/TES/images/avatars/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/images/avatars/user.jpg -------------------------------------------------------------------------------- /assets/TES/images/email/email1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/images/email/email1.png -------------------------------------------------------------------------------- /assets/TES/images/email/email2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/images/email/email2.png -------------------------------------------------------------------------------- /assets/TES/images/email/email3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/images/email/email3.png -------------------------------------------------------------------------------- /assets/TES/images/email/email4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/images/email/email4.png -------------------------------------------------------------------------------- /assets/TES/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/images/logo.png -------------------------------------------------------------------------------- /assets/TES/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/images/logo.svg -------------------------------------------------------------------------------- /assets/TES/images/logo/kominfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/images/logo/kominfo.png -------------------------------------------------------------------------------- /assets/TES/images/logo/logots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/images/logo/logots.png -------------------------------------------------------------------------------- /assets/TES/images/logo/logots1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/images/logo/logots1.png -------------------------------------------------------------------------------- /assets/TES/images/logo/pemprov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/images/logo/pemprov.png -------------------------------------------------------------------------------- /assets/TES/images/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/images/no_image.png -------------------------------------------------------------------------------- /assets/TES/images/putih.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/images/putih.png -------------------------------------------------------------------------------- /assets/TES/images/ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/images/ts.png -------------------------------------------------------------------------------- /assets/TES/js/ace-editable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ace-editable.min.js -------------------------------------------------------------------------------- /assets/TES/js/ace-elements.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ace-elements.min.js -------------------------------------------------------------------------------- /assets/TES/js/ace-extra.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ace-extra.min.js -------------------------------------------------------------------------------- /assets/TES/js/ace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ace.min.js -------------------------------------------------------------------------------- /assets/TES/js/autosize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/autosize.min.js -------------------------------------------------------------------------------- /assets/TES/js/bootbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/bootbox.js -------------------------------------------------------------------------------- /assets/TES/js/bootstrap-tag.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/bootstrap-tag.min.js -------------------------------------------------------------------------------- /assets/TES/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/TES/js/buttons.flash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/buttons.flash.min.js -------------------------------------------------------------------------------- /assets/TES/js/buttons.html5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/buttons.html5.min.js -------------------------------------------------------------------------------- /assets/TES/js/buttons.print.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/buttons.print.min.js -------------------------------------------------------------------------------- /assets/TES/js/chosen.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/chosen.jquery.min.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/README.md -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/config.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/af.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/az.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/da.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/de.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/el.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/en.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/es.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/et.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/he.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/id.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/is.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/it.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/km.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/no.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/oc.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/si.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/th.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/tt.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /assets/TES/js/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckeditor/styles.js -------------------------------------------------------------------------------- /assets/TES/js/ckfinder/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckfinder/README.html -------------------------------------------------------------------------------- /assets/TES/js/ckfinder/ckfinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckfinder/ckfinder.js -------------------------------------------------------------------------------- /assets/TES/js/ckfinder/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckfinder/config.js -------------------------------------------------------------------------------- /assets/TES/js/ckfinder/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/ckfinder/config.php -------------------------------------------------------------------------------- /assets/TES/js/dropzone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/dropzone.min.js -------------------------------------------------------------------------------- /assets/TES/js/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/excanvas.min.js -------------------------------------------------------------------------------- /assets/TES/js/fullcalendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/fullcalendar.min.js -------------------------------------------------------------------------------- /assets/TES/js/grid.locale-en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/grid.locale-en.js -------------------------------------------------------------------------------- /assets/TES/js/holder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/holder.min.js -------------------------------------------------------------------------------- /assets/TES/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/html5shiv.min.js -------------------------------------------------------------------------------- /assets/TES/js/jquery-1.11.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/jquery-1.11.3.min.js -------------------------------------------------------------------------------- /assets/TES/js/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /assets/TES/js/jquery-typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/jquery-typeahead.js -------------------------------------------------------------------------------- /assets/TES/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/jquery-ui.min.js -------------------------------------------------------------------------------- /assets/TES/js/jquery.flot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/jquery.flot.min.js -------------------------------------------------------------------------------- /assets/TES/js/jquery.jqGrid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/jquery.jqGrid.min.js -------------------------------------------------------------------------------- /assets/TES/js/jquery.knob.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/jquery.knob.min.js -------------------------------------------------------------------------------- /assets/TES/js/jquery.raty.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/jquery.raty.min.js -------------------------------------------------------------------------------- /assets/TES/js/markdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/markdown.min.js -------------------------------------------------------------------------------- /assets/TES/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/moment.min.js -------------------------------------------------------------------------------- /assets/TES/js/prettify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/prettify.min.js -------------------------------------------------------------------------------- /assets/TES/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/respond.min.js -------------------------------------------------------------------------------- /assets/TES/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/select2.min.js -------------------------------------------------------------------------------- /assets/TES/js/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/spin.js -------------------------------------------------------------------------------- /assets/TES/js/spinbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/spinbox.min.js -------------------------------------------------------------------------------- /assets/TES/js/tree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/tree.min.js -------------------------------------------------------------------------------- /assets/TES/js/wizard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/js/wizard.min.js -------------------------------------------------------------------------------- /assets/TES/swf/flashExport.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/TES/swf/flashExport.swf -------------------------------------------------------------------------------- /assets/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/bower.json -------------------------------------------------------------------------------- /assets/bower_components/bootstrap-datepicker/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx_rtd_theme 2 | -------------------------------------------------------------------------------- /assets/bower_components/bootstrap-daterangepicker/example/browserify/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/bower_components/chart.js/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | 4 | node_modules/* 5 | custom/* 6 | 7 | docs/index.md 8 | -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","af",{toolbar:"Nuwe bladsy"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ar",{toolbar:"صفحة جديدة"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/az.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","az",{toolbar:"Yeni səhifə"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","bg",{toolbar:"Нова страница"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/bn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","bn",{toolbar:"নতুন পৃষ্ঠা"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","bs",{toolbar:"Novi dokument"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ca",{toolbar:"Nova pàgina"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","cs",{toolbar:"Nová stránka"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","cy",{toolbar:"Tudalen Newydd"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","da",{toolbar:"Ny side"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","de",{toolbar:"Neue Seite"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","el",{toolbar:"Νέα Σελίδα"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/en-au.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en-au",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en-ca",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en-gb",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","eo",{toolbar:"Nova Paĝo"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","es",{toolbar:"Nueva Página"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","et",{toolbar:"Uus leht"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","eu",{toolbar:"Orrialde berria"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","fa",{toolbar:"برگهٴ تازه"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","fi",{toolbar:"Tyhjennä"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","fo",{toolbar:"Nýggj síða"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","gl",{toolbar:"Páxina nova"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","gu",{toolbar:"નવુ પાનું"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","he",{toolbar:"דף חדש"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","hi",{toolbar:"नया पेज"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","hr",{toolbar:"Nova stranica"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","hu",{toolbar:"Új oldal"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","id",{toolbar:"Halaman Baru"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","is",{toolbar:"Ný síða"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","it",{toolbar:"Nuova pagina"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ja",{toolbar:"新しいページ"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ka",{toolbar:"ახალი გვერდი"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","km",{toolbar:"ទំព័រ​ថ្មី"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ko",{toolbar:"새 페이지"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ku",{toolbar:"پەڕەیەکی نوێ"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","lt",{toolbar:"Naujas puslapis"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","lv",{toolbar:"Jauna lapa"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/mk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","mk",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","mn",{toolbar:"Шинэ хуудас"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ms",{toolbar:"Helaian Baru"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","nb",{toolbar:"Ny side"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","nl",{toolbar:"Nieuwe pagina"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","no",{toolbar:"Ny side"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/oc.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","oc",{toolbar:"Pagina novèla"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","pl",{toolbar:"Nowa strona"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","pt-br",{toolbar:"Novo"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","pt",{toolbar:"Nova página"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ro",{toolbar:"Pagină nouă"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ru",{toolbar:"Новая страница"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/si.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","si",{toolbar:"නව පිටුවක්"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sk",{toolbar:"Nová stránka"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sl",{toolbar:"Nova stran"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sq",{toolbar:"Faqe e Re"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sr",{toolbar:"Нова страница"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sv",{toolbar:"Ny sida"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","tr",{toolbar:"Yeni Sayfa"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","tt",{toolbar:"Яңа бит"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ug",{toolbar:"يېڭى بەت"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","uk",{toolbar:"Нова сторінка"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","vi",{toolbar:"Trang mới"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","zh-cn",{toolbar:"新建"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/newpage/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","zh",{toolbar:"新增網頁"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/preview/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("preview","sr",{preview:"Изглед странице"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","af",{toolbar:"Druk"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ar",{toolbar:"طباعة"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/az.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","az",{toolbar:"Çap et"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","bg",{toolbar:"Печат"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","bs",{toolbar:"Štampaj"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ca",{toolbar:"Imprimeix"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","cs",{toolbar:"Tisk"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","cy",{toolbar:"Argraffu"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","da",{toolbar:"Udskriv"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","de-ch",{toolbar:"Drucken"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","de",{toolbar:"Drucken"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","el",{toolbar:"Εκτύπωση"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","eo",{toolbar:"Presi"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/es-mx.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","es-mx",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","es",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","eu",{toolbar:"Inprimatu"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fa",{toolbar:"چاپ"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fi",{toolbar:"Tulosta"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fo",{toolbar:"Prenta"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fr-ca",{toolbar:"Imprimer"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fr",{toolbar:"Imprimer"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","gl",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","gu",{toolbar:"પ્રિન્ટ"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","he",{toolbar:"הדפסה"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","hi",{toolbar:"प्रिन्ट"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","hr",{toolbar:"Ispiši"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","hu",{toolbar:"Nyomtatás"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","id",{toolbar:"Cetak"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","is",{toolbar:"Prenta"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","it",{toolbar:"Stampa"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ja",{toolbar:"印刷"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ka",{toolbar:"ბეჭდვა"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","km",{toolbar:"បោះពុម្ព"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ko",{toolbar:"인쇄"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ku",{toolbar:"چاپکردن"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","lt",{toolbar:"Spausdinti"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","lv",{toolbar:"Drukāt"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","mn",{toolbar:"Хэвлэх"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ms",{toolbar:"Cetak"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","nb",{toolbar:"Skriv ut"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","nl",{toolbar:"Afdrukken"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","no",{toolbar:"Skriv ut"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/oc.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","oc",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","pl",{toolbar:"Drukuj"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","pt-br",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","pt",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ro",{toolbar:"Printează"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ru",{toolbar:"Печать"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sk",{toolbar:"Tlač"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sl",{toolbar:"Natisni"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sq",{toolbar:"Shtype"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sr-latn",{toolbar:"Štampa"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sr",{toolbar:"Штампа"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sv",{toolbar:"Skriv ut"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","th",{toolbar:"สั่งพิมพ์"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","tr",{toolbar:"Yazdır"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","tt",{toolbar:"Бастыру"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ug",{toolbar:"باس "}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","uk",{toolbar:"Друк"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","vi",{toolbar:"In"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","zh-cn",{toolbar:"打印"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/print/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","zh",{toolbar:"列印"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","af",{toolbar:"Bewaar"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ar",{toolbar:"حفظ"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/az.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","az",{toolbar:"Yadda saxla"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","bg",{toolbar:"Запис"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/bn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","bn",{toolbar:"সংরক্ষন করি"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","bs",{toolbar:"Snimi"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ca",{toolbar:"Desa"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","cs",{toolbar:"Uložit"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","cy",{toolbar:"Cadw"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","da",{toolbar:"Gem"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","de-ch",{toolbar:"Speichern"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","de",{toolbar:"Speichern"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","el",{toolbar:"Αποθήκευση"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/en-au.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en-au",{toolbar:"Save"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en-ca",{toolbar:"Save"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en-gb",{toolbar:"Save"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en",{toolbar:"Save"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","eo",{toolbar:"Konservi"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/es-mx.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","es-mx",{toolbar:"Guardar"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","es",{toolbar:"Guardar"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","et",{toolbar:"Salvestamine"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","eu",{toolbar:"Gorde"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fa",{toolbar:"ذخیره"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fi",{toolbar:"Tallenna"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fo",{toolbar:"Goym"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fr-ca",{toolbar:"Sauvegarder"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fr",{toolbar:"Enregistrer"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","gl",{toolbar:"Gardar"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","gu",{toolbar:"સેવ"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","he",{toolbar:"שמירה"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","hi",{toolbar:"सेव"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","hr",{toolbar:"Snimi"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","hu",{toolbar:"Mentés"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","id",{toolbar:"Simpan"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","is",{toolbar:"Vista"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","it",{toolbar:"Salva"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ja",{toolbar:"保存"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ka",{toolbar:"ჩაწერა"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","km",{toolbar:"រក្សាទុក"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ko",{toolbar:"저장"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ku",{toolbar:"پاشکەوتکردن"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","lt",{toolbar:"Išsaugoti"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","lv",{toolbar:"Saglabāt"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/mk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","mk",{toolbar:"Save"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","mn",{toolbar:"Хадгалах"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ms",{toolbar:"Simpan"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","nb",{toolbar:"Lagre"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","nl",{toolbar:"Opslaan"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","no",{toolbar:"Lagre"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/oc.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","oc",{toolbar:"Enregistrar"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","pl",{toolbar:"Zapisz"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","pt-br",{toolbar:"Salvar"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","pt",{toolbar:"Guardar"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ro",{toolbar:"Salvează"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ru",{toolbar:"Сохранить"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sk",{toolbar:"Uložiť"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sl",{toolbar:"Shrani"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sq",{toolbar:"Ruaje"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sr-latn",{toolbar:"Sačuvaj"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sr",{toolbar:"Сачувај"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sv",{toolbar:"Spara"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","th",{toolbar:"บันทึก"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","tr",{toolbar:"Kaydet"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","tt",{toolbar:"Саклау"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ug",{toolbar:"ساقلا"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","uk",{toolbar:"Зберегти"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","vi",{toolbar:"Lưu"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","zh-cn",{toolbar:"保存"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/save/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","zh",{toolbar:"儲存"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ar",{toolbar:"تحديد الكل"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","cs",{toolbar:"Vybrat vše"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","da",{toolbar:"Vælg alt"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","eo",{toolbar:"Elekti ĉion"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fa",{toolbar:"گزینش همه"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fo",{toolbar:"Markera alt"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","he",{toolbar:"בחירת הכל"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","hr",{toolbar:"Odaberi sve"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","id",{toolbar:"Pilih Semua"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","is",{toolbar:"Velja allt"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ja",{toolbar:"すべて選択"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ko",{toolbar:"모두 선택"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ms",{toolbar:"Pilih Semua"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","nb",{toolbar:"Merk alt"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","no",{toolbar:"Merk alt"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/si.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","si",{toolbar:"සියල්ලම "}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sl",{toolbar:"Izberi vse"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sr",{toolbar:"Означи све"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","tr",{toolbar:"Tümünü Seç"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","vi",{toolbar:"Chọn tất cả"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","zh-cn",{toolbar:"全选"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/selectall/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","zh",{toolbar:"全選"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/showblocks/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ja",{toolbar:"ブロック表示"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/showblocks/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ko",{toolbar:"블록 보기"}); -------------------------------------------------------------------------------- /assets/bower_components/ckeditor/plugins/showblocks/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","zh",{toolbar:"顯示區塊"}); -------------------------------------------------------------------------------- /assets/bower_components/ion.rangeSlider/.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /assets/bower_components/jquery-knob/.gitignore: -------------------------------------------------------------------------------- 1 | nbproject/ -------------------------------------------------------------------------------- /assets/bower_components/jquery-sparkline/src/footer.js: -------------------------------------------------------------------------------- 1 | }))}(document, Math)); 2 | -------------------------------------------------------------------------------- /assets/bower_components/jquery-sparkline/version.txt: -------------------------------------------------------------------------------- 1 | 2.1.3 2 | -------------------------------------------------------------------------------- /assets/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() { 2 | "use strict"; 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/bower_components/jvectormap/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | jquery.jvectormap.min.js 3 | -------------------------------------------------------------------------------- /assets/bower_components/raphael/dev/test/vml/dom.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | module('DOM'); 4 | 5 | })(); -------------------------------------------------------------------------------- /assets/bower_components/select2/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/js/i18n/build.txt 3 | .sass-cache 4 | -------------------------------------------------------------------------------- /assets/build/grunt/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/grunt/.jshintrc -------------------------------------------------------------------------------- /assets/build/js/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/js/.jscsrc -------------------------------------------------------------------------------- /assets/build/js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/js/.jshintrc -------------------------------------------------------------------------------- /assets/build/js/BoxRefresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/js/BoxRefresh.js -------------------------------------------------------------------------------- /assets/build/js/BoxWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/js/BoxWidget.js -------------------------------------------------------------------------------- /assets/build/js/ControlSidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/js/ControlSidebar.js -------------------------------------------------------------------------------- /assets/build/js/DirectChat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/js/DirectChat.js -------------------------------------------------------------------------------- /assets/build/js/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/js/Layout.js -------------------------------------------------------------------------------- /assets/build/js/PushMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/js/PushMenu.js -------------------------------------------------------------------------------- /assets/build/js/TodoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/js/TodoList.js -------------------------------------------------------------------------------- /assets/build/js/Tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/js/Tree.js -------------------------------------------------------------------------------- /assets/build/less/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/.csslintrc -------------------------------------------------------------------------------- /assets/build/less/AdminLTE.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/AdminLTE.less -------------------------------------------------------------------------------- /assets/build/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/alerts.less -------------------------------------------------------------------------------- /assets/build/less/boxes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/boxes.less -------------------------------------------------------------------------------- /assets/build/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/buttons.less -------------------------------------------------------------------------------- /assets/build/less/callout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/callout.less -------------------------------------------------------------------------------- /assets/build/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/carousel.less -------------------------------------------------------------------------------- /assets/build/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/core.less -------------------------------------------------------------------------------- /assets/build/less/datepicker.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/datepicker.less -------------------------------------------------------------------------------- /assets/build/less/direct-chat.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/direct-chat.less -------------------------------------------------------------------------------- /assets/build/less/dropdown.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/dropdown.less -------------------------------------------------------------------------------- /assets/build/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/forms.less -------------------------------------------------------------------------------- /assets/build/less/header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/header.less -------------------------------------------------------------------------------- /assets/build/less/info-box.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/info-box.less -------------------------------------------------------------------------------- /assets/build/less/invoice.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/invoice.less -------------------------------------------------------------------------------- /assets/build/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/labels.less -------------------------------------------------------------------------------- /assets/build/less/lockscreen.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/lockscreen.less -------------------------------------------------------------------------------- /assets/build/less/mailbox.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/mailbox.less -------------------------------------------------------------------------------- /assets/build/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/mixins.less -------------------------------------------------------------------------------- /assets/build/less/modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/modal.less -------------------------------------------------------------------------------- /assets/build/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/navs.less -------------------------------------------------------------------------------- /assets/build/less/plugins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/plugins.less -------------------------------------------------------------------------------- /assets/build/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/print.less -------------------------------------------------------------------------------- /assets/build/less/products.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/products.less -------------------------------------------------------------------------------- /assets/build/less/profile.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/profile.less -------------------------------------------------------------------------------- /assets/build/less/select2.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/select2.less -------------------------------------------------------------------------------- /assets/build/less/sidebar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/sidebar.less -------------------------------------------------------------------------------- /assets/build/less/small-box.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/small-box.less -------------------------------------------------------------------------------- /assets/build/less/table.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/table.less -------------------------------------------------------------------------------- /assets/build/less/timeline.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/timeline.less -------------------------------------------------------------------------------- /assets/build/less/treeview.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/treeview.less -------------------------------------------------------------------------------- /assets/build/less/users-list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/users-list.less -------------------------------------------------------------------------------- /assets/build/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/less/variables.less -------------------------------------------------------------------------------- /assets/build/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/build/scss/_variables.scss -------------------------------------------------------------------------------- /assets/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/changelog.md -------------------------------------------------------------------------------- /assets/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/composer.json -------------------------------------------------------------------------------- /assets/dist/css/AdminLTE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/css/AdminLTE.css -------------------------------------------------------------------------------- /assets/dist/css/AdminLTE.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/css/AdminLTE.min.css -------------------------------------------------------------------------------- /assets/dist/css/adminlte.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/css/adminlte.css.map -------------------------------------------------------------------------------- /assets/dist/css/skins/skin-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/css/skins/skin-red.css -------------------------------------------------------------------------------- /assets/dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/avatar.png -------------------------------------------------------------------------------- /assets/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/avatar04.png -------------------------------------------------------------------------------- /assets/dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/avatar2.png -------------------------------------------------------------------------------- /assets/dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/avatar3.png -------------------------------------------------------------------------------- /assets/dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/avatar5.png -------------------------------------------------------------------------------- /assets/dist/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/credit/cirrus.png -------------------------------------------------------------------------------- /assets/dist/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/credit/mestro.png -------------------------------------------------------------------------------- /assets/dist/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/credit/paypal.png -------------------------------------------------------------------------------- /assets/dist/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/credit/paypal2.png -------------------------------------------------------------------------------- /assets/dist/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/credit/visa.png -------------------------------------------------------------------------------- /assets/dist/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/default-50x50.gif -------------------------------------------------------------------------------- /assets/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/icons.png -------------------------------------------------------------------------------- /assets/dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/photo1.png -------------------------------------------------------------------------------- /assets/dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/photo2.png -------------------------------------------------------------------------------- /assets/dist/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/photo3.jpg -------------------------------------------------------------------------------- /assets/dist/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/photo4.jpg -------------------------------------------------------------------------------- /assets/dist/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/user1-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/user2-160x160.jpg -------------------------------------------------------------------------------- /assets/dist/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/user3-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/user4-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/user5-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/user6-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/user7-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/img/user8-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/js/adminlte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/js/adminlte.js -------------------------------------------------------------------------------- /assets/dist/js/adminlte.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/js/adminlte.min.js -------------------------------------------------------------------------------- /assets/dist/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/js/demo.js -------------------------------------------------------------------------------- /assets/dist/js/pages/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/js/pages/dashboard.js -------------------------------------------------------------------------------- /assets/dist/js/pages/dashboard2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/dist/js/pages/dashboard2.js -------------------------------------------------------------------------------- /assets/documentation/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/documentation/docs.js -------------------------------------------------------------------------------- /assets/documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/documentation/index.html -------------------------------------------------------------------------------- /assets/documentation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/documentation/style.css -------------------------------------------------------------------------------- /assets/images/avatars/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/avatars/avatar.png -------------------------------------------------------------------------------- /assets/images/avatars/avatar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/avatars/avatar1.png -------------------------------------------------------------------------------- /assets/images/avatars/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/avatars/avatar2.png -------------------------------------------------------------------------------- /assets/images/avatars/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/avatars/avatar3.png -------------------------------------------------------------------------------- /assets/images/avatars/avatar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/avatars/avatar4.png -------------------------------------------------------------------------------- /assets/images/avatars/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/avatars/avatar5.png -------------------------------------------------------------------------------- /assets/images/avatars/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/avatars/user.jpg -------------------------------------------------------------------------------- /assets/images/email/email1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/email/email1.png -------------------------------------------------------------------------------- /assets/images/email/email2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/email/email2.png -------------------------------------------------------------------------------- /assets/images/email/email3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/email/email3.png -------------------------------------------------------------------------------- /assets/images/email/email4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/email/email4.png -------------------------------------------------------------------------------- /assets/images/gallery/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/gallery/image-1.jpg -------------------------------------------------------------------------------- /assets/images/gallery/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/gallery/image-2.jpg -------------------------------------------------------------------------------- /assets/images/gallery/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/gallery/image-3.jpg -------------------------------------------------------------------------------- /assets/images/gallery/image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/gallery/image-4.jpg -------------------------------------------------------------------------------- /assets/images/gallery/image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/gallery/image-5.jpg -------------------------------------------------------------------------------- /assets/images/gallery/image-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/gallery/image-6.jpg -------------------------------------------------------------------------------- /assets/images/gallery/thumb-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/gallery/thumb-1.jpg -------------------------------------------------------------------------------- /assets/images/gallery/thumb-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/gallery/thumb-2.jpg -------------------------------------------------------------------------------- /assets/images/gallery/thumb-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/gallery/thumb-3.jpg -------------------------------------------------------------------------------- /assets/images/gallery/thumb-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/gallery/thumb-4.jpg -------------------------------------------------------------------------------- /assets/images/gallery/thumb-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/gallery/thumb-5.jpg -------------------------------------------------------------------------------- /assets/images/gallery/thumb-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/gallery/thumb-6.jpg -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/logo.svg -------------------------------------------------------------------------------- /assets/images/logo/halosultra.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/logo/halosultra.jpg -------------------------------------------------------------------------------- /assets/images/logo/kominfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/logo/kominfo.png -------------------------------------------------------------------------------- /assets/images/logo/logots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/logo/logots.png -------------------------------------------------------------------------------- /assets/images/logo/logots1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/logo/logots1.png -------------------------------------------------------------------------------- /assets/images/logo/pemprov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/logo/pemprov.png -------------------------------------------------------------------------------- /assets/images/logo/rumahaku.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/logo/rumahaku.jpeg -------------------------------------------------------------------------------- /assets/images/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/no_image.png -------------------------------------------------------------------------------- /assets/images/putih.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/putih.png -------------------------------------------------------------------------------- /assets/images/tehnik_uho.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/tehnik_uho.jpg -------------------------------------------------------------------------------- /assets/images/ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/images/ts.png -------------------------------------------------------------------------------- /assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/index.html -------------------------------------------------------------------------------- /assets/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/index2.html -------------------------------------------------------------------------------- /assets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/package-lock.json -------------------------------------------------------------------------------- /assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/package.json -------------------------------------------------------------------------------- /assets/pages/UI/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/UI/buttons.html -------------------------------------------------------------------------------- /assets/pages/UI/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/UI/general.html -------------------------------------------------------------------------------- /assets/pages/UI/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/UI/icons.html -------------------------------------------------------------------------------- /assets/pages/UI/modals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/UI/modals.html -------------------------------------------------------------------------------- /assets/pages/UI/sliders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/UI/sliders.html -------------------------------------------------------------------------------- /assets/pages/UI/timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/UI/timeline.html -------------------------------------------------------------------------------- /assets/pages/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/calendar.html -------------------------------------------------------------------------------- /assets/pages/charts/chartjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/charts/chartjs.html -------------------------------------------------------------------------------- /assets/pages/charts/flot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/charts/flot.html -------------------------------------------------------------------------------- /assets/pages/charts/inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/charts/inline.html -------------------------------------------------------------------------------- /assets/pages/charts/morris.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/charts/morris.html -------------------------------------------------------------------------------- /assets/pages/examples/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/examples/404.html -------------------------------------------------------------------------------- /assets/pages/examples/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/examples/500.html -------------------------------------------------------------------------------- /assets/pages/examples/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/examples/blank.html -------------------------------------------------------------------------------- /assets/pages/examples/invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/examples/invoice.html -------------------------------------------------------------------------------- /assets/pages/examples/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/examples/login.html -------------------------------------------------------------------------------- /assets/pages/examples/pace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/examples/pace.html -------------------------------------------------------------------------------- /assets/pages/examples/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/examples/profile.html -------------------------------------------------------------------------------- /assets/pages/forms/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/forms/advanced.html -------------------------------------------------------------------------------- /assets/pages/forms/editors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/forms/editors.html -------------------------------------------------------------------------------- /assets/pages/forms/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/forms/general.html -------------------------------------------------------------------------------- /assets/pages/layout/boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/layout/boxed.html -------------------------------------------------------------------------------- /assets/pages/layout/fixed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/layout/fixed.html -------------------------------------------------------------------------------- /assets/pages/layout/top-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/layout/top-nav.html -------------------------------------------------------------------------------- /assets/pages/mailbox/compose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/mailbox/compose.html -------------------------------------------------------------------------------- /assets/pages/mailbox/mailbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/mailbox/mailbox.html -------------------------------------------------------------------------------- /assets/pages/tables/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/tables/data.html -------------------------------------------------------------------------------- /assets/pages/tables/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/tables/simple.html -------------------------------------------------------------------------------- /assets/pages/widgets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/pages/widgets.html -------------------------------------------------------------------------------- /assets/plugins/iCheck/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/plugins/iCheck/all.css -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/plugins/iCheck/flat/red.css -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/plugins/iCheck/flat/red.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/icheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/plugins/iCheck/icheck.js -------------------------------------------------------------------------------- /assets/plugins/iCheck/line/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/plugins/iCheck/line/red.css -------------------------------------------------------------------------------- /assets/plugins/pace/pace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/plugins/pace/pace.css -------------------------------------------------------------------------------- /assets/plugins/pace/pace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/plugins/pace/pace.js -------------------------------------------------------------------------------- /assets/plugins/pace/pace.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/plugins/pace/pace.min.css -------------------------------------------------------------------------------- /assets/plugins/pace/pace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/plugins/pace/pace.min.js -------------------------------------------------------------------------------- /assets/starter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/starter.html -------------------------------------------------------------------------------- /assets/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/assets/yarn.lock -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/composer.json -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/contributing.md -------------------------------------------------------------------------------- /database/knn.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/database/knn.sql -------------------------------------------------------------------------------- /error_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/error_log -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/index.php -------------------------------------------------------------------------------- /knn_1.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/knn_1.code-workspace -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/license.txt -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/.htaccess -------------------------------------------------------------------------------- /system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/Benchmark.php -------------------------------------------------------------------------------- /system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/Common.php -------------------------------------------------------------------------------- /system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/Config.php -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/Controller.php -------------------------------------------------------------------------------- /system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/Exceptions.php -------------------------------------------------------------------------------- /system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/Hooks.php -------------------------------------------------------------------------------- /system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/Input.php -------------------------------------------------------------------------------- /system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/Lang.php -------------------------------------------------------------------------------- /system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/Loader.php -------------------------------------------------------------------------------- /system/core/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/Log.php -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/Model.php -------------------------------------------------------------------------------- /system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/Output.php -------------------------------------------------------------------------------- /system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/Router.php -------------------------------------------------------------------------------- /system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/Security.php -------------------------------------------------------------------------------- /system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/URI.php -------------------------------------------------------------------------------- /system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/Utf8.php -------------------------------------------------------------------------------- /system/core/compat/hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/compat/hash.php -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/compat/index.html -------------------------------------------------------------------------------- /system/core/compat/mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/compat/mbstring.php -------------------------------------------------------------------------------- /system/core/compat/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/compat/password.php -------------------------------------------------------------------------------- /system/core/compat/standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/compat/standard.php -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/core/index.html -------------------------------------------------------------------------------- /system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/database/DB.php -------------------------------------------------------------------------------- /system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/database/DB_cache.php -------------------------------------------------------------------------------- /system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/database/DB_driver.php -------------------------------------------------------------------------------- /system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/database/DB_forge.php -------------------------------------------------------------------------------- /system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/database/DB_result.php -------------------------------------------------------------------------------- /system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/database/DB_utility.php -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/database/drivers/index.html -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/database/index.html -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/fonts/index.html -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/array_helper.php -------------------------------------------------------------------------------- /system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/date_helper.php -------------------------------------------------------------------------------- /system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/download_helper.php -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/email_helper.php -------------------------------------------------------------------------------- /system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/file_helper.php -------------------------------------------------------------------------------- /system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/form_helper.php -------------------------------------------------------------------------------- /system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/html_helper.php -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/index.html -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/language_helper.php -------------------------------------------------------------------------------- /system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/number_helper.php -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/path_helper.php -------------------------------------------------------------------------------- /system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/security_helper.php -------------------------------------------------------------------------------- /system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/string_helper.php -------------------------------------------------------------------------------- /system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/text_helper.php -------------------------------------------------------------------------------- /system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/url_helper.php -------------------------------------------------------------------------------- /system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/index.html -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/language/english/index.html -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/language/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Cache/index.html -------------------------------------------------------------------------------- /system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Calendar.php -------------------------------------------------------------------------------- /system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Cart.php -------------------------------------------------------------------------------- /system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Driver.php -------------------------------------------------------------------------------- /system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Email.php -------------------------------------------------------------------------------- /system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /system/libraries/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Encryption.php -------------------------------------------------------------------------------- /system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Ftp.php -------------------------------------------------------------------------------- /system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Javascript.php -------------------------------------------------------------------------------- /system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Migration.php -------------------------------------------------------------------------------- /system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Pagination.php -------------------------------------------------------------------------------- /system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Parser.php -------------------------------------------------------------------------------- /system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Profiler.php -------------------------------------------------------------------------------- /system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Table.php -------------------------------------------------------------------------------- /system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Trackback.php -------------------------------------------------------------------------------- /system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Typography.php -------------------------------------------------------------------------------- /system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Upload.php -------------------------------------------------------------------------------- /system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/User_agent.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/Zip.php -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/system/libraries/index.html -------------------------------------------------------------------------------- /upload/datatestingexcel/excel.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/upload/datatestingexcel/excel.xlsx -------------------------------------------------------------------------------- /upload/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/upload/index.html -------------------------------------------------------------------------------- /upload/user/1553838732-images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/upload/user/1553838732-images.png -------------------------------------------------------------------------------- /user_guide/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/.buildinfo -------------------------------------------------------------------------------- /user_guide/DCO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/DCO.html -------------------------------------------------------------------------------- /user_guide/_images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_images/smile.gif -------------------------------------------------------------------------------- /user_guide/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/ajax-loader.gif -------------------------------------------------------------------------------- /user_guide/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/basic.css -------------------------------------------------------------------------------- /user_guide/_static/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/ci-icon.ico -------------------------------------------------------------------------------- /user_guide/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/comment.png -------------------------------------------------------------------------------- /user_guide/_static/css/citheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/css/citheme.css -------------------------------------------------------------------------------- /user_guide/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/css/theme.css -------------------------------------------------------------------------------- /user_guide/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/doctools.js -------------------------------------------------------------------------------- /user_guide/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/down.png -------------------------------------------------------------------------------- /user_guide/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/file.png -------------------------------------------------------------------------------- /user_guide/_static/jquery-3.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/jquery-3.1.0.js -------------------------------------------------------------------------------- /user_guide/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/jquery.js -------------------------------------------------------------------------------- /user_guide/_static/js/oldtheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/js/oldtheme.js -------------------------------------------------------------------------------- /user_guide/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/js/theme.js -------------------------------------------------------------------------------- /user_guide/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/minus.png -------------------------------------------------------------------------------- /user_guide/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/plus.png -------------------------------------------------------------------------------- /user_guide/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/pygments.css -------------------------------------------------------------------------------- /user_guide/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/searchtools.js -------------------------------------------------------------------------------- /user_guide/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/underscore.js -------------------------------------------------------------------------------- /user_guide/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/up-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/up.png -------------------------------------------------------------------------------- /user_guide/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/_static/websupport.js -------------------------------------------------------------------------------- /user_guide/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/changelog.html -------------------------------------------------------------------------------- /user_guide/contributing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/contributing/index.html -------------------------------------------------------------------------------- /user_guide/database/caching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/database/caching.html -------------------------------------------------------------------------------- /user_guide/database/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/database/examples.html -------------------------------------------------------------------------------- /user_guide/database/forge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/database/forge.html -------------------------------------------------------------------------------- /user_guide/database/helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/database/helpers.html -------------------------------------------------------------------------------- /user_guide/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/database/index.html -------------------------------------------------------------------------------- /user_guide/database/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/database/metadata.html -------------------------------------------------------------------------------- /user_guide/database/queries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/database/queries.html -------------------------------------------------------------------------------- /user_guide/database/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/database/results.html -------------------------------------------------------------------------------- /user_guide/database/utilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/database/utilities.html -------------------------------------------------------------------------------- /user_guide/general/autoloader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/autoloader.html -------------------------------------------------------------------------------- /user_guide/general/caching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/caching.html -------------------------------------------------------------------------------- /user_guide/general/cli.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/cli.html -------------------------------------------------------------------------------- /user_guide/general/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/credits.html -------------------------------------------------------------------------------- /user_guide/general/drivers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/drivers.html -------------------------------------------------------------------------------- /user_guide/general/errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/errors.html -------------------------------------------------------------------------------- /user_guide/general/helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/helpers.html -------------------------------------------------------------------------------- /user_guide/general/hooks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/hooks.html -------------------------------------------------------------------------------- /user_guide/general/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/index.html -------------------------------------------------------------------------------- /user_guide/general/libraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/libraries.html -------------------------------------------------------------------------------- /user_guide/general/models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/models.html -------------------------------------------------------------------------------- /user_guide/general/profiling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/profiling.html -------------------------------------------------------------------------------- /user_guide/general/routing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/routing.html -------------------------------------------------------------------------------- /user_guide/general/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/security.html -------------------------------------------------------------------------------- /user_guide/general/styleguide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/styleguide.html -------------------------------------------------------------------------------- /user_guide/general/urls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/urls.html -------------------------------------------------------------------------------- /user_guide/general/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/views.html -------------------------------------------------------------------------------- /user_guide/general/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/general/welcome.html -------------------------------------------------------------------------------- /user_guide/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/genindex.html -------------------------------------------------------------------------------- /user_guide/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/helpers/index.html -------------------------------------------------------------------------------- /user_guide/helpers/url_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/helpers/url_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/xml_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/helpers/xml_helper.html -------------------------------------------------------------------------------- /user_guide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/index.html -------------------------------------------------------------------------------- /user_guide/installation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/installation/index.html -------------------------------------------------------------------------------- /user_guide/libraries/caching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/caching.html -------------------------------------------------------------------------------- /user_guide/libraries/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/calendar.html -------------------------------------------------------------------------------- /user_guide/libraries/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/cart.html -------------------------------------------------------------------------------- /user_guide/libraries/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/config.html -------------------------------------------------------------------------------- /user_guide/libraries/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/email.html -------------------------------------------------------------------------------- /user_guide/libraries/encrypt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/encrypt.html -------------------------------------------------------------------------------- /user_guide/libraries/ftp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/ftp.html -------------------------------------------------------------------------------- /user_guide/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/index.html -------------------------------------------------------------------------------- /user_guide/libraries/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/input.html -------------------------------------------------------------------------------- /user_guide/libraries/language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/language.html -------------------------------------------------------------------------------- /user_guide/libraries/loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/loader.html -------------------------------------------------------------------------------- /user_guide/libraries/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/output.html -------------------------------------------------------------------------------- /user_guide/libraries/parser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/parser.html -------------------------------------------------------------------------------- /user_guide/libraries/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/security.html -------------------------------------------------------------------------------- /user_guide/libraries/sessions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/sessions.html -------------------------------------------------------------------------------- /user_guide/libraries/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/table.html -------------------------------------------------------------------------------- /user_guide/libraries/uri.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/uri.html -------------------------------------------------------------------------------- /user_guide/libraries/xmlrpc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/xmlrpc.html -------------------------------------------------------------------------------- /user_guide/libraries/zip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/libraries/zip.html -------------------------------------------------------------------------------- /user_guide/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/license.html -------------------------------------------------------------------------------- /user_guide/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/objects.inv -------------------------------------------------------------------------------- /user_guide/overview/appflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/overview/appflow.html -------------------------------------------------------------------------------- /user_guide/overview/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/overview/features.html -------------------------------------------------------------------------------- /user_guide/overview/goals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/overview/goals.html -------------------------------------------------------------------------------- /user_guide/overview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/overview/index.html -------------------------------------------------------------------------------- /user_guide/overview/mvc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/overview/mvc.html -------------------------------------------------------------------------------- /user_guide/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/search.html -------------------------------------------------------------------------------- /user_guide/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/searchindex.js -------------------------------------------------------------------------------- /user_guide/tutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madukubah/knn_algorithm/HEAD/user_guide/tutorial/index.html --------------------------------------------------------------------------------