├── README.md
└── advanced
├── .bowerrc
├── .gitignore
├── Events.php
├── LICENSE.md
├── README.md
├── Vagrantfile
├── admin
├── assets
│ └── AppAsset.php
├── config
│ ├── .gitignore
│ ├── bootstrap.php
│ ├── main.php
│ ├── params.php
│ └── test-local.php
├── controllers
│ ├── BaseAppController.php
│ └── SiteController.php
├── helpers
│ ├── AdminHelper.php
│ └── DataHelper.php
├── models
│ ├── .gitkeep
│ ├── AdminUserInfo.php
│ ├── AuthAssignment.php
│ ├── AuthItem.php
│ ├── AuthItemChild.php
│ ├── AuthRule.php
│ ├── BasePromotion.php
│ ├── ChildPromotion.php
│ └── Promotion.php
├── modules
│ ├── chat
│ │ ├── Module.php
│ │ ├── controllers
│ │ │ └── ListController.php
│ │ └── views
│ │ │ └── list
│ │ │ └── index.php
│ ├── course
│ │ ├── Module.php
│ │ ├── controllers
│ │ │ └── ListController.php
│ │ └── views
│ │ │ └── list
│ │ │ └── index.php
│ └── yy
│ │ ├── Module.php
│ │ ├── controllers
│ │ └── ListController.php
│ │ └── views
│ │ └── list
│ │ └── index.php
├── runtime
│ └── .gitignore
├── views
│ ├── layouts
│ │ ├── login.php
│ │ ├── main.php
│ │ └── test.php
│ └── site
│ │ ├── error.php
│ │ ├── home.php
│ │ ├── login.php
│ │ └── test.php
└── web
│ ├── .gitignore
│ ├── assets
│ └── .gitignore
│ ├── crossbrowserjs
│ ├── excanvas.min.js
│ ├── html5shiv.js
│ └── respond.min.js
│ ├── css
│ ├── animate.css
│ ├── animate.min.css
│ ├── invoice-print.css
│ ├── invoice-print.min.css
│ ├── media.css
│ ├── style-responsive.css
│ ├── style-responsive.min.css
│ ├── style.css
│ ├── style.min.css
│ └── theme
│ │ ├── black.css
│ │ ├── blue.css
│ │ ├── default.css
│ │ ├── orange.css
│ │ ├── purple.css
│ │ └── red.css
│ ├── favicon.ico
│ ├── images
│ ├── 4b403faaa9c437f659ec6a73130b37086358dd18.jpg
│ └── avatar.png
│ ├── js
│ ├── apps.js
│ ├── apps.min.js
│ ├── calendar.demo.js
│ ├── calendar.demo.min.js
│ ├── chart-d3.demo.js
│ ├── chart-d3.demo.min.js
│ ├── chart-flot.demo.js
│ ├── chart-flot.demo.min.js
│ ├── chart-js.demo.js
│ ├── chart-js.demo.min.js
│ ├── chart-morris.demo.js
│ ├── chart-morris.demo.min.js
│ ├── coming-soon.demo.js
│ ├── coming-soon.demo.min.js
│ ├── dashboard-v2.js
│ ├── dashboard-v2.min.js
│ ├── dashboard.js
│ ├── dashboard.min.js
│ ├── email-compose.demo.js
│ ├── email-compose.demo.min.js
│ ├── email-inbox-v2.demo.js
│ ├── email-inbox-v2.demo.min.js
│ ├── form-editable.js
│ ├── form-editable.min.js
│ ├── form-multiple-upload.demo.js
│ ├── form-multiple-upload.demo.min.js
│ ├── form-plugins.demo.js
│ ├── form-plugins.demo.min.js
│ ├── form-slider-switcher.demo.js
│ ├── form-slider-switcher.demo.min.js
│ ├── form-wizards-validation.demo.js
│ ├── form-wizards-validation.demo.min.js
│ ├── form-wizards.demo.js
│ ├── form-wizards.demo.min.js
│ ├── form-wysiwyg.demo.js
│ ├── form-wysiwyg.demo.min.js
│ ├── gallery-v2.demo.js
│ ├── gallery-v2.demo.min.js
│ ├── gallery.demo.js
│ ├── gallery.demo.min.js
│ ├── helpers
│ │ └── base-helper.js
│ ├── inbox.demo.js
│ ├── inbox.demo.min.js
│ ├── login-v2.js
│ ├── login.min.js
│ ├── map-google.demo.js
│ ├── map-google.demo.min.js
│ ├── map-vector.demo.js
│ ├── map-vector.demo.min.js
│ ├── page-with-two-sidebar.demo.js
│ ├── page-with-two-sidebar.demo.min.js
│ ├── table-manage-autofill.demo.js
│ ├── table-manage-autofill.demo.min.js
│ ├── table-manage-buttons.demo.js
│ ├── table-manage-buttons.demo.min.js
│ ├── table-manage-colreorder.demo.js
│ ├── table-manage-colreorder.demo.min.js
│ ├── table-manage-combine.demo.js
│ ├── table-manage-combine.demo.min.js
│ ├── table-manage-default.demo.js
│ ├── table-manage-default.demo.min.js
│ ├── table-manage-fixed-columns.demo.js
│ ├── table-manage-fixed-columns.demo.min.js
│ ├── table-manage-fixed-header.demo.js
│ ├── table-manage-fixed-header.demo.min.js
│ ├── table-manage-keytable.demo.js
│ ├── table-manage-keytable.demo.min.js
│ ├── table-manage-responsive.demo.js
│ ├── table-manage-responsive.demo.min.js
│ ├── table-manage-rowreorder.demo.js
│ ├── table-manage-rowreorder.demo.min.js
│ ├── table-manage-scroller.demo.js
│ ├── table-manage-scroller.demo.min.js
│ ├── table-manage-select.demo.js
│ ├── table-manage-select.demo.min.js
│ ├── timeline.demo.js
│ ├── timeline.demo.min.js
│ ├── ui-modal-notification.demo.js
│ ├── ui-modal-notification.demo.min.js
│ ├── ui-tree.demo.js
│ ├── ui-tree.demo.min.js
│ ├── webuploader.js
│ └── webuploader.nolog.min.js
│ ├── php-info.php
│ ├── plugins
│ ├── DataTables
│ │ ├── Contributing.md
│ │ ├── Readme.md
│ │ ├── examples
│ │ │ ├── advanced_init
│ │ │ │ ├── column_render.html
│ │ │ │ ├── complex_header.html
│ │ │ │ ├── defaults.html
│ │ │ │ ├── dom_multiple_elements.html
│ │ │ │ ├── dom_toolbar.html
│ │ │ │ ├── dt_events.html
│ │ │ │ ├── events_live.html
│ │ │ │ ├── footer_callback.html
│ │ │ │ ├── html5-data-attributes.html
│ │ │ │ ├── html5-data-options.html
│ │ │ │ ├── index.html
│ │ │ │ ├── language_file.html
│ │ │ │ ├── length_menu.html
│ │ │ │ ├── object_dom_read.html
│ │ │ │ ├── row_callback.html
│ │ │ │ ├── row_grouping.html
│ │ │ │ └── sort_direction_control.html
│ │ │ ├── ajax
│ │ │ │ ├── custom_data_flat.html
│ │ │ │ ├── custom_data_property.html
│ │ │ │ ├── data
│ │ │ │ │ ├── arrays.txt
│ │ │ │ │ ├── arrays_custom_prop.txt
│ │ │ │ │ ├── arrays_subobjects.txt
│ │ │ │ │ ├── objects.txt
│ │ │ │ │ ├── objects_deep.txt
│ │ │ │ │ ├── objects_root_array.txt
│ │ │ │ │ ├── objects_subarrays.txt
│ │ │ │ │ └── orthogonal.txt
│ │ │ │ ├── deep.html
│ │ │ │ ├── defer_render.html
│ │ │ │ ├── index.html
│ │ │ │ ├── null_data_source.html
│ │ │ │ ├── objects.html
│ │ │ │ ├── objects_subarrays.html
│ │ │ │ ├── orthogonal-data.html
│ │ │ │ └── simple.html
│ │ │ ├── api
│ │ │ │ ├── add_row.html
│ │ │ │ ├── api_in_init.html
│ │ │ │ ├── counter_columns.html
│ │ │ │ ├── form.html
│ │ │ │ ├── highlight.html
│ │ │ │ ├── index.html
│ │ │ │ ├── multi_filter.html
│ │ │ │ ├── multi_filter_select.html
│ │ │ │ ├── regex.html
│ │ │ │ ├── row_details.html
│ │ │ │ ├── select_row.html
│ │ │ │ ├── select_single_row.html
│ │ │ │ ├── show_hide.html
│ │ │ │ └── tabs_and_scrolling.html
│ │ │ ├── basic_init
│ │ │ │ ├── alt_pagination.html
│ │ │ │ ├── comma-decimal.html
│ │ │ │ ├── complex_header.html
│ │ │ │ ├── dom.html
│ │ │ │ ├── filter_only.html
│ │ │ │ ├── flexible_width.html
│ │ │ │ ├── hidden_columns.html
│ │ │ │ ├── index.html
│ │ │ │ ├── language.html
│ │ │ │ ├── multi_col_sort.html
│ │ │ │ ├── multiple_tables.html
│ │ │ │ ├── scroll_x.html
│ │ │ │ ├── scroll_xy.html
│ │ │ │ ├── scroll_y.html
│ │ │ │ ├── scroll_y_dynamic.html
│ │ │ │ ├── state_save.html
│ │ │ │ ├── table_sorting.html
│ │ │ │ └── zero_configuration.html
│ │ │ ├── data_sources
│ │ │ │ ├── ajax.html
│ │ │ │ ├── dom.html
│ │ │ │ ├── index.html
│ │ │ │ ├── js_array.html
│ │ │ │ └── server_side.html
│ │ │ ├── index.html
│ │ │ ├── plug-ins
│ │ │ │ ├── api.html
│ │ │ │ ├── dom_sort.html
│ │ │ │ ├── index.html
│ │ │ │ ├── range_filtering.html
│ │ │ │ ├── sorting_auto.html
│ │ │ │ └── sorting_manual.html
│ │ │ ├── resources
│ │ │ │ ├── demo.css
│ │ │ │ ├── demo.js
│ │ │ │ ├── details_close.png
│ │ │ │ ├── details_open.png
│ │ │ │ ├── examples.php
│ │ │ │ └── syntax
│ │ │ │ │ ├── Syntax Highlighter license
│ │ │ │ │ ├── shCore.css
│ │ │ │ │ └── shCore.js
│ │ │ ├── server_side
│ │ │ │ ├── custom_vars.html
│ │ │ │ ├── defer_loading.html
│ │ │ │ ├── ids.html
│ │ │ │ ├── index.html
│ │ │ │ ├── jsonp.html
│ │ │ │ ├── object_data.html
│ │ │ │ ├── pipeline.html
│ │ │ │ ├── post.html
│ │ │ │ ├── row_details.html
│ │ │ │ ├── scripts
│ │ │ │ │ ├── ids-arrays.php
│ │ │ │ │ ├── ids-objects.php
│ │ │ │ │ ├── jsonp.php
│ │ │ │ │ ├── mysql.sql
│ │ │ │ │ ├── objects.php
│ │ │ │ │ ├── post.php
│ │ │ │ │ ├── postgres.sql
│ │ │ │ │ ├── server_processing.php
│ │ │ │ │ ├── sqlite.sql
│ │ │ │ │ ├── sqlserver.sql
│ │ │ │ │ └── ssp.class.php
│ │ │ │ ├── select_rows.html
│ │ │ │ └── simple.html
│ │ │ └── styling
│ │ │ │ ├── bootstrap.html
│ │ │ │ ├── cell-border.html
│ │ │ │ ├── compact.html
│ │ │ │ ├── display.html
│ │ │ │ ├── foundation.html
│ │ │ │ ├── hover.html
│ │ │ │ ├── index.html
│ │ │ │ ├── jqueryUI.html
│ │ │ │ ├── no-classes.html
│ │ │ │ ├── order-column.html
│ │ │ │ ├── row-border.html
│ │ │ │ └── stripe.html
│ │ ├── extensions
│ │ │ ├── AutoFill
│ │ │ │ ├── License.txt
│ │ │ │ ├── Readme.md
│ │ │ │ ├── css
│ │ │ │ │ ├── autoFill.bootstrap.css
│ │ │ │ │ ├── autoFill.bootstrap.min.css
│ │ │ │ │ ├── autoFill.dataTables.css
│ │ │ │ │ ├── autoFill.dataTables.min.css
│ │ │ │ │ ├── autoFill.foundation.css
│ │ │ │ │ ├── autoFill.foundation.min.css
│ │ │ │ │ ├── autoFill.jqueryui.css
│ │ │ │ │ └── autoFill.jqueryui.min.css
│ │ │ │ ├── examples
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── initialisation
│ │ │ │ │ │ ├── alwaysAsk.html
│ │ │ │ │ │ ├── columns.html
│ │ │ │ │ │ ├── events.html
│ │ │ │ │ │ ├── fills.html
│ │ │ │ │ │ ├── focus.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── keyTable.html
│ │ │ │ │ │ ├── plugins.html
│ │ │ │ │ │ ├── scrolling.html
│ │ │ │ │ │ └── simple.html
│ │ │ │ │ └── styling
│ │ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ │ ├── foundation.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── jqueryui.html
│ │ │ │ └── js
│ │ │ │ │ ├── autoFill.bootstrap.js
│ │ │ │ │ ├── autoFill.bootstrap.min.js
│ │ │ │ │ ├── autoFill.foundation.js
│ │ │ │ │ ├── autoFill.foundation.min.js
│ │ │ │ │ ├── autoFill.jqueryui.js
│ │ │ │ │ ├── autoFill.jqueryui.min.js
│ │ │ │ │ ├── dataTables.autoFill.js
│ │ │ │ │ └── dataTables.autoFill.min.js
│ │ │ ├── Buttons
│ │ │ │ ├── License.txt
│ │ │ │ ├── Readme.md
│ │ │ │ ├── css
│ │ │ │ │ ├── buttons.bootstrap.css
│ │ │ │ │ ├── buttons.bootstrap.min.css
│ │ │ │ │ ├── buttons.dataTables.css
│ │ │ │ │ ├── buttons.dataTables.min.css
│ │ │ │ │ ├── buttons.foundation.css
│ │ │ │ │ ├── buttons.foundation.min.css
│ │ │ │ │ ├── buttons.jqueryui.css
│ │ │ │ │ ├── buttons.jqueryui.min.css
│ │ │ │ │ ├── common.scss
│ │ │ │ │ └── mixins.scss
│ │ │ │ ├── examples
│ │ │ │ │ ├── api
│ │ │ │ │ │ ├── addRemove.html
│ │ │ │ │ │ ├── enable.html
│ │ │ │ │ │ ├── group.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── text.html
│ │ │ │ │ ├── column_visibility
│ │ │ │ │ │ ├── columnGroups.html
│ │ │ │ │ │ ├── columns.html
│ │ │ │ │ │ ├── columnsToggle.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── layout.html
│ │ │ │ │ │ ├── restore.html
│ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ ├── stateSave.html
│ │ │ │ │ │ └── text.html
│ │ │ │ │ ├── flash
│ │ │ │ │ │ ├── copyi18n.html
│ │ │ │ │ │ ├── filename.html
│ │ │ │ │ │ ├── hidden.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── pdfMessage.html
│ │ │ │ │ │ ├── pdfPage.html
│ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ ├── swfPath.html
│ │ │ │ │ │ └── tsv.html
│ │ │ │ │ ├── html5
│ │ │ │ │ │ ├── columns.html
│ │ │ │ │ │ ├── copyi18n.html
│ │ │ │ │ │ ├── filename.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── outputFormat-function.html
│ │ │ │ │ │ ├── outputFormat-orthogonal.html
│ │ │ │ │ │ ├── pdfImage.html
│ │ │ │ │ │ ├── pdfMessage.html
│ │ │ │ │ │ ├── pdfOpen.html
│ │ │ │ │ │ ├── pdfPage.html
│ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ └── tsv.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── initialisation
│ │ │ │ │ │ ├── className.html
│ │ │ │ │ │ ├── collections-sub.html
│ │ │ │ │ │ ├── collections.html
│ │ │ │ │ │ ├── custom.html
│ │ │ │ │ │ ├── export.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── keys.html
│ │ │ │ │ │ ├── multiple.html
│ │ │ │ │ │ ├── new.html
│ │ │ │ │ │ ├── pageLength.html
│ │ │ │ │ │ ├── plugins.html
│ │ │ │ │ │ └── simple.html
│ │ │ │ │ ├── print
│ │ │ │ │ │ ├── autoPrint.html
│ │ │ │ │ │ ├── columns.html
│ │ │ │ │ │ ├── customisation.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── message.html
│ │ │ │ │ │ ├── select.html
│ │ │ │ │ │ └── simple.html
│ │ │ │ │ └── styling
│ │ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ │ ├── foundation.html
│ │ │ │ │ │ ├── icons.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── jqueryui.html
│ │ │ │ ├── js
│ │ │ │ │ ├── buttons.bootstrap.js
│ │ │ │ │ ├── buttons.bootstrap.min.js
│ │ │ │ │ ├── buttons.colVis.js
│ │ │ │ │ ├── buttons.colVis.min.js
│ │ │ │ │ ├── buttons.flash.js
│ │ │ │ │ ├── buttons.flash.min.js
│ │ │ │ │ ├── buttons.foundation.js
│ │ │ │ │ ├── buttons.foundation.min.js
│ │ │ │ │ ├── buttons.html5.js
│ │ │ │ │ ├── buttons.html5.min.js
│ │ │ │ │ ├── buttons.jqueryui.js
│ │ │ │ │ ├── buttons.jqueryui.min.js
│ │ │ │ │ ├── buttons.print.js
│ │ │ │ │ ├── buttons.print.min.js
│ │ │ │ │ ├── dataTables.buttons.js
│ │ │ │ │ ├── dataTables.buttons.min.js
│ │ │ │ │ ├── jszip.min.js
│ │ │ │ │ ├── pdfmake.min.js
│ │ │ │ │ └── vfs_fonts.min.js
│ │ │ │ └── swf
│ │ │ │ │ └── flashExport.swf
│ │ │ ├── ColReorder
│ │ │ │ ├── License.txt
│ │ │ │ ├── Readme.md
│ │ │ │ ├── css
│ │ │ │ │ ├── colReorder.bootstrap.css
│ │ │ │ │ ├── colReorder.bootstrap.min.css
│ │ │ │ │ ├── colReorder.dataTables.css
│ │ │ │ │ ├── colReorder.dataTables.min.css
│ │ │ │ │ ├── colReorder.foundation.css
│ │ │ │ │ ├── colReorder.foundation.min.css
│ │ │ │ │ ├── colReorder.jqueryui.css
│ │ │ │ │ └── colReorder.jqueryui.min.css
│ │ │ │ ├── examples
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── initialisation
│ │ │ │ │ │ ├── col_filter.html
│ │ │ │ │ │ ├── new_init.html
│ │ │ │ │ │ ├── predefined.html
│ │ │ │ │ │ ├── realtime.html
│ │ │ │ │ │ ├── reset.html
│ │ │ │ │ │ ├── scrolling.html
│ │ │ │ │ │ └── simple.html
│ │ │ │ │ ├── integration
│ │ │ │ │ │ ├── colvis.html
│ │ │ │ │ │ ├── fixedcolumns.html
│ │ │ │ │ │ ├── fixedheader.html
│ │ │ │ │ │ ├── server_side.html
│ │ │ │ │ │ └── state_save.html
│ │ │ │ │ └── styling
│ │ │ │ │ │ ├── alt_insert.html
│ │ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ │ ├── foundation.html
│ │ │ │ │ │ └── jqueryui.html
│ │ │ │ └── js
│ │ │ │ │ ├── dataTables.colReorder.js
│ │ │ │ │ └── dataTables.colReorder.min.js
│ │ │ ├── FixedColumns
│ │ │ │ ├── License.txt
│ │ │ │ ├── Readme.md
│ │ │ │ ├── css
│ │ │ │ │ ├── fixedColumns.bootstrap.css
│ │ │ │ │ ├── fixedColumns.bootstrap.min.css
│ │ │ │ │ ├── fixedColumns.dataTables.css
│ │ │ │ │ ├── fixedColumns.dataTables.min.css
│ │ │ │ │ ├── fixedColumns.foundation.css
│ │ │ │ │ ├── fixedColumns.foundation.min.css
│ │ │ │ │ ├── fixedColumns.jqueryui.css
│ │ │ │ │ └── fixedColumns.jqueryui.min.css
│ │ │ │ ├── examples
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── initialisation
│ │ │ │ │ │ ├── colvis.html
│ │ │ │ │ │ ├── css_size.html
│ │ │ │ │ │ ├── index_column.html
│ │ │ │ │ │ ├── left_right_columns.html
│ │ │ │ │ │ ├── right_column.html
│ │ │ │ │ │ ├── server-side-processing.html
│ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ ├── size_fixed.html
│ │ │ │ │ │ ├── size_fluid.html
│ │ │ │ │ │ └── two_columns.html
│ │ │ │ │ └── styling
│ │ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ │ ├── col_filter.html
│ │ │ │ │ │ ├── colvis.html
│ │ │ │ │ │ ├── foundation.html
│ │ │ │ │ │ ├── jqueryui.html
│ │ │ │ │ │ ├── rowspan.html
│ │ │ │ │ │ └── server-side-processing.html
│ │ │ │ └── js
│ │ │ │ │ ├── dataTables.fixedColumns.js
│ │ │ │ │ └── dataTables.fixedColumns.min.js
│ │ │ ├── FixedHeader
│ │ │ │ ├── License.txt
│ │ │ │ ├── Readme.md
│ │ │ │ ├── css
│ │ │ │ │ ├── fixedHeader.bootstrap.css
│ │ │ │ │ ├── fixedHeader.bootstrap.min.css
│ │ │ │ │ ├── fixedHeader.dataTables.css
│ │ │ │ │ ├── fixedHeader.dataTables.min.css
│ │ │ │ │ ├── fixedHeader.foundation.css
│ │ │ │ │ ├── fixedHeader.foundation.min.css
│ │ │ │ │ ├── fixedHeader.jqueryui.css
│ │ │ │ │ └── fixedHeader.jqueryui.min.css
│ │ │ │ ├── examples
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── integration
│ │ │ │ │ │ ├── colreorder.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── responsive.html
│ │ │ │ │ ├── options
│ │ │ │ │ │ ├── enable-disable.html
│ │ │ │ │ │ ├── header_footer.html
│ │ │ │ │ │ ├── horizontal-scroll.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── new.html
│ │ │ │ │ │ ├── offset.html
│ │ │ │ │ │ ├── show-hide.html
│ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ └── two_tables.html
│ │ │ │ │ └── styling
│ │ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ │ ├── foundation.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── jqueryui.html
│ │ │ │ └── js
│ │ │ │ │ ├── dataTables.fixedHeader.js
│ │ │ │ │ └── dataTables.fixedHeader.min.js
│ │ │ ├── KeyTable
│ │ │ │ ├── License.txt
│ │ │ │ ├── Readme.md
│ │ │ │ ├── css
│ │ │ │ │ ├── keyTable.bootstrap.css
│ │ │ │ │ ├── keyTable.bootstrap.min.css
│ │ │ │ │ ├── keyTable.dataTables.css
│ │ │ │ │ ├── keyTable.dataTables.min.css
│ │ │ │ │ ├── keyTable.foundation.css
│ │ │ │ │ ├── keyTable.foundation.min.css
│ │ │ │ │ ├── keyTable.jqueryui.css
│ │ │ │ │ └── keyTable.jqueryui.min.css
│ │ │ │ ├── examples
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── initialisation
│ │ │ │ │ │ ├── events.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── scrolling.html
│ │ │ │ │ │ ├── server-side.html
│ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ └── stateSave.html
│ │ │ │ │ └── styling
│ │ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ │ ├── focusStyle.html
│ │ │ │ │ │ ├── foundation.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── jqueryui.html
│ │ │ │ └── js
│ │ │ │ │ ├── dataTables.keyTable.js
│ │ │ │ │ └── dataTables.keyTable.min.js
│ │ │ ├── Responsive
│ │ │ │ ├── License.txt
│ │ │ │ ├── Readme.md
│ │ │ │ ├── css
│ │ │ │ │ ├── responsive.bootstrap.css
│ │ │ │ │ ├── responsive.bootstrap.min.css
│ │ │ │ │ ├── responsive.dataTables.css
│ │ │ │ │ ├── responsive.dataTables.min.css
│ │ │ │ │ ├── responsive.foundation.css
│ │ │ │ │ ├── responsive.foundation.min.css
│ │ │ │ │ ├── responsive.jqueryui.css
│ │ │ │ │ └── responsive.jqueryui.min.css
│ │ │ │ ├── examples
│ │ │ │ │ ├── child-rows
│ │ │ │ │ │ ├── column-control.html
│ │ │ │ │ │ ├── custom-renderer.html
│ │ │ │ │ │ ├── disable-child-rows.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── right-column.html
│ │ │ │ │ │ └── whole-row-control.html
│ │ │ │ │ ├── column-control
│ │ │ │ │ │ ├── auto.html
│ │ │ │ │ │ ├── classes.html
│ │ │ │ │ │ ├── colreorder.html
│ │ │ │ │ │ ├── column-visibility.html
│ │ │ │ │ │ ├── columnPriority.html
│ │ │ │ │ │ ├── fixedHeader.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── init-classes.html
│ │ │ │ │ ├── display-types
│ │ │ │ │ │ ├── bootstrap-modal.html
│ │ │ │ │ │ ├── foundation-modal.html
│ │ │ │ │ │ ├── immediateShow.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── jqueryui-modal.html
│ │ │ │ │ │ └── modal.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── initialisation
│ │ │ │ │ │ ├── ajax.html
│ │ │ │ │ │ ├── className.html
│ │ │ │ │ │ ├── default.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── new.html
│ │ │ │ │ │ └── option.html
│ │ │ │ │ └── styling
│ │ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ │ ├── compact.html
│ │ │ │ │ │ ├── foundation.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── jqueryui.html
│ │ │ │ │ │ └── scrolling.html
│ │ │ │ └── js
│ │ │ │ │ ├── dataTables.responsive.js
│ │ │ │ │ ├── dataTables.responsive.min.js
│ │ │ │ │ ├── responsive.bootstrap.js
│ │ │ │ │ ├── responsive.bootstrap.min.js
│ │ │ │ │ ├── responsive.foundation.js
│ │ │ │ │ ├── responsive.foundation.min.js
│ │ │ │ │ ├── responsive.jqueryui.js
│ │ │ │ │ └── responsive.jqueryui.min.js
│ │ │ ├── RowReorder
│ │ │ │ ├── License.txt
│ │ │ │ ├── Readme.md
│ │ │ │ ├── css
│ │ │ │ │ ├── rowReorder.bootstrap.css
│ │ │ │ │ ├── rowReorder.bootstrap.min.css
│ │ │ │ │ ├── rowReorder.dataTables.css
│ │ │ │ │ ├── rowReorder.dataTables.min.css
│ │ │ │ │ ├── rowReorder.foundation.css
│ │ │ │ │ ├── rowReorder.foundation.min.css
│ │ │ │ │ ├── rowReorder.jqueryui.css
│ │ │ │ │ └── rowReorder.jqueryui.min.css
│ │ │ │ ├── examples
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── initialisation
│ │ │ │ │ │ ├── defaults.html
│ │ │ │ │ │ ├── events.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── responsive.html
│ │ │ │ │ │ ├── restrictedOrdering.html
│ │ │ │ │ │ ├── selector.html
│ │ │ │ │ │ └── simple.html
│ │ │ │ │ └── styling
│ │ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ │ ├── foundation.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── jqueryui.html
│ │ │ │ │ │ ├── reorderClass.html
│ │ │ │ │ │ └── snapX.html
│ │ │ │ └── js
│ │ │ │ │ ├── dataTables.rowReorder.js
│ │ │ │ │ └── dataTables.rowReorder.min.js
│ │ │ ├── Scroller
│ │ │ │ ├── License.txt
│ │ │ │ ├── Readme.md
│ │ │ │ ├── css
│ │ │ │ │ ├── scroller.bootstrap.css
│ │ │ │ │ ├── scroller.bootstrap.min.css
│ │ │ │ │ ├── scroller.dataTables.css
│ │ │ │ │ ├── scroller.dataTables.min.css
│ │ │ │ │ ├── scroller.foundation.css
│ │ │ │ │ ├── scroller.foundation.min.css
│ │ │ │ │ ├── scroller.jqueryui.css
│ │ │ │ │ └── scroller.jqueryui.min.css
│ │ │ │ ├── examples
│ │ │ │ │ ├── data
│ │ │ │ │ │ ├── 2500.txt
│ │ │ │ │ │ └── ssp.php
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── initialisation
│ │ │ │ │ │ ├── api_scrolling.html
│ │ │ │ │ │ ├── fixedColumns.html
│ │ │ │ │ │ ├── large_js_source.html
│ │ │ │ │ │ ├── server-side_processing.html
│ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ └── state_saving.html
│ │ │ │ │ └── styling
│ │ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ │ ├── foundation.html
│ │ │ │ │ │ └── jqueryui.html
│ │ │ │ └── js
│ │ │ │ │ ├── dataTables.scroller.js
│ │ │ │ │ └── dataTables.scroller.min.js
│ │ │ └── Select
│ │ │ │ ├── License.txt
│ │ │ │ ├── Readme.md
│ │ │ │ ├── css
│ │ │ │ ├── select.bootstrap.css
│ │ │ │ ├── select.bootstrap.min.css
│ │ │ │ ├── select.dataTables.css
│ │ │ │ ├── select.dataTables.min.css
│ │ │ │ ├── select.foundation.css
│ │ │ │ ├── select.foundation.min.css
│ │ │ │ ├── select.jqueryui.css
│ │ │ │ └── select.jqueryui.min.css
│ │ │ │ ├── examples
│ │ │ │ ├── api
│ │ │ │ │ ├── events.html
│ │ │ │ │ ├── get.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── select.html
│ │ │ │ ├── index.html
│ │ │ │ ├── initialisation
│ │ │ │ │ ├── blurable.html
│ │ │ │ │ ├── buttons.html
│ │ │ │ │ ├── cells.html
│ │ │ │ │ ├── checkbox.html
│ │ │ │ │ ├── deferRender.html
│ │ │ │ │ ├── i18n.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── multi.html
│ │ │ │ │ ├── reload.html
│ │ │ │ │ ├── simple.html
│ │ │ │ │ └── single.html
│ │ │ │ └── styling
│ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ ├── foundation.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── jqueryui.html
│ │ │ │ └── js
│ │ │ │ ├── dataTables.select.js
│ │ │ │ └── dataTables.select.min.js
│ │ ├── license.txt
│ │ └── media
│ │ │ ├── css
│ │ │ ├── dataTables.bootstrap.css
│ │ │ ├── dataTables.bootstrap.min.css
│ │ │ ├── dataTables.foundation.css
│ │ │ ├── dataTables.foundation.min.css
│ │ │ ├── dataTables.jqueryui.css
│ │ │ ├── dataTables.jqueryui.min.css
│ │ │ ├── jquery.dataTables.css
│ │ │ ├── jquery.dataTables.min.css
│ │ │ └── jquery.dataTables_themeroller.css
│ │ │ ├── images
│ │ │ ├── Sorting icons.psd
│ │ │ ├── favicon.ico
│ │ │ ├── sort_asc.png
│ │ │ ├── sort_asc_disabled.png
│ │ │ ├── sort_both.png
│ │ │ ├── sort_desc.png
│ │ │ └── sort_desc_disabled.png
│ │ │ └── js
│ │ │ ├── dataTables.bootstrap.js
│ │ │ ├── dataTables.bootstrap.min.js
│ │ │ ├── dataTables.foundation.js
│ │ │ ├── dataTables.foundation.min.js
│ │ │ ├── dataTables.jqueryui.js
│ │ │ ├── dataTables.jqueryui.min.js
│ │ │ ├── jquery.dataTables.js
│ │ │ ├── jquery.dataTables.min.js
│ │ │ └── jquery.js
│ ├── bootstrap-calendar
│ │ ├── css
│ │ │ └── bootstrap_calendar.css
│ │ ├── example
│ │ │ ├── index.html
│ │ │ ├── json.php
│ │ │ └── lib
│ │ │ │ ├── css
│ │ │ │ ├── bootstrap-responsive.css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── font-awesome-ie7.min.css
│ │ │ │ └── font-awesome.min.css
│ │ │ │ ├── font
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ └── fontawesome-webfont.woff
│ │ │ │ ├── img
│ │ │ │ ├── glyphicons-halflings-white.png
│ │ │ │ ├── glyphicons-halflings.png
│ │ │ │ └── grid-18px-masked.png
│ │ │ │ └── js
│ │ │ │ ├── bootstrap.js
│ │ │ │ └── bootstrap.min.js
│ │ └── js
│ │ │ ├── bootstrap_calendar.js
│ │ │ └── bootstrap_calendar.min.js
│ ├── bootstrap-colorpicker
│ │ ├── css
│ │ │ ├── bootstrap-colorpicker.css
│ │ │ └── bootstrap-colorpicker.min.css
│ │ ├── img
│ │ │ └── bootstrap-colorpicker
│ │ │ │ ├── alpha.png
│ │ │ │ ├── hue.png
│ │ │ │ └── saturation.png
│ │ ├── js
│ │ │ ├── bootstrap-colorpicker.js
│ │ │ ├── bootstrap-colorpicker.min.js
│ │ │ └── commits.js
│ │ └── less
│ │ │ └── bootstrap-colorpicker.less
│ ├── bootstrap-combobox
│ │ ├── README.md
│ │ ├── css
│ │ │ └── bootstrap-combobox.css
│ │ ├── js
│ │ │ ├── bootstrap-combobox.js
│ │ │ └── tests
│ │ │ │ ├── index.html
│ │ │ │ ├── unit
│ │ │ │ └── bootstrap-combobox.js
│ │ │ │ └── vendor
│ │ │ │ ├── jquery.js
│ │ │ │ ├── qunit.css
│ │ │ │ └── qunit.js
│ │ └── less
│ │ │ └── combobox.less
│ ├── bootstrap-datepicker
│ │ ├── Gruntfile.js
│ │ ├── build
│ │ │ ├── build.less
│ │ │ ├── build3.less
│ │ │ ├── build_standalone.less
│ │ │ └── build_standalone3.less
│ │ ├── css
│ │ │ ├── datepicker.css
│ │ │ └── datepicker3.css
│ │ ├── js
│ │ │ ├── bootstrap-datepicker.js
│ │ │ └── locales
│ │ │ │ ├── bootstrap-datepicker.ar.js
│ │ │ │ ├── bootstrap-datepicker.az.js
│ │ │ │ ├── bootstrap-datepicker.bg.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.es.js
│ │ │ │ ├── bootstrap-datepicker.et.js
│ │ │ │ ├── bootstrap-datepicker.fa.js
│ │ │ │ ├── bootstrap-datepicker.fi.js
│ │ │ │ ├── bootstrap-datepicker.fr.js
│ │ │ │ ├── bootstrap-datepicker.gl.js
│ │ │ │ ├── bootstrap-datepicker.he.js
│ │ │ │ ├── bootstrap-datepicker.hr.js
│ │ │ │ ├── bootstrap-datepicker.hu.js
│ │ │ │ ├── bootstrap-datepicker.id.js
│ │ │ │ ├── bootstrap-datepicker.is.js
│ │ │ │ ├── bootstrap-datepicker.it.js
│ │ │ │ ├── bootstrap-datepicker.ja.js
│ │ │ │ ├── bootstrap-datepicker.ka.js
│ │ │ │ ├── bootstrap-datepicker.kk.js
│ │ │ │ ├── bootstrap-datepicker.kr.js
│ │ │ │ ├── bootstrap-datepicker.lt.js
│ │ │ │ ├── bootstrap-datepicker.lv.js
│ │ │ │ ├── bootstrap-datepicker.mk.js
│ │ │ │ ├── bootstrap-datepicker.ms.js
│ │ │ │ ├── bootstrap-datepicker.nb.js
│ │ │ │ ├── bootstrap-datepicker.nl-BE.js
│ │ │ │ ├── bootstrap-datepicker.nl.js
│ │ │ │ ├── bootstrap-datepicker.no.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.sk.js
│ │ │ │ ├── bootstrap-datepicker.sl.js
│ │ │ │ ├── bootstrap-datepicker.sq.js
│ │ │ │ ├── bootstrap-datepicker.sv.js
│ │ │ │ ├── bootstrap-datepicker.sw.js
│ │ │ │ ├── bootstrap-datepicker.th.js
│ │ │ │ ├── bootstrap-datepicker.tr.js
│ │ │ │ ├── bootstrap-datepicker.ua.js
│ │ │ │ ├── bootstrap-datepicker.vi.js
│ │ │ │ ├── bootstrap-datepicker.zh-CN.js
│ │ │ │ └── bootstrap-datepicker.zh-TW.js
│ │ └── less
│ │ │ ├── datepicker.less
│ │ │ └── datepicker3.less
│ ├── bootstrap-daterangepicker
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── daterangepicker-bs2.css
│ │ ├── daterangepicker-bs3.css
│ │ ├── daterangepicker.js
│ │ ├── examples.html
│ │ ├── lang
│ │ │ └── zh-cn.js
│ │ ├── moment.js
│ │ ├── moment.min.js
│ │ └── package.json
│ ├── bootstrap-datetimepicker
│ │ ├── css
│ │ │ ├── bootstrap-datetimepicker.css
│ │ │ └── bootstrap-datetimepicker.min.css
│ │ ├── js
│ │ │ ├── bootstrap-datetimepicker.js
│ │ │ ├── bootstrap-datetimepicker.min.js
│ │ │ └── locales
│ │ │ │ ├── bootstrap-datetimepicker.ar.js
│ │ │ │ ├── bootstrap-datetimepicker.az.js
│ │ │ │ ├── bootstrap-datetimepicker.bg.js
│ │ │ │ ├── bootstrap-datetimepicker.bn.js
│ │ │ │ ├── bootstrap-datetimepicker.ca.js
│ │ │ │ ├── bootstrap-datetimepicker.cs.js
│ │ │ │ ├── bootstrap-datetimepicker.da.js
│ │ │ │ ├── bootstrap-datetimepicker.de.js
│ │ │ │ ├── bootstrap-datetimepicker.ee.js
│ │ │ │ ├── bootstrap-datetimepicker.el.js
│ │ │ │ ├── bootstrap-datetimepicker.es.js
│ │ │ │ ├── bootstrap-datetimepicker.fi.js
│ │ │ │ ├── bootstrap-datetimepicker.fr.js
│ │ │ │ ├── bootstrap-datetimepicker.he.js
│ │ │ │ ├── bootstrap-datetimepicker.hr.js
│ │ │ │ ├── bootstrap-datetimepicker.hu.js
│ │ │ │ ├── bootstrap-datetimepicker.hy.js
│ │ │ │ ├── bootstrap-datetimepicker.id.js
│ │ │ │ ├── bootstrap-datetimepicker.is.js
│ │ │ │ ├── bootstrap-datetimepicker.it.js
│ │ │ │ ├── bootstrap-datetimepicker.ja.js
│ │ │ │ ├── bootstrap-datetimepicker.ka.js
│ │ │ │ ├── bootstrap-datetimepicker.ko.js
│ │ │ │ ├── bootstrap-datetimepicker.lt.js
│ │ │ │ ├── bootstrap-datetimepicker.lv.js
│ │ │ │ ├── bootstrap-datetimepicker.ms.js
│ │ │ │ ├── bootstrap-datetimepicker.nb.js
│ │ │ │ ├── bootstrap-datetimepicker.nl.js
│ │ │ │ ├── bootstrap-datetimepicker.no.js
│ │ │ │ ├── bootstrap-datetimepicker.pl.js
│ │ │ │ ├── bootstrap-datetimepicker.pt-BR.js
│ │ │ │ ├── bootstrap-datetimepicker.pt.js
│ │ │ │ ├── bootstrap-datetimepicker.ro.js
│ │ │ │ ├── bootstrap-datetimepicker.rs-latin.js
│ │ │ │ ├── bootstrap-datetimepicker.rs.js
│ │ │ │ ├── bootstrap-datetimepicker.ru.js
│ │ │ │ ├── bootstrap-datetimepicker.sk.js
│ │ │ │ ├── bootstrap-datetimepicker.sl.js
│ │ │ │ ├── bootstrap-datetimepicker.sv.js
│ │ │ │ ├── bootstrap-datetimepicker.sw.js
│ │ │ │ ├── bootstrap-datetimepicker.th.js
│ │ │ │ ├── bootstrap-datetimepicker.tr.js
│ │ │ │ ├── bootstrap-datetimepicker.ua.js
│ │ │ │ ├── bootstrap-datetimepicker.uk.js
│ │ │ │ ├── bootstrap-datetimepicker.zh-CN.js
│ │ │ │ └── bootstrap-datetimepicker.zh-TW.js
│ │ └── less
│ │ │ └── datetimepicker.less
│ ├── bootstrap-eonasdan-datetimepicker
│ │ ├── .jscs.json
│ │ ├── .npmignore
│ │ ├── .travis.yml
│ │ ├── CONTRIBUTING.md
│ │ ├── Gruntfile.js
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── build
│ │ │ ├── css
│ │ │ │ ├── bootstrap-datetimepicker.css
│ │ │ │ └── bootstrap-datetimepicker.min.css
│ │ │ └── js
│ │ │ │ └── bootstrap-datetimepicker.min.js
│ │ ├── component.json
│ │ ├── composer.json
│ │ ├── docs
│ │ │ ├── ChangeLog.md
│ │ │ ├── ContributorsGuide.md
│ │ │ ├── Events.md
│ │ │ ├── Extras.md
│ │ │ ├── Functions.md
│ │ │ ├── Installing.md
│ │ │ ├── Options.md
│ │ │ ├── Version 4 Changelog.md
│ │ │ ├── Version 4 Contributors guide.md
│ │ │ └── index.md
│ │ ├── mkdocs.yml
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── js
│ │ │ │ └── bootstrap-datetimepicker.js
│ │ │ ├── less
│ │ │ │ ├── _bootstrap-datetimepicker.less
│ │ │ │ └── bootstrap-datetimepicker-build.less
│ │ │ ├── nuget
│ │ │ │ ├── Bootstrap.v3.Datetimepicker.CSS.nuspec
│ │ │ │ ├── Bootstrap.v3.Datetimepicker.nuspec
│ │ │ │ └── install.ps1
│ │ │ └── sass
│ │ │ │ ├── _bootstrap-datetimepicker.scss
│ │ │ │ └── bootstrap-datetimepicker-build.scss
│ │ ├── tasks
│ │ │ └── bump_version.js
│ │ └── test
│ │ │ ├── publicApiSpec.js
│ │ │ └── screen-capture
│ │ │ ├── base.html
│ │ │ ├── compile.js
│ │ │ ├── index.js
│ │ │ ├── t1.html
│ │ │ ├── t2.html
│ │ │ ├── t3.html
│ │ │ ├── t4.html
│ │ │ └── t5.html
│ ├── bootstrap-select
│ │ ├── bootstrap-select.css
│ │ ├── bootstrap-select.jquery.json
│ │ ├── bootstrap-select.js
│ │ ├── bootstrap-select.min.css
│ │ └── bootstrap-select.min.js
│ ├── bootstrap-tagsinput
│ │ ├── bootstrap-tagsinput-angular.js
│ │ ├── bootstrap-tagsinput-typeahead.js
│ │ ├── bootstrap-tagsinput.css
│ │ ├── bootstrap-tagsinput.js
│ │ ├── bootstrap-tagsinput.less
│ │ ├── bootstrap-tagsinput.min.js
│ │ ├── bootstrap-tagsinput.min.js.map
│ │ └── cities.json
│ ├── bootstrap-timepicker
│ │ ├── Gruntfile.js
│ │ ├── css
│ │ │ ├── bootstrap-timepicker.css
│ │ │ └── bootstrap-timepicker.min.css
│ │ ├── js
│ │ │ ├── bootstrap-timepicker.js
│ │ │ └── bootstrap-timepicker.min.js
│ │ ├── less
│ │ │ └── timepicker.less
│ │ └── spec
│ │ │ └── js
│ │ │ ├── KeyboardEventsSpec.js
│ │ │ ├── MouseEventsSpec.js
│ │ │ ├── TimepickerSpec.js
│ │ │ ├── fixtures
│ │ │ └── timepicker.html
│ │ │ └── helpers
│ │ │ ├── SpecHelper.js
│ │ │ └── jasmine-jquery.js
│ ├── bootstrap-wizard
│ │ ├── css
│ │ │ ├── bwizard.css
│ │ │ └── bwizard.min.css
│ │ └── js
│ │ │ ├── bwizard.js
│ │ │ ├── bwizard.min.js
│ │ │ └── external
│ │ │ ├── jquery.cookie.js
│ │ │ ├── jquery.cookie.min.js
│ │ │ ├── jquery.ui.widget.js
│ │ │ └── jquery.ui.widget.min.js
│ ├── bootstrap-wysihtml5
│ │ ├── dist
│ │ │ ├── bootstrap-wysihtml5-0.0.2.css
│ │ │ ├── bootstrap-wysihtml5-0.0.2.js
│ │ │ └── bootstrap-wysihtml5-0.0.2.min.js
│ │ ├── index.html
│ │ ├── lib
│ │ │ ├── css
│ │ │ │ ├── bootstrap-responsive.css
│ │ │ │ ├── bootstrap-responsive.min.css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── prettify.css
│ │ │ │ └── wysiwyg-color.css
│ │ │ ├── img
│ │ │ │ ├── glyphicons-halflings-white.png
│ │ │ │ └── glyphicons-halflings.png
│ │ │ └── js
│ │ │ │ ├── bootstrap-button.js
│ │ │ │ ├── bootstrap.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── jquery-1.7.2.min.js
│ │ │ │ ├── prettify.js
│ │ │ │ ├── wysihtml5-0.3.0.js
│ │ │ │ └── wysihtml5-0.3.0.min.js
│ │ └── src
│ │ │ ├── bootstrap-wysihtml5.css
│ │ │ ├── bootstrap-wysihtml5.js
│ │ │ └── locales
│ │ │ ├── bootstrap-wysihtml5.ar-AR.js
│ │ │ ├── bootstrap-wysihtml5.bg-BG.js
│ │ │ ├── bootstrap-wysihtml5.ca-CT.js
│ │ │ ├── bootstrap-wysihtml5.cs-CZ.js
│ │ │ ├── bootstrap-wysihtml5.da-DK.js
│ │ │ ├── bootstrap-wysihtml5.de-DE.js
│ │ │ ├── bootstrap-wysihtml5.el-GR.js
│ │ │ ├── bootstrap-wysihtml5.es-AR.js
│ │ │ ├── bootstrap-wysihtml5.es-ES.js
│ │ │ ├── bootstrap-wysihtml5.fr-FR.js
│ │ │ ├── bootstrap-wysihtml5.hr-HR.js
│ │ │ ├── bootstrap-wysihtml5.it-IT.js
│ │ │ ├── bootstrap-wysihtml5.ja-JP.js
│ │ │ ├── bootstrap-wysihtml5.ko-KR.js
│ │ │ ├── bootstrap-wysihtml5.lt-LT.js
│ │ │ ├── bootstrap-wysihtml5.mo-MD.js
│ │ │ ├── bootstrap-wysihtml5.nb-NB.js
│ │ │ ├── bootstrap-wysihtml5.nl-NL.js
│ │ │ ├── bootstrap-wysihtml5.pl-PL.js
│ │ │ ├── bootstrap-wysihtml5.pt-BR.js
│ │ │ ├── bootstrap-wysihtml5.ru-RU.js
│ │ │ ├── bootstrap-wysihtml5.sk-SK.js
│ │ │ ├── bootstrap-wysihtml5.sv-SE.js
│ │ │ ├── bootstrap-wysihtml5.tr-TR.js
│ │ │ ├── bootstrap-wysihtml5.ua-UA.js
│ │ │ ├── bootstrap-wysihtml5.zh-CN.js
│ │ │ └── bootstrap-wysihtml5.zh-TW.js
│ ├── bootstrap
│ │ ├── 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
│ ├── bootstrap3-editable
│ │ ├── css
│ │ │ └── bootstrap-editable.css
│ │ ├── img
│ │ │ ├── clear.png
│ │ │ └── loading.gif
│ │ ├── inputs-ext
│ │ │ ├── address
│ │ │ │ ├── address.css
│ │ │ │ └── address.js
│ │ │ ├── typeaheadjs
│ │ │ │ ├── lib
│ │ │ │ │ ├── typeahead.css
│ │ │ │ │ ├── typeahead.js
│ │ │ │ │ └── typeahead.min.js
│ │ │ │ └── typeaheadjs.js
│ │ │ └── wysihtml5
│ │ │ │ ├── bootstrap-wysihtml5-0.0.2
│ │ │ │ ├── bootstrap-wysihtml5-0.0.2.css
│ │ │ │ ├── bootstrap-wysihtml5-0.0.2.js
│ │ │ │ ├── bootstrap-wysihtml5-0.0.2.min.js
│ │ │ │ ├── wysihtml5-0.3.0.js
│ │ │ │ ├── wysihtml5-0.3.0.min.js
│ │ │ │ └── wysiwyg-color.css
│ │ │ │ └── wysihtml5.js
│ │ └── js
│ │ │ ├── bootstrap-editable.js
│ │ │ └── bootstrap-editable.min.js
│ ├── chart-js
│ │ ├── .travis.yml
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── chart.js
│ │ ├── chart.min.js
│ │ ├── 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
│ │ ├── build-config.js
│ │ ├── ckeditor.js
│ │ ├── config.js
│ │ ├── contents.css
│ │ ├── lang
│ │ │ ├── af.js
│ │ │ ├── ar.js
│ │ │ ├── bg.js
│ │ │ ├── bn.js
│ │ │ ├── bs.js
│ │ │ ├── ca.js
│ │ │ ├── cs.js
│ │ │ ├── cy.js
│ │ │ ├── da.js
│ │ │ ├── de.js
│ │ │ ├── el.js
│ │ │ ├── en-au.js
│ │ │ ├── en-ca.js
│ │ │ ├── en-gb.js
│ │ │ ├── en.js
│ │ │ ├── eo.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
│ │ │ ├── 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
│ │ │ ├── pl.js
│ │ │ ├── pt-br.js
│ │ │ ├── pt.js
│ │ │ ├── ro.js
│ │ │ ├── ru.js
│ │ │ ├── sk.js
│ │ │ ├── sl.js
│ │ │ ├── sr-latn.js
│ │ │ ├── sr.js
│ │ │ ├── sv.js
│ │ │ ├── th.js
│ │ │ ├── tr.js
│ │ │ ├── ug.js
│ │ │ ├── uk.js
│ │ │ ├── vi.js
│ │ │ ├── zh-cn.js
│ │ │ └── zh.js
│ │ ├── plugins
│ │ │ ├── a11yhelp
│ │ │ │ └── dialogs
│ │ │ │ │ ├── a11yhelp.js
│ │ │ │ │ └── lang
│ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── gu.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hi.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── lt.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── mk.js
│ │ │ │ │ ├── mn.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── ro.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── th.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ └── zh-cn.js
│ │ │ ├── about
│ │ │ │ └── dialogs
│ │ │ │ │ ├── about.js
│ │ │ │ │ └── logo_ckeditor.png
│ │ │ ├── clipboard
│ │ │ │ └── dialogs
│ │ │ │ │ └── paste.js
│ │ │ ├── dialog
│ │ │ │ └── dialogDefinition.js
│ │ │ ├── fakeobjects
│ │ │ │ └── images
│ │ │ │ │ └── spacer.gif
│ │ │ ├── icons.png
│ │ │ ├── image
│ │ │ │ ├── dialogs
│ │ │ │ │ └── image.js
│ │ │ │ └── images
│ │ │ │ │ └── noimage.png
│ │ │ ├── link
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── anchor.js
│ │ │ │ │ └── link.js
│ │ │ │ └── images
│ │ │ │ │ └── anchor.png
│ │ │ ├── magicline
│ │ │ │ └── images
│ │ │ │ │ └── icon.png
│ │ │ ├── pastefromword
│ │ │ │ └── filter
│ │ │ │ │ └── default.js
│ │ │ ├── scayt
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ └── dialogs
│ │ │ │ │ ├── options.js
│ │ │ │ │ └── toolbar.css
│ │ │ ├── specialchar
│ │ │ │ └── dialogs
│ │ │ │ │ ├── lang
│ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── th.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ └── zh-cn.js
│ │ │ │ │ └── specialchar.js
│ │ │ ├── table
│ │ │ │ └── dialogs
│ │ │ │ │ └── table.js
│ │ │ ├── tabletools
│ │ │ │ └── dialogs
│ │ │ │ │ └── tableCell.js
│ │ │ └── wsc
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ └── dialogs
│ │ │ │ ├── ciframe.html
│ │ │ │ ├── tmpFrameset.html
│ │ │ │ ├── wsc.css
│ │ │ │ └── wsc.js
│ │ ├── skins
│ │ │ └── moono
│ │ │ │ ├── dialog.css
│ │ │ │ ├── dialog_ie.css
│ │ │ │ ├── dialog_ie7.css
│ │ │ │ ├── dialog_ie8.css
│ │ │ │ ├── dialog_iequirks.css
│ │ │ │ ├── dialog_opera.css
│ │ │ │ ├── editor.css
│ │ │ │ ├── editor_gecko.css
│ │ │ │ ├── editor_ie.css
│ │ │ │ ├── editor_ie7.css
│ │ │ │ ├── editor_ie8.css
│ │ │ │ ├── editor_iequirks.css
│ │ │ │ ├── icons.png
│ │ │ │ ├── images
│ │ │ │ ├── arrow.png
│ │ │ │ ├── close.png
│ │ │ │ └── mini.png
│ │ │ │ └── readme.md
│ │ └── styles.js
│ ├── easy-pie-chart-2.1.4
│ │ ├── Gruntfile.js
│ │ ├── demo
│ │ │ ├── angular.html
│ │ │ ├── excanvas.compiled.js
│ │ │ ├── img
│ │ │ │ └── easy-pie-chart.png
│ │ │ ├── index.html
│ │ │ ├── jquery.html
│ │ │ ├── old-ie.html
│ │ │ ├── requirejs.html
│ │ │ ├── style.css
│ │ │ └── style.less
│ │ ├── dist
│ │ │ ├── angular.easypiechart.js
│ │ │ ├── angular.easypiechart.min.js
│ │ │ ├── easypiechart.js
│ │ │ ├── easypiechart.min.js
│ │ │ ├── jquery.easypiechart.js
│ │ │ └── jquery.easypiechart.min.js
│ │ ├── docs
│ │ │ ├── README.tmpl.md
│ │ │ ├── bagdes.md
│ │ │ ├── browser-support.md
│ │ │ ├── callbacks.md
│ │ │ ├── credits.md
│ │ │ ├── features.md
│ │ │ ├── get-started.md
│ │ │ ├── options.md
│ │ │ ├── plugin-api.md
│ │ │ └── test.md
│ │ ├── src
│ │ │ ├── angular.directive.js
│ │ │ ├── easypiechart.js
│ │ │ ├── jquery.plugin.js
│ │ │ └── renderer
│ │ │ │ └── canvas.js
│ │ └── test
│ │ │ ├── polyfills
│ │ │ └── bind.js
│ │ │ └── unit
│ │ │ ├── angular.directive.js
│ │ │ └── jquery.js
│ ├── flag-icon
│ │ ├── .editorconfig
│ │ ├── Gruntfile.coffee
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── assets
│ │ │ ├── docs.css
│ │ │ └── docs.js
│ │ ├── bower.json
│ │ ├── composer.json
│ │ ├── css
│ │ │ ├── flag-icon.css
│ │ │ └── flag-icon.min.css
│ │ ├── flags
│ │ │ ├── 1x1
│ │ │ │ ├── ad.svg
│ │ │ │ ├── ae.svg
│ │ │ │ ├── af.svg
│ │ │ │ ├── ag.svg
│ │ │ │ ├── ai.svg
│ │ │ │ ├── al.svg
│ │ │ │ ├── am.svg
│ │ │ │ ├── ao.svg
│ │ │ │ ├── aq.svg
│ │ │ │ ├── ar.svg
│ │ │ │ ├── as.svg
│ │ │ │ ├── at.svg
│ │ │ │ ├── au.svg
│ │ │ │ ├── aw.svg
│ │ │ │ ├── ax.svg
│ │ │ │ ├── az.svg
│ │ │ │ ├── ba.svg
│ │ │ │ ├── bb.svg
│ │ │ │ ├── bd.svg
│ │ │ │ ├── be.svg
│ │ │ │ ├── bf.svg
│ │ │ │ ├── bg.svg
│ │ │ │ ├── bh.svg
│ │ │ │ ├── bi.svg
│ │ │ │ ├── bj.svg
│ │ │ │ ├── bl.svg
│ │ │ │ ├── bm.svg
│ │ │ │ ├── bn.svg
│ │ │ │ ├── bo.svg
│ │ │ │ ├── bq.svg
│ │ │ │ ├── br.svg
│ │ │ │ ├── bs.svg
│ │ │ │ ├── bt.svg
│ │ │ │ ├── bv.svg
│ │ │ │ ├── bw.svg
│ │ │ │ ├── by.svg
│ │ │ │ ├── bz.svg
│ │ │ │ ├── ca.svg
│ │ │ │ ├── cc.svg
│ │ │ │ ├── cd.svg
│ │ │ │ ├── cf.svg
│ │ │ │ ├── cg.svg
│ │ │ │ ├── ch.svg
│ │ │ │ ├── ci.svg
│ │ │ │ ├── ck.svg
│ │ │ │ ├── cl.svg
│ │ │ │ ├── cm.svg
│ │ │ │ ├── cn.svg
│ │ │ │ ├── co.svg
│ │ │ │ ├── cr.svg
│ │ │ │ ├── cu.svg
│ │ │ │ ├── cv.svg
│ │ │ │ ├── cw.svg
│ │ │ │ ├── cx.svg
│ │ │ │ ├── cy.svg
│ │ │ │ ├── cz.svg
│ │ │ │ ├── de.svg
│ │ │ │ ├── dj.svg
│ │ │ │ ├── dk.svg
│ │ │ │ ├── dm.svg
│ │ │ │ ├── do.svg
│ │ │ │ ├── dz.svg
│ │ │ │ ├── ec.svg
│ │ │ │ ├── ee.svg
│ │ │ │ ├── eg.svg
│ │ │ │ ├── eh.svg
│ │ │ │ ├── er.svg
│ │ │ │ ├── es.svg
│ │ │ │ ├── et.svg
│ │ │ │ ├── fi.svg
│ │ │ │ ├── fj.svg
│ │ │ │ ├── fk.svg
│ │ │ │ ├── fm.svg
│ │ │ │ ├── fo.svg
│ │ │ │ ├── fr.svg
│ │ │ │ ├── ga.svg
│ │ │ │ ├── gb.svg
│ │ │ │ ├── gd.svg
│ │ │ │ ├── ge.svg
│ │ │ │ ├── gf.svg
│ │ │ │ ├── gg.svg
│ │ │ │ ├── gh.svg
│ │ │ │ ├── gi.svg
│ │ │ │ ├── gl.svg
│ │ │ │ ├── gm.svg
│ │ │ │ ├── gn.svg
│ │ │ │ ├── gp.svg
│ │ │ │ ├── gq.svg
│ │ │ │ ├── gr.svg
│ │ │ │ ├── gs.svg
│ │ │ │ ├── gt.svg
│ │ │ │ ├── gu.svg
│ │ │ │ ├── gw.svg
│ │ │ │ ├── gy.svg
│ │ │ │ ├── hk.svg
│ │ │ │ ├── hm.svg
│ │ │ │ ├── hn.svg
│ │ │ │ ├── hr.svg
│ │ │ │ ├── ht.svg
│ │ │ │ ├── hu.svg
│ │ │ │ ├── id.svg
│ │ │ │ ├── ie.svg
│ │ │ │ ├── il.svg
│ │ │ │ ├── im.svg
│ │ │ │ ├── in.svg
│ │ │ │ ├── io.svg
│ │ │ │ ├── iq.svg
│ │ │ │ ├── ir.svg
│ │ │ │ ├── is.svg
│ │ │ │ ├── it.svg
│ │ │ │ ├── je.svg
│ │ │ │ ├── jm.svg
│ │ │ │ ├── jo.svg
│ │ │ │ ├── jp.svg
│ │ │ │ ├── ke.svg
│ │ │ │ ├── kg.svg
│ │ │ │ ├── kh.svg
│ │ │ │ ├── ki.svg
│ │ │ │ ├── km.svg
│ │ │ │ ├── kn.svg
│ │ │ │ ├── kp.svg
│ │ │ │ ├── kr.svg
│ │ │ │ ├── kw.svg
│ │ │ │ ├── ky.svg
│ │ │ │ ├── kz.svg
│ │ │ │ ├── la.svg
│ │ │ │ ├── lb.svg
│ │ │ │ ├── lc.svg
│ │ │ │ ├── li.svg
│ │ │ │ ├── lk.svg
│ │ │ │ ├── lr.svg
│ │ │ │ ├── ls.svg
│ │ │ │ ├── lt.svg
│ │ │ │ ├── lu.svg
│ │ │ │ ├── lv.svg
│ │ │ │ ├── ly.svg
│ │ │ │ ├── ma.svg
│ │ │ │ ├── mc.svg
│ │ │ │ ├── md.svg
│ │ │ │ ├── me.svg
│ │ │ │ ├── mf.svg
│ │ │ │ ├── mg.svg
│ │ │ │ ├── mh.svg
│ │ │ │ ├── mk.svg
│ │ │ │ ├── ml.svg
│ │ │ │ ├── mm.svg
│ │ │ │ ├── mn.svg
│ │ │ │ ├── mo.svg
│ │ │ │ ├── mp.svg
│ │ │ │ ├── mq.svg
│ │ │ │ ├── mr.svg
│ │ │ │ ├── ms.svg
│ │ │ │ ├── mt.svg
│ │ │ │ ├── mu.svg
│ │ │ │ ├── mv.svg
│ │ │ │ ├── mw.svg
│ │ │ │ ├── mx.svg
│ │ │ │ ├── my.svg
│ │ │ │ ├── mz.svg
│ │ │ │ ├── na.svg
│ │ │ │ ├── nc.svg
│ │ │ │ ├── ne.svg
│ │ │ │ ├── nf.svg
│ │ │ │ ├── ng.svg
│ │ │ │ ├── ni.svg
│ │ │ │ ├── nl.svg
│ │ │ │ ├── no.svg
│ │ │ │ ├── np.svg
│ │ │ │ ├── nr.svg
│ │ │ │ ├── nu.svg
│ │ │ │ ├── nz.svg
│ │ │ │ ├── om.svg
│ │ │ │ ├── pa.svg
│ │ │ │ ├── pe.svg
│ │ │ │ ├── pf.svg
│ │ │ │ ├── pg.svg
│ │ │ │ ├── ph.svg
│ │ │ │ ├── pk.svg
│ │ │ │ ├── pl.svg
│ │ │ │ ├── pm.svg
│ │ │ │ ├── pn.svg
│ │ │ │ ├── pr.svg
│ │ │ │ ├── ps.svg
│ │ │ │ ├── pt.svg
│ │ │ │ ├── pw.svg
│ │ │ │ ├── py.svg
│ │ │ │ ├── qa.svg
│ │ │ │ ├── re.svg
│ │ │ │ ├── ro.svg
│ │ │ │ ├── rs.svg
│ │ │ │ ├── ru.svg
│ │ │ │ ├── rw.svg
│ │ │ │ ├── sa.svg
│ │ │ │ ├── sb.svg
│ │ │ │ ├── sc.svg
│ │ │ │ ├── sd.svg
│ │ │ │ ├── se.svg
│ │ │ │ ├── sg.svg
│ │ │ │ ├── sh.svg
│ │ │ │ ├── si.svg
│ │ │ │ ├── sj.svg
│ │ │ │ ├── sk.svg
│ │ │ │ ├── sl.svg
│ │ │ │ ├── sm.svg
│ │ │ │ ├── sn.svg
│ │ │ │ ├── so.svg
│ │ │ │ ├── sr.svg
│ │ │ │ ├── ss.svg
│ │ │ │ ├── st.svg
│ │ │ │ ├── sv.svg
│ │ │ │ ├── sx.svg
│ │ │ │ ├── sy.svg
│ │ │ │ ├── sz.svg
│ │ │ │ ├── tc.svg
│ │ │ │ ├── td.svg
│ │ │ │ ├── tf.svg
│ │ │ │ ├── tg.svg
│ │ │ │ ├── th.svg
│ │ │ │ ├── tj.svg
│ │ │ │ ├── tk.svg
│ │ │ │ ├── tl.svg
│ │ │ │ ├── tm.svg
│ │ │ │ ├── tn.svg
│ │ │ │ ├── to.svg
│ │ │ │ ├── tr.svg
│ │ │ │ ├── tt.svg
│ │ │ │ ├── tv.svg
│ │ │ │ ├── tw.svg
│ │ │ │ ├── tz.svg
│ │ │ │ ├── ua.svg
│ │ │ │ ├── ug.svg
│ │ │ │ ├── um.svg
│ │ │ │ ├── us.svg
│ │ │ │ ├── uy.svg
│ │ │ │ ├── uz.svg
│ │ │ │ ├── va.svg
│ │ │ │ ├── vc.svg
│ │ │ │ ├── ve.svg
│ │ │ │ ├── vg.svg
│ │ │ │ ├── vi.svg
│ │ │ │ ├── vn.svg
│ │ │ │ ├── vu.svg
│ │ │ │ ├── wf.svg
│ │ │ │ ├── ws.svg
│ │ │ │ ├── ye.svg
│ │ │ │ ├── yt.svg
│ │ │ │ ├── za.svg
│ │ │ │ ├── zm.svg
│ │ │ │ └── zw.svg
│ │ │ └── 4x3
│ │ │ │ ├── ad.svg
│ │ │ │ ├── ae.svg
│ │ │ │ ├── af.svg
│ │ │ │ ├── ag.svg
│ │ │ │ ├── ai.svg
│ │ │ │ ├── al.svg
│ │ │ │ ├── am.svg
│ │ │ │ ├── ao.svg
│ │ │ │ ├── aq.svg
│ │ │ │ ├── ar.svg
│ │ │ │ ├── as.svg
│ │ │ │ ├── at.svg
│ │ │ │ ├── au.svg
│ │ │ │ ├── aw.svg
│ │ │ │ ├── ax.svg
│ │ │ │ ├── az.svg
│ │ │ │ ├── ba.svg
│ │ │ │ ├── bb.svg
│ │ │ │ ├── bd.svg
│ │ │ │ ├── be.svg
│ │ │ │ ├── bf.svg
│ │ │ │ ├── bg.svg
│ │ │ │ ├── bh.svg
│ │ │ │ ├── bi.svg
│ │ │ │ ├── bj.svg
│ │ │ │ ├── bl.svg
│ │ │ │ ├── bm.svg
│ │ │ │ ├── bn.svg
│ │ │ │ ├── bo.svg
│ │ │ │ ├── bq.svg
│ │ │ │ ├── br.svg
│ │ │ │ ├── bs.svg
│ │ │ │ ├── bt.svg
│ │ │ │ ├── bv.svg
│ │ │ │ ├── bw.svg
│ │ │ │ ├── by.svg
│ │ │ │ ├── bz.svg
│ │ │ │ ├── ca.svg
│ │ │ │ ├── cc.svg
│ │ │ │ ├── cd.svg
│ │ │ │ ├── cf.svg
│ │ │ │ ├── cg.svg
│ │ │ │ ├── ch.svg
│ │ │ │ ├── ci.svg
│ │ │ │ ├── ck.svg
│ │ │ │ ├── cl.svg
│ │ │ │ ├── cm.svg
│ │ │ │ ├── cn.svg
│ │ │ │ ├── co.svg
│ │ │ │ ├── cr.svg
│ │ │ │ ├── cu.svg
│ │ │ │ ├── cv.svg
│ │ │ │ ├── cw.svg
│ │ │ │ ├── cx.svg
│ │ │ │ ├── cy.svg
│ │ │ │ ├── cz.svg
│ │ │ │ ├── de.svg
│ │ │ │ ├── dj.svg
│ │ │ │ ├── dk.svg
│ │ │ │ ├── dm.svg
│ │ │ │ ├── do.svg
│ │ │ │ ├── dz.svg
│ │ │ │ ├── ec.svg
│ │ │ │ ├── ee.svg
│ │ │ │ ├── eg.svg
│ │ │ │ ├── eh.svg
│ │ │ │ ├── er.svg
│ │ │ │ ├── es.svg
│ │ │ │ ├── et.svg
│ │ │ │ ├── fi.svg
│ │ │ │ ├── fj.svg
│ │ │ │ ├── fk.svg
│ │ │ │ ├── fm.svg
│ │ │ │ ├── fo.svg
│ │ │ │ ├── fr.svg
│ │ │ │ ├── ga.svg
│ │ │ │ ├── gb.svg
│ │ │ │ ├── gd.svg
│ │ │ │ ├── ge.svg
│ │ │ │ ├── gf.svg
│ │ │ │ ├── gg.svg
│ │ │ │ ├── gh.svg
│ │ │ │ ├── gi.svg
│ │ │ │ ├── gl.svg
│ │ │ │ ├── gm.svg
│ │ │ │ ├── gn.svg
│ │ │ │ ├── gp.svg
│ │ │ │ ├── gq.svg
│ │ │ │ ├── gr.svg
│ │ │ │ ├── gs.svg
│ │ │ │ ├── gt.svg
│ │ │ │ ├── gu.svg
│ │ │ │ ├── gw.svg
│ │ │ │ ├── gy.svg
│ │ │ │ ├── hk.svg
│ │ │ │ ├── hm.svg
│ │ │ │ ├── hn.svg
│ │ │ │ ├── hr.svg
│ │ │ │ ├── ht.svg
│ │ │ │ ├── hu.svg
│ │ │ │ ├── id.svg
│ │ │ │ ├── ie.svg
│ │ │ │ ├── il.svg
│ │ │ │ ├── im.svg
│ │ │ │ ├── in.svg
│ │ │ │ ├── io.svg
│ │ │ │ ├── iq.svg
│ │ │ │ ├── ir.svg
│ │ │ │ ├── is.svg
│ │ │ │ ├── it.svg
│ │ │ │ ├── je.svg
│ │ │ │ ├── jm.svg
│ │ │ │ ├── jo.svg
│ │ │ │ ├── jp.svg
│ │ │ │ ├── ke.svg
│ │ │ │ ├── kg.svg
│ │ │ │ ├── kh.svg
│ │ │ │ ├── ki.svg
│ │ │ │ ├── km.svg
│ │ │ │ ├── kn.svg
│ │ │ │ ├── kp.svg
│ │ │ │ ├── kr.svg
│ │ │ │ ├── kw.svg
│ │ │ │ ├── ky.svg
│ │ │ │ ├── kz.svg
│ │ │ │ ├── la.svg
│ │ │ │ ├── lb.svg
│ │ │ │ ├── lc.svg
│ │ │ │ ├── li.svg
│ │ │ │ ├── lk.svg
│ │ │ │ ├── lr.svg
│ │ │ │ ├── ls.svg
│ │ │ │ ├── lt.svg
│ │ │ │ ├── lu.svg
│ │ │ │ ├── lv.svg
│ │ │ │ ├── ly.svg
│ │ │ │ ├── ma.svg
│ │ │ │ ├── mc.svg
│ │ │ │ ├── md.svg
│ │ │ │ ├── me.svg
│ │ │ │ ├── mf.svg
│ │ │ │ ├── mg.svg
│ │ │ │ ├── mh.svg
│ │ │ │ ├── mk.svg
│ │ │ │ ├── ml.svg
│ │ │ │ ├── mm.svg
│ │ │ │ ├── mn.svg
│ │ │ │ ├── mo.svg
│ │ │ │ ├── mp.svg
│ │ │ │ ├── mq.svg
│ │ │ │ ├── mr.svg
│ │ │ │ ├── ms.svg
│ │ │ │ ├── mt.svg
│ │ │ │ ├── mu.svg
│ │ │ │ ├── mv.svg
│ │ │ │ ├── mw.svg
│ │ │ │ ├── mx.svg
│ │ │ │ ├── my.svg
│ │ │ │ ├── mz.svg
│ │ │ │ ├── na.svg
│ │ │ │ ├── nc.svg
│ │ │ │ ├── ne.svg
│ │ │ │ ├── nf.svg
│ │ │ │ ├── ng.svg
│ │ │ │ ├── ni.svg
│ │ │ │ ├── nl.svg
│ │ │ │ ├── no.svg
│ │ │ │ ├── np.svg
│ │ │ │ ├── nr.svg
│ │ │ │ ├── nu.svg
│ │ │ │ ├── nz.svg
│ │ │ │ ├── om.svg
│ │ │ │ ├── pa.svg
│ │ │ │ ├── pe.svg
│ │ │ │ ├── pf.svg
│ │ │ │ ├── pg.svg
│ │ │ │ ├── ph.svg
│ │ │ │ ├── pk.svg
│ │ │ │ ├── pl.svg
│ │ │ │ ├── pm.svg
│ │ │ │ ├── pn.svg
│ │ │ │ ├── pr.svg
│ │ │ │ ├── ps.svg
│ │ │ │ ├── pt.svg
│ │ │ │ ├── pw.svg
│ │ │ │ ├── py.svg
│ │ │ │ ├── qa.svg
│ │ │ │ ├── re.svg
│ │ │ │ ├── ro.svg
│ │ │ │ ├── rs.svg
│ │ │ │ ├── ru.svg
│ │ │ │ ├── rw.svg
│ │ │ │ ├── sa.svg
│ │ │ │ ├── sb.svg
│ │ │ │ ├── sc.svg
│ │ │ │ ├── sd.svg
│ │ │ │ ├── se.svg
│ │ │ │ ├── sg.svg
│ │ │ │ ├── sh.svg
│ │ │ │ ├── si.svg
│ │ │ │ ├── sj.svg
│ │ │ │ ├── sk.svg
│ │ │ │ ├── sl.svg
│ │ │ │ ├── sm.svg
│ │ │ │ ├── sn.svg
│ │ │ │ ├── so.svg
│ │ │ │ ├── sr.svg
│ │ │ │ ├── ss.svg
│ │ │ │ ├── st.svg
│ │ │ │ ├── sv.svg
│ │ │ │ ├── sx.svg
│ │ │ │ ├── sy.svg
│ │ │ │ ├── sz.svg
│ │ │ │ ├── tc.svg
│ │ │ │ ├── td.svg
│ │ │ │ ├── tf.svg
│ │ │ │ ├── tg.svg
│ │ │ │ ├── th.svg
│ │ │ │ ├── tj.svg
│ │ │ │ ├── tk.svg
│ │ │ │ ├── tl.svg
│ │ │ │ ├── tm.svg
│ │ │ │ ├── tn.svg
│ │ │ │ ├── to.svg
│ │ │ │ ├── tr.svg
│ │ │ │ ├── tt.svg
│ │ │ │ ├── tv.svg
│ │ │ │ ├── tw.svg
│ │ │ │ ├── tz.svg
│ │ │ │ ├── ua.svg
│ │ │ │ ├── ug.svg
│ │ │ │ ├── um.svg
│ │ │ │ ├── us.svg
│ │ │ │ ├── uy.svg
│ │ │ │ ├── uz.svg
│ │ │ │ ├── va.svg
│ │ │ │ ├── vc.svg
│ │ │ │ ├── ve.svg
│ │ │ │ ├── vg.svg
│ │ │ │ ├── vi.svg
│ │ │ │ ├── vn.svg
│ │ │ │ ├── vu.svg
│ │ │ │ ├── wf.svg
│ │ │ │ ├── ws.svg
│ │ │ │ ├── ye.svg
│ │ │ │ ├── yt.svg
│ │ │ │ ├── za.svg
│ │ │ │ ├── zm.svg
│ │ │ │ └── zw.svg
│ │ ├── index.html
│ │ ├── less
│ │ │ ├── flag-icon-base.less
│ │ │ ├── flag-icon-list.less
│ │ │ ├── flag-icon.less
│ │ │ └── variabless.less
│ │ ├── package.json
│ │ └── sass
│ │ │ ├── flag-icon-base.scss
│ │ │ ├── flag-icon-list.scss
│ │ │ ├── flag-icon.scss
│ │ │ └── variables.scss
│ ├── flot
│ │ ├── API.md
│ │ ├── CONTRIBUTING.md
│ │ ├── FAQ.md
│ │ ├── LICENSE.txt
│ │ ├── Makefile
│ │ ├── NEWS.md
│ │ ├── PLUGINS.md
│ │ ├── README.md
│ │ ├── curvedLines.js
│ │ ├── excanvas.js
│ │ ├── excanvas.min.js
│ │ ├── jquery.colorhelpers.js
│ │ ├── jquery.colorhelpers.min.js
│ │ ├── jquery.flot.canvas.js
│ │ ├── jquery.flot.canvas.min.js
│ │ ├── jquery.flot.categories.js
│ │ ├── jquery.flot.categories.min.js
│ │ ├── jquery.flot.crosshair.js
│ │ ├── jquery.flot.crosshair.min.js
│ │ ├── jquery.flot.errorbars.js
│ │ ├── jquery.flot.errorbars.min.js
│ │ ├── jquery.flot.fillbetween.js
│ │ ├── jquery.flot.fillbetween.min.js
│ │ ├── jquery.flot.image.js
│ │ ├── jquery.flot.image.min.js
│ │ ├── jquery.flot.js
│ │ ├── jquery.flot.min.js
│ │ ├── jquery.flot.navigate.js
│ │ ├── jquery.flot.navigate.min.js
│ │ ├── jquery.flot.pie.js
│ │ ├── jquery.flot.pie.min.js
│ │ ├── jquery.flot.resize.js
│ │ ├── jquery.flot.resize.min.js
│ │ ├── jquery.flot.selection.js
│ │ ├── jquery.flot.selection.min.js
│ │ ├── jquery.flot.stack.js
│ │ ├── jquery.flot.stack.min.js
│ │ ├── jquery.flot.symbol.js
│ │ ├── jquery.flot.symbol.min.js
│ │ ├── jquery.flot.threshold.js
│ │ ├── jquery.flot.threshold.min.js
│ │ ├── jquery.flot.time.js
│ │ ├── jquery.flot.time.min.js
│ │ ├── jquery.js
│ │ └── jquery.min.js
│ ├── font-awesome
│ │ ├── css
│ │ │ ├── font-awesome.css
│ │ │ └── font-awesome.min.css
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── 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
│ │ ├── CHANGELOG.txt
│ │ ├── CONTRIBUTING.txt
│ │ ├── LICENSE.txt
│ │ ├── demos
│ │ │ ├── agenda-views.html
│ │ │ ├── background-events.html
│ │ │ ├── basic-views.html
│ │ │ ├── default.html
│ │ │ ├── external-dragging.html
│ │ │ ├── gcal.html
│ │ │ ├── json.html
│ │ │ ├── json
│ │ │ │ └── events.json
│ │ │ ├── languages.html
│ │ │ ├── php
│ │ │ │ ├── get-events.php
│ │ │ │ ├── get-timezones.php
│ │ │ │ └── utils.php
│ │ │ ├── selectable.html
│ │ │ ├── theme.html
│ │ │ └── timezones.html
│ │ ├── fullcalendar.css
│ │ ├── fullcalendar.js
│ │ ├── fullcalendar.min.css
│ │ ├── fullcalendar.min.js
│ │ ├── fullcalendar.print.css
│ │ ├── gcal.js
│ │ ├── lang-all.js
│ │ ├── lang
│ │ │ ├── ar-ma.js
│ │ │ ├── ar-sa.js
│ │ │ ├── ar-tn.js
│ │ │ ├── ar.js
│ │ │ ├── bg.js
│ │ │ ├── ca.js
│ │ │ ├── cs.js
│ │ │ ├── da.js
│ │ │ ├── de-at.js
│ │ │ ├── de.js
│ │ │ ├── el.js
│ │ │ ├── en-au.js
│ │ │ ├── en-ca.js
│ │ │ ├── en-gb.js
│ │ │ ├── es.js
│ │ │ ├── fa.js
│ │ │ ├── fi.js
│ │ │ ├── fr-ca.js
│ │ │ ├── fr.js
│ │ │ ├── he.js
│ │ │ ├── hi.js
│ │ │ ├── hr.js
│ │ │ ├── hu.js
│ │ │ ├── id.js
│ │ │ ├── is.js
│ │ │ ├── it.js
│ │ │ ├── ja.js
│ │ │ ├── ko.js
│ │ │ ├── lt.js
│ │ │ ├── lv.js
│ │ │ ├── nb.js
│ │ │ ├── nl.js
│ │ │ ├── pl.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
│ │ └── lib
│ │ │ ├── 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.min.css
│ │ │ ├── jquery-ui.custom.min.js
│ │ │ ├── jquery.min.js
│ │ │ └── moment.min.js
│ ├── gritter
│ │ ├── README.markdown
│ │ ├── css
│ │ │ └── jquery.gritter.css
│ │ ├── images
│ │ │ ├── gritter-light.png
│ │ │ ├── gritter-long.png
│ │ │ ├── gritter.png
│ │ │ ├── ie-spacer.gif
│ │ │ └── trees.jpg
│ │ ├── index.html
│ │ └── js
│ │ │ ├── jquery.gritter.js
│ │ │ └── jquery.gritter.min.js
│ ├── ionRangeSlider
│ │ ├── css
│ │ │ ├── ion.rangeSlider.css
│ │ │ ├── ion.rangeSlider.skinFlat.css
│ │ │ ├── ion.rangeSlider.skinNice.css
│ │ │ ├── ion.rangeSlider.skinSimple.css
│ │ │ └── normalize.min.css
│ │ ├── img
│ │ │ ├── sprite-skin-flat.png
│ │ │ ├── sprite-skin-nice.png
│ │ │ └── sprite-skin-simple.png
│ │ └── js
│ │ │ ├── ion-rangeSlider
│ │ │ ├── ion.rangeSlider.js
│ │ │ └── ion.rangeSlider.min.js
│ │ │ └── vendor
│ │ │ └── jquery-1.10.2.min.js
│ ├── ionicons
│ │ ├── LICENSE
│ │ ├── builder
│ │ │ ├── build_data.json
│ │ │ ├── cheatsheet
│ │ │ │ ├── icon-row.html
│ │ │ │ └── template.html
│ │ │ ├── generate.py
│ │ │ ├── manifest.json
│ │ │ └── scripts
│ │ │ │ ├── eotlitetool.py
│ │ │ │ ├── generate_font.py
│ │ │ │ └── sfnt2woff
│ │ ├── cheatsheet.html
│ │ ├── 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
│ │ ├── 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
│ ├── isotope
│ │ ├── css
│ │ │ └── style.css
│ │ ├── custom-layout-modes
│ │ │ ├── big-graph.html
│ │ │ ├── category-rows.html
│ │ │ ├── centered-masonry.html
│ │ │ ├── masonry-column-shift.html
│ │ │ ├── masonry-corner-stamp.html
│ │ │ ├── masonry-gutters.html
│ │ │ └── spine-align.html
│ │ ├── demos
│ │ │ ├── adding-items.html
│ │ │ ├── basic.html
│ │ │ ├── combination-filters.html
│ │ │ ├── elements-complete.html
│ │ │ ├── elements-partial.html
│ │ │ ├── filtering.html
│ │ │ ├── fluid-responsive.html
│ │ │ ├── hash-history.html
│ │ │ ├── images.html
│ │ │ ├── infinite-scroll.html
│ │ │ ├── layout-modes.html
│ │ │ ├── relayout.html
│ │ │ ├── removing.html
│ │ │ └── sorting.html
│ │ ├── docs
│ │ │ ├── adding-items.html
│ │ │ ├── animating.html
│ │ │ ├── extending-isotope.html
│ │ │ ├── filtering.html
│ │ │ ├── hash-history-jquery-bbq.html
│ │ │ ├── help.html
│ │ │ ├── introduction.html
│ │ │ ├── layout-modes.html
│ │ │ ├── license.html
│ │ │ ├── methods.html
│ │ │ ├── options.html
│ │ │ └── sorting.html
│ │ ├── index.html
│ │ ├── isotope.css
│ │ ├── jquery.isotope.js
│ │ ├── jquery.isotope.min.js
│ │ ├── js
│ │ │ ├── fake-element.js
│ │ │ ├── jquery-1.7.1.min.js
│ │ │ ├── jquery.ba-bbq.min.js
│ │ │ ├── jquery.infinitescroll.min.js
│ │ │ └── make-big-graph-projects.js
│ │ ├── pages
│ │ │ ├── 2.html
│ │ │ ├── 3.html
│ │ │ ├── 4.html
│ │ │ ├── 5.html
│ │ │ └── 6.html
│ │ └── tests
│ │ │ ├── callbacks.html
│ │ │ ├── combo-sort-history.html
│ │ │ ├── destroy.html
│ │ │ ├── elements-complete-test.html
│ │ │ ├── flash.html
│ │ │ ├── index.html
│ │ │ ├── item-position-data.html
│ │ │ ├── jquery-animation.html
│ │ │ ├── no-items.html
│ │ │ ├── onlayout.html
│ │ │ ├── right-to-left.html
│ │ │ ├── tiny-text.html
│ │ │ └── unclickable-filtered.html
│ ├── jquery-cookie
│ │ └── jquery.cookie.js
│ ├── jquery-file-upload
│ │ ├── README.md
│ │ ├── blueimp-gallery
│ │ │ ├── blueimp-gallery.min.css
│ │ │ └── jquery.blueimp-gallery.min.js
│ │ ├── cors
│ │ │ ├── postmessage.html
│ │ │ └── result.html
│ │ ├── css
│ │ │ ├── demo-ie8.css
│ │ │ ├── demo.css
│ │ │ ├── jquery.fileupload-noscript.css
│ │ │ ├── jquery.fileupload-ui-noscript.css
│ │ │ ├── jquery.fileupload-ui.css
│ │ │ ├── jquery.fileupload.css
│ │ │ └── style.css
│ │ ├── img
│ │ │ ├── loading.gif
│ │ │ └── progressbar.gif
│ │ ├── js
│ │ │ ├── app.js
│ │ │ ├── cors
│ │ │ │ ├── jquery.postmessage-transport.js
│ │ │ │ └── jquery.xdr-transport.js
│ │ │ ├── jquery.fileupload-angular.js
│ │ │ ├── jquery.fileupload-audio.js
│ │ │ ├── jquery.fileupload-image.js
│ │ │ ├── jquery.fileupload-jquery-ui.js
│ │ │ ├── jquery.fileupload-process.js
│ │ │ ├── jquery.fileupload-ui.js
│ │ │ ├── jquery.fileupload-validate.js
│ │ │ ├── jquery.fileupload-video.js
│ │ │ ├── jquery.fileupload.js
│ │ │ ├── jquery.iframe-transport.js
│ │ │ ├── main.js
│ │ │ └── vendor
│ │ │ │ ├── canvas-to-blob.min.js
│ │ │ │ ├── jquery.ui.widget.js
│ │ │ │ ├── load-image.min.js
│ │ │ │ └── tmpl.min.js
│ │ └── server
│ │ │ ├── gae-go
│ │ │ ├── app.yaml
│ │ │ ├── app
│ │ │ │ └── main.go
│ │ │ └── static
│ │ │ │ ├── favicon.ico
│ │ │ │ └── robots.txt
│ │ │ ├── gae-python
│ │ │ ├── app.yaml
│ │ │ ├── main.py
│ │ │ └── static
│ │ │ │ ├── favicon.ico
│ │ │ │ └── robots.txt
│ │ │ ├── node
│ │ │ ├── package.json
│ │ │ └── server.js
│ │ │ └── php
│ │ │ ├── UploadHandler.php
│ │ │ ├── files
│ │ │ └── _.htaccess
│ │ │ └── index.php
│ ├── jquery-jvectormap
│ │ ├── jquery-jvectormap-1.1.1.css
│ │ ├── jquery-jvectormap-1.1.1.min.js
│ │ ├── jquery-jvectormap-1.2.2.css
│ │ ├── jquery-jvectormap-1.2.2.min.js
│ │ ├── jquery-jvectormap-ar-mill-en.js
│ │ ├── jquery-jvectormap-at-mill-en.js
│ │ ├── jquery-jvectormap-au-mill-en.js
│ │ ├── jquery-jvectormap-be-mill-en.js
│ │ ├── jquery-jvectormap-ca-lcc-en.js
│ │ ├── jquery-jvectormap-ch-mill-en.js
│ │ ├── jquery-jvectormap-cn-mill-en.js
│ │ ├── jquery-jvectormap-co-mill-en.js
│ │ ├── jquery-jvectormap-de-mill-en.js
│ │ ├── jquery-jvectormap-dk-mill-en.js
│ │ ├── jquery-jvectormap-es-mill-en.js
│ │ ├── jquery-jvectormap-europe-mill-en.js
│ │ ├── jquery-jvectormap-fr-mill-en.js
│ │ ├── jquery-jvectormap-in-mill-en.js
│ │ ├── jquery-jvectormap-it-mill-en.js
│ │ ├── jquery-jvectormap-nl-mill-en.js
│ │ ├── jquery-jvectormap-no-mill-en.js
│ │ ├── jquery-jvectormap-nz-mill-en.js
│ │ ├── jquery-jvectormap-ph_regions-mill-en.js
│ │ ├── jquery-jvectormap-pl-mill-en.js
│ │ ├── jquery-jvectormap-pt-mill-en.js
│ │ ├── jquery-jvectormap-se-mill-en.js
│ │ ├── jquery-jvectormap-th-mill-en.js
│ │ ├── jquery-jvectormap-th_regions-mill-en.js
│ │ ├── jquery-jvectormap-uk-mill-en.js
│ │ ├── jquery-jvectormap-us-aea-en.js
│ │ ├── jquery-jvectormap-ve-mill-en.js
│ │ ├── jquery-jvectormap-world-merc-en.js
│ │ ├── jquery-jvectormap-world-mill-en.js
│ │ └── jquery-jvectormap-za-mill-en.js
│ ├── jquery-knob
│ │ ├── README.md
│ │ ├── index.html
│ │ ├── js
│ │ │ └── jquery.knob.js
│ │ └── knob.jquery.json
│ ├── jquery-tag-it
│ │ ├── .githooks
│ │ │ ├── install.sh
│ │ │ ├── post-commit
│ │ │ └── pre-commit
│ │ ├── _static
│ │ │ ├── examples.css
│ │ │ ├── master.css
│ │ │ ├── reset.css
│ │ │ ├── screenshot.png
│ │ │ └── subpage.css
│ │ ├── css
│ │ │ ├── jquery.tagit.css
│ │ │ └── tagit.ui-zendesk.css
│ │ ├── examples.html
│ │ ├── js
│ │ │ ├── tag-it.js
│ │ │ └── tag-it.min.js
│ │ └── prototype.js
│ ├── jquery-ui
│ │ ├── AUTHORS.txt
│ │ ├── Gruntfile.js
│ │ ├── MIT-LICENSE.txt
│ │ ├── external
│ │ │ ├── globalize.culture.de-DE.js
│ │ │ ├── globalize.culture.ja-JP.js
│ │ │ ├── globalize.js
│ │ │ ├── jquery.mousewheel.js
│ │ │ ├── jshint.js
│ │ │ ├── qunit.css
│ │ │ └── qunit.js
│ │ ├── jquery-1.10.2.js
│ │ ├── themes
│ │ │ └── base
│ │ │ │ ├── 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.accordion.css
│ │ │ │ ├── jquery.ui.all.css
│ │ │ │ ├── jquery.ui.autocomplete.css
│ │ │ │ ├── jquery.ui.base.css
│ │ │ │ ├── jquery.ui.button.css
│ │ │ │ ├── jquery.ui.core.css
│ │ │ │ ├── jquery.ui.datepicker.css
│ │ │ │ ├── jquery.ui.dialog.css
│ │ │ │ ├── jquery.ui.menu.css
│ │ │ │ ├── jquery.ui.progressbar.css
│ │ │ │ ├── jquery.ui.resizable.css
│ │ │ │ ├── jquery.ui.selectable.css
│ │ │ │ ├── jquery.ui.slider.css
│ │ │ │ ├── jquery.ui.spinner.css
│ │ │ │ ├── jquery.ui.tabs.css
│ │ │ │ ├── jquery.ui.theme.css
│ │ │ │ ├── jquery.ui.tooltip.css
│ │ │ │ └── minified
│ │ │ │ ├── images
│ │ │ │ ├── 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.min.css
│ │ │ │ ├── jquery.ui.accordion.min.css
│ │ │ │ ├── jquery.ui.autocomplete.min.css
│ │ │ │ ├── jquery.ui.button.min.css
│ │ │ │ ├── jquery.ui.core.min.css
│ │ │ │ ├── jquery.ui.datepicker.min.css
│ │ │ │ ├── jquery.ui.dialog.min.css
│ │ │ │ ├── jquery.ui.menu.min.css
│ │ │ │ ├── jquery.ui.progressbar.min.css
│ │ │ │ ├── jquery.ui.resizable.min.css
│ │ │ │ ├── jquery.ui.selectable.min.css
│ │ │ │ ├── jquery.ui.slider.min.css
│ │ │ │ ├── jquery.ui.spinner.min.css
│ │ │ │ ├── jquery.ui.tabs.min.css
│ │ │ │ ├── jquery.ui.theme.min.css
│ │ │ │ └── jquery.ui.tooltip.min.css
│ │ └── ui
│ │ │ ├── .jshintrc
│ │ │ ├── i18n
│ │ │ ├── jquery-ui-i18n.js
│ │ │ ├── jquery.ui.datepicker-af.js
│ │ │ ├── jquery.ui.datepicker-ar-DZ.js
│ │ │ ├── jquery.ui.datepicker-ar.js
│ │ │ ├── jquery.ui.datepicker-az.js
│ │ │ ├── jquery.ui.datepicker-be.js
│ │ │ ├── jquery.ui.datepicker-bg.js
│ │ │ ├── jquery.ui.datepicker-bs.js
│ │ │ ├── jquery.ui.datepicker-ca.js
│ │ │ ├── jquery.ui.datepicker-cs.js
│ │ │ ├── jquery.ui.datepicker-cy-GB.js
│ │ │ ├── jquery.ui.datepicker-da.js
│ │ │ ├── jquery.ui.datepicker-de.js
│ │ │ ├── jquery.ui.datepicker-el.js
│ │ │ ├── jquery.ui.datepicker-en-AU.js
│ │ │ ├── jquery.ui.datepicker-en-GB.js
│ │ │ ├── jquery.ui.datepicker-en-NZ.js
│ │ │ ├── jquery.ui.datepicker-eo.js
│ │ │ ├── jquery.ui.datepicker-es.js
│ │ │ ├── jquery.ui.datepicker-et.js
│ │ │ ├── jquery.ui.datepicker-eu.js
│ │ │ ├── jquery.ui.datepicker-fa.js
│ │ │ ├── jquery.ui.datepicker-fi.js
│ │ │ ├── jquery.ui.datepicker-fo.js
│ │ │ ├── jquery.ui.datepicker-fr-CA.js
│ │ │ ├── jquery.ui.datepicker-fr-CH.js
│ │ │ ├── jquery.ui.datepicker-fr.js
│ │ │ ├── jquery.ui.datepicker-gl.js
│ │ │ ├── jquery.ui.datepicker-he.js
│ │ │ ├── jquery.ui.datepicker-hi.js
│ │ │ ├── jquery.ui.datepicker-hr.js
│ │ │ ├── jquery.ui.datepicker-hu.js
│ │ │ ├── jquery.ui.datepicker-hy.js
│ │ │ ├── jquery.ui.datepicker-id.js
│ │ │ ├── jquery.ui.datepicker-is.js
│ │ │ ├── jquery.ui.datepicker-it.js
│ │ │ ├── jquery.ui.datepicker-ja.js
│ │ │ ├── jquery.ui.datepicker-ka.js
│ │ │ ├── jquery.ui.datepicker-kk.js
│ │ │ ├── jquery.ui.datepicker-km.js
│ │ │ ├── jquery.ui.datepicker-ko.js
│ │ │ ├── jquery.ui.datepicker-ky.js
│ │ │ ├── jquery.ui.datepicker-lb.js
│ │ │ ├── jquery.ui.datepicker-lt.js
│ │ │ ├── jquery.ui.datepicker-lv.js
│ │ │ ├── jquery.ui.datepicker-mk.js
│ │ │ ├── jquery.ui.datepicker-ml.js
│ │ │ ├── jquery.ui.datepicker-ms.js
│ │ │ ├── jquery.ui.datepicker-nb.js
│ │ │ ├── jquery.ui.datepicker-nl-BE.js
│ │ │ ├── jquery.ui.datepicker-nl.js
│ │ │ ├── jquery.ui.datepicker-nn.js
│ │ │ ├── jquery.ui.datepicker-no.js
│ │ │ ├── jquery.ui.datepicker-pl.js
│ │ │ ├── jquery.ui.datepicker-pt-BR.js
│ │ │ ├── jquery.ui.datepicker-pt.js
│ │ │ ├── jquery.ui.datepicker-rm.js
│ │ │ ├── jquery.ui.datepicker-ro.js
│ │ │ ├── jquery.ui.datepicker-ru.js
│ │ │ ├── jquery.ui.datepicker-sk.js
│ │ │ ├── jquery.ui.datepicker-sl.js
│ │ │ ├── jquery.ui.datepicker-sq.js
│ │ │ ├── jquery.ui.datepicker-sr-SR.js
│ │ │ ├── jquery.ui.datepicker-sr.js
│ │ │ ├── jquery.ui.datepicker-sv.js
│ │ │ ├── jquery.ui.datepicker-ta.js
│ │ │ ├── jquery.ui.datepicker-th.js
│ │ │ ├── jquery.ui.datepicker-tj.js
│ │ │ ├── jquery.ui.datepicker-tr.js
│ │ │ ├── jquery.ui.datepicker-uk.js
│ │ │ ├── jquery.ui.datepicker-vi.js
│ │ │ ├── jquery.ui.datepicker-zh-CN.js
│ │ │ ├── jquery.ui.datepicker-zh-HK.js
│ │ │ └── jquery.ui.datepicker-zh-TW.js
│ │ │ ├── jquery-ui.js
│ │ │ ├── jquery.ui.accordion.js
│ │ │ ├── jquery.ui.autocomplete.js
│ │ │ ├── jquery.ui.button.js
│ │ │ ├── jquery.ui.core.js
│ │ │ ├── jquery.ui.datepicker.js
│ │ │ ├── jquery.ui.dialog.js
│ │ │ ├── jquery.ui.draggable.js
│ │ │ ├── jquery.ui.droppable.js
│ │ │ ├── jquery.ui.effect-blind.js
│ │ │ ├── jquery.ui.effect-bounce.js
│ │ │ ├── jquery.ui.effect-clip.js
│ │ │ ├── jquery.ui.effect-drop.js
│ │ │ ├── jquery.ui.effect-explode.js
│ │ │ ├── jquery.ui.effect-fade.js
│ │ │ ├── jquery.ui.effect-fold.js
│ │ │ ├── jquery.ui.effect-highlight.js
│ │ │ ├── jquery.ui.effect-pulsate.js
│ │ │ ├── jquery.ui.effect-scale.js
│ │ │ ├── jquery.ui.effect-shake.js
│ │ │ ├── jquery.ui.effect-slide.js
│ │ │ ├── jquery.ui.effect-transfer.js
│ │ │ ├── jquery.ui.effect.js
│ │ │ ├── jquery.ui.menu.js
│ │ │ ├── jquery.ui.mouse.js
│ │ │ ├── jquery.ui.position.js
│ │ │ ├── jquery.ui.progressbar.js
│ │ │ ├── jquery.ui.resizable.js
│ │ │ ├── jquery.ui.selectable.js
│ │ │ ├── jquery.ui.slider.js
│ │ │ ├── jquery.ui.sortable.js
│ │ │ ├── jquery.ui.spinner.js
│ │ │ ├── jquery.ui.tabs.js
│ │ │ ├── jquery.ui.tooltip.js
│ │ │ ├── jquery.ui.widget.js
│ │ │ └── minified
│ │ │ ├── i18n
│ │ │ ├── jquery-ui-i18n.min.js
│ │ │ ├── jquery.ui.datepicker-af.min.js
│ │ │ ├── jquery.ui.datepicker-ar-DZ.min.js
│ │ │ ├── jquery.ui.datepicker-ar.min.js
│ │ │ ├── jquery.ui.datepicker-az.min.js
│ │ │ ├── jquery.ui.datepicker-be.min.js
│ │ │ ├── jquery.ui.datepicker-bg.min.js
│ │ │ ├── jquery.ui.datepicker-bs.min.js
│ │ │ ├── jquery.ui.datepicker-ca.min.js
│ │ │ ├── jquery.ui.datepicker-cs.min.js
│ │ │ ├── jquery.ui.datepicker-cy-GB.min.js
│ │ │ ├── jquery.ui.datepicker-da.min.js
│ │ │ ├── jquery.ui.datepicker-de.min.js
│ │ │ ├── jquery.ui.datepicker-el.min.js
│ │ │ ├── jquery.ui.datepicker-en-AU.min.js
│ │ │ ├── jquery.ui.datepicker-en-GB.min.js
│ │ │ ├── jquery.ui.datepicker-en-NZ.min.js
│ │ │ ├── jquery.ui.datepicker-eo.min.js
│ │ │ ├── jquery.ui.datepicker-es.min.js
│ │ │ ├── jquery.ui.datepicker-et.min.js
│ │ │ ├── jquery.ui.datepicker-eu.min.js
│ │ │ ├── jquery.ui.datepicker-fa.min.js
│ │ │ ├── jquery.ui.datepicker-fi.min.js
│ │ │ ├── jquery.ui.datepicker-fo.min.js
│ │ │ ├── jquery.ui.datepicker-fr-CA.min.js
│ │ │ ├── jquery.ui.datepicker-fr-CH.min.js
│ │ │ ├── jquery.ui.datepicker-fr.min.js
│ │ │ ├── jquery.ui.datepicker-gl.min.js
│ │ │ ├── jquery.ui.datepicker-he.min.js
│ │ │ ├── jquery.ui.datepicker-hi.min.js
│ │ │ ├── jquery.ui.datepicker-hr.min.js
│ │ │ ├── jquery.ui.datepicker-hu.min.js
│ │ │ ├── jquery.ui.datepicker-hy.min.js
│ │ │ ├── jquery.ui.datepicker-id.min.js
│ │ │ ├── jquery.ui.datepicker-is.min.js
│ │ │ ├── jquery.ui.datepicker-it.min.js
│ │ │ ├── jquery.ui.datepicker-ja.min.js
│ │ │ ├── jquery.ui.datepicker-ka.min.js
│ │ │ ├── jquery.ui.datepicker-kk.min.js
│ │ │ ├── jquery.ui.datepicker-km.min.js
│ │ │ ├── jquery.ui.datepicker-ko.min.js
│ │ │ ├── jquery.ui.datepicker-ky.min.js
│ │ │ ├── jquery.ui.datepicker-lb.min.js
│ │ │ ├── jquery.ui.datepicker-lt.min.js
│ │ │ ├── jquery.ui.datepicker-lv.min.js
│ │ │ ├── jquery.ui.datepicker-mk.min.js
│ │ │ ├── jquery.ui.datepicker-ml.min.js
│ │ │ ├── jquery.ui.datepicker-ms.min.js
│ │ │ ├── jquery.ui.datepicker-nb.min.js
│ │ │ ├── jquery.ui.datepicker-nl-BE.min.js
│ │ │ ├── jquery.ui.datepicker-nl.min.js
│ │ │ ├── jquery.ui.datepicker-nn.min.js
│ │ │ ├── jquery.ui.datepicker-no.min.js
│ │ │ ├── jquery.ui.datepicker-pl.min.js
│ │ │ ├── jquery.ui.datepicker-pt-BR.min.js
│ │ │ ├── jquery.ui.datepicker-pt.min.js
│ │ │ ├── jquery.ui.datepicker-rm.min.js
│ │ │ ├── jquery.ui.datepicker-ro.min.js
│ │ │ ├── jquery.ui.datepicker-ru.min.js
│ │ │ ├── jquery.ui.datepicker-sk.min.js
│ │ │ ├── jquery.ui.datepicker-sl.min.js
│ │ │ ├── jquery.ui.datepicker-sq.min.js
│ │ │ ├── jquery.ui.datepicker-sr-SR.min.js
│ │ │ ├── jquery.ui.datepicker-sr.min.js
│ │ │ ├── jquery.ui.datepicker-sv.min.js
│ │ │ ├── jquery.ui.datepicker-ta.min.js
│ │ │ ├── jquery.ui.datepicker-th.min.js
│ │ │ ├── jquery.ui.datepicker-tj.min.js
│ │ │ ├── jquery.ui.datepicker-tr.min.js
│ │ │ ├── jquery.ui.datepicker-uk.min.js
│ │ │ ├── jquery.ui.datepicker-vi.min.js
│ │ │ ├── jquery.ui.datepicker-zh-CN.min.js
│ │ │ ├── jquery.ui.datepicker-zh-HK.min.js
│ │ │ └── jquery.ui.datepicker-zh-TW.min.js
│ │ │ ├── jquery-ui.min.js
│ │ │ ├── jquery.ui.accordion.min.js
│ │ │ ├── jquery.ui.autocomplete.min.js
│ │ │ ├── jquery.ui.button.min.js
│ │ │ ├── jquery.ui.core.min.js
│ │ │ ├── jquery.ui.datepicker.min.js
│ │ │ ├── jquery.ui.dialog.min.js
│ │ │ ├── jquery.ui.draggable.min.js
│ │ │ ├── jquery.ui.droppable.min.js
│ │ │ ├── jquery.ui.effect-blind.min.js
│ │ │ ├── jquery.ui.effect-bounce.min.js
│ │ │ ├── jquery.ui.effect-clip.min.js
│ │ │ ├── jquery.ui.effect-drop.min.js
│ │ │ ├── jquery.ui.effect-explode.min.js
│ │ │ ├── jquery.ui.effect-fade.min.js
│ │ │ ├── jquery.ui.effect-fold.min.js
│ │ │ ├── jquery.ui.effect-highlight.min.js
│ │ │ ├── jquery.ui.effect-pulsate.min.js
│ │ │ ├── jquery.ui.effect-scale.min.js
│ │ │ ├── jquery.ui.effect-shake.min.js
│ │ │ ├── jquery.ui.effect-slide.min.js
│ │ │ ├── jquery.ui.effect-transfer.min.js
│ │ │ ├── jquery.ui.effect.min.js
│ │ │ ├── jquery.ui.menu.min.js
│ │ │ ├── jquery.ui.mouse.min.js
│ │ │ ├── jquery.ui.position.min.js
│ │ │ ├── jquery.ui.progressbar.min.js
│ │ │ ├── jquery.ui.resizable.min.js
│ │ │ ├── jquery.ui.selectable.min.js
│ │ │ ├── jquery.ui.slider.min.js
│ │ │ ├── jquery.ui.sortable.min.js
│ │ │ ├── jquery.ui.spinner.min.js
│ │ │ ├── jquery.ui.tabs.min.js
│ │ │ ├── jquery.ui.tooltip.min.js
│ │ │ └── jquery.ui.widget.min.js
│ ├── jquery.countdown
│ │ ├── countdownBasic.html
│ │ ├── countdownGlowing.gif
│ │ ├── countdownLED.png
│ │ ├── jquery.countdown-ar.js
│ │ ├── jquery.countdown-bg.js
│ │ ├── jquery.countdown-bn.js
│ │ ├── jquery.countdown-bs.js
│ │ ├── jquery.countdown-ca.js
│ │ ├── jquery.countdown-cs.js
│ │ ├── jquery.countdown-cy.js
│ │ ├── jquery.countdown-da.js
│ │ ├── jquery.countdown-de.js
│ │ ├── jquery.countdown-el.js
│ │ ├── jquery.countdown-es.js
│ │ ├── jquery.countdown-et.js
│ │ ├── jquery.countdown-fa.js
│ │ ├── jquery.countdown-fi.js
│ │ ├── jquery.countdown-fr.js
│ │ ├── jquery.countdown-gl.js
│ │ ├── jquery.countdown-gu.js
│ │ ├── jquery.countdown-he.js
│ │ ├── jquery.countdown-hr.js
│ │ ├── jquery.countdown-hu.js
│ │ ├── jquery.countdown-hy.js
│ │ ├── jquery.countdown-id.js
│ │ ├── jquery.countdown-it.js
│ │ ├── jquery.countdown-ja.js
│ │ ├── jquery.countdown-kn.js
│ │ ├── jquery.countdown-ko.js
│ │ ├── jquery.countdown-lt.js
│ │ ├── jquery.countdown-lv.js
│ │ ├── jquery.countdown-ml.js
│ │ ├── jquery.countdown-ms.js
│ │ ├── jquery.countdown-my.js
│ │ ├── jquery.countdown-nb.js
│ │ ├── jquery.countdown-nl.js
│ │ ├── jquery.countdown-pl.js
│ │ ├── jquery.countdown-pt-BR.js
│ │ ├── jquery.countdown-ro.js
│ │ ├── jquery.countdown-ru.js
│ │ ├── jquery.countdown-sk.js
│ │ ├── jquery.countdown-sl.js
│ │ ├── jquery.countdown-sq.js
│ │ ├── jquery.countdown-sr-SR.js
│ │ ├── jquery.countdown-sr.js
│ │ ├── jquery.countdown-sv.js
│ │ ├── jquery.countdown-th.js
│ │ ├── jquery.countdown-tr.js
│ │ ├── jquery.countdown-uk.js
│ │ ├── jquery.countdown-ur.js
│ │ ├── jquery.countdown-uz.js
│ │ ├── jquery.countdown-vi.js
│ │ ├── jquery.countdown-zh-CN.js
│ │ ├── jquery.countdown-zh-TW.js
│ │ ├── jquery.countdown.css
│ │ ├── jquery.countdown.js
│ │ ├── jquery.countdown.min.js
│ │ ├── jquery.plugin.js
│ │ └── jquery.plugin.min.js
│ ├── jquery
│ │ ├── dist
│ │ │ └── jquery-migrate.min.map
│ │ ├── jquery-1.10.2.min.js
│ │ ├── jquery-1.8.2.min.js
│ │ ├── jquery-1.9.1.js
│ │ ├── jquery-1.9.1.min.js
│ │ ├── jquery-migrate-1.1.0.js
│ │ └── jquery-migrate-1.1.0.min.js
│ ├── jstree
│ │ ├── LICENSE-MIT
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── component.json
│ │ ├── composer.json
│ │ ├── demo
│ │ │ ├── basic
│ │ │ │ ├── index.html
│ │ │ │ └── root.json
│ │ │ ├── data_children_root_1.json
│ │ │ ├── data_children_root_2.json
│ │ │ ├── data_children_root_3.json
│ │ │ ├── data_children_root_4.json
│ │ │ ├── data_root.json
│ │ │ ├── filebrowser
│ │ │ │ ├── data
│ │ │ │ │ ├── .htaccess
│ │ │ │ │ └── root
│ │ │ │ │ │ ├── asdf
│ │ │ │ │ │ ├── New Text Document.txt
│ │ │ │ │ │ ├── New file4
│ │ │ │ │ │ ├── ajax_children.json
│ │ │ │ │ │ ├── ajax_children2.json
│ │ │ │ │ │ ├── asdf asdf
│ │ │ │ │ │ ├── asdfasdf
│ │ │ │ │ │ └── asdfasdfasdfasdfasdf
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── ajax_children.json
│ │ │ │ │ │ ├── ajax_demo_children.json
│ │ │ │ │ │ ├── ajax_demo_roots.json
│ │ │ │ │ │ ├── ajax_nodes.html
│ │ │ │ │ │ ├── ajax_roots.json
│ │ │ │ │ │ ├── apple-touch-icon-precomposed.png
│ │ │ │ │ │ ├── bootstrap
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── bootstrap-theme.css
│ │ │ │ │ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ │ │ │ └── bootstrap.min.css
│ │ │ │ │ │ │ ├── fonts
│ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff
│ │ │ │ │ │ │ └── js
│ │ │ │ │ │ │ │ ├── bootstrap.js
│ │ │ │ │ │ │ │ └── bootstrap.min.js
│ │ │ │ │ │ ├── dist
│ │ │ │ │ │ │ ├── jstree.js
│ │ │ │ │ │ │ ├── jstree.min.js
│ │ │ │ │ │ │ ├── libs
│ │ │ │ │ │ │ │ ├── jquery.js
│ │ │ │ │ │ │ │ ├── jquery.ui.touch.js
│ │ │ │ │ │ │ │ └── require.js
│ │ │ │ │ │ │ └── themes
│ │ │ │ │ │ │ │ └── default
│ │ │ │ │ │ │ │ ├── 32px.png
│ │ │ │ │ │ │ │ ├── 40px.png
│ │ │ │ │ │ │ │ ├── style.css
│ │ │ │ │ │ │ │ ├── style.min.css
│ │ │ │ │ │ │ │ └── throbber.gif
│ │ │ │ │ │ ├── docs.css
│ │ │ │ │ │ ├── docs.js
│ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ ├── html5.js
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── ajax_children2.json
│ │ │ │ │ │ │ ├── browsers.png
│ │ │ │ │ │ │ ├── find.png
│ │ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ │ ├── tree.png
│ │ │ │ │ │ │ └── tree_icon.png
│ │ │ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ │ │ ├── jquery.address-1.6.js
│ │ │ │ │ │ ├── respond.js
│ │ │ │ │ │ └── vakata.js
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── jstree.json
│ │ │ │ ├── file_sprite.png
│ │ │ │ └── index.php
│ │ │ └── sitebrowser
│ │ │ │ ├── class.db.php
│ │ │ │ ├── class.tree.php
│ │ │ │ ├── data.sql
│ │ │ │ └── index.php
│ │ ├── dist
│ │ │ ├── jstree.js
│ │ │ ├── jstree.min.js
│ │ │ └── themes
│ │ │ │ ├── default-dark
│ │ │ │ ├── 32px.png
│ │ │ │ ├── 40px.png
│ │ │ │ ├── style.css
│ │ │ │ ├── style.min.css
│ │ │ │ └── throbber.gif
│ │ │ │ └── default
│ │ │ │ ├── 32px copy.png
│ │ │ │ ├── 32px.png
│ │ │ │ ├── 40px.png
│ │ │ │ ├── style.css
│ │ │ │ ├── style.min.css
│ │ │ │ └── throbber.gif
│ │ ├── gruntfile.js
│ │ ├── jstree.jquery.json
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── intro.js
│ │ │ ├── jstree.checkbox.js
│ │ │ ├── jstree.contextmenu.js
│ │ │ ├── jstree.dnd.js
│ │ │ ├── jstree.js
│ │ │ ├── jstree.massload.js
│ │ │ ├── jstree.search.js
│ │ │ ├── jstree.sort.js
│ │ │ ├── jstree.state.js
│ │ │ ├── jstree.types.js
│ │ │ ├── jstree.unique.js
│ │ │ ├── jstree.wholerow.js
│ │ │ ├── misc.js
│ │ │ ├── outro.js
│ │ │ ├── sample.js
│ │ │ ├── themes
│ │ │ │ ├── base.less
│ │ │ │ ├── default-dark
│ │ │ │ │ ├── 32px.png
│ │ │ │ │ ├── 40px.png
│ │ │ │ │ ├── style.css
│ │ │ │ │ ├── style.less
│ │ │ │ │ └── throbber.gif
│ │ │ │ ├── default
│ │ │ │ │ ├── 32px.png
│ │ │ │ │ ├── 40px.png
│ │ │ │ │ ├── style.css
│ │ │ │ │ ├── style.less
│ │ │ │ │ └── throbber.gif
│ │ │ │ ├── main.less
│ │ │ │ ├── mixins.less
│ │ │ │ └── responsive.less
│ │ │ └── vakata-jstree.js
│ │ └── test
│ │ │ ├── unit
│ │ │ ├── index.html
│ │ │ ├── libs
│ │ │ │ ├── qunit.css
│ │ │ │ └── qunit.js
│ │ │ └── test.js
│ │ │ └── visual
│ │ │ ├── d.html
│ │ │ ├── m.html
│ │ │ └── screenshots
│ │ │ ├── d.png
│ │ │ └── m.png
│ ├── less
│ │ └── less.min.js
│ ├── lightbox
│ │ ├── css
│ │ │ ├── lightbox.css
│ │ │ └── screen.css
│ │ ├── img
│ │ │ ├── close.png
│ │ │ ├── demopage
│ │ │ │ ├── donate.png
│ │ │ │ ├── favicon.ico
│ │ │ │ ├── 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
│ │ │ ├── loading.gif
│ │ │ ├── next.png
│ │ │ └── prev.png
│ │ ├── index.html
│ │ └── js
│ │ │ ├── jquery-1.10.2.min.js
│ │ │ ├── lightbox-2.6.min.js
│ │ │ └── modernizr.custom.js
│ ├── masked-input
│ │ ├── masked-input.js
│ │ └── masked-input.min.js
│ ├── mockjax
│ │ └── jquery.mockjax.js
│ ├── moment
│ │ └── moment.min.js
│ ├── morris
│ │ ├── 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
│ │ ├── raphael.min.js
│ │ └── 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
│ │ │ ├── test.html
│ │ │ └── visual_specs.js
│ ├── nvd3
│ │ ├── .jshintrc
│ │ ├── .travis.yml
│ │ ├── GruntFile.js
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── build
│ │ │ ├── nv.d3.css
│ │ │ ├── nv.d3.js
│ │ │ ├── nv.d3.min.css
│ │ │ ├── nv.d3.min.css.map
│ │ │ ├── nv.d3.min.js
│ │ │ └── nv.d3.min.js.map
│ │ ├── examples
│ │ │ ├── TimeSeries.html
│ │ │ ├── boxPlot.html
│ │ │ ├── bullet.html
│ │ │ ├── bulletChart.html
│ │ │ ├── candlestick.html
│ │ │ ├── candlestickChart.html
│ │ │ ├── cumulativeLineChart.html
│ │ │ ├── discreteBarChart.html
│ │ │ ├── documentation.html
│ │ │ ├── donutChart.html
│ │ │ ├── furiousLegend.html
│ │ │ ├── historicalBar.html
│ │ │ ├── historicalBarChart.html
│ │ │ ├── images
│ │ │ │ ├── background.png
│ │ │ │ ├── body-background.png
│ │ │ │ ├── bullet.png
│ │ │ │ ├── hr.png
│ │ │ │ └── octocat-logo.png
│ │ │ ├── index.html
│ │ │ ├── legend.html
│ │ │ ├── lib
│ │ │ │ ├── colorbrewer.js
│ │ │ │ └── stream_layers.js
│ │ │ ├── line.html
│ │ │ ├── lineChart.html
│ │ │ ├── lineChartSVGResize.html
│ │ │ ├── linePlusBarChart.html
│ │ │ ├── lineWithFocusChart.html
│ │ │ ├── lineWithFocusChart_x2AxisLabel.html
│ │ │ ├── monitoringChart.html
│ │ │ ├── multiBarChart.html
│ │ │ ├── multiBarChart2.html
│ │ │ ├── multiBarHorizontalChart.html
│ │ │ ├── multiChart.html
│ │ │ ├── ohlc.html
│ │ │ ├── ohlcChart.html
│ │ │ ├── parallelCoordinates.html
│ │ │ ├── parallelCoordinatesChart.html
│ │ │ ├── pie.html
│ │ │ ├── pieChart.html
│ │ │ ├── scatter.html
│ │ │ ├── scatterChart.html
│ │ │ ├── scatterPlusLineChart.html
│ │ │ ├── site.html
│ │ │ ├── sparkline.html
│ │ │ ├── sparklinePlus.html
│ │ │ ├── stackedArea.html
│ │ │ ├── stackedAreaChart.html
│ │ │ ├── stylesheets
│ │ │ │ ├── pygment_trac.css
│ │ │ │ └── styles.css
│ │ │ ├── sunburst.html
│ │ │ └── tooltip.html
│ │ ├── index.html
│ │ ├── meteor
│ │ │ └── export.js
│ │ ├── package.js
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── core.js
│ │ │ ├── css
│ │ │ │ ├── axis.css
│ │ │ │ ├── bars.css
│ │ │ │ ├── boxplot.css
│ │ │ │ ├── bullet.css
│ │ │ │ ├── candlestick.css
│ │ │ │ ├── furiousLegend.css
│ │ │ │ ├── lineplusbar.css
│ │ │ │ ├── lines.css
│ │ │ │ ├── main.css
│ │ │ │ ├── ohlc.css
│ │ │ │ ├── parallelcoordinates.css
│ │ │ │ ├── pie.css
│ │ │ │ ├── scatter.css
│ │ │ │ ├── sparkline.css
│ │ │ │ ├── stackedarea.css
│ │ │ │ └── tooltip.css
│ │ │ ├── dom.js
│ │ │ ├── interactiveLayer.js
│ │ │ ├── models
│ │ │ │ ├── axis.js
│ │ │ │ ├── boxPlot.js
│ │ │ │ ├── boxPlotChart.js
│ │ │ │ ├── bullet.js
│ │ │ │ ├── bulletChart.js
│ │ │ │ ├── candlestickBar.js
│ │ │ │ ├── cumulativeLineChart.js
│ │ │ │ ├── discreteBar.js
│ │ │ │ ├── discreteBarChart.js
│ │ │ │ ├── distribution.js
│ │ │ │ ├── furiousLegend.js
│ │ │ │ ├── historicalBar.js
│ │ │ │ ├── historicalBarChart.js
│ │ │ │ ├── legend.js
│ │ │ │ ├── line.js
│ │ │ │ ├── lineChart.js
│ │ │ │ ├── linePlusBarChart.js
│ │ │ │ ├── lineWithFocusChart.js
│ │ │ │ ├── multiBar.js
│ │ │ │ ├── multiBarChart.js
│ │ │ │ ├── multiBarHorizontal.js
│ │ │ │ ├── multiBarHorizontalChart.js
│ │ │ │ ├── multiChart.js
│ │ │ │ ├── ohlcBar.js
│ │ │ │ ├── parallelCoordinates.js
│ │ │ │ ├── parallelCoordinatesChart.js
│ │ │ │ ├── pie.js
│ │ │ │ ├── pieChart.js
│ │ │ │ ├── scatter.js
│ │ │ │ ├── scatterChart.js
│ │ │ │ ├── sparkline.js
│ │ │ │ ├── sparklinePlus.js
│ │ │ │ ├── stackedArea.js
│ │ │ │ ├── stackedAreaChart.js
│ │ │ │ ├── sunburst.js
│ │ │ │ └── sunburstChart.js
│ │ │ ├── tooltip.js
│ │ │ └── utils.js
│ │ └── test
│ │ │ ├── ScatterChartTest.html
│ │ │ ├── boxPlotTest.html
│ │ │ ├── cumulativeLineChart.html
│ │ │ ├── lineChartTest.html
│ │ │ ├── linePlusBarChart.html
│ │ │ ├── linePlusBarWithFocusChart.html
│ │ │ ├── lineWithFisheyeChart.html
│ │ │ ├── lineWithFocusChart.html
│ │ │ ├── lineWithFocusChartMissingData.html
│ │ │ ├── mocha
│ │ │ ├── axis.coffee
│ │ │ ├── boxplot.coffee
│ │ │ ├── bullet.coffee
│ │ │ ├── core.coffee
│ │ │ ├── cumulative-line.coffee
│ │ │ ├── discretebar.coffee
│ │ │ ├── historical-bar.coffee
│ │ │ ├── legend.coffee
│ │ │ ├── line.coffee
│ │ │ ├── multibar-horizontal.coffee
│ │ │ ├── multibar.coffee
│ │ │ ├── pie.coffee
│ │ │ ├── scatter.coffee
│ │ │ ├── sparkline.coffee
│ │ │ ├── stacked.coffee
│ │ │ ├── sunburst.coffee
│ │ │ ├── test-utils.coffee
│ │ │ └── utils.coffee
│ │ │ ├── multiBarChartTest.html
│ │ │ ├── multiBarHorizontalChart.html
│ │ │ ├── node
│ │ │ ├── GruntFile.js
│ │ │ ├── README.md
│ │ │ ├── nodeTest.html
│ │ │ ├── nodeTest.js
│ │ │ └── package.json
│ │ │ ├── pieChartTest.html
│ │ │ ├── polylinearTest.html
│ │ │ ├── realTimeChartTest.html
│ │ │ ├── scatterPlusLineChart.html
│ │ │ ├── scrollTest.html
│ │ │ ├── scrollTest2.html
│ │ │ ├── stackedAreaChartMissingData.html
│ │ │ ├── stackedAreaChartTest.html
│ │ │ ├── stream_layers.js
│ │ │ ├── testScript.js
│ │ │ ├── teststyle.css
│ │ │ └── tinytest
│ │ │ └── nv-is-defined-test.js
│ ├── pace
│ │ ├── Gruntfile.coffee
│ │ ├── LICENSE
│ │ ├── docs
│ │ │ ├── intro.md
│ │ │ ├── lib
│ │ │ │ ├── color.js
│ │ │ │ ├── themes.coffee
│ │ │ │ └── themes.js
│ │ │ ├── resources
│ │ │ │ ├── barber-pole-orange.css
│ │ │ │ ├── flash-white.css
│ │ │ │ └── templates
│ │ │ │ │ ├── index.jade
│ │ │ │ │ └── page.jade
│ │ │ └── welcome
│ │ │ │ └── index.html
│ │ ├── pace.coffee
│ │ ├── pace.js
│ │ ├── pace.min.js
│ │ ├── package.json
│ │ ├── templates
│ │ │ ├── pace-theme-barber-shop.tmpl.css
│ │ │ ├── pace-theme-big-counter.tmpl.css
│ │ │ ├── pace-theme-bounce.tmpl.css
│ │ │ ├── pace-theme-center-atom.tmpl.css
│ │ │ ├── pace-theme-center-circle.tmpl.css
│ │ │ ├── pace-theme-center-radar.tmpl.css
│ │ │ ├── pace-theme-center-simple.tmpl.css
│ │ │ ├── pace-theme-corner-indicator.tmpl.css
│ │ │ ├── pace-theme-fill-left.tmpl.css
│ │ │ ├── pace-theme-flash.tmpl.css
│ │ │ ├── pace-theme-flat-top.tmpl.css
│ │ │ ├── pace-theme-loading-bar.tmpl.css
│ │ │ ├── pace-theme-mac-osx.tmpl.css
│ │ │ └── pace-theme-minimal.tmpl.css
│ │ ├── tests
│ │ │ └── demo.html
│ │ └── 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
│ │ │ ├── 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
│ ├── parsley
│ │ ├── Gruntfile.js
│ │ ├── dist
│ │ │ ├── parsley.js
│ │ │ ├── parsley.min.js
│ │ │ ├── parsley.remote.js
│ │ │ └── parsley.remote.min.js
│ │ ├── doc
│ │ │ ├── assets
│ │ │ │ ├── docs.css
│ │ │ │ ├── docs.js
│ │ │ │ ├── docs.less
│ │ │ │ ├── help.css
│ │ │ │ └── help.less
│ │ │ ├── download.html
│ │ │ ├── examples.html
│ │ │ ├── examples
│ │ │ │ ├── customvalidator.html
│ │ │ │ ├── events.html
│ │ │ │ ├── multisteps.html
│ │ │ │ └── simple.html
│ │ │ ├── help.html
│ │ │ ├── index.html
│ │ │ └── tests.html
│ │ ├── index.html
│ │ ├── src
│ │ │ ├── config.js
│ │ │ ├── extra
│ │ │ │ ├── plugin
│ │ │ │ │ ├── bind.js
│ │ │ │ │ └── remote.js
│ │ │ │ └── validator
│ │ │ │ │ └── dateiso.js
│ │ │ ├── i18n
│ │ │ │ ├── bg.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de.js
│ │ │ │ ├── en.extra.js
│ │ │ │ ├── en.js
│ │ │ │ ├── es.js
│ │ │ │ ├── fr.extra.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── he.extra.js
│ │ │ │ ├── he.js
│ │ │ │ ├── id.js
│ │ │ │ ├── it.extra.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── sv.extra.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── zh_cn.extra.js
│ │ │ │ └── zh_cn.js
│ │ │ ├── main.js
│ │ │ ├── parsley.css
│ │ │ ├── parsley.js
│ │ │ ├── parsley
│ │ │ │ ├── abstract.js
│ │ │ │ ├── defaults.js
│ │ │ │ ├── factory
│ │ │ │ │ ├── constraint.js
│ │ │ │ │ └── options.js
│ │ │ │ ├── field.js
│ │ │ │ ├── form.js
│ │ │ │ ├── multiple.js
│ │ │ │ ├── pubsub.js
│ │ │ │ ├── ui.js
│ │ │ │ ├── utils.js
│ │ │ │ └── validator.js
│ │ │ └── wrap
│ │ │ │ ├── append.js
│ │ │ │ └── prepend.js
│ │ └── test
│ │ │ ├── config.js
│ │ │ ├── dev.html
│ │ │ ├── features
│ │ │ ├── abstract.js
│ │ │ ├── extra.js
│ │ │ ├── field.js
│ │ │ ├── form.js
│ │ │ ├── multiple.js
│ │ │ ├── options.js
│ │ │ ├── parsley.js
│ │ │ ├── pubsub.js
│ │ │ ├── remote.js
│ │ │ ├── ui.js
│ │ │ ├── utils.js
│ │ │ └── validator.js
│ │ │ ├── index.html
│ │ │ ├── standalone.html
│ │ │ └── tests.js
│ ├── password-indicator
│ │ ├── css
│ │ │ └── password-indicator.css
│ │ ├── img
│ │ │ └── progressImg1.png
│ │ └── js
│ │ │ └── password-indicator.js
│ ├── powerange
│ │ ├── powerange.css
│ │ ├── powerange.js
│ │ ├── powerange.min.css
│ │ └── powerange.min.js
│ ├── select2
│ │ ├── .editorconfig
│ │ ├── .jshintignore
│ │ ├── .jshintrc
│ │ ├── .travis.yml
│ │ ├── CONTRIBUTING.md
│ │ ├── Gruntfile.js
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── component.json
│ │ ├── composer.json
│ │ ├── dist
│ │ │ ├── css
│ │ │ │ ├── select2.css
│ │ │ │ └── select2.min.css
│ │ │ └── js
│ │ │ │ ├── i18n
│ │ │ │ ├── az.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de.js
│ │ │ │ ├── en.js
│ │ │ │ ├── es.js
│ │ │ │ ├── et.js
│ │ │ │ ├── eu.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── hi.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── id.js
│ │ │ │ ├── is.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── mk.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-BR.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ro.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── sk.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
│ │ │ ├── _includes
│ │ │ │ ├── footer.html
│ │ │ │ ├── head.html
│ │ │ │ └── navigation.html
│ │ │ ├── _layouts
│ │ │ │ ├── default.html
│ │ │ │ └── home.html
│ │ │ ├── announcements-4.0.html
│ │ │ ├── community.html
│ │ │ ├── dist
│ │ │ │ └── .gitkeep
│ │ │ ├── examples.html
│ │ │ ├── index.html
│ │ │ ├── options.html
│ │ │ └── vendor
│ │ │ │ ├── css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── font-awesome.min.css
│ │ │ │ └── prettify.css
│ │ │ │ ├── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ └── fontawesome-webfont.woff
│ │ │ │ ├── images
│ │ │ │ └── flags
│ │ │ │ │ ├── ak.png
│ │ │ │ │ ├── al.png
│ │ │ │ │ ├── ar.png
│ │ │ │ │ ├── az.png
│ │ │ │ │ ├── ca.png
│ │ │ │ │ ├── co.png
│ │ │ │ │ ├── ct.png
│ │ │ │ │ ├── de.png
│ │ │ │ │ ├── fl.png
│ │ │ │ │ ├── ga.png
│ │ │ │ │ ├── hi.png
│ │ │ │ │ ├── ia.png
│ │ │ │ │ ├── id.png
│ │ │ │ │ ├── il.png
│ │ │ │ │ ├── in.png
│ │ │ │ │ ├── ks.png
│ │ │ │ │ ├── ky.png
│ │ │ │ │ ├── la.png
│ │ │ │ │ ├── ma.png
│ │ │ │ │ ├── md.png
│ │ │ │ │ ├── me.png
│ │ │ │ │ ├── mi.png
│ │ │ │ │ ├── mn.png
│ │ │ │ │ ├── mo.png
│ │ │ │ │ ├── ms.png
│ │ │ │ │ ├── mt.png
│ │ │ │ │ ├── nc.png
│ │ │ │ │ ├── nd.png
│ │ │ │ │ ├── ne.png
│ │ │ │ │ ├── nh.png
│ │ │ │ │ ├── nj.png
│ │ │ │ │ ├── nm.png
│ │ │ │ │ ├── nv.png
│ │ │ │ │ ├── ny.png
│ │ │ │ │ ├── oh.png
│ │ │ │ │ ├── ok.png
│ │ │ │ │ ├── or.png
│ │ │ │ │ ├── pa.png
│ │ │ │ │ ├── ri.png
│ │ │ │ │ ├── sc.png
│ │ │ │ │ ├── sd.png
│ │ │ │ │ ├── tn.png
│ │ │ │ │ ├── tx.png
│ │ │ │ │ ├── ut.png
│ │ │ │ │ ├── va.png
│ │ │ │ │ ├── vt.png
│ │ │ │ │ ├── wa.png
│ │ │ │ │ ├── wi.png
│ │ │ │ │ ├── wv.png
│ │ │ │ │ └── wy.png
│ │ │ │ └── js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── jquery.min.js
│ │ │ │ ├── placeholders.jquery.min.js
│ │ │ │ └── prettify.min.js
│ │ ├── package.json
│ │ ├── select2.jquery.json
│ │ ├── src
│ │ │ ├── js
│ │ │ │ ├── banner.end.js
│ │ │ │ ├── banner.start.js
│ │ │ │ ├── jquery.select2.js
│ │ │ │ ├── jquery.shim.js
│ │ │ │ ├── select2
│ │ │ │ │ ├── compat
│ │ │ │ │ │ ├── initSelection.js
│ │ │ │ │ │ ├── inputData.js
│ │ │ │ │ │ ├── matcher.js
│ │ │ │ │ │ └── query.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
│ │ │ │ │ │ ├── az.js
│ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ ├── da.js
│ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ ├── et.js
│ │ │ │ │ │ ├── eu.js
│ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ ├── hi.js
│ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ ├── is.js
│ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ ├── ko.js
│ │ │ │ │ │ ├── lt.js
│ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ ├── mk.js
│ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ ├── pt-BR.js
│ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ ├── ro.js
│ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ ├── sk.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
│ │ │ │ └── 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
│ │ │ ├── dropdown
│ │ │ │ ├── selectOnClose-tests.js
│ │ │ │ └── stopPropagation-tests.js
│ │ │ ├── helpers.js
│ │ │ ├── integration.html
│ │ │ ├── integration
│ │ │ │ └── select2-methods.js
│ │ │ ├── options
│ │ │ │ ├── data-tests.js
│ │ │ │ ├── deprecated-tests.js
│ │ │ │ └── width-tests.js
│ │ │ ├── selection
│ │ │ │ ├── allowClear-tests.js
│ │ │ │ ├── multiple-tests.js
│ │ │ │ ├── placeholder-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.14.0.css
│ │ │ │ └── qunit-1.14.0.js
│ │ └── vendor
│ │ │ ├── almond-0.2.9.js
│ │ │ ├── jquery-2.1.0.js
│ │ │ └── jquery.mousewheel.js
│ ├── simple-line-icons
│ │ ├── License.txt
│ │ ├── Readme.txt
│ │ ├── fonts
│ │ │ ├── Simple-Line-Icons.dev.svg
│ │ │ ├── Simple-Line-Icons.eot
│ │ │ ├── Simple-Line-Icons.svg
│ │ │ ├── Simple-Line-Icons.ttf
│ │ │ └── Simple-Line-Icons.woff
│ │ ├── icons-lte-ie7.js
│ │ ├── index.html
│ │ ├── simple-line-icons.css
│ │ └── style.css
│ ├── slimscroll
│ │ ├── README.md
│ │ ├── 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
│ │ └── slimScroll.jquery.json
│ ├── sparkline
│ │ ├── jquery.sparkline.js
│ │ └── jquery.sparkline.min.js
│ ├── superbox
│ │ ├── css
│ │ │ └── style.css
│ │ ├── img
│ │ │ ├── close.gif
│ │ │ ├── logo.png
│ │ │ └── superbox
│ │ │ │ ├── superbox-full-1.jpg
│ │ │ │ ├── superbox-full-10.jpg
│ │ │ │ ├── superbox-full-11.jpg
│ │ │ │ ├── superbox-full-12.jpg
│ │ │ │ ├── superbox-full-13.jpg
│ │ │ │ ├── superbox-full-14.jpg
│ │ │ │ ├── superbox-full-15.jpg
│ │ │ │ ├── superbox-full-16.jpg
│ │ │ │ ├── superbox-full-17.jpg
│ │ │ │ ├── superbox-full-18.jpg
│ │ │ │ ├── superbox-full-19.jpg
│ │ │ │ ├── superbox-full-2.jpg
│ │ │ │ ├── superbox-full-20.jpg
│ │ │ │ ├── superbox-full-21.jpg
│ │ │ │ ├── superbox-full-22.jpg
│ │ │ │ ├── superbox-full-23.jpg
│ │ │ │ ├── superbox-full-24.jpg
│ │ │ │ ├── superbox-full-3.jpg
│ │ │ │ ├── superbox-full-4.jpg
│ │ │ │ ├── superbox-full-5.jpg
│ │ │ │ ├── superbox-full-6.jpg
│ │ │ │ ├── superbox-full-7.jpg
│ │ │ │ ├── superbox-full-8.jpg
│ │ │ │ ├── superbox-full-9.jpg
│ │ │ │ ├── superbox-thumb-1.jpg
│ │ │ │ ├── superbox-thumb-10.jpg
│ │ │ │ ├── superbox-thumb-11.jpg
│ │ │ │ ├── superbox-thumb-12.jpg
│ │ │ │ ├── superbox-thumb-13.jpg
│ │ │ │ ├── superbox-thumb-14.jpg
│ │ │ │ ├── superbox-thumb-15.jpg
│ │ │ │ ├── superbox-thumb-16.jpg
│ │ │ │ ├── superbox-thumb-17.jpg
│ │ │ │ ├── superbox-thumb-18.jpg
│ │ │ │ ├── superbox-thumb-19.jpg
│ │ │ │ ├── superbox-thumb-2.jpg
│ │ │ │ ├── superbox-thumb-20.jpg
│ │ │ │ ├── superbox-thumb-21.jpg
│ │ │ │ ├── superbox-thumb-22.jpg
│ │ │ │ ├── superbox-thumb-23.jpg
│ │ │ │ ├── superbox-thumb-24.jpg
│ │ │ │ ├── superbox-thumb-3.jpg
│ │ │ │ ├── superbox-thumb-4.jpg
│ │ │ │ ├── superbox-thumb-5.jpg
│ │ │ │ ├── superbox-thumb-6.jpg
│ │ │ │ ├── superbox-thumb-7.jpg
│ │ │ │ ├── superbox-thumb-8.jpg
│ │ │ │ └── superbox-thumb-9.jpg
│ │ ├── index.html
│ │ └── js
│ │ │ ├── superbox.js
│ │ │ └── superbox.min.js
│ ├── sweetalert
│ │ ├── css
│ │ │ └── sweetalert.css
│ │ └── js
│ │ │ └── sweetalert.min.js
│ ├── switchery
│ │ ├── switchery.css
│ │ ├── switchery.js
│ │ ├── switchery.min.css
│ │ └── switchery.min.js
│ └── zTree
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── api
│ │ ├── API_cn.html
│ │ ├── API_en.html
│ │ ├── apiCss
│ │ │ ├── api.js
│ │ │ ├── common.css
│ │ │ ├── common_ie6.css
│ │ │ ├── img
│ │ │ │ ├── apiMenu.gif
│ │ │ │ ├── apiMenu.png
│ │ │ │ ├── background.jpg
│ │ │ │ ├── chinese.png
│ │ │ │ ├── close.png
│ │ │ │ ├── contact-bg.png
│ │ │ │ ├── english.png
│ │ │ │ ├── header-bg.png
│ │ │ │ ├── lightbulb.png
│ │ │ │ ├── overlay_arrow.gif
│ │ │ │ ├── overlay_arrow.png
│ │ │ │ ├── overlay_bg.png
│ │ │ │ ├── overlay_close_IE6.gif
│ │ │ │ ├── zTreeStandard.gif
│ │ │ │ └── zTreeStandard.png
│ │ │ ├── jquery-1.6.2.min.js
│ │ │ ├── jquery.ztree.core.js
│ │ │ └── zTreeStyleForApi.css
│ │ ├── cn
│ │ │ ├── fn.zTree._z.html
│ │ │ ├── fn.zTree.destroy.html
│ │ │ ├── fn.zTree.getZTreeObj.html
│ │ │ ├── fn.zTree.init.html
│ │ │ ├── setting.async.autoParam.html
│ │ │ ├── setting.async.contentType.html
│ │ │ ├── setting.async.dataFilter.html
│ │ │ ├── setting.async.dataType.html
│ │ │ ├── setting.async.enable.html
│ │ │ ├── setting.async.otherParam.html
│ │ │ ├── setting.async.type.html
│ │ │ ├── setting.async.url.html
│ │ │ ├── setting.callback.beforeAsync.html
│ │ │ ├── setting.callback.beforeCheck.html
│ │ │ ├── setting.callback.beforeClick.html
│ │ │ ├── setting.callback.beforeCollapse.html
│ │ │ ├── setting.callback.beforeDblClick.html
│ │ │ ├── setting.callback.beforeDrag.html
│ │ │ ├── setting.callback.beforeDragOpen.html
│ │ │ ├── setting.callback.beforeDrop.html
│ │ │ ├── setting.callback.beforeEditName.html
│ │ │ ├── setting.callback.beforeExpand.html
│ │ │ ├── setting.callback.beforeMouseDown.html
│ │ │ ├── setting.callback.beforeMouseUp.html
│ │ │ ├── setting.callback.beforeRemove.html
│ │ │ ├── setting.callback.beforeRename.html
│ │ │ ├── setting.callback.beforeRightClick.html
│ │ │ ├── setting.callback.onAsyncError.html
│ │ │ ├── setting.callback.onAsyncSuccess.html
│ │ │ ├── setting.callback.onCheck.html
│ │ │ ├── setting.callback.onClick.html
│ │ │ ├── setting.callback.onCollapse.html
│ │ │ ├── setting.callback.onDblClick.html
│ │ │ ├── setting.callback.onDrag.html
│ │ │ ├── setting.callback.onDragMove.html
│ │ │ ├── setting.callback.onDrop.html
│ │ │ ├── setting.callback.onExpand.html
│ │ │ ├── setting.callback.onMouseDown.html
│ │ │ ├── setting.callback.onMouseUp.html
│ │ │ ├── setting.callback.onNodeCreated.html
│ │ │ ├── setting.callback.onRemove.html
│ │ │ ├── setting.callback.onRename.html
│ │ │ ├── setting.callback.onRightClick.html
│ │ │ ├── setting.check.autoCheckTrigger.html
│ │ │ ├── setting.check.chkDisabledInherit.html
│ │ │ ├── setting.check.chkStyle.html
│ │ │ ├── setting.check.chkboxType.html
│ │ │ ├── setting.check.enable.html
│ │ │ ├── setting.check.nocheckInherit.html
│ │ │ ├── setting.check.radioType.html
│ │ │ ├── setting.data.keep.leaf.html
│ │ │ ├── setting.data.keep.parent.html
│ │ │ ├── setting.data.key.checked.html
│ │ │ ├── setting.data.key.children.html
│ │ │ ├── setting.data.key.name.html
│ │ │ ├── setting.data.key.title.html
│ │ │ ├── setting.data.key.url.html
│ │ │ ├── setting.data.simpleData.enable.html
│ │ │ ├── setting.data.simpleData.idKey.html
│ │ │ ├── setting.data.simpleData.pIdKey.html
│ │ │ ├── setting.data.simpleData.rootPId.html
│ │ │ ├── setting.edit.drag.autoExpandTrigger.html
│ │ │ ├── setting.edit.drag.autoOpenTime.html
│ │ │ ├── setting.edit.drag.borderMax.html
│ │ │ ├── setting.edit.drag.borderMin.html
│ │ │ ├── setting.edit.drag.inner.html
│ │ │ ├── setting.edit.drag.isCopy.html
│ │ │ ├── setting.edit.drag.isMove.html
│ │ │ ├── setting.edit.drag.maxShowNodeNum.html
│ │ │ ├── setting.edit.drag.minMoveSize.html
│ │ │ ├── setting.edit.drag.next.html
│ │ │ ├── setting.edit.drag.prev.html
│ │ │ ├── setting.edit.editNameSelectAll.html
│ │ │ ├── setting.edit.enable.html
│ │ │ ├── setting.edit.removeTitle.html
│ │ │ ├── setting.edit.renameTitle.html
│ │ │ ├── setting.edit.showRemoveBtn.html
│ │ │ ├── setting.edit.showRenameBtn.html
│ │ │ ├── setting.treeId.html
│ │ │ ├── setting.treeObj.html
│ │ │ ├── setting.view.addDiyDom.html
│ │ │ ├── setting.view.addHoverDom.html
│ │ │ ├── setting.view.autoCancelSelected.html
│ │ │ ├── setting.view.dblClickExpand.html
│ │ │ ├── setting.view.expandSpeed.html
│ │ │ ├── setting.view.fontCss.html
│ │ │ ├── setting.view.nameIsHTML.html
│ │ │ ├── setting.view.removeHoverDom.html
│ │ │ ├── setting.view.selectedMulti.html
│ │ │ ├── setting.view.showIcon.html
│ │ │ ├── setting.view.showLine.html
│ │ │ ├── setting.view.showTitle.html
│ │ │ ├── setting.view.txtSelectedEnable.html
│ │ │ ├── treeNode.check_Child_State.html
│ │ │ ├── treeNode.check_Focus.html
│ │ │ ├── treeNode.checked.html
│ │ │ ├── treeNode.checkedOld.html
│ │ │ ├── treeNode.children.html
│ │ │ ├── treeNode.chkDisabled.html
│ │ │ ├── treeNode.click.html
│ │ │ ├── treeNode.diy.html
│ │ │ ├── treeNode.editNameFlag.html
│ │ │ ├── treeNode.getCheckStatus.html
│ │ │ ├── treeNode.getIndex.html
│ │ │ ├── treeNode.getNextNode.html
│ │ │ ├── treeNode.getParentNode.html
│ │ │ ├── treeNode.getPath.html
│ │ │ ├── treeNode.getPreNode.html
│ │ │ ├── treeNode.halfCheck.html
│ │ │ ├── treeNode.icon.html
│ │ │ ├── treeNode.iconClose.html
│ │ │ ├── treeNode.iconOpen.html
│ │ │ ├── treeNode.iconSkin.html
│ │ │ ├── treeNode.isAjaxing.html
│ │ │ ├── treeNode.isFirstNode.html
│ │ │ ├── treeNode.isHidden.html
│ │ │ ├── treeNode.isHover.html
│ │ │ ├── treeNode.isLastNode.html
│ │ │ ├── treeNode.isParent.html
│ │ │ ├── treeNode.level.html
│ │ │ ├── treeNode.name.html
│ │ │ ├── treeNode.nocheck.html
│ │ │ ├── treeNode.open.html
│ │ │ ├── treeNode.parentTId.html
│ │ │ ├── treeNode.tId.html
│ │ │ ├── treeNode.target.html
│ │ │ ├── treeNode.url.html
│ │ │ ├── treeNode.zAsync.html
│ │ │ ├── zTreeObj.addNodes.html
│ │ │ ├── zTreeObj.cancelEditName.html
│ │ │ ├── zTreeObj.cancelSelectedNode.html
│ │ │ ├── zTreeObj.checkAllNodes.html
│ │ │ ├── zTreeObj.checkNode.html
│ │ │ ├── zTreeObj.copyNode.html
│ │ │ ├── zTreeObj.destroy.html
│ │ │ ├── zTreeObj.editName.html
│ │ │ ├── zTreeObj.expandAll.html
│ │ │ ├── zTreeObj.expandNode.html
│ │ │ ├── zTreeObj.getChangeCheckedNodes.html
│ │ │ ├── zTreeObj.getCheckedNodes.html
│ │ │ ├── zTreeObj.getNodeByParam.html
│ │ │ ├── zTreeObj.getNodeByTId.html
│ │ │ ├── zTreeObj.getNodeIndex.html
│ │ │ ├── zTreeObj.getNodes.html
│ │ │ ├── zTreeObj.getNodesByFilter.html
│ │ │ ├── zTreeObj.getNodesByParam.html
│ │ │ ├── zTreeObj.getNodesByParamFuzzy.html
│ │ │ ├── zTreeObj.getSelectedNodes.html
│ │ │ ├── zTreeObj.hideNode.html
│ │ │ ├── zTreeObj.hideNodes.html
│ │ │ ├── zTreeObj.moveNode.html
│ │ │ ├── zTreeObj.reAsyncChildNodes.html
│ │ │ ├── zTreeObj.refresh.html
│ │ │ ├── zTreeObj.removeChildNodes.html
│ │ │ ├── zTreeObj.removeNode.html
│ │ │ ├── zTreeObj.selectNode.html
│ │ │ ├── zTreeObj.setChkDisabled.html
│ │ │ ├── zTreeObj.setEditable.html
│ │ │ ├── zTreeObj.setting.html
│ │ │ ├── zTreeObj.showNode.html
│ │ │ ├── zTreeObj.showNodes.html
│ │ │ ├── zTreeObj.transformToArray.html
│ │ │ ├── zTreeObj.transformTozTreeNodes.html
│ │ │ └── zTreeObj.updateNode.html
│ │ └── en
│ │ │ ├── fn.zTree._z.html
│ │ │ ├── fn.zTree.destroy.html
│ │ │ ├── fn.zTree.getZTreeObj.html
│ │ │ ├── fn.zTree.init.html
│ │ │ ├── setting.async.autoParam.html
│ │ │ ├── setting.async.contentType.html
│ │ │ ├── setting.async.dataFilter.html
│ │ │ ├── setting.async.dataType.html
│ │ │ ├── setting.async.enable.html
│ │ │ ├── setting.async.otherParam.html
│ │ │ ├── setting.async.type.html
│ │ │ ├── setting.async.url.html
│ │ │ ├── setting.callback.beforeAsync.html
│ │ │ ├── setting.callback.beforeCheck.html
│ │ │ ├── setting.callback.beforeClick.html
│ │ │ ├── setting.callback.beforeCollapse.html
│ │ │ ├── setting.callback.beforeDblClick.html
│ │ │ ├── setting.callback.beforeDrag.html
│ │ │ ├── setting.callback.beforeDragOpen.html
│ │ │ ├── setting.callback.beforeDrop.html
│ │ │ ├── setting.callback.beforeEditName.html
│ │ │ ├── setting.callback.beforeExpand.html
│ │ │ ├── setting.callback.beforeMouseDown.html
│ │ │ ├── setting.callback.beforeMouseUp.html
│ │ │ ├── setting.callback.beforeRemove.html
│ │ │ ├── setting.callback.beforeRename.html
│ │ │ ├── setting.callback.beforeRightClick.html
│ │ │ ├── setting.callback.onAsyncError.html
│ │ │ ├── setting.callback.onAsyncSuccess.html
│ │ │ ├── setting.callback.onCheck.html
│ │ │ ├── setting.callback.onClick.html
│ │ │ ├── setting.callback.onCollapse.html
│ │ │ ├── setting.callback.onDblClick.html
│ │ │ ├── setting.callback.onDrag.html
│ │ │ ├── setting.callback.onDragMove.html
│ │ │ ├── setting.callback.onDrop.html
│ │ │ ├── setting.callback.onExpand.html
│ │ │ ├── setting.callback.onMouseDown.html
│ │ │ ├── setting.callback.onMouseUp.html
│ │ │ ├── setting.callback.onNodeCreated.html
│ │ │ ├── setting.callback.onRemove.html
│ │ │ ├── setting.callback.onRename.html
│ │ │ ├── setting.callback.onRightClick.html
│ │ │ ├── setting.check.autoCheckTrigger.html
│ │ │ ├── setting.check.chkDisabledInherit.html
│ │ │ ├── setting.check.chkStyle.html
│ │ │ ├── setting.check.chkboxType.html
│ │ │ ├── setting.check.enable.html
│ │ │ ├── setting.check.nocheckInherit.html
│ │ │ ├── setting.check.radioType.html
│ │ │ ├── setting.data.keep.leaf.html
│ │ │ ├── setting.data.keep.parent.html
│ │ │ ├── setting.data.key.checked.html
│ │ │ ├── setting.data.key.children.html
│ │ │ ├── setting.data.key.name.html
│ │ │ ├── setting.data.key.title.html
│ │ │ ├── setting.data.key.url.html
│ │ │ ├── setting.data.simpleData.enable.html
│ │ │ ├── setting.data.simpleData.idKey.html
│ │ │ ├── setting.data.simpleData.pIdKey.html
│ │ │ ├── setting.data.simpleData.rootPId.html
│ │ │ ├── setting.edit.drag.autoExpandTrigger.html
│ │ │ ├── setting.edit.drag.autoOpenTime.html
│ │ │ ├── setting.edit.drag.borderMax.html
│ │ │ ├── setting.edit.drag.borderMin.html
│ │ │ ├── setting.edit.drag.inner.html
│ │ │ ├── setting.edit.drag.isCopy.html
│ │ │ ├── setting.edit.drag.isMove.html
│ │ │ ├── setting.edit.drag.maxShowNodeNum.html
│ │ │ ├── setting.edit.drag.minMoveSize.html
│ │ │ ├── setting.edit.drag.next.html
│ │ │ ├── setting.edit.drag.prev.html
│ │ │ ├── setting.edit.editNameSelectAll.html
│ │ │ ├── setting.edit.enable.html
│ │ │ ├── setting.edit.removeTitle.html
│ │ │ ├── setting.edit.renameTitle.html
│ │ │ ├── setting.edit.showRemoveBtn.html
│ │ │ ├── setting.edit.showRenameBtn.html
│ │ │ ├── setting.treeId.html
│ │ │ ├── setting.treeObj.html
│ │ │ ├── setting.view.addDiyDom.html
│ │ │ ├── setting.view.addHoverDom.html
│ │ │ ├── setting.view.autoCancelSelected.html
│ │ │ ├── setting.view.dblClickExpand.html
│ │ │ ├── setting.view.expandSpeed.html
│ │ │ ├── setting.view.fontCss.html
│ │ │ ├── setting.view.nameIsHTML.html
│ │ │ ├── setting.view.removeHoverDom.html
│ │ │ ├── setting.view.selectedMulti.html
│ │ │ ├── setting.view.showIcon.html
│ │ │ ├── setting.view.showLine.html
│ │ │ ├── setting.view.showTitle.html
│ │ │ ├── setting.view.txtSelectedEnable.html
│ │ │ ├── treeNode.check_Child_State.html
│ │ │ ├── treeNode.check_Focus.html
│ │ │ ├── treeNode.checked.html
│ │ │ ├── treeNode.checkedOld.html
│ │ │ ├── treeNode.children.html
│ │ │ ├── treeNode.chkDisabled.html
│ │ │ ├── treeNode.click.html
│ │ │ ├── treeNode.diy.html
│ │ │ ├── treeNode.editNameFlag.html
│ │ │ ├── treeNode.getCheckStatus.html
│ │ │ ├── treeNode.getIndex.html
│ │ │ ├── treeNode.getNextNode.html
│ │ │ ├── treeNode.getParentNode.html
│ │ │ ├── treeNode.getPath.html
│ │ │ ├── treeNode.getPreNode.html
│ │ │ ├── treeNode.halfCheck.html
│ │ │ ├── treeNode.icon.html
│ │ │ ├── treeNode.iconClose.html
│ │ │ ├── treeNode.iconOpen.html
│ │ │ ├── treeNode.iconSkin.html
│ │ │ ├── treeNode.isAjaxing.html
│ │ │ ├── treeNode.isFirstNode.html
│ │ │ ├── treeNode.isHidden.html
│ │ │ ├── treeNode.isHover.html
│ │ │ ├── treeNode.isLastNode.html
│ │ │ ├── treeNode.isParent.html
│ │ │ ├── treeNode.level.html
│ │ │ ├── treeNode.name.html
│ │ │ ├── treeNode.nocheck.html
│ │ │ ├── treeNode.open.html
│ │ │ ├── treeNode.parentTId.html
│ │ │ ├── treeNode.tId.html
│ │ │ ├── treeNode.target.html
│ │ │ ├── treeNode.url.html
│ │ │ ├── treeNode.zAsync.html
│ │ │ ├── zTreeObj.addNodes.html
│ │ │ ├── zTreeObj.cancelEditName.html
│ │ │ ├── zTreeObj.cancelSelectedNode.html
│ │ │ ├── zTreeObj.checkAllNodes.html
│ │ │ ├── zTreeObj.checkNode.html
│ │ │ ├── zTreeObj.copyNode.html
│ │ │ ├── zTreeObj.destroy.html
│ │ │ ├── zTreeObj.editName.html
│ │ │ ├── zTreeObj.expandAll.html
│ │ │ ├── zTreeObj.expandNode.html
│ │ │ ├── zTreeObj.getChangeCheckedNodes.html
│ │ │ ├── zTreeObj.getCheckedNodes.html
│ │ │ ├── zTreeObj.getNodeByParam.html
│ │ │ ├── zTreeObj.getNodeByTId.html
│ │ │ ├── zTreeObj.getNodeIndex.html
│ │ │ ├── zTreeObj.getNodes.html
│ │ │ ├── zTreeObj.getNodesByFilter.html
│ │ │ ├── zTreeObj.getNodesByParam.html
│ │ │ ├── zTreeObj.getNodesByParamFuzzy.html
│ │ │ ├── zTreeObj.getSelectedNodes.html
│ │ │ ├── zTreeObj.hideNode.html
│ │ │ ├── zTreeObj.hideNodes.html
│ │ │ ├── zTreeObj.moveNode.html
│ │ │ ├── zTreeObj.reAsyncChildNodes.html
│ │ │ ├── zTreeObj.refresh.html
│ │ │ ├── zTreeObj.removeChildNodes.html
│ │ │ ├── zTreeObj.removeNode.html
│ │ │ ├── zTreeObj.selectNode.html
│ │ │ ├── zTreeObj.setChkDisabled.html
│ │ │ ├── zTreeObj.setEditable.html
│ │ │ ├── zTreeObj.setting.html
│ │ │ ├── zTreeObj.showNode.html
│ │ │ ├── zTreeObj.showNodes.html
│ │ │ ├── zTreeObj.transformToArray.html
│ │ │ ├── zTreeObj.transformTozTreeNodes.html
│ │ │ └── zTreeObj.updateNode.html
│ │ ├── css
│ │ ├── awesomeStyle
│ │ │ ├── awesome.css
│ │ │ ├── awesome.less
│ │ │ ├── fa.less
│ │ │ └── img
│ │ │ │ └── loading.gif
│ │ ├── demo.css
│ │ ├── metroStyle
│ │ │ ├── img
│ │ │ │ ├── line_conn.png
│ │ │ │ ├── loading.gif
│ │ │ │ ├── metro.gif
│ │ │ │ └── metro.png
│ │ │ └── metroStyle.css
│ │ └── zTreeStyle
│ │ │ ├── img
│ │ │ ├── diy
│ │ │ │ ├── 1_close.png
│ │ │ │ ├── 1_open.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ ├── 5.png
│ │ │ │ ├── 6.png
│ │ │ │ ├── 7.png
│ │ │ │ ├── 8.png
│ │ │ │ └── 9.png
│ │ │ ├── line_conn.gif
│ │ │ ├── loading.gif
│ │ │ ├── zTreeStandard.gif
│ │ │ └── zTreeStandard.png
│ │ │ └── zTreeStyle.css
│ │ ├── demo
│ │ ├── cn
│ │ │ ├── asyncData
│ │ │ │ ├── getNodes.php
│ │ │ │ └── getNodesForBigData.php
│ │ │ ├── bigdata
│ │ │ │ ├── common.html
│ │ │ │ ├── diy_async.html
│ │ │ │ └── page.html
│ │ │ ├── core
│ │ │ │ ├── async.html
│ │ │ │ ├── async_fun.html
│ │ │ │ ├── click.html
│ │ │ │ ├── custom_font.html
│ │ │ │ ├── custom_icon.html
│ │ │ │ ├── custom_iconSkin.html
│ │ │ │ ├── expand.html
│ │ │ │ ├── noicon.html
│ │ │ │ ├── noline.html
│ │ │ │ ├── otherMouse.html
│ │ │ │ ├── searchNodes.html
│ │ │ │ ├── simpleData.html
│ │ │ │ ├── standardData.html
│ │ │ │ ├── update_fun.html
│ │ │ │ └── url.html
│ │ │ ├── excheck
│ │ │ │ ├── checkbox.html
│ │ │ │ ├── checkbox_chkDisabled.html
│ │ │ │ ├── checkbox_count.html
│ │ │ │ ├── checkbox_fun.html
│ │ │ │ ├── checkbox_halfCheck.html
│ │ │ │ ├── checkbox_nocheck.html
│ │ │ │ ├── radio.html
│ │ │ │ ├── radio_chkDisabled.html
│ │ │ │ ├── radio_fun.html
│ │ │ │ ├── radio_halfCheck.html
│ │ │ │ └── radio_nocheck.html
│ │ │ ├── exedit
│ │ │ │ ├── async_edit.html
│ │ │ │ ├── drag.html
│ │ │ │ ├── drag_fun.html
│ │ │ │ ├── drag_super.html
│ │ │ │ ├── edit.html
│ │ │ │ ├── edit_fun.html
│ │ │ │ ├── edit_super.html
│ │ │ │ └── multiTree.html
│ │ │ ├── exhide
│ │ │ │ ├── checkbox.html
│ │ │ │ ├── common.html
│ │ │ │ └── radio.html
│ │ │ ├── index.html
│ │ │ └── super
│ │ │ │ ├── asyncForAll.html
│ │ │ │ ├── awesome.html
│ │ │ │ ├── checkbox_radio.html
│ │ │ │ ├── diydom.html
│ │ │ │ ├── dragWithOther.html
│ │ │ │ ├── left_menu.html
│ │ │ │ ├── left_menuForOutLook.gif
│ │ │ │ ├── left_menuForOutLook.html
│ │ │ │ ├── left_menuForOutLook.png
│ │ │ │ ├── metro.html
│ │ │ │ ├── oneclick.html
│ │ │ │ ├── oneroot.html
│ │ │ │ ├── rightClickMenu.html
│ │ │ │ ├── select_menu.html
│ │ │ │ ├── select_menu_checkbox.html
│ │ │ │ ├── select_menu_radio.html
│ │ │ │ └── singlepath.html
│ │ └── en
│ │ │ ├── asyncData
│ │ │ ├── getNodes.php
│ │ │ └── getNodesForBigData.php
│ │ │ ├── bigdata
│ │ │ ├── common.html
│ │ │ ├── diy_async.html
│ │ │ └── page.html
│ │ │ ├── core
│ │ │ ├── async.html
│ │ │ ├── async_fun.html
│ │ │ ├── click.html
│ │ │ ├── custom_font.html
│ │ │ ├── custom_icon.html
│ │ │ ├── custom_iconSkin.html
│ │ │ ├── expand.html
│ │ │ ├── noicon.html
│ │ │ ├── noline.html
│ │ │ ├── otherMouse.html
│ │ │ ├── searchNodes.html
│ │ │ ├── simpleData.html
│ │ │ ├── standardData.html
│ │ │ ├── update_fun.html
│ │ │ └── url.html
│ │ │ ├── excheck
│ │ │ ├── checkbox.html
│ │ │ ├── checkbox_chkDisabled.html
│ │ │ ├── checkbox_count.html
│ │ │ ├── checkbox_fun.html
│ │ │ ├── checkbox_halfCheck.html
│ │ │ ├── checkbox_nocheck.html
│ │ │ ├── radio.html
│ │ │ ├── radio_chkDisabled.html
│ │ │ ├── radio_fun.html
│ │ │ ├── radio_halfCheck.html
│ │ │ └── radio_nocheck.html
│ │ │ ├── exedit
│ │ │ ├── async_edit.html
│ │ │ ├── drag.html
│ │ │ ├── drag_fun.html
│ │ │ ├── drag_super.html
│ │ │ ├── edit.html
│ │ │ ├── edit_fun.html
│ │ │ ├── edit_super.html
│ │ │ └── multiTree.html
│ │ │ ├── exhide
│ │ │ ├── checkbox.html
│ │ │ ├── common.html
│ │ │ └── radio.html
│ │ │ ├── index.html
│ │ │ └── super
│ │ │ ├── asyncForAll.html
│ │ │ ├── awesome.html
│ │ │ ├── checkbox_radio.html
│ │ │ ├── diydom.html
│ │ │ ├── dragWithOther.html
│ │ │ ├── left_menu.html
│ │ │ ├── left_menuForOutLook.gif
│ │ │ ├── left_menuForOutLook.html
│ │ │ ├── left_menuForOutLook.png
│ │ │ ├── metro.html
│ │ │ ├── oneclick.html
│ │ │ ├── oneroot.html
│ │ │ ├── rightClickMenu.html
│ │ │ ├── select_menu.html
│ │ │ ├── select_menu_checkbox.html
│ │ │ ├── select_menu_radio.html
│ │ │ ├── singlepath.html
│ │ │ └── ztree.html
│ │ ├── js
│ │ ├── jquery-1.4.4.min.js
│ │ ├── jquery.ztree.all.js
│ │ ├── jquery.ztree.all.min.js
│ │ ├── jquery.ztree.core.js
│ │ ├── jquery.ztree.core.min.js
│ │ ├── jquery.ztree.excheck.js
│ │ ├── jquery.ztree.excheck.min.js
│ │ ├── jquery.ztree.exedit.js
│ │ ├── jquery.ztree.exedit.min.js
│ │ ├── jquery.ztree.exhide.js
│ │ ├── jquery.ztree.exhide.min.js
│ │ └── ztree.3.5.26.zip
│ │ ├── log v3.x.txt
│ │ ├── package.json
│ │ └── zTree.v3.jquery.json
│ ├── robots.txt
│ └── upload
│ ├── file
│ └── tmp.txt
│ ├── image
│ └── tmp.txt
│ └── img
│ ├── 1473319696iHECz.jpg
│ ├── 1473320533gDcsI.jpg
│ ├── 1473320536KFSP9.jpg
│ └── 1474515884PpeUJ.png
├── backend
├── assets
│ └── AppAsset.php
├── codeception.yml
├── config
│ ├── .gitignore
│ ├── bootstrap.php
│ ├── main.php
│ ├── params.php
│ └── test.php
├── controllers
│ └── SiteController.php
├── models
│ └── .gitkeep
├── runtime
│ └── .gitignore
├── tests
│ ├── _bootstrap.php
│ ├── _data
│ │ ├── .gitignore
│ │ └── login_data.php
│ ├── _output
│ │ └── .gitignore
│ ├── _support
│ │ ├── .gitignore
│ │ ├── FunctionalTester.php
│ │ └── UnitTester.php
│ ├── functional.suite.yml
│ ├── functional
│ │ ├── LoginCest.php
│ │ └── _bootstrap.php
│ ├── unit.suite.yml
│ └── unit
│ │ └── _bootstrap.php
├── views
│ ├── layouts
│ │ └── main.php
│ └── site
│ │ ├── error.php
│ │ ├── index.php
│ │ └── login.php
└── web
│ ├── .gitignore
│ ├── assets
│ └── .gitignore
│ ├── css
│ └── site.css
│ ├── favicon.ico
│ └── robots.txt
├── codeception.yml
├── common
├── codeception.yml
├── config
│ ├── .gitignore
│ ├── bootstrap.php
│ ├── main.php
│ ├── params.php
│ └── test.php
├── fixtures
│ └── User.php
├── helper
│ ├── AdminHelper.php
│ ├── AnalysisHelper.php
│ ├── ApiHelper.php
│ ├── DataHelper.php
│ ├── DateTimeHelper.php
│ ├── RequestHelper.php
│ └── StringHelper.php
├── mail
│ ├── layouts
│ │ ├── html.php
│ │ └── text.php
│ ├── passwordResetToken-html.php
│ └── passwordResetToken-text.php
├── models
│ ├── LoginForm.php
│ ├── User.php
│ └── models
│ │ ├── AdminUserInfo.php
│ │ ├── Course.php
│ │ ├── GetOutIpList.php
│ │ ├── LoginForm.php
│ │ ├── User.php
│ │ ├── UserBra.php
│ │ ├── WebsitSetting.php
│ │ └── YyLiveRoom.php
├── tests
│ ├── _bootstrap.php
│ ├── _data
│ │ └── user.php
│ ├── _output
│ │ └── .gitignore
│ ├── _support
│ │ ├── .gitignore
│ │ └── UnitTester.php
│ ├── unit.suite.yml
│ └── unit
│ │ └── models
│ │ └── LoginFormTest.php
└── widgets
│ └── Alert.php
├── composer.json
├── composer.lock
├── console
├── config
│ ├── .gitignore
│ ├── bootstrap.php
│ ├── main.php
│ └── params.php
├── controllers
│ └── .gitkeep
├── migrations
│ └── m130524_201442_init.php
├── models
│ └── .gitkeep
└── runtime
│ └── .gitignore
├── environments
├── dev
│ ├── backend
│ │ ├── config
│ │ │ ├── main-local.php
│ │ │ ├── params-local.php
│ │ │ └── test-local.php
│ │ └── web
│ │ │ ├── index-test.php
│ │ │ └── index.php
│ ├── common
│ │ └── config
│ │ │ ├── main-local.php
│ │ │ ├── params-local.php
│ │ │ └── test-local.php
│ ├── console
│ │ └── config
│ │ │ ├── main-local.php
│ │ │ └── params-local.php
│ ├── frontend
│ │ ├── config
│ │ │ ├── main-local.php
│ │ │ ├── params-local.php
│ │ │ └── test-local.php
│ │ └── web
│ │ │ ├── index-test.php
│ │ │ └── index.php
│ ├── yii
│ ├── yii_test
│ └── yii_test.bat
├── index.php
└── prod
│ ├── backend
│ ├── config
│ │ ├── main-local.php
│ │ └── params-local.php
│ └── web
│ │ └── index.php
│ ├── common
│ └── config
│ │ ├── main-local.php
│ │ └── params-local.php
│ ├── console
│ └── config
│ │ ├── main-local.php
│ │ └── params-local.php
│ ├── frontend
│ ├── config
│ │ ├── main-local.php
│ │ └── params-local.php
│ └── web
│ │ └── index.php
│ └── yii
├── frontend
├── assets
│ └── AppAsset.php
├── codeception.yml
├── config
│ ├── .gitignore
│ ├── bootstrap.php
│ ├── main.php
│ ├── params.php
│ └── test.php
├── controllers
│ ├── AccountController.php
│ ├── LiveController.php
│ └── SiteController.php
├── models
│ ├── ContactForm.php
│ ├── PasswordResetRequestForm.php
│ ├── ResetPasswordForm.php
│ └── SignupForm.php
├── runtime
│ └── .gitignore
├── tests
│ ├── _bootstrap.php
│ ├── _data
│ │ ├── login_data.php
│ │ └── user.php
│ ├── _output
│ │ └── .gitignore
│ ├── _support
│ │ ├── .gitignore
│ │ ├── FunctionalTester.php
│ │ └── UnitTester.php
│ ├── acceptance.suite.yml.example
│ ├── acceptance
│ │ ├── HomeCest.php
│ │ └── _bootstrap.php
│ ├── functional.suite.yml
│ ├── functional
│ │ ├── AboutCest.php
│ │ ├── ContactCest.php
│ │ ├── HomeCest.php
│ │ ├── LoginCest.php
│ │ ├── SignupCest.php
│ │ └── _bootstrap.php
│ ├── unit.suite.yml
│ └── unit
│ │ ├── _bootstrap.php
│ │ └── models
│ │ ├── ContactFormTest.php
│ │ ├── PasswordResetRequestFormTest.php
│ │ ├── ResetPasswordFormTest.php
│ │ └── SignupFormTest.php
├── views
│ ├── account
│ │ ├── login.php
│ │ ├── modify.php
│ │ └── reg.php
│ ├── layouts
│ │ ├── account.php
│ │ ├── live.php
│ │ └── main.php
│ ├── live
│ │ └── index.php
│ └── site
│ │ ├── about.php
│ │ ├── close.php
│ │ ├── contact.php
│ │ ├── error.php
│ │ ├── index.php
│ │ ├── login.php
│ │ ├── requestPasswordResetToken.php
│ │ ├── resetPassword.php
│ │ └── signup.php
└── web
│ ├── .gitignore
│ ├── assets
│ └── .gitignore
│ ├── css
│ ├── account
│ │ ├── drag.css
│ │ └── reg.css
│ ├── live
│ │ ├── base.css
│ │ ├── enroll_base.css
│ │ ├── enroll_style.css
│ │ ├── index.css
│ │ ├── land_base.css
│ │ ├── land_style.css
│ │ ├── lighter.css
│ │ ├── live.css
│ │ ├── style_1.css
│ │ ├── style_c.css
│ │ ├── style_j.css
│ │ └── validationEngine.jquery.css
│ ├── site.css
│ ├── style.css
│ └── switchery.min.css
│ ├── favicon.ico
│ ├── images
│ ├── account
│ │ ├── backgrounds
│ │ │ ├── 1.jpg
│ │ │ ├── 2.jpg
│ │ │ └── 3.jpg
│ │ ├── blog.png
│ │ ├── glyphicons-halflings-white.png
│ │ ├── glyphicons-halflings.png
│ │ ├── home.png
│ │ ├── iphone.png
│ │ ├── pattern.jpg
│ │ └── pencil.png
│ ├── cZc1otp.png
│ ├── config.rb
│ ├── live
│ │ ├── 1.gif
│ │ ├── 10.gif
│ │ ├── 11.gif
│ │ ├── 12.gif
│ │ ├── 13.gif
│ │ ├── 14.gif
│ │ ├── 15.gif
│ │ ├── 16.gif
│ │ ├── 17.gif
│ │ ├── 18.gif
│ │ ├── 19.gif
│ │ ├── 2.gif
│ │ ├── 20.gif
│ │ ├── 21.gif
│ │ ├── 22.gif
│ │ ├── 23.gif
│ │ ├── 24.gif
│ │ ├── 25.gif
│ │ ├── 26.gif
│ │ ├── 27.gif
│ │ ├── 28.gif
│ │ ├── 29.gif
│ │ ├── 3.gif
│ │ ├── 30.gif
│ │ ├── 31.gif
│ │ ├── 32.gif
│ │ ├── 33.gif
│ │ ├── 34.gif
│ │ ├── 35.gif
│ │ ├── 36.gif
│ │ ├── 4.gif
│ │ ├── 404.png
│ │ ├── 5.gif
│ │ ├── 551121af96d13.jpg
│ │ ├── 6.gif
│ │ ├── 7.gif
│ │ ├── 8.gif
│ │ ├── 9.gif
│ │ ├── Ad.jpg
│ │ ├── GetFolowers.png
│ │ ├── User14.png
│ │ ├── Wechat.jpg
│ │ ├── arrow.png
│ │ ├── azewm.png
│ │ ├── background1.jpg
│ │ ├── banner.png
│ │ ├── bd.gif
│ │ ├── bg.png
│ │ ├── bg2.png
│ │ ├── biaoqing.png
│ │ ├── bq.gif
│ │ ├── bs.gif
│ │ ├── btnSendMsg.png
│ │ ├── button.png
│ │ ├── bx.gif
│ │ ├── caitiao.png
│ │ ├── close.png
│ │ ├── counseling_style_52.gif
│ │ ├── del.png
│ │ ├── diann.png
│ │ ├── dimensionCode.png
│ │ ├── doc.png
│ │ ├── dy.gif
│ │ ├── erweim.jpg
│ │ ├── erweima.png
│ │ ├── ewm.jpg
│ │ ├── ewm.png
│ │ ├── fd.gif
│ │ ├── gd.gif
│ │ ├── gl.gif
│ │ ├── glian.gif
│ │ ├── header-icon.png
│ │ ├── hjd.gif
│ │ ├── hls.png
│ │ ├── hx.gif
│ │ ├── jis.png
│ │ ├── jjdx.gif
│ │ ├── jpkf.png
│ │ ├── jx.gif
│ │ ├── jxia.gif
│ │ ├── jyl.gif
│ │ ├── ka.gif
│ │ ├── kaihu.png
│ │ ├── kiss.gif
│ │ ├── kl.gif
│ │ ├── kle.gif
│ │ ├── kx.gif
│ │ ├── laos.png
│ │ ├── ld.gif
│ │ ├── left_t_1.png
│ │ ├── left_t_2.png
│ │ ├── left_t_3.png
│ │ ├── left_t_4.png
│ │ ├── left_t_5.png
│ │ ├── left_t_6.png
│ │ ├── lgze.gif
│ │ ├── lh.gif
│ │ ├── lll.gif
│ │ ├── lm.gif
│ │ ├── login.png
│ │ ├── logo.png
│ │ ├── logo1.png
│ │ ├── logo_online.png
│ │ ├── ls1.png
│ │ ├── ls2.png
│ │ ├── ls3.png
│ │ ├── ls4.png
│ │ ├── ls5.png
│ │ ├── ls6.png
│ │ ├── lx.gif
│ │ ├── main.png
│ │ ├── master.jpeg
│ │ ├── nav-bg.png
│ │ ├── nomarlnews.png
│ │ ├── onlineQQ.png
│ │ ├── qf.gif
│ │ ├── qgz.gif
│ │ ├── qiang.gif
│ │ ├── qkn.gif
│ │ ├── qq.png
│ │ ├── qs.gif
│ │ ├── qx.gif
│ │ ├── registered.png
│ │ ├── registration.png
│ │ ├── right.png
│ │ ├── role1.png
│ │ ├── rotateMain.png
│ │ ├── scheduleTitle.png
│ │ ├── sj.gif
│ │ ├── sp.png
│ │ ├── ssss.png
│ │ ├── suai.gif
│ │ ├── sx.gif
│ │ ├── tx.gif
│ │ ├── tz.gif
│ │ ├── tzuang.gif
│ │ ├── up.gif
│ │ ├── user.png
│ │ ├── wbk.gif
│ │ ├── wg.gif
│ │ ├── wq.gif
│ │ ├── ww.gif
│ │ ├── xf.gif
│ │ ├── xhh.gif
│ │ ├── xianhua.gif
│ │ ├── xiaz.png
│ │ ├── yinzhiyi.ico
│ │ ├── yuan.gif
│ │ ├── yw.gif
│ │ ├── zan.gif
│ │ ├── zanS.gif
│ │ ├── zb.gif
│ │ ├── zc.gif
│ │ ├── zf.gif
│ │ ├── zhangsheng.gif
│ │ ├── zj.gif
│ │ ├── zong.gif
│ │ └── zz.gif
│ ├── uFpLbYt.png
│ └── wrong.jpg
│ ├── js
│ ├── account
│ │ └── drag.js
│ ├── form-slider-switcher.demo.js
│ ├── jquery.min.js
│ ├── live
│ │ ├── live.js
│ │ └── socket.js
│ ├── swfobject.js
│ ├── switchery.min.js
│ └── web_socket.js
│ ├── robots.txt
│ └── swf
│ └── WebSocketMain.swf
├── init
├── init.bat
├── requirements.php
├── start.php
├── start_businessworker.php
├── start_gateway.php
├── start_register.php
├── start_web.php
├── vagrant
├── config
│ ├── .gitignore
│ └── vagrant-local.example.yml
├── nginx
│ ├── app.conf
│ └── log
│ │ └── .gitignore
└── provision
│ ├── always-as-root.sh
│ ├── once-as-root.sh
│ └── once-as-vagrant.sh
├── vendor
├── autoload.php
├── behat
│ └── gherkin
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── CHANGES.md
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ └── update_i18n
│ │ ├── composer.json
│ │ ├── i18n.php
│ │ ├── libpath.php
│ │ ├── package.xml.tpl
│ │ ├── phpdoc.ini.dist
│ │ ├── phpunit.xml.dist
│ │ ├── src
│ │ └── Behat
│ │ │ └── Gherkin
│ │ │ ├── Cache
│ │ │ ├── CacheInterface.php
│ │ │ ├── FileCache.php
│ │ │ └── MemoryCache.php
│ │ │ ├── Exception
│ │ │ ├── CacheException.php
│ │ │ ├── Exception.php
│ │ │ ├── LexerException.php
│ │ │ ├── NodeException.php
│ │ │ └── ParserException.php
│ │ │ ├── Filter
│ │ │ ├── ComplexFilter.php
│ │ │ ├── ComplexFilterInterface.php
│ │ │ ├── FeatureFilterInterface.php
│ │ │ ├── FilterInterface.php
│ │ │ ├── LineFilter.php
│ │ │ ├── LineRangeFilter.php
│ │ │ ├── NameFilter.php
│ │ │ ├── NarrativeFilter.php
│ │ │ ├── PathsFilter.php
│ │ │ ├── RoleFilter.php
│ │ │ ├── SimpleFilter.php
│ │ │ └── TagFilter.php
│ │ │ ├── Gherkin.php
│ │ │ ├── Keywords
│ │ │ ├── ArrayKeywords.php
│ │ │ ├── CachedArrayKeywords.php
│ │ │ ├── CucumberKeywords.php
│ │ │ ├── KeywordsDumper.php
│ │ │ └── KeywordsInterface.php
│ │ │ ├── Lexer.php
│ │ │ ├── Loader
│ │ │ ├── AbstractFileLoader.php
│ │ │ ├── ArrayLoader.php
│ │ │ ├── DirectoryLoader.php
│ │ │ ├── FileLoaderInterface.php
│ │ │ ├── GherkinFileLoader.php
│ │ │ ├── LoaderInterface.php
│ │ │ └── YamlFileLoader.php
│ │ │ ├── Node
│ │ │ ├── ArgumentInterface.php
│ │ │ ├── BackgroundNode.php
│ │ │ ├── ExampleNode.php
│ │ │ ├── ExampleTableNode.php
│ │ │ ├── FeatureNode.php
│ │ │ ├── KeywordNodeInterface.php
│ │ │ ├── NodeInterface.php
│ │ │ ├── OutlineNode.php
│ │ │ ├── PyStringNode.php
│ │ │ ├── ScenarioInterface.php
│ │ │ ├── ScenarioLikeInterface.php
│ │ │ ├── ScenarioNode.php
│ │ │ ├── StepContainerInterface.php
│ │ │ ├── StepNode.php
│ │ │ ├── TableNode.php
│ │ │ └── TaggedNodeInterface.php
│ │ │ └── Parser.php
│ │ └── tests
│ │ └── Behat
│ │ └── Gherkin
│ │ ├── Cache
│ │ ├── FileCacheTest.php
│ │ └── MemoryCacheTest.php
│ │ ├── Filter
│ │ ├── FilterTest.php
│ │ ├── Fixtures
│ │ │ ├── full
│ │ │ │ └── file2
│ │ │ └── full_path
│ │ │ │ └── file1
│ │ ├── LineFilterTest.php
│ │ ├── LineRangeFilterTest.php
│ │ ├── NameFilterTest.php
│ │ ├── NarrativeFilterTest.php
│ │ ├── PathsFilterTest.php
│ │ ├── RoleFilterTest.php
│ │ └── TagFilterTest.php
│ │ ├── Fixtures
│ │ ├── directories
│ │ │ └── phps
│ │ │ │ └── some_file.php
│ │ ├── etalons
│ │ │ ├── addition.yml
│ │ │ ├── background.yml
│ │ │ ├── background_title.yml
│ │ │ ├── big_pystring.yml
│ │ │ ├── clean_tags.yml
│ │ │ ├── commented_out.yml
│ │ │ ├── comments.yml
│ │ │ ├── complex_descriptions.yml
│ │ │ ├── empty.yml
│ │ │ ├── empty_scenario.yml
│ │ │ ├── empty_scenario_without_linefeed.yml
│ │ │ ├── empty_scenarios.yml
│ │ │ ├── fibonacci.yml
│ │ │ ├── hashes_in_quotes.yml
│ │ │ ├── issue_13.yml
│ │ │ ├── ja_addition.yml
│ │ │ ├── long_title_feature.yml
│ │ │ ├── multiline_name.yml
│ │ │ ├── multiline_name_with_newlines.yml
│ │ │ ├── multiplepystrings.yml
│ │ │ ├── outline_with_spaces.yml
│ │ │ ├── outline_with_step_table.yml
│ │ │ ├── pystring.yml
│ │ │ ├── ru_addition.yml
│ │ │ ├── ru_commented.yml
│ │ │ ├── ru_consecutive_calculations.yml
│ │ │ ├── ru_division.yml
│ │ │ ├── start_comments.yml
│ │ │ ├── tables.yml
│ │ │ ├── tags_sample.yml
│ │ │ ├── test_unit.yml
│ │ │ ├── trimpystring.yml
│ │ │ └── undefined_multiline_args.yml
│ │ ├── features
│ │ │ ├── addition.feature
│ │ │ ├── background.feature
│ │ │ ├── background_title.feature
│ │ │ ├── big_pystring.feature
│ │ │ ├── clean_tags.feature
│ │ │ ├── commented_out.feature
│ │ │ ├── comments.feature
│ │ │ ├── complex_descriptions.feature
│ │ │ ├── empty.feature
│ │ │ ├── empty_scenario.feature
│ │ │ ├── empty_scenario_without_linefeed.feature
│ │ │ ├── empty_scenarios.feature
│ │ │ ├── fibonacci.feature
│ │ │ ├── hashes_in_quotes.feature
│ │ │ ├── issue_13.feature
│ │ │ ├── ja_addition.feature
│ │ │ ├── long_title_feature.feature
│ │ │ ├── multiline_name.feature
│ │ │ ├── multiline_name_with_newlines.feature
│ │ │ ├── multiplepystrings.feature
│ │ │ ├── outline_with_spaces.feature
│ │ │ ├── outline_with_step_table.feature
│ │ │ ├── pystring.feature
│ │ │ ├── ru_addition.feature
│ │ │ ├── ru_commented.feature
│ │ │ ├── ru_consecutive_calculations.feature
│ │ │ ├── ru_division.feature
│ │ │ ├── start_comments.feature
│ │ │ ├── tables.feature
│ │ │ ├── tags_sample.feature
│ │ │ ├── test_unit.feature
│ │ │ ├── trimpystring.feature
│ │ │ └── undefined_multiline_args.feature
│ │ └── i18n.yml
│ │ ├── GherkinTest.php
│ │ ├── Keywords
│ │ ├── ArrayKeywordsTest.php
│ │ ├── CachedArrayKeywordsTest.php
│ │ ├── CucumberKeywordsTest.php
│ │ ├── KeywordsDumperTest.php
│ │ └── KeywordsTest.php
│ │ ├── Loader
│ │ ├── ArrayLoaderTest.php
│ │ ├── DirectoryLoaderTest.php
│ │ ├── GherkinFileLoaderTest.php
│ │ └── YamlFileLoaderTest.php
│ │ ├── Node
│ │ ├── ExampleNodeTest.php
│ │ ├── OutlineNodeTest.php
│ │ ├── PyStringNodeTest.php
│ │ ├── StepNodeTest.php
│ │ └── TableNodeTest.php
│ │ ├── ParserExceptionsTest.php
│ │ └── ParserTest.php
├── bin
│ ├── codecept
│ ├── markdown
│ ├── phpunit
│ └── yii
├── bower
│ ├── bootstrap
│ │ ├── 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
│ │ │ ├── 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
│ │ │ ├── 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
│ │ │ ├── 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
│ ├── jquery.inputmask
│ │ ├── .editorconfig
│ │ ├── .eslintrc
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── bower.json
│ │ ├── dist
│ │ │ ├── inputmask
│ │ │ │ ├── inputmask.date.extensions.js
│ │ │ │ ├── inputmask.dependencyLib.jquery.js
│ │ │ │ ├── inputmask.extensions.js
│ │ │ │ ├── inputmask.js
│ │ │ │ ├── inputmask.numeric.extensions.js
│ │ │ │ ├── inputmask.phone.extensions.js
│ │ │ │ ├── inputmask.regex.extensions.js
│ │ │ │ └── jquery.inputmask.js
│ │ │ ├── jquery.inputmask.bundle.js
│ │ │ └── min
│ │ │ │ ├── inputmask
│ │ │ │ ├── inputmask.date.extensions.min.js
│ │ │ │ ├── inputmask.dependencyLib.jquery.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
│ │ └── extra
│ │ │ ├── bindings
│ │ │ └── inputmask.binding.js
│ │ │ ├── dependencyLibs
│ │ │ ├── inputmask.dependencyLib.jqlite.js
│ │ │ └── inputmask.dependencyLib.js
│ │ │ └── phone-codes
│ │ │ ├── phone-be.js
│ │ │ ├── phone-codes.js
│ │ │ ├── phone-nl.js
│ │ │ ├── phone-ru.js
│ │ │ └── phone-uk.js
│ ├── jquery
│ │ ├── AUTHORS.txt
│ │ ├── LICENSE.txt
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── dist
│ │ │ ├── jquery.js
│ │ │ ├── jquery.min.js
│ │ │ └── jquery.min.map
│ │ ├── external
│ │ │ └── sizzle
│ │ │ │ ├── LICENSE.txt
│ │ │ │ └── dist
│ │ │ │ ├── sizzle.js
│ │ │ │ ├── sizzle.min.js
│ │ │ │ └── sizzle.min.map
│ │ └── src
│ │ │ ├── .jshintrc
│ │ │ ├── ajax.js
│ │ │ ├── ajax
│ │ │ ├── jsonp.js
│ │ │ ├── load.js
│ │ │ ├── parseJSON.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
│ │ │ ├── access.js
│ │ │ ├── init.js
│ │ │ ├── parseHTML.js
│ │ │ ├── ready.js
│ │ │ └── var
│ │ │ │ └── rsingleTag.js
│ │ │ ├── css.js
│ │ │ ├── css
│ │ │ ├── addGetHookIf.js
│ │ │ ├── adjustCSS.js
│ │ │ ├── curCSS.js
│ │ │ ├── defaultDisplay.js
│ │ │ ├── hiddenVisibleSelectors.js
│ │ │ ├── showHide.js
│ │ │ ├── support.js
│ │ │ └── var
│ │ │ │ ├── cssExpand.js
│ │ │ │ ├── getStyles.js
│ │ │ │ ├── isHidden.js
│ │ │ │ ├── rmargin.js
│ │ │ │ ├── rnumnonpx.js
│ │ │ │ └── swap.js
│ │ │ ├── data.js
│ │ │ ├── data
│ │ │ ├── Data.js
│ │ │ └── var
│ │ │ │ ├── acceptData.js
│ │ │ │ ├── dataPriv.js
│ │ │ │ └── dataUser.js
│ │ │ ├── deferred.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
│ │ │ ├── intro.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
│ │ │ ├── outro.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
│ │ │ ├── arr.js
│ │ │ ├── class2type.js
│ │ │ ├── concat.js
│ │ │ ├── document.js
│ │ │ ├── documentElement.js
│ │ │ ├── hasOwn.js
│ │ │ ├── indexOf.js
│ │ │ ├── pnum.js
│ │ │ ├── push.js
│ │ │ ├── rcssNum.js
│ │ │ ├── rnotwhite.js
│ │ │ ├── slice.js
│ │ │ ├── support.js
│ │ │ └── toString.js
│ │ │ └── wrap.js
│ ├── punycode
│ │ ├── LICENSE-MIT.txt
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── punycode.js
│ │ └── punycode.min.js
│ ├── typeahead.js
│ │ ├── .gitignore
│ │ ├── .jshintrc
│ │ ├── .travis.yml
│ │ ├── CHANGELOG.md
│ │ ├── CONTRIBUTING.md
│ │ ├── Gruntfile.js
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── composer.json
│ │ ├── dist
│ │ │ ├── bloodhound.js
│ │ │ ├── bloodhound.min.js
│ │ │ ├── typeahead.bundle.js
│ │ │ ├── typeahead.bundle.min.js
│ │ │ ├── typeahead.jquery.js
│ │ │ └── typeahead.jquery.min.js
│ │ ├── doc
│ │ │ ├── bloodhound.md
│ │ │ ├── jquery_typeahead.md
│ │ │ └── migration
│ │ │ │ └── 0.10.0.md
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── bloodhound
│ │ │ │ ├── bloodhound.js
│ │ │ │ ├── lru_cache.js
│ │ │ │ ├── options_parser.js
│ │ │ │ ├── persistent_storage.js
│ │ │ │ ├── prefetch.js
│ │ │ │ ├── remote.js
│ │ │ │ ├── search_index.js
│ │ │ │ ├── tokenizers.js
│ │ │ │ ├── transport.js
│ │ │ │ └── version.js
│ │ │ ├── common
│ │ │ │ └── utils.js
│ │ │ └── typeahead
│ │ │ │ ├── dataset.js
│ │ │ │ ├── default_menu.js
│ │ │ │ ├── event_bus.js
│ │ │ │ ├── event_emitter.js
│ │ │ │ ├── highlight.js
│ │ │ │ ├── input.js
│ │ │ │ ├── menu.js
│ │ │ │ ├── plugin.js
│ │ │ │ ├── typeahead.js
│ │ │ │ └── www.js
│ │ ├── test
│ │ │ ├── bloodhound
│ │ │ │ ├── bloodhound_spec.js
│ │ │ │ ├── lru_cache_spec.js
│ │ │ │ ├── options_parser_spec.js
│ │ │ │ ├── persistent_storage_spec.js
│ │ │ │ ├── prefetch_spec.js
│ │ │ │ ├── remote_spec.js
│ │ │ │ ├── search_index_spec.js
│ │ │ │ ├── tokenizers_spec.js
│ │ │ │ └── transport_spec.js
│ │ │ ├── ci
│ │ │ ├── fixtures
│ │ │ │ ├── ajax_responses.js
│ │ │ │ ├── data.js
│ │ │ │ └── html.js
│ │ │ ├── helpers
│ │ │ │ └── typeahead_mocks.js
│ │ │ ├── integration
│ │ │ │ ├── test.html
│ │ │ │ └── test.js
│ │ │ ├── playground.html
│ │ │ └── typeahead
│ │ │ │ ├── dataset_spec.js
│ │ │ │ ├── default_results_spec.js
│ │ │ │ ├── event_bus_spec.js
│ │ │ │ ├── event_emitter_spec.js
│ │ │ │ ├── highlight_spec.js
│ │ │ │ ├── input_spec.js
│ │ │ │ ├── plugin_spec.js
│ │ │ │ ├── results_spec.js
│ │ │ │ └── typeahead_spec.js
│ │ └── typeahead.js.jquery.json
│ └── yii2-pjax
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── jquery.pjax.js
│ │ └── package.json
├── cebe
│ └── markdown
│ │ ├── .gitignore
│ │ ├── .scrutinizer.yml
│ │ ├── .travis.yml
│ │ ├── CHANGELOG.md
│ │ ├── CONTRIBUTING.md
│ │ ├── GithubMarkdown.php
│ │ ├── LICENSE
│ │ ├── Markdown.php
│ │ ├── MarkdownExtra.php
│ │ ├── Parser.php
│ │ ├── README.md
│ │ ├── bin
│ │ └── markdown
│ │ ├── block
│ │ ├── CodeTrait.php
│ │ ├── FencedCodeTrait.php
│ │ ├── HeadlineTrait.php
│ │ ├── HtmlTrait.php
│ │ ├── ListTrait.php
│ │ ├── QuoteTrait.php
│ │ ├── RuleTrait.php
│ │ └── TableTrait.php
│ │ ├── composer.json
│ │ ├── inline
│ │ ├── CodeTrait.php
│ │ ├── EmphStrongTrait.php
│ │ ├── LinkTrait.php
│ │ ├── StrikeoutTrait.php
│ │ └── UrlLinkTrait.php
│ │ ├── phpunit.xml.dist
│ │ └── tests
│ │ ├── BaseMarkdownTest.php
│ │ ├── GithubMarkdownTest.php
│ │ ├── MarkdownExtraTest.php
│ │ ├── MarkdownOLStartNumTest.php
│ │ ├── MarkdownTest.php
│ │ ├── ParserTest.php
│ │ ├── bootstrap.php
│ │ ├── extra-data
│ │ ├── fenced-code.html
│ │ ├── fenced-code.md
│ │ ├── special-attributes.html
│ │ ├── special-attributes.md
│ │ ├── tables.html
│ │ ├── tables.md
│ │ ├── test_precedence.html
│ │ └── test_precedence.md
│ │ ├── github-data
│ │ ├── del.html
│ │ ├── del.md
│ │ ├── dense-block-markers.html
│ │ ├── dense-block-markers.md
│ │ ├── dense-block-markers2.html
│ │ ├── dense-block-markers2.md
│ │ ├── github-basics.html
│ │ ├── github-basics.md
│ │ ├── github-code-in-numbered-list.html
│ │ ├── github-code-in-numbered-list.md
│ │ ├── github-sample.html
│ │ ├── github-sample.md
│ │ ├── issue-33.html
│ │ ├── issue-33.md
│ │ ├── issue-38.html
│ │ ├── issue-38.md
│ │ ├── lists.html
│ │ ├── lists.md
│ │ ├── non-tables.html
│ │ ├── non-tables.md
│ │ ├── tables.html
│ │ ├── tables.md
│ │ ├── test_precedence.html
│ │ ├── test_precedence.md
│ │ ├── url.html
│ │ └── url.md
│ │ ├── markdown-data
│ │ ├── README
│ │ ├── blockquote-nested.html
│ │ ├── blockquote-nested.md
│ │ ├── blockquote.html
│ │ ├── blockquote.md
│ │ ├── code.html
│ │ ├── code.md
│ │ ├── dense-block-markers.html
│ │ ├── dense-block-markers.md
│ │ ├── emphasis.html
│ │ ├── emphasis.md
│ │ ├── empty-line.html
│ │ ├── empty-line.md
│ │ ├── endless_loop_bug.html
│ │ ├── endless_loop_bug.md
│ │ ├── escape-in-link.html
│ │ ├── escape-in-link.md
│ │ ├── headline.html
│ │ ├── headline.md
│ │ ├── hr.html
│ │ ├── hr.md
│ │ ├── html-block.html
│ │ ├── html-block.md
│ │ ├── images.html
│ │ ├── images.md
│ │ ├── inline-html.html
│ │ ├── inline-html.md
│ │ ├── lazy-list.html
│ │ ├── lazy-list.md
│ │ ├── links.html
│ │ ├── links.md
│ │ ├── list-marker-in-paragraph.html
│ │ ├── list-marker-in-paragraph.md
│ │ ├── list.html
│ │ ├── list.md
│ │ ├── list_and_reference.html
│ │ ├── list_and_reference.md
│ │ ├── list_items_with_undefined_ref.html
│ │ ├── list_items_with_undefined_ref.md
│ │ ├── md1_amps_and_angle_encoding.html
│ │ ├── md1_amps_and_angle_encoding.md
│ │ ├── md1_auto_links.html
│ │ ├── md1_auto_links.md
│ │ ├── md1_backslash_escapes.html
│ │ ├── md1_backslash_escapes.md
│ │ ├── md1_blockquotes_with_code_blocks.html
│ │ ├── md1_blockquotes_with_code_blocks.md
│ │ ├── md1_horizontal_rules.html
│ │ ├── md1_horizontal_rules.md
│ │ ├── md1_inline_html_avanced.html
│ │ ├── md1_inline_html_avanced.md
│ │ ├── md1_inline_html_comments.html
│ │ ├── md1_inline_html_comments.md
│ │ ├── md1_inline_html_simple.html
│ │ ├── md1_inline_html_simple.md
│ │ ├── md1_links_inline_style.html
│ │ ├── md1_links_inline_style.md
│ │ ├── md1_links_reference_style.html
│ │ ├── md1_links_reference_style.md
│ │ ├── md1_literal_quotes_in_titles.html
│ │ ├── md1_literal_quotes_in_titles.md
│ │ ├── md1_markdown_documentation_basics.html
│ │ ├── md1_markdown_documentation_basics.md
│ │ ├── md1_nested_blockquotes.html
│ │ ├── md1_nested_blockquotes.md
│ │ ├── md1_ordered_and_unordered_lists.html
│ │ ├── md1_ordered_and_unordered_lists.md
│ │ ├── md1_strong_and_em_together.html
│ │ ├── md1_strong_and_em_together.md
│ │ ├── md1_tabs.html
│ │ ├── md1_tabs.md
│ │ ├── md1_tidyness.html
│ │ ├── md1_tidyness.md
│ │ ├── nested-lists.html
│ │ ├── nested-lists.md
│ │ ├── newline.html
│ │ ├── newline.md
│ │ ├── paragraph.html
│ │ ├── paragraph.md
│ │ ├── references.html
│ │ ├── references.md
│ │ ├── specs.html
│ │ ├── specs.md
│ │ ├── test_precedence.html
│ │ ├── test_precedence.md
│ │ ├── unicode.html
│ │ ├── unicode.md
│ │ ├── utf8-do-not-kill-characters.html
│ │ └── utf8-do-not-kill-characters.md
│ │ ├── markdown-ol-start-num-data
│ │ ├── list.html
│ │ ├── list.md
│ │ ├── md1_ordered_and_unordered_lists.html
│ │ └── md1_ordered_and_unordered_lists.md
│ │ └── profile.php
├── codeception
│ ├── base
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── CHANGELOG.md
│ │ ├── CONTRIBUTING.md
│ │ ├── Dockerfile
│ │ ├── ISSUE_TEMPLATE.md
│ │ ├── LICENSE
│ │ ├── RoboFile.php
│ │ ├── appveyor.yml
│ │ ├── autoload.php
│ │ ├── codecept
│ │ ├── codecept.bat
│ │ ├── codeception.yml
│ │ ├── composer.json
│ │ ├── docs
│ │ │ ├── 01-Introduction.md
│ │ │ ├── 02-GettingStarted.md
│ │ │ ├── 03-AcceptanceTests.md
│ │ │ ├── 04-FunctionalTests.md
│ │ │ ├── 05-UnitTests.md
│ │ │ ├── 06-ModulesAndHelpers.md
│ │ │ ├── 06-ReusingTestCode.md
│ │ │ ├── 07-AdvancedUsage.md
│ │ │ ├── 07-BDD.md
│ │ │ ├── 08-Customization.md
│ │ │ ├── 09-Data.md
│ │ │ ├── 10-WebServices.md
│ │ │ ├── 11-Codecoverage.md
│ │ │ ├── 12-ContinuousIntegration.md
│ │ │ ├── 12-ParallelExecution.md
│ │ │ ├── modules
│ │ │ │ ├── AMQP.md
│ │ │ │ ├── AngularJS.md
│ │ │ │ ├── Apc.md
│ │ │ │ ├── Asserts.md
│ │ │ │ ├── Cli.md
│ │ │ │ ├── DataFactory.md
│ │ │ │ ├── Db.md
│ │ │ │ ├── Doctrine2.md
│ │ │ │ ├── FTP.md
│ │ │ │ ├── Facebook.md
│ │ │ │ ├── Filesystem.md
│ │ │ │ ├── Laravel5.md
│ │ │ │ ├── Lumen.md
│ │ │ │ ├── Memcache.md
│ │ │ │ ├── MongoDb.md
│ │ │ │ ├── Phalcon.md
│ │ │ │ ├── PhpBrowser.md
│ │ │ │ ├── Queue.md
│ │ │ │ ├── REST.md
│ │ │ │ ├── Redis.md
│ │ │ │ ├── SOAP.md
│ │ │ │ ├── Sequence.md
│ │ │ │ ├── Silex.md
│ │ │ │ ├── Symfony.md
│ │ │ │ ├── WebDriver.md
│ │ │ │ ├── XMLRPC.md
│ │ │ │ ├── Yii1.md
│ │ │ │ ├── Yii2.md
│ │ │ │ ├── ZF1.md
│ │ │ │ ├── ZF2.md
│ │ │ │ └── ZendExpressive.md
│ │ │ └── reference
│ │ │ │ ├── Autoload.md
│ │ │ │ ├── Commands.md
│ │ │ │ ├── Configuration.md
│ │ │ │ ├── Fixtures.md
│ │ │ │ ├── Functions.md
│ │ │ │ ├── HttpCode.md
│ │ │ │ ├── JsonType.md
│ │ │ │ ├── Locator.md
│ │ │ │ ├── Module.md
│ │ │ │ ├── Stub.md
│ │ │ │ └── XmlBuilder.md
│ │ ├── ext
│ │ │ ├── Logger.php
│ │ │ ├── README.md
│ │ │ ├── Recorder.php
│ │ │ ├── RunFailed.php
│ │ │ └── SimpleOutput.php
│ │ ├── nitpick.json
│ │ ├── package
│ │ │ ├── bin
│ │ │ └── stub.php
│ │ ├── readme.md
│ │ ├── ruleset.xml
│ │ ├── shim.php
│ │ ├── src
│ │ │ └── Codeception
│ │ │ │ ├── Actor.php
│ │ │ │ ├── Application.php
│ │ │ │ ├── Codecept.php
│ │ │ │ ├── Command
│ │ │ │ ├── Bootstrap.php
│ │ │ │ ├── Build.php
│ │ │ │ ├── Clean.php
│ │ │ │ ├── ConfigValidate.php
│ │ │ │ ├── Console.php
│ │ │ │ ├── DryRun.php
│ │ │ │ ├── GenerateCept.php
│ │ │ │ ├── GenerateCest.php
│ │ │ │ ├── GenerateEnvironment.php
│ │ │ │ ├── GenerateFeature.php
│ │ │ │ ├── GenerateGroup.php
│ │ │ │ ├── GenerateHelper.php
│ │ │ │ ├── GeneratePageObject.php
│ │ │ │ ├── GeneratePhpUnit.php
│ │ │ │ ├── GenerateScenarios.php
│ │ │ │ ├── GenerateStepObject.php
│ │ │ │ ├── GenerateSuite.php
│ │ │ │ ├── GenerateTest.php
│ │ │ │ ├── GherkinSnippets.php
│ │ │ │ ├── GherkinSteps.php
│ │ │ │ ├── Run.php
│ │ │ │ ├── SelfUpdate.php
│ │ │ │ └── Shared
│ │ │ │ │ ├── Config.php
│ │ │ │ │ ├── FileSystem.php
│ │ │ │ │ └── Style.php
│ │ │ │ ├── Configuration.php
│ │ │ │ ├── Coverage
│ │ │ │ ├── DummyCodeCoverage.php
│ │ │ │ ├── Filter.php
│ │ │ │ ├── Subscriber
│ │ │ │ │ ├── Local.php
│ │ │ │ │ ├── LocalServer.php
│ │ │ │ │ ├── Printer.php
│ │ │ │ │ └── RemoteServer.php
│ │ │ │ └── SuiteSubscriber.php
│ │ │ │ ├── CustomCommandInterface.php
│ │ │ │ ├── Event
│ │ │ │ ├── FailEvent.php
│ │ │ │ ├── PrintResultEvent.php
│ │ │ │ ├── StepEvent.php
│ │ │ │ ├── SuiteEvent.php
│ │ │ │ └── TestEvent.php
│ │ │ │ ├── Events.php
│ │ │ │ ├── Example.php
│ │ │ │ ├── Exception
│ │ │ │ ├── ConditionalAssertionFailed.php
│ │ │ │ ├── ConfigurationException.php
│ │ │ │ ├── ConnectionException.php
│ │ │ │ ├── ContentNotFound.php
│ │ │ │ ├── ElementNotFound.php
│ │ │ │ ├── ExtensionException.php
│ │ │ │ ├── ExternalUrlException.php
│ │ │ │ ├── Fail.php
│ │ │ │ ├── Incomplete.php
│ │ │ │ ├── InjectionException.php
│ │ │ │ ├── MalformedLocatorException.php
│ │ │ │ ├── ModuleConfigException.php
│ │ │ │ ├── ModuleConflictException.php
│ │ │ │ ├── ModuleException.php
│ │ │ │ ├── ModuleRequireException.php
│ │ │ │ ├── ParseException.php
│ │ │ │ ├── RemoteException.php
│ │ │ │ ├── Skip.php
│ │ │ │ ├── TestParseException.php
│ │ │ │ └── TestRuntimeException.php
│ │ │ │ ├── Extension.php
│ │ │ │ ├── GroupObject.php
│ │ │ │ ├── Lib
│ │ │ │ ├── Actor
│ │ │ │ │ └── Shared
│ │ │ │ │ │ ├── Comment.php
│ │ │ │ │ │ └── Friend.php
│ │ │ │ ├── Connector
│ │ │ │ │ ├── Guzzle.php
│ │ │ │ │ ├── Guzzle6.php
│ │ │ │ │ ├── Laravel5.php
│ │ │ │ │ ├── Laravel5
│ │ │ │ │ │ └── ExceptionHandlerDecorator.php
│ │ │ │ │ ├── Lumen.php
│ │ │ │ │ ├── Lumen
│ │ │ │ │ │ └── DummyKernel.php
│ │ │ │ │ ├── Phalcon.php
│ │ │ │ │ ├── Phalcon
│ │ │ │ │ │ └── MemorySession.php
│ │ │ │ │ ├── Shared
│ │ │ │ │ │ └── PhpSuperGlobalsConverter.php
│ │ │ │ │ ├── Symfony.php
│ │ │ │ │ ├── Universal.php
│ │ │ │ │ ├── Yii1.php
│ │ │ │ │ ├── Yii2.php
│ │ │ │ │ ├── Yii2
│ │ │ │ │ │ ├── FixturesStore.php
│ │ │ │ │ │ ├── Logger.php
│ │ │ │ │ │ └── TestMailer.php
│ │ │ │ │ ├── ZF1.php
│ │ │ │ │ ├── ZF2.php
│ │ │ │ │ ├── ZF2
│ │ │ │ │ │ └── PersistentServiceManager.php
│ │ │ │ │ ├── ZendExpressive.php
│ │ │ │ │ └── ZendExpressive
│ │ │ │ │ │ └── ResponseCollector.php
│ │ │ │ ├── Console
│ │ │ │ │ ├── Colorizer.php
│ │ │ │ │ ├── DiffFactory.php
│ │ │ │ │ ├── Message.php
│ │ │ │ │ ├── MessageFactory.php
│ │ │ │ │ └── Output.php
│ │ │ │ ├── Di.php
│ │ │ │ ├── Driver
│ │ │ │ │ ├── AmazonSQS.php
│ │ │ │ │ ├── Beanstalk.php
│ │ │ │ │ ├── Db.php
│ │ │ │ │ ├── Facebook.php
│ │ │ │ │ ├── Iron.php
│ │ │ │ │ ├── MongoDb.php
│ │ │ │ │ ├── MySql.php
│ │ │ │ │ ├── Oci.php
│ │ │ │ │ ├── PostgreSql.php
│ │ │ │ │ ├── SqlSrv.php
│ │ │ │ │ └── Sqlite.php
│ │ │ │ ├── Framework.php
│ │ │ │ ├── Friend.php
│ │ │ │ ├── Generator
│ │ │ │ │ ├── Actions.php
│ │ │ │ │ ├── Actor.php
│ │ │ │ │ ├── Cept.php
│ │ │ │ │ ├── Cest.php
│ │ │ │ │ ├── Feature.php
│ │ │ │ │ ├── GherkinSnippets.php
│ │ │ │ │ ├── Group.php
│ │ │ │ │ ├── Helper.php
│ │ │ │ │ ├── PageObject.php
│ │ │ │ │ ├── PhpUnit.php
│ │ │ │ │ ├── Shared
│ │ │ │ │ │ └── Classname.php
│ │ │ │ │ ├── StepObject.php
│ │ │ │ │ └── Test.php
│ │ │ │ ├── GroupManager.php
│ │ │ │ ├── InnerBrowser.php
│ │ │ │ ├── Interfaces
│ │ │ │ │ ├── API.php
│ │ │ │ │ ├── ActiveRecord.php
│ │ │ │ │ ├── ConflictsWithModule.php
│ │ │ │ │ ├── DataMapper.php
│ │ │ │ │ ├── Db.php
│ │ │ │ │ ├── DependsOnModule.php
│ │ │ │ │ ├── DoctrineProvider.php
│ │ │ │ │ ├── ElementLocator.php
│ │ │ │ │ ├── MultiSession.php
│ │ │ │ │ ├── ORM.php
│ │ │ │ │ ├── PageSourceSaver.php
│ │ │ │ │ ├── PartedModule.php
│ │ │ │ │ ├── Queue.php
│ │ │ │ │ ├── Remote.php
│ │ │ │ │ ├── RequiresPackage.php
│ │ │ │ │ ├── ScreenshotSaver.php
│ │ │ │ │ ├── SessionSnapshot.php
│ │ │ │ │ └── Web.php
│ │ │ │ ├── ModuleContainer.php
│ │ │ │ ├── Notification.php
│ │ │ │ ├── ParamsLoader.php
│ │ │ │ ├── Parser.php
│ │ │ │ └── README.md
│ │ │ │ ├── Module.php
│ │ │ │ ├── Module
│ │ │ │ ├── AMQP.php
│ │ │ │ ├── AngularJS.php
│ │ │ │ ├── Apc.php
│ │ │ │ ├── Asserts.php
│ │ │ │ ├── Cli.php
│ │ │ │ ├── DataFactory.php
│ │ │ │ ├── Db.php
│ │ │ │ ├── Doctrine2.php
│ │ │ │ ├── FTP.php
│ │ │ │ ├── Facebook.php
│ │ │ │ ├── Filesystem.php
│ │ │ │ ├── Laravel5.php
│ │ │ │ ├── Lumen.php
│ │ │ │ ├── Memcache.php
│ │ │ │ ├── MongoDb.php
│ │ │ │ ├── Phalcon.php
│ │ │ │ ├── PhpBrowser.php
│ │ │ │ ├── Queue.php
│ │ │ │ ├── README.md
│ │ │ │ ├── REST.php
│ │ │ │ ├── Redis.php
│ │ │ │ ├── SOAP.php
│ │ │ │ ├── Sequence.php
│ │ │ │ ├── Silex.php
│ │ │ │ ├── Symfony.php
│ │ │ │ ├── WebDriver.php
│ │ │ │ ├── XMLRPC.php
│ │ │ │ ├── Yii1.php
│ │ │ │ ├── Yii2.php
│ │ │ │ ├── ZF1.php
│ │ │ │ ├── ZF2.php
│ │ │ │ └── ZendExpressive.php
│ │ │ │ ├── PHPUnit
│ │ │ │ ├── ConsolePrinter.php
│ │ │ │ ├── Constraint
│ │ │ │ │ ├── Crawler.php
│ │ │ │ │ ├── CrawlerNot.php
│ │ │ │ │ ├── JsonContains.php
│ │ │ │ │ ├── JsonType.php
│ │ │ │ │ ├── Page.php
│ │ │ │ │ ├── WebDriver.php
│ │ │ │ │ └── WebDriverNot.php
│ │ │ │ ├── FilterTest.php
│ │ │ │ ├── Listener.php
│ │ │ │ ├── Log
│ │ │ │ │ └── JUnit.php
│ │ │ │ ├── Overrides
│ │ │ │ │ └── Filter.php
│ │ │ │ ├── README.md
│ │ │ │ ├── ResultPrinter.php
│ │ │ │ ├── ResultPrinter
│ │ │ │ │ ├── HTML.php
│ │ │ │ │ ├── Report.php
│ │ │ │ │ ├── UI.php
│ │ │ │ │ └── template
│ │ │ │ │ │ ├── fail.html.dist
│ │ │ │ │ │ ├── scenario.html.dist
│ │ │ │ │ │ ├── scenario_header.html.dist
│ │ │ │ │ │ ├── scenarios.html.dist
│ │ │ │ │ │ ├── step.html.dist
│ │ │ │ │ │ ├── substeps.html.dist
│ │ │ │ │ │ └── suite.html.dist
│ │ │ │ └── Runner.php
│ │ │ │ ├── README.md
│ │ │ │ ├── Scenario.php
│ │ │ │ ├── Step.php
│ │ │ │ ├── Step
│ │ │ │ ├── Action.php
│ │ │ │ ├── Assertion.php
│ │ │ │ ├── Comment.php
│ │ │ │ ├── Condition.php
│ │ │ │ ├── ConditionalAssertion.php
│ │ │ │ ├── Executor.php
│ │ │ │ ├── Incomplete.php
│ │ │ │ ├── Meta.php
│ │ │ │ ├── README.md
│ │ │ │ └── Skip.php
│ │ │ │ ├── Subscriber
│ │ │ │ ├── AutoRebuild.php
│ │ │ │ ├── BeforeAfterTest.php
│ │ │ │ ├── Bootstrap.php
│ │ │ │ ├── Console.php
│ │ │ │ ├── Dependencies.php
│ │ │ │ ├── ErrorHandler.php
│ │ │ │ ├── ExtensionLoader.php
│ │ │ │ ├── FailFast.php
│ │ │ │ ├── GracefulTermination.php
│ │ │ │ ├── Module.php
│ │ │ │ ├── README.md
│ │ │ │ └── Shared
│ │ │ │ │ └── StaticEvents.php
│ │ │ │ ├── Suite.php
│ │ │ │ ├── SuiteManager.php
│ │ │ │ ├── Test
│ │ │ │ ├── Cept.php
│ │ │ │ ├── Cest.php
│ │ │ │ ├── Descriptor.php
│ │ │ │ ├── Feature
│ │ │ │ │ ├── AssertionCounter.php
│ │ │ │ │ ├── CodeCoverage.php
│ │ │ │ │ ├── ErrorLogger.php
│ │ │ │ │ ├── IgnoreIfMetadataBlocked.php
│ │ │ │ │ ├── MetadataCollector.php
│ │ │ │ │ └── ScenarioLoader.php
│ │ │ │ ├── Gherkin.php
│ │ │ │ ├── Interfaces
│ │ │ │ │ ├── Dependent.php
│ │ │ │ │ ├── Descriptive.php
│ │ │ │ │ ├── Plain.php
│ │ │ │ │ ├── Reported.php
│ │ │ │ │ ├── ScenarioDriven.php
│ │ │ │ │ └── StrictCoverage.php
│ │ │ │ ├── Loader.php
│ │ │ │ ├── Loader
│ │ │ │ │ ├── Cept.php
│ │ │ │ │ ├── Cest.php
│ │ │ │ │ ├── Gherkin.php
│ │ │ │ │ ├── LoaderInterface.php
│ │ │ │ │ └── Unit.php
│ │ │ │ ├── Metadata.php
│ │ │ │ ├── Test.php
│ │ │ │ └── Unit.php
│ │ │ │ ├── TestInterface.php
│ │ │ │ └── Util
│ │ │ │ ├── Annotation.php
│ │ │ │ ├── ArrayContainsComparator.php
│ │ │ │ ├── Autoload.php
│ │ │ │ ├── ConsecutiveMap.php
│ │ │ │ ├── Debug.php
│ │ │ │ ├── FileSystem.php
│ │ │ │ ├── Fixtures.php
│ │ │ │ ├── HttpCode.php
│ │ │ │ ├── JsonArray.php
│ │ │ │ ├── JsonType.php
│ │ │ │ ├── Locator.php
│ │ │ │ ├── Maybe.php
│ │ │ │ ├── PathResolver.php
│ │ │ │ ├── PropertyAccess.php
│ │ │ │ ├── README.md
│ │ │ │ ├── ReflectionHelper.php
│ │ │ │ ├── Shared
│ │ │ │ ├── Asserts.php
│ │ │ │ └── Namespaces.php
│ │ │ │ ├── Soap.php
│ │ │ │ ├── Stub.php
│ │ │ │ ├── StubMarshaler.php
│ │ │ │ ├── Template.php
│ │ │ │ ├── Uri.php
│ │ │ │ ├── Xml.php
│ │ │ │ ├── XmlBuilder.php
│ │ │ │ ├── XmlStructure.php
│ │ │ │ └── sq.php
│ │ ├── tests
│ │ │ ├── README.md
│ │ │ ├── angular.suite.yml
│ │ │ ├── angular
│ │ │ │ └── AngularCest.php
│ │ │ ├── cli.suite.yml
│ │ │ ├── cli
│ │ │ │ ├── AutoRebuildCept.php
│ │ │ │ ├── BootstrapCest.php
│ │ │ │ ├── BuildCept.php
│ │ │ │ ├── ConfigParamsCest.php
│ │ │ │ ├── ConfigValidateCest.php
│ │ │ │ ├── DryRunCest.php
│ │ │ │ ├── ExtensionsCest.php
│ │ │ │ ├── GenerateCeptCept.php
│ │ │ │ ├── GenerateCestCept.php
│ │ │ │ ├── GenerateFeatureCept.php
│ │ │ │ ├── GenerateGroupCept.php
│ │ │ │ ├── GenerateHelperCept.php
│ │ │ │ ├── GeneratePageObjectCest.php
│ │ │ │ ├── GeneratePhpUnitCept.php
│ │ │ │ ├── GenerateScenariosCept.php
│ │ │ │ ├── GenerateStepObjectCept.php
│ │ │ │ ├── GenerateSuiteCept.php
│ │ │ │ ├── GenerateSuiteCustomConfigCept.php
│ │ │ │ ├── GenerateTestCept.php
│ │ │ │ ├── GherkinCest.php
│ │ │ │ ├── GlobalCommandOptionCest.php
│ │ │ │ ├── GroupEventsCept.php
│ │ │ │ ├── GroupExtensionCept.php
│ │ │ │ ├── IncludedCest.php
│ │ │ │ ├── OrderCest.php
│ │ │ │ ├── RegisterCommandCest.php
│ │ │ │ ├── RunCest.php
│ │ │ │ ├── RunEnvironmentCest.php
│ │ │ │ ├── RunIncompleteCept.php
│ │ │ │ ├── RunSkippedCept.php
│ │ │ │ ├── UnitCept.php
│ │ │ │ ├── WildcardIncludeCest.php
│ │ │ │ ├── _bootstrap.php
│ │ │ │ └── _steps
│ │ │ │ │ └── GeneratorSteps.php
│ │ │ ├── coverage.suite.yml
│ │ │ ├── coverage
│ │ │ │ ├── LocalCept.php
│ │ │ │ ├── RemoteServerWithHtmlCept.php
│ │ │ │ ├── RemoteServerWithXmlCept.php
│ │ │ │ ├── RemoteWithEnvironmentXmlCept.php
│ │ │ │ ├── RemoteWithHtmlCept.php
│ │ │ │ ├── RemoteWithTextCept.php
│ │ │ │ ├── RemoteWithXmlCept.php
│ │ │ │ └── _bootstrap.php
│ │ │ ├── data
│ │ │ │ ├── .gitignore
│ │ │ │ ├── DummyClass.php
│ │ │ │ ├── DummyOverloadableClass.php
│ │ │ │ ├── FailDependenciesCyclic.php
│ │ │ │ ├── FailDependenciesInChain.php
│ │ │ │ ├── FailDependenciesNonExistent.php
│ │ │ │ ├── FailDependenciesPrimitiveParam.php
│ │ │ │ ├── Invalid.php
│ │ │ │ ├── SimpleAdminGroupCest.php
│ │ │ │ ├── SimpleCept.php
│ │ │ │ ├── SimpleCest.php
│ │ │ │ ├── SimpleNamespacedTest.php
│ │ │ │ ├── SimpleTest.php
│ │ │ │ ├── SimpleWithDependencyInjectionCest.php
│ │ │ │ ├── SimpleWithNoClassCest.php
│ │ │ │ ├── app
│ │ │ │ │ ├── .htaccess
│ │ │ │ │ ├── avatar.jpg
│ │ │ │ │ ├── controllers.php
│ │ │ │ │ ├── data.php
│ │ │ │ │ ├── glue.php
│ │ │ │ │ ├── hhvm-server.ini
│ │ │ │ │ ├── index.php
│ │ │ │ │ └── view
│ │ │ │ │ │ ├── basehref.php
│ │ │ │ │ │ ├── content_type.php
│ │ │ │ │ │ ├── content_type2.php
│ │ │ │ │ │ ├── cookies.php
│ │ │ │ │ │ ├── external_url.php
│ │ │ │ │ │ ├── facebook.php
│ │ │ │ │ │ ├── form
│ │ │ │ │ │ ├── anchor.php
│ │ │ │ │ │ ├── bug1467.php
│ │ │ │ │ │ ├── bug1535.php
│ │ │ │ │ │ ├── bug1585.php
│ │ │ │ │ │ ├── bug1598.php
│ │ │ │ │ │ ├── bug1637.php
│ │ │ │ │ │ ├── bug2841.php
│ │ │ │ │ │ ├── bug2921.php
│ │ │ │ │ │ ├── bug3824.php
│ │ │ │ │ │ ├── bug3865.php
│ │ │ │ │ │ ├── bug3866.php
│ │ │ │ │ │ ├── button-not-in-form.php
│ │ │ │ │ │ ├── button.php
│ │ │ │ │ │ ├── button_in_link.php
│ │ │ │ │ │ ├── checkbox.php
│ │ │ │ │ │ ├── checkbox_array.php
│ │ │ │ │ │ ├── click.php
│ │ │ │ │ │ ├── complex.php
│ │ │ │ │ │ ├── div_content_editable.php
│ │ │ │ │ │ ├── empty.php
│ │ │ │ │ │ ├── empty_fill.php
│ │ │ │ │ │ ├── example1.php
│ │ │ │ │ │ ├── example10.php
│ │ │ │ │ │ ├── example11.php
│ │ │ │ │ │ ├── example12.php
│ │ │ │ │ │ ├── example13.php
│ │ │ │ │ │ ├── example14.php
│ │ │ │ │ │ ├── example15.php
│ │ │ │ │ │ ├── example16.php
│ │ │ │ │ │ ├── example17.php
│ │ │ │ │ │ ├── example18.php
│ │ │ │ │ │ ├── example2.php
│ │ │ │ │ │ ├── example3.php
│ │ │ │ │ │ ├── example4.php
│ │ │ │ │ │ ├── example5.php
│ │ │ │ │ │ ├── example6.php
│ │ │ │ │ │ ├── example7.php
│ │ │ │ │ │ ├── example8.php
│ │ │ │ │ │ ├── example9.php
│ │ │ │ │ │ ├── field.php
│ │ │ │ │ │ ├── field_values.php
│ │ │ │ │ │ ├── file.php
│ │ │ │ │ │ ├── form_with_buttons.php
│ │ │ │ │ │ ├── hidden.php
│ │ │ │ │ │ ├── image.php
│ │ │ │ │ │ ├── index.php
│ │ │ │ │ │ ├── multiple_matches.php
│ │ │ │ │ │ ├── names-sq-brackets.php
│ │ │ │ │ │ ├── popup.php
│ │ │ │ │ │ ├── radio.php
│ │ │ │ │ │ ├── relative_siteroot.php
│ │ │ │ │ │ ├── select.php
│ │ │ │ │ │ ├── select_multiple.php
│ │ │ │ │ │ ├── select_second.php
│ │ │ │ │ │ ├── select_selectors.php
│ │ │ │ │ │ ├── select_two_submits.php
│ │ │ │ │ │ ├── strict_selectors.php
│ │ │ │ │ │ ├── submit_adjacentforms.php
│ │ │ │ │ │ ├── submitform_ampersands.php
│ │ │ │ │ │ ├── submitform_multiple.php
│ │ │ │ │ │ ├── textarea.php
│ │ │ │ │ │ └── unchecked.php
│ │ │ │ │ │ ├── iframe.php
│ │ │ │ │ │ ├── index.php
│ │ │ │ │ │ ├── info.php
│ │ │ │ │ │ ├── jserroronload.php
│ │ │ │ │ │ ├── login.php
│ │ │ │ │ │ ├── redirect2.php
│ │ │ │ │ │ ├── redirect_interval.php
│ │ │ │ │ │ ├── redirect_meta_refresh.php
│ │ │ │ │ │ ├── redirect_params.php
│ │ │ │ │ │ ├── register.php
│ │ │ │ │ │ └── search.php
│ │ │ │ ├── claypit
│ │ │ │ │ ├── c3.php
│ │ │ │ │ ├── codeception.yml
│ │ │ │ │ ├── codeception_custom_report.yml
│ │ │ │ │ ├── codeception_extended.yml
│ │ │ │ │ ├── codeception_grouped.yml
│ │ │ │ │ ├── codeception_invalid.yml
│ │ │ │ │ ├── codeception_strict_xml.yml
│ │ │ │ │ ├── composer.json
│ │ │ │ │ ├── src
│ │ │ │ │ │ └── FooBar
│ │ │ │ │ │ │ └── dummy.txt
│ │ │ │ │ └── tests
│ │ │ │ │ │ ├── _bootstrap.php
│ │ │ │ │ │ ├── _data
│ │ │ │ │ │ ├── DummyClass.php
│ │ │ │ │ │ ├── MyGroupHighlighter.php
│ │ │ │ │ │ ├── MyReportPrinter.php
│ │ │ │ │ │ ├── VerbosityLevelOutput.php
│ │ │ │ │ │ ├── dump.sql
│ │ │ │ │ │ └── groupFileTest1
│ │ │ │ │ │ ├── _envs
│ │ │ │ │ │ ├── env2.dist.yml
│ │ │ │ │ │ ├── env2.yml
│ │ │ │ │ │ └── subenv
│ │ │ │ │ │ │ └── env3.yml
│ │ │ │ │ │ ├── _support
│ │ │ │ │ │ ├── AbsolutelyOtherGuy.php
│ │ │ │ │ │ ├── CodeGuy.php
│ │ │ │ │ │ ├── CodeHelper.php
│ │ │ │ │ │ ├── DumbGuy.php
│ │ │ │ │ │ ├── DumbHelper.php
│ │ │ │ │ │ ├── ExtendedGuy.php
│ │ │ │ │ │ ├── Group
│ │ │ │ │ │ │ └── CountEvents.php
│ │ │ │ │ │ ├── Helper
│ │ │ │ │ │ │ ├── Extended.php
│ │ │ │ │ │ │ └── Scenario.php
│ │ │ │ │ │ ├── Math
│ │ │ │ │ │ │ ├── Adder.php
│ │ │ │ │ │ │ ├── CalcHelper.php
│ │ │ │ │ │ │ └── Subtractor.php
│ │ │ │ │ │ ├── MathTester.php
│ │ │ │ │ │ ├── MessageGuy.php
│ │ │ │ │ │ ├── MessageHelper.php
│ │ │ │ │ │ ├── OrderGuy.php
│ │ │ │ │ │ ├── OrderHelper.php
│ │ │ │ │ │ ├── OtherGuy.php
│ │ │ │ │ │ ├── OtherHelper.php
│ │ │ │ │ │ ├── Page
│ │ │ │ │ │ │ └── Math
│ │ │ │ │ │ │ │ └── Trigonometry.php
│ │ │ │ │ │ ├── PowerGuy.php
│ │ │ │ │ │ ├── PowerHelper.php
│ │ │ │ │ │ ├── ScenarioGuy.php
│ │ │ │ │ │ ├── SkipGroup.php
│ │ │ │ │ │ ├── SkipGuy.php
│ │ │ │ │ │ ├── SkipHelper.php
│ │ │ │ │ │ ├── Step
│ │ │ │ │ │ │ └── Order
│ │ │ │ │ │ │ │ └── CanCantSteps.php
│ │ │ │ │ │ ├── SuiteExtension.php
│ │ │ │ │ │ └── _generated
│ │ │ │ │ │ │ └── .gitignore
│ │ │ │ │ │ ├── dummy.suite.yml
│ │ │ │ │ │ ├── dummy
│ │ │ │ │ │ ├── AnotherCest.php
│ │ │ │ │ │ ├── AnotherTest.php
│ │ │ │ │ │ ├── FileExistsCept.php
│ │ │ │ │ │ ├── GroupEventsCest.php
│ │ │ │ │ │ └── _bootstrap.php
│ │ │ │ │ │ ├── extended.suite.yml
│ │ │ │ │ │ ├── extended
│ │ │ │ │ │ ├── HelloCept.php
│ │ │ │ │ │ └── _bootstrap.php
│ │ │ │ │ │ ├── math.suite.yml
│ │ │ │ │ │ ├── math
│ │ │ │ │ │ ├── MathCest.php
│ │ │ │ │ │ ├── MathTest.php
│ │ │ │ │ │ └── _bootstrap.php
│ │ │ │ │ │ ├── messages.suite.yml
│ │ │ │ │ │ ├── messages
│ │ │ │ │ │ ├── EmailCept.php
│ │ │ │ │ │ ├── MessageCest.php
│ │ │ │ │ │ └── _bootstrap.php
│ │ │ │ │ │ ├── order.suite.yml
│ │ │ │ │ │ ├── order
│ │ │ │ │ │ ├── AnotherCept.php
│ │ │ │ │ │ ├── BeforeAfterClassTest.php
│ │ │ │ │ │ ├── BeforeAfterClassWithDataProviderTest.php
│ │ │ │ │ │ ├── CanCantFailCept.php
│ │ │ │ │ │ ├── CanCantFailCest.php
│ │ │ │ │ │ ├── CodeTest.php
│ │ │ │ │ │ ├── Dependent2Cest.php
│ │ │ │ │ │ ├── DependentCest.php
│ │ │ │ │ │ ├── FailedCept.php
│ │ │ │ │ │ ├── FailedCest.php
│ │ │ │ │ │ ├── LoadingOrderCept.php
│ │ │ │ │ │ ├── ParsedLoadedTest.php
│ │ │ │ │ │ ├── ReorderCest.php
│ │ │ │ │ │ └── _bootstrap.php
│ │ │ │ │ │ ├── powers.suite.yml
│ │ │ │ │ │ ├── powers
│ │ │ │ │ │ ├── MageGuildCest.php
│ │ │ │ │ │ ├── PowerIsRisingCept.php
│ │ │ │ │ │ └── _bootstrap.php
│ │ │ │ │ │ ├── remote.suite.yml
│ │ │ │ │ │ ├── remote
│ │ │ │ │ │ ├── DemoCept.php
│ │ │ │ │ │ └── _bootstrap.php
│ │ │ │ │ │ ├── remote_server.suite.yml
│ │ │ │ │ │ ├── remote_server
│ │ │ │ │ │ ├── DemoCept.php
│ │ │ │ │ │ └── _bootstrap.php
│ │ │ │ │ │ ├── scenario.suite.yml
│ │ │ │ │ │ ├── scenario
│ │ │ │ │ │ ├── ConditionalCept.php
│ │ │ │ │ │ ├── DataProviderCest.php
│ │ │ │ │ │ ├── DependencyForCest.php
│ │ │ │ │ │ ├── ExamplesCest.php
│ │ │ │ │ │ ├── FailedCept.php
│ │ │ │ │ │ ├── File.feature
│ │ │ │ │ │ ├── FileExamples.feature
│ │ │ │ │ │ ├── SubStepsCept.php
│ │ │ │ │ │ ├── SuccessCept.php
│ │ │ │ │ │ ├── _bootstrap.php
│ │ │ │ │ │ └── subfolder
│ │ │ │ │ │ │ └── SubFile.feature
│ │ │ │ │ │ ├── skipped.suite.yml
│ │ │ │ │ │ ├── skipped
│ │ │ │ │ │ ├── IncompleteMeCept.php
│ │ │ │ │ │ ├── NoEnvironmentCept.php
│ │ │ │ │ │ ├── SkipByGroupTest.php
│ │ │ │ │ │ ├── SkipMeCept.php
│ │ │ │ │ │ └── _bootstrap.php
│ │ │ │ │ │ ├── unit.suite.yml
│ │ │ │ │ │ └── unit
│ │ │ │ │ │ ├── DataProvidersTest.php
│ │ │ │ │ │ ├── Depends2Test.php
│ │ │ │ │ │ ├── DependsTest.php
│ │ │ │ │ │ ├── ErrorTest.php
│ │ │ │ │ │ ├── ExceptionTest.php
│ │ │ │ │ │ ├── FailingTest.php
│ │ │ │ │ │ ├── PassingTest.php
│ │ │ │ │ │ └── _bootstrap.php
│ │ │ │ ├── dump.sql
│ │ │ │ ├── dumps
│ │ │ │ │ ├── mysql.sql
│ │ │ │ │ ├── postgres-hhvm.sql
│ │ │ │ │ ├── postgres.sql
│ │ │ │ │ ├── sqlite-54.sql
│ │ │ │ │ └── sqlite.sql
│ │ │ │ ├── group_1
│ │ │ │ ├── group_2
│ │ │ │ ├── group_3
│ │ │ │ ├── included
│ │ │ │ │ ├── codeception.yml
│ │ │ │ │ ├── jazz
│ │ │ │ │ │ ├── codeception.yml
│ │ │ │ │ │ ├── pianist
│ │ │ │ │ │ │ ├── codeception.yml
│ │ │ │ │ │ │ ├── src
│ │ │ │ │ │ │ │ └── BillEvans.php
│ │ │ │ │ │ │ └── tests
│ │ │ │ │ │ │ │ ├── _data
│ │ │ │ │ │ │ │ └── dump.sql
│ │ │ │ │ │ │ │ ├── _helpers
│ │ │ │ │ │ │ │ ├── TestGuy.php
│ │ │ │ │ │ │ │ └── TestHelper.php
│ │ │ │ │ │ │ │ ├── functional.suite.yml
│ │ │ │ │ │ │ │ └── functional
│ │ │ │ │ │ │ │ ├── PianistCept.php
│ │ │ │ │ │ │ │ ├── TestGuy.php
│ │ │ │ │ │ │ │ └── _bootstrap.php
│ │ │ │ │ │ ├── src
│ │ │ │ │ │ │ └── Musician.php
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ │ ├── _data
│ │ │ │ │ │ │ └── dump.sql
│ │ │ │ │ │ │ ├── _helpers
│ │ │ │ │ │ │ ├── TestGuy.php
│ │ │ │ │ │ │ ├── TestHelper.php
│ │ │ │ │ │ │ └── _generated
│ │ │ │ │ │ │ │ └── .gitignore
│ │ │ │ │ │ │ ├── functional.suite.yml
│ │ │ │ │ │ │ └── functional
│ │ │ │ │ │ │ ├── DemoCept.php
│ │ │ │ │ │ │ ├── TestGuy.php
│ │ │ │ │ │ │ └── _bootstrap.php
│ │ │ │ │ └── shire
│ │ │ │ │ │ ├── codeception.yml
│ │ │ │ │ │ ├── src
│ │ │ │ │ │ └── Hobbit.php
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── _data
│ │ │ │ │ │ └── dump.sql
│ │ │ │ │ │ ├── _helpers
│ │ │ │ │ │ ├── TestGuy.php
│ │ │ │ │ │ ├── TestHelper.php
│ │ │ │ │ │ └── _generated
│ │ │ │ │ │ │ └── .gitignore
│ │ │ │ │ │ ├── functional.suite.yml
│ │ │ │ │ │ └── functional
│ │ │ │ │ │ ├── HobbitCept.php
│ │ │ │ │ │ ├── TestGuy.php
│ │ │ │ │ │ └── _bootstrap.php
│ │ │ │ ├── included_w
│ │ │ │ │ ├── codeception.yml
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── bar
│ │ │ │ │ │ ├── Spam
│ │ │ │ │ │ │ ├── .gitkeep
│ │ │ │ │ │ │ ├── codeception.yml
│ │ │ │ │ │ │ └── tests
│ │ │ │ │ │ │ │ ├── _output
│ │ │ │ │ │ │ │ └── .gitkeep
│ │ │ │ │ │ │ │ ├── _support
│ │ │ │ │ │ │ │ └── UnitTester.php
│ │ │ │ │ │ │ │ ├── unit.suite.yml
│ │ │ │ │ │ │ │ └── unit
│ │ │ │ │ │ │ │ └── _bootstrap.php
│ │ │ │ │ │ ├── SpamPack
│ │ │ │ │ │ │ └── .gitkeep
│ │ │ │ │ │ ├── Sub
│ │ │ │ │ │ │ └── EwokPack
│ │ │ │ │ │ │ │ ├── codeception.yml
│ │ │ │ │ │ │ │ ├── src
│ │ │ │ │ │ │ │ └── Ewok.php
│ │ │ │ │ │ │ │ └── tests
│ │ │ │ │ │ │ │ ├── _data
│ │ │ │ │ │ │ │ └── .gitkeep
│ │ │ │ │ │ │ │ ├── _log
│ │ │ │ │ │ │ │ └── .gitkeep
│ │ │ │ │ │ │ │ ├── _support
│ │ │ │ │ │ │ │ └── UnitTester.php
│ │ │ │ │ │ │ │ ├── unit.suite.yml
│ │ │ │ │ │ │ │ └── unit
│ │ │ │ │ │ │ │ ├── BasicTest.php
│ │ │ │ │ │ │ │ └── _bootstrap.php
│ │ │ │ │ │ └── ToastPack
│ │ │ │ │ │ │ ├── codeception.yml
│ │ │ │ │ │ │ ├── src
│ │ │ │ │ │ │ └── Toast.php
│ │ │ │ │ │ │ └── tests
│ │ │ │ │ │ │ ├── _data
│ │ │ │ │ │ │ └── .gitkeep
│ │ │ │ │ │ │ ├── _log
│ │ │ │ │ │ │ └── .gitkeep
│ │ │ │ │ │ │ ├── _support
│ │ │ │ │ │ │ └── UnitTester.php
│ │ │ │ │ │ │ ├── unit.suite.yml
│ │ │ │ │ │ │ └── unit
│ │ │ │ │ │ │ └── _bootstrap.php
│ │ │ │ │ │ └── foo
│ │ │ │ │ │ └── AcmePack
│ │ │ │ │ │ ├── codeception.yml
│ │ │ │ │ │ ├── src
│ │ │ │ │ │ └── Acme.php
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── _data
│ │ │ │ │ │ └── .gitkeep
│ │ │ │ │ │ ├── _support
│ │ │ │ │ │ └── UnitTester.php
│ │ │ │ │ │ ├── unit.suite.yml
│ │ │ │ │ │ └── unit
│ │ │ │ │ │ ├── BasicTest.php
│ │ │ │ │ │ └── _bootstrap.php
│ │ │ │ ├── params
│ │ │ │ │ ├── codeception.yml
│ │ │ │ │ ├── codeception_dotenv.yml
│ │ │ │ │ ├── codeception_dotenv2.yml
│ │ │ │ │ ├── codeception_self.yml
│ │ │ │ │ ├── codeception_yaml.yml
│ │ │ │ │ ├── params.env
│ │ │ │ │ ├── params.env.example
│ │ │ │ │ ├── params.yml
│ │ │ │ │ └── tests
│ │ │ │ │ │ ├── _support
│ │ │ │ │ │ ├── DummyTester.php
│ │ │ │ │ │ ├── Helper
│ │ │ │ │ │ │ └── Dummy.php
│ │ │ │ │ │ └── _generated
│ │ │ │ │ │ │ └── .gitignore
│ │ │ │ │ │ ├── dummy.suite.yml
│ │ │ │ │ │ └── dummy
│ │ │ │ │ │ └── DummyCept.php
│ │ │ │ ├── php55Test
│ │ │ │ ├── php70Test
│ │ │ │ ├── refund.feature
│ │ │ │ ├── register_command
│ │ │ │ │ ├── examples
│ │ │ │ │ │ ├── MyCustomCommand.php
│ │ │ │ │ │ └── YourCustomCommand.php
│ │ │ │ │ └── standard
│ │ │ │ │ │ ├── codeception.yml
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── _autoload.php
│ │ │ │ │ │ ├── _data
│ │ │ │ │ │ └── .gitkeep
│ │ │ │ │ │ ├── _log
│ │ │ │ │ │ └── .gitkeep
│ │ │ │ │ │ └── _support
│ │ │ │ │ │ └── .gitkeep
│ │ │ │ ├── rest
│ │ │ │ │ ├── hhvm-server.ini
│ │ │ │ │ ├── index.php
│ │ │ │ │ └── server.php
│ │ │ │ ├── result.html
│ │ │ │ ├── services
│ │ │ │ │ ├── UserModel.php
│ │ │ │ │ └── UserService.php
│ │ │ │ ├── test_groups
│ │ │ │ ├── unsetFile.php
│ │ │ │ ├── whitespace_group_test
│ │ │ │ └── xml
│ │ │ │ │ └── layout.xml
│ │ │ ├── docker-compose.yml
│ │ │ ├── facebook.suite.yml
│ │ │ ├── facebook
│ │ │ │ └── FacebookTest.php
│ │ │ ├── log
│ │ │ │ └── .gitignore
│ │ │ ├── support
│ │ │ │ ├── AngularGuy.php
│ │ │ │ ├── CliGuy.php
│ │ │ │ ├── CliHelper.php
│ │ │ │ ├── CodeGuy.php
│ │ │ │ ├── CodeHelper.php
│ │ │ │ ├── CoverGuy.php
│ │ │ │ ├── CoverHelper.php
│ │ │ │ ├── EmulateModuleHelper.php
│ │ │ │ ├── FacebookGuy.php
│ │ │ │ ├── Helper
│ │ │ │ │ ├── Angular.php
│ │ │ │ │ └── Hobbit.php
│ │ │ │ ├── Shire
│ │ │ │ │ └── Codeception
│ │ │ │ │ │ └── Module
│ │ │ │ │ │ └── EmulateModuleHelper.php
│ │ │ │ ├── TestHelper.php
│ │ │ │ ├── UniversalFramework.php
│ │ │ │ ├── WebGuy.php
│ │ │ │ └── WebHelper.php
│ │ │ ├── unit.suite.yml
│ │ │ ├── unit
│ │ │ │ ├── C3Test.php
│ │ │ │ ├── Codeception
│ │ │ │ │ ├── ApplicationTest.php
│ │ │ │ │ ├── Command
│ │ │ │ │ │ ├── BaseCommandRunner.php
│ │ │ │ │ │ ├── BuildTest.php
│ │ │ │ │ │ ├── GenerateCeptTest.php
│ │ │ │ │ │ ├── GenerateCestTest.php
│ │ │ │ │ │ ├── GenerateEnvironmentTest.php
│ │ │ │ │ │ ├── GenerateGroupTest.php
│ │ │ │ │ │ ├── GeneratePageObjectTest.php
│ │ │ │ │ │ ├── GeneratePhpunitTest.php
│ │ │ │ │ │ ├── GenerateScenarioTest.php
│ │ │ │ │ │ ├── GenerateStepObjectTest.php
│ │ │ │ │ │ ├── GenerateSuiteTest.php
│ │ │ │ │ │ ├── GenerateTestTest.php
│ │ │ │ │ │ ├── MyCustomCommandTest.php
│ │ │ │ │ │ └── SelfUpdateTest.php
│ │ │ │ │ ├── ConfigurationTest.php
│ │ │ │ │ ├── Constraints
│ │ │ │ │ │ ├── CrawlerConstraintTest.php
│ │ │ │ │ │ ├── CrawlerNotConstraintTest.php
│ │ │ │ │ │ ├── WebDriverConstraintTest.php
│ │ │ │ │ │ ├── WebDriverNotConstraintTest.php
│ │ │ │ │ │ └── mocked_webelement.php
│ │ │ │ │ ├── Coverage
│ │ │ │ │ │ └── FilterTest.php
│ │ │ │ │ ├── Exception
│ │ │ │ │ │ └── ModuleConfigTest.php
│ │ │ │ │ ├── Lib
│ │ │ │ │ │ ├── Console
│ │ │ │ │ │ │ ├── ColorizerTest.php
│ │ │ │ │ │ │ ├── DiffFactoryTest.php
│ │ │ │ │ │ │ └── MessageTest.php
│ │ │ │ │ │ ├── DiTest.php
│ │ │ │ │ │ ├── Driver
│ │ │ │ │ │ │ ├── MysqlTest.php
│ │ │ │ │ │ │ ├── PostgresTest.php
│ │ │ │ │ │ │ └── SqliteTest.php
│ │ │ │ │ │ ├── GroupManagerTest.php
│ │ │ │ │ │ ├── ModuleContainerTest.php
│ │ │ │ │ │ └── ParserTest.php
│ │ │ │ │ ├── Module
│ │ │ │ │ │ ├── AMQPTest.php
│ │ │ │ │ │ ├── AssertsTest.php
│ │ │ │ │ │ ├── BeanstalkdTest.php
│ │ │ │ │ │ ├── DbTest.php
│ │ │ │ │ │ ├── FTPTest.php
│ │ │ │ │ │ ├── FilesystemTest.php
│ │ │ │ │ │ ├── FrameworksTest.php
│ │ │ │ │ │ ├── MongoDbLegacyTest.php
│ │ │ │ │ │ ├── MongoDbTest.php
│ │ │ │ │ │ ├── PhpBrowserRestTest.php
│ │ │ │ │ │ ├── PhpBrowserTest.php
│ │ │ │ │ │ ├── RedisTest.php
│ │ │ │ │ │ ├── RestTest.php
│ │ │ │ │ │ ├── SFTPTest.php
│ │ │ │ │ │ ├── SequenceTest.php
│ │ │ │ │ │ ├── SoapTest.php
│ │ │ │ │ │ ├── TestsForBrowsers.php
│ │ │ │ │ │ └── TestsForWeb.php
│ │ │ │ │ ├── ModuleTest.php
│ │ │ │ │ ├── ScenarioTest.php
│ │ │ │ │ ├── Step
│ │ │ │ │ │ └── ExecutorTest.php
│ │ │ │ │ ├── StepTest.php
│ │ │ │ │ ├── Subscriber
│ │ │ │ │ │ └── ErrorHandlerTest.php
│ │ │ │ │ ├── SuiteManagerTest.php
│ │ │ │ │ ├── Test
│ │ │ │ │ │ ├── CeptTest.php
│ │ │ │ │ │ ├── CestTest.php
│ │ │ │ │ │ ├── GherkinTest.php
│ │ │ │ │ │ └── UnitTest.php
│ │ │ │ │ ├── TestLoaderTest.php
│ │ │ │ │ └── Util
│ │ │ │ │ │ ├── AnnotationTest.php
│ │ │ │ │ │ ├── ArrayContainsComparatorTest.php
│ │ │ │ │ │ ├── AutoloadTest.php
│ │ │ │ │ │ ├── HttpCodeTest.php
│ │ │ │ │ │ ├── JsonArrayTest.php
│ │ │ │ │ │ ├── JsonTypeTest.php
│ │ │ │ │ │ ├── LocatorTest.php
│ │ │ │ │ │ ├── MockAutoload.php
│ │ │ │ │ │ ├── PathResolverTest.php
│ │ │ │ │ │ ├── StubTest.php
│ │ │ │ │ │ ├── TemplateTest.php
│ │ │ │ │ │ └── UriTest.php
│ │ │ │ └── _bootstrap.php
│ │ │ ├── web.suite.yml
│ │ │ └── web
│ │ │ │ ├── FriendWithStepsCept.php
│ │ │ │ ├── FriendsCept.php
│ │ │ │ ├── WebDriverTest.php
│ │ │ │ ├── _bootstrap.php
│ │ │ │ └── _steps
│ │ │ │ └── RootWatcherSteps.php
│ │ └── wercker.yml
│ └── verify
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── RoboFile.php
│ │ ├── VERSION
│ │ ├── composer.json
│ │ ├── composer.lock
│ │ ├── phpunit.xml
│ │ ├── src
│ │ └── Codeception
│ │ │ ├── Verify.php
│ │ │ └── function.php
│ │ └── tests
│ │ ├── VerifyTest.php
│ │ └── assets
│ │ ├── equal-json-test-file.json
│ │ ├── format-file.txt
│ │ ├── json-test-file.json
│ │ └── xml-test-file.xml
├── composer
│ ├── ClassLoader.php
│ ├── LICENSE
│ ├── autoload_classmap.php
│ ├── autoload_files.php
│ ├── autoload_namespaces.php
│ ├── autoload_psr4.php
│ ├── autoload_real.php
│ ├── autoload_static.php
│ └── installed.json
├── doctrine
│ └── instantiator
│ │ ├── .gitignore
│ │ ├── .scrutinizer.yml
│ │ ├── .travis.install.sh
│ │ ├── .travis.yml
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── phpmd.xml.dist
│ │ ├── phpunit.xml.dist
│ │ ├── src
│ │ └── Doctrine
│ │ │ └── Instantiator
│ │ │ ├── Exception
│ │ │ ├── ExceptionInterface.php
│ │ │ ├── InvalidArgumentException.php
│ │ │ └── UnexpectedValueException.php
│ │ │ ├── Instantiator.php
│ │ │ └── InstantiatorInterface.php
│ │ └── tests
│ │ └── DoctrineTest
│ │ ├── InstantiatorPerformance
│ │ └── InstantiatorPerformanceEvent.php
│ │ ├── InstantiatorTest
│ │ ├── Exception
│ │ │ ├── InvalidArgumentExceptionTest.php
│ │ │ └── UnexpectedValueExceptionTest.php
│ │ └── InstantiatorTest.php
│ │ └── InstantiatorTestAsset
│ │ ├── AbstractClassAsset.php
│ │ ├── ArrayObjectAsset.php
│ │ ├── ExceptionAsset.php
│ │ ├── FinalExceptionAsset.php
│ │ ├── PharAsset.php
│ │ ├── PharExceptionAsset.php
│ │ ├── SerializableArrayObjectAsset.php
│ │ ├── SimpleSerializableAsset.php
│ │ ├── SimpleTraitAsset.php
│ │ ├── UnCloneableAsset.php
│ │ ├── UnserializeExceptionArrayObjectAsset.php
│ │ ├── WakeUpNoticesAsset.php
│ │ └── XMLReaderAsset.php
├── ezyang
│ └── htmlpurifier
│ │ ├── .travis.yml
│ │ ├── CREDITS
│ │ ├── INSTALL
│ │ ├── INSTALL.fr.utf8
│ │ ├── LICENSE
│ │ ├── NEWS
│ │ ├── README.md
│ │ ├── TODO
│ │ ├── VERSION
│ │ ├── WHATSNEW
│ │ ├── WYSIWYG
│ │ ├── composer.json
│ │ ├── extras
│ │ ├── ConfigDoc
│ │ │ └── HTMLXSLTProcessor.php
│ │ ├── FSTools.php
│ │ ├── FSTools
│ │ │ └── File.php
│ │ ├── HTMLPurifierExtras.auto.php
│ │ ├── HTMLPurifierExtras.autoload.php
│ │ ├── HTMLPurifierExtras.php
│ │ └── README
│ │ ├── library
│ │ ├── HTMLPurifier.auto.php
│ │ ├── HTMLPurifier.autoload.php
│ │ ├── HTMLPurifier.composer.php
│ │ ├── HTMLPurifier.func.php
│ │ ├── HTMLPurifier.includes.php
│ │ ├── HTMLPurifier.kses.php
│ │ ├── HTMLPurifier.path.php
│ │ ├── HTMLPurifier.php
│ │ ├── HTMLPurifier.safe-includes.php
│ │ └── HTMLPurifier
│ │ │ ├── Arborize.php
│ │ │ ├── AttrCollections.php
│ │ │ ├── AttrDef.php
│ │ │ ├── AttrDef
│ │ │ ├── CSS.php
│ │ │ ├── CSS
│ │ │ │ ├── AlphaValue.php
│ │ │ │ ├── Background.php
│ │ │ │ ├── BackgroundPosition.php
│ │ │ │ ├── Border.php
│ │ │ │ ├── Color.php
│ │ │ │ ├── Composite.php
│ │ │ │ ├── DenyElementDecorator.php
│ │ │ │ ├── Filter.php
│ │ │ │ ├── Font.php
│ │ │ │ ├── FontFamily.php
│ │ │ │ ├── Ident.php
│ │ │ │ ├── ImportantDecorator.php
│ │ │ │ ├── Length.php
│ │ │ │ ├── ListStyle.php
│ │ │ │ ├── Multiple.php
│ │ │ │ ├── Number.php
│ │ │ │ ├── Percentage.php
│ │ │ │ ├── TextDecoration.php
│ │ │ │ └── URI.php
│ │ │ ├── Clone.php
│ │ │ ├── Enum.php
│ │ │ ├── HTML
│ │ │ │ ├── Bool.php
│ │ │ │ ├── Class.php
│ │ │ │ ├── Color.php
│ │ │ │ ├── FrameTarget.php
│ │ │ │ ├── ID.php
│ │ │ │ ├── Length.php
│ │ │ │ ├── LinkTypes.php
│ │ │ │ ├── MultiLength.php
│ │ │ │ ├── Nmtokens.php
│ │ │ │ └── Pixels.php
│ │ │ ├── Integer.php
│ │ │ ├── Lang.php
│ │ │ ├── Switch.php
│ │ │ ├── Text.php
│ │ │ ├── URI.php
│ │ │ └── URI
│ │ │ │ ├── Email.php
│ │ │ │ ├── Email
│ │ │ │ └── SimpleCheck.php
│ │ │ │ ├── Host.php
│ │ │ │ ├── IPv4.php
│ │ │ │ └── IPv6.php
│ │ │ ├── AttrTransform.php
│ │ │ ├── AttrTransform
│ │ │ ├── Background.php
│ │ │ ├── BdoDir.php
│ │ │ ├── BgColor.php
│ │ │ ├── BoolToCSS.php
│ │ │ ├── Border.php
│ │ │ ├── EnumToCSS.php
│ │ │ ├── ImgRequired.php
│ │ │ ├── ImgSpace.php
│ │ │ ├── Input.php
│ │ │ ├── Lang.php
│ │ │ ├── Length.php
│ │ │ ├── Name.php
│ │ │ ├── NameSync.php
│ │ │ ├── Nofollow.php
│ │ │ ├── SafeEmbed.php
│ │ │ ├── SafeObject.php
│ │ │ ├── SafeParam.php
│ │ │ ├── ScriptRequired.php
│ │ │ ├── TargetBlank.php
│ │ │ ├── TargetNoreferrer.php
│ │ │ └── Textarea.php
│ │ │ ├── AttrTypes.php
│ │ │ ├── AttrValidator.php
│ │ │ ├── Bootstrap.php
│ │ │ ├── CSSDefinition.php
│ │ │ ├── ChildDef.php
│ │ │ ├── ChildDef
│ │ │ ├── Chameleon.php
│ │ │ ├── Custom.php
│ │ │ ├── Empty.php
│ │ │ ├── List.php
│ │ │ ├── Optional.php
│ │ │ ├── Required.php
│ │ │ ├── StrictBlockquote.php
│ │ │ └── Table.php
│ │ │ ├── Config.php
│ │ │ ├── ConfigSchema.php
│ │ │ ├── ConfigSchema
│ │ │ ├── Builder
│ │ │ │ ├── ConfigSchema.php
│ │ │ │ └── Xml.php
│ │ │ ├── Exception.php
│ │ │ ├── Interchange.php
│ │ │ ├── Interchange
│ │ │ │ ├── Directive.php
│ │ │ │ └── Id.php
│ │ │ ├── InterchangeBuilder.php
│ │ │ ├── Validator.php
│ │ │ ├── ValidatorAtom.php
│ │ │ ├── schema.ser
│ │ │ └── schema
│ │ │ │ ├── Attr.AllowedClasses.txt
│ │ │ │ ├── Attr.AllowedFrameTargets.txt
│ │ │ │ ├── Attr.AllowedRel.txt
│ │ │ │ ├── Attr.AllowedRev.txt
│ │ │ │ ├── Attr.ClassUseCDATA.txt
│ │ │ │ ├── Attr.DefaultImageAlt.txt
│ │ │ │ ├── Attr.DefaultInvalidImage.txt
│ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt
│ │ │ │ ├── Attr.DefaultTextDir.txt
│ │ │ │ ├── Attr.EnableID.txt
│ │ │ │ ├── Attr.ForbiddenClasses.txt
│ │ │ │ ├── Attr.ID.HTML5.txt
│ │ │ │ ├── Attr.IDBlacklist.txt
│ │ │ │ ├── Attr.IDBlacklistRegexp.txt
│ │ │ │ ├── Attr.IDPrefix.txt
│ │ │ │ ├── Attr.IDPrefixLocal.txt
│ │ │ │ ├── AutoFormat.AutoParagraph.txt
│ │ │ │ ├── AutoFormat.Custom.txt
│ │ │ │ ├── AutoFormat.DisplayLinkURI.txt
│ │ │ │ ├── AutoFormat.Linkify.txt
│ │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt
│ │ │ │ ├── AutoFormat.PurifierLinkify.txt
│ │ │ │ ├── AutoFormat.RemoveEmpty.Predicate.txt
│ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt
│ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt
│ │ │ │ ├── AutoFormat.RemoveEmpty.txt
│ │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt
│ │ │ │ ├── CSS.AllowDuplicates.txt
│ │ │ │ ├── CSS.AllowImportant.txt
│ │ │ │ ├── CSS.AllowTricky.txt
│ │ │ │ ├── CSS.AllowedFonts.txt
│ │ │ │ ├── CSS.AllowedProperties.txt
│ │ │ │ ├── CSS.DefinitionRev.txt
│ │ │ │ ├── CSS.ForbiddenProperties.txt
│ │ │ │ ├── CSS.MaxImgLength.txt
│ │ │ │ ├── CSS.Proprietary.txt
│ │ │ │ ├── CSS.Trusted.txt
│ │ │ │ ├── Cache.DefinitionImpl.txt
│ │ │ │ ├── Cache.SerializerPath.txt
│ │ │ │ ├── Cache.SerializerPermissions.txt
│ │ │ │ ├── Core.AggressivelyFixLt.txt
│ │ │ │ ├── Core.AllowHostnameUnderscore.txt
│ │ │ │ ├── Core.CollectErrors.txt
│ │ │ │ ├── Core.ColorKeywords.txt
│ │ │ │ ├── Core.ConvertDocumentToFragment.txt
│ │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt
│ │ │ │ ├── Core.DisableExcludes.txt
│ │ │ │ ├── Core.EnableIDNA.txt
│ │ │ │ ├── Core.Encoding.txt
│ │ │ │ ├── Core.EscapeInvalidChildren.txt
│ │ │ │ ├── Core.EscapeInvalidTags.txt
│ │ │ │ ├── Core.EscapeNonASCIICharacters.txt
│ │ │ │ ├── Core.HiddenElements.txt
│ │ │ │ ├── Core.Language.txt
│ │ │ │ ├── Core.LexerImpl.txt
│ │ │ │ ├── Core.MaintainLineNumbers.txt
│ │ │ │ ├── Core.NormalizeNewlines.txt
│ │ │ │ ├── Core.RemoveInvalidImg.txt
│ │ │ │ ├── Core.RemoveProcessingInstructions.txt
│ │ │ │ ├── Core.RemoveScriptContents.txt
│ │ │ │ ├── Filter.Custom.txt
│ │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt
│ │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt
│ │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt
│ │ │ │ ├── Filter.ExtractStyleBlocks.txt
│ │ │ │ ├── Filter.YouTube.txt
│ │ │ │ ├── HTML.Allowed.txt
│ │ │ │ ├── HTML.AllowedAttributes.txt
│ │ │ │ ├── HTML.AllowedComments.txt
│ │ │ │ ├── HTML.AllowedCommentsRegexp.txt
│ │ │ │ ├── HTML.AllowedElements.txt
│ │ │ │ ├── HTML.AllowedModules.txt
│ │ │ │ ├── HTML.Attr.Name.UseCDATA.txt
│ │ │ │ ├── HTML.BlockWrapper.txt
│ │ │ │ ├── HTML.CoreModules.txt
│ │ │ │ ├── HTML.CustomDoctype.txt
│ │ │ │ ├── HTML.DefinitionID.txt
│ │ │ │ ├── HTML.DefinitionRev.txt
│ │ │ │ ├── HTML.Doctype.txt
│ │ │ │ ├── HTML.FlashAllowFullScreen.txt
│ │ │ │ ├── HTML.ForbiddenAttributes.txt
│ │ │ │ ├── HTML.ForbiddenElements.txt
│ │ │ │ ├── HTML.MaxImgLength.txt
│ │ │ │ ├── HTML.Nofollow.txt
│ │ │ │ ├── HTML.Parent.txt
│ │ │ │ ├── HTML.Proprietary.txt
│ │ │ │ ├── HTML.SafeEmbed.txt
│ │ │ │ ├── HTML.SafeIframe.txt
│ │ │ │ ├── HTML.SafeObject.txt
│ │ │ │ ├── HTML.SafeScripting.txt
│ │ │ │ ├── HTML.Strict.txt
│ │ │ │ ├── HTML.TargetBlank.txt
│ │ │ │ ├── HTML.TargetNoreferrer.txt
│ │ │ │ ├── HTML.TidyAdd.txt
│ │ │ │ ├── HTML.TidyLevel.txt
│ │ │ │ ├── HTML.TidyRemove.txt
│ │ │ │ ├── HTML.Trusted.txt
│ │ │ │ ├── HTML.XHTML.txt
│ │ │ │ ├── Output.CommentScriptContents.txt
│ │ │ │ ├── Output.FixInnerHTML.txt
│ │ │ │ ├── Output.FlashCompat.txt
│ │ │ │ ├── Output.Newline.txt
│ │ │ │ ├── Output.SortAttr.txt
│ │ │ │ ├── Output.TidyFormat.txt
│ │ │ │ ├── Test.ForceNoIconv.txt
│ │ │ │ ├── URI.AllowedSchemes.txt
│ │ │ │ ├── URI.Base.txt
│ │ │ │ ├── URI.DefaultScheme.txt
│ │ │ │ ├── URI.DefinitionID.txt
│ │ │ │ ├── URI.DefinitionRev.txt
│ │ │ │ ├── URI.Disable.txt
│ │ │ │ ├── URI.DisableExternal.txt
│ │ │ │ ├── URI.DisableExternalResources.txt
│ │ │ │ ├── URI.DisableResources.txt
│ │ │ │ ├── URI.Host.txt
│ │ │ │ ├── URI.HostBlacklist.txt
│ │ │ │ ├── URI.MakeAbsolute.txt
│ │ │ │ ├── URI.Munge.txt
│ │ │ │ ├── URI.MungeResources.txt
│ │ │ │ ├── URI.MungeSecretKey.txt
│ │ │ │ ├── URI.OverrideAllowedSchemes.txt
│ │ │ │ ├── URI.SafeIframeRegexp.txt
│ │ │ │ └── info.ini
│ │ │ ├── ContentSets.php
│ │ │ ├── Context.php
│ │ │ ├── Definition.php
│ │ │ ├── DefinitionCache.php
│ │ │ ├── DefinitionCache
│ │ │ ├── Decorator.php
│ │ │ ├── Decorator
│ │ │ │ ├── Cleanup.php
│ │ │ │ ├── Memory.php
│ │ │ │ └── Template.php.in
│ │ │ ├── Null.php
│ │ │ ├── Serializer.php
│ │ │ └── Serializer
│ │ │ │ └── README
│ │ │ ├── DefinitionCacheFactory.php
│ │ │ ├── Doctype.php
│ │ │ ├── DoctypeRegistry.php
│ │ │ ├── ElementDef.php
│ │ │ ├── Encoder.php
│ │ │ ├── EntityLookup.php
│ │ │ ├── EntityLookup
│ │ │ └── entities.ser
│ │ │ ├── EntityParser.php
│ │ │ ├── ErrorCollector.php
│ │ │ ├── ErrorStruct.php
│ │ │ ├── Exception.php
│ │ │ ├── Filter.php
│ │ │ ├── Filter
│ │ │ ├── ExtractStyleBlocks.php
│ │ │ └── YouTube.php
│ │ │ ├── Generator.php
│ │ │ ├── HTMLDefinition.php
│ │ │ ├── HTMLModule.php
│ │ │ ├── HTMLModule
│ │ │ ├── Bdo.php
│ │ │ ├── CommonAttributes.php
│ │ │ ├── Edit.php
│ │ │ ├── Forms.php
│ │ │ ├── Hypertext.php
│ │ │ ├── Iframe.php
│ │ │ ├── Image.php
│ │ │ ├── Legacy.php
│ │ │ ├── List.php
│ │ │ ├── Name.php
│ │ │ ├── Nofollow.php
│ │ │ ├── NonXMLCommonAttributes.php
│ │ │ ├── Object.php
│ │ │ ├── Presentation.php
│ │ │ ├── Proprietary.php
│ │ │ ├── Ruby.php
│ │ │ ├── SafeEmbed.php
│ │ │ ├── SafeObject.php
│ │ │ ├── SafeScripting.php
│ │ │ ├── Scripting.php
│ │ │ ├── StyleAttribute.php
│ │ │ ├── Tables.php
│ │ │ ├── Target.php
│ │ │ ├── TargetBlank.php
│ │ │ ├── TargetNoreferrer.php
│ │ │ ├── Text.php
│ │ │ ├── Tidy.php
│ │ │ ├── Tidy
│ │ │ │ ├── Name.php
│ │ │ │ ├── Proprietary.php
│ │ │ │ ├── Strict.php
│ │ │ │ ├── Transitional.php
│ │ │ │ ├── XHTML.php
│ │ │ │ └── XHTMLAndHTML4.php
│ │ │ └── XMLCommonAttributes.php
│ │ │ ├── HTMLModuleManager.php
│ │ │ ├── IDAccumulator.php
│ │ │ ├── Injector.php
│ │ │ ├── Injector
│ │ │ ├── AutoParagraph.php
│ │ │ ├── DisplayLinkURI.php
│ │ │ ├── Linkify.php
│ │ │ ├── PurifierLinkify.php
│ │ │ ├── RemoveEmpty.php
│ │ │ ├── RemoveSpansWithoutAttributes.php
│ │ │ └── SafeObject.php
│ │ │ ├── Language.php
│ │ │ ├── Language
│ │ │ ├── classes
│ │ │ │ └── en-x-test.php
│ │ │ └── messages
│ │ │ │ ├── en-x-test.php
│ │ │ │ ├── en-x-testmini.php
│ │ │ │ └── en.php
│ │ │ ├── LanguageFactory.php
│ │ │ ├── Length.php
│ │ │ ├── Lexer.php
│ │ │ ├── Lexer
│ │ │ ├── DOMLex.php
│ │ │ ├── DirectLex.php
│ │ │ └── PH5P.php
│ │ │ ├── Node.php
│ │ │ ├── Node
│ │ │ ├── Comment.php
│ │ │ ├── Element.php
│ │ │ └── Text.php
│ │ │ ├── PercentEncoder.php
│ │ │ ├── Printer.php
│ │ │ ├── Printer
│ │ │ ├── CSSDefinition.php
│ │ │ ├── ConfigForm.css
│ │ │ ├── ConfigForm.js
│ │ │ ├── ConfigForm.php
│ │ │ └── HTMLDefinition.php
│ │ │ ├── PropertyList.php
│ │ │ ├── PropertyListIterator.php
│ │ │ ├── Queue.php
│ │ │ ├── Strategy.php
│ │ │ ├── Strategy
│ │ │ ├── Composite.php
│ │ │ ├── Core.php
│ │ │ ├── FixNesting.php
│ │ │ ├── MakeWellFormed.php
│ │ │ ├── RemoveForeignElements.php
│ │ │ └── ValidateAttributes.php
│ │ │ ├── StringHash.php
│ │ │ ├── StringHashParser.php
│ │ │ ├── TagTransform.php
│ │ │ ├── TagTransform
│ │ │ ├── Font.php
│ │ │ └── Simple.php
│ │ │ ├── Token.php
│ │ │ ├── Token
│ │ │ ├── Comment.php
│ │ │ ├── Empty.php
│ │ │ ├── End.php
│ │ │ ├── Start.php
│ │ │ ├── Tag.php
│ │ │ └── Text.php
│ │ │ ├── TokenFactory.php
│ │ │ ├── URI.php
│ │ │ ├── URIDefinition.php
│ │ │ ├── URIFilter.php
│ │ │ ├── URIFilter
│ │ │ ├── DisableExternal.php
│ │ │ ├── DisableExternalResources.php
│ │ │ ├── DisableResources.php
│ │ │ ├── HostBlacklist.php
│ │ │ ├── MakeAbsolute.php
│ │ │ ├── Munge.php
│ │ │ └── SafeIframe.php
│ │ │ ├── URIParser.php
│ │ │ ├── URIScheme.php
│ │ │ ├── URIScheme
│ │ │ ├── data.php
│ │ │ ├── file.php
│ │ │ ├── ftp.php
│ │ │ ├── http.php
│ │ │ ├── https.php
│ │ │ ├── mailto.php
│ │ │ ├── news.php
│ │ │ ├── nntp.php
│ │ │ └── tel.php
│ │ │ ├── URISchemeRegistry.php
│ │ │ ├── UnitConverter.php
│ │ │ ├── VarParser.php
│ │ │ ├── VarParser
│ │ │ ├── Flexible.php
│ │ │ └── Native.php
│ │ │ ├── VarParserException.php
│ │ │ └── Zipper.php
│ │ ├── maintenance
│ │ ├── .htaccess
│ │ ├── PH5P.patch
│ │ ├── PH5P.php
│ │ ├── add-vimline.php
│ │ ├── common.php
│ │ ├── compile-doxygen.sh
│ │ ├── config-scanner.php
│ │ ├── flush-definition-cache.php
│ │ ├── flush.php
│ │ ├── generate-entity-file.php
│ │ ├── generate-includes.php
│ │ ├── generate-ph5p-patch.php
│ │ ├── generate-schema-cache.php
│ │ ├── generate-standalone.php
│ │ ├── merge-library.php
│ │ ├── old-extract-schema.php
│ │ ├── old-remove-require-once.php
│ │ ├── old-remove-schema-def.php
│ │ ├── regenerate-docs.sh
│ │ ├── remove-trailing-whitespace.php
│ │ ├── rename-config.php
│ │ └── update-config.php
│ │ ├── package.php
│ │ ├── phpdoc.ini
│ │ ├── plugins
│ │ ├── modx.txt
│ │ └── phorum
│ │ │ ├── .gitignore
│ │ │ ├── Changelog
│ │ │ ├── INSTALL
│ │ │ ├── README
│ │ │ ├── config.default.php
│ │ │ ├── htmlpurifier.php
│ │ │ ├── info.txt
│ │ │ ├── init-config.php
│ │ │ ├── migrate.bbcode.php
│ │ │ ├── settings.php
│ │ │ └── settings
│ │ │ ├── form.php
│ │ │ ├── migrate-sigs-form.php
│ │ │ ├── migrate-sigs.php
│ │ │ └── save.php
│ │ ├── release1-update.php
│ │ ├── release2-tag.php
│ │ ├── test-settings.sample.php
│ │ ├── test-settings.travis.php
│ │ └── tests
│ │ └── path2class.func.php
├── fzaninotto
│ └── faker
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── CHANGELOG.md
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── Makefile
│ │ ├── composer.json
│ │ ├── phpunit.xml.dist
│ │ ├── readme.md
│ │ ├── src
│ │ ├── Faker
│ │ │ ├── Calculator
│ │ │ │ ├── Iban.php
│ │ │ │ └── Luhn.php
│ │ │ ├── DefaultGenerator.php
│ │ │ ├── Documentor.php
│ │ │ ├── Factory.php
│ │ │ ├── Generator.php
│ │ │ ├── Guesser
│ │ │ │ └── Name.php
│ │ │ ├── ORM
│ │ │ │ ├── CakePHP
│ │ │ │ │ ├── ColumnTypeGuesser.php
│ │ │ │ │ ├── EntityPopulator.php
│ │ │ │ │ └── Populator.php
│ │ │ │ ├── Doctrine
│ │ │ │ │ ├── ColumnTypeGuesser.php
│ │ │ │ │ ├── EntityPopulator.php
│ │ │ │ │ └── Populator.php
│ │ │ │ ├── Mandango
│ │ │ │ │ ├── ColumnTypeGuesser.php
│ │ │ │ │ ├── EntityPopulator.php
│ │ │ │ │ └── Populator.php
│ │ │ │ ├── Propel
│ │ │ │ │ ├── ColumnTypeGuesser.php
│ │ │ │ │ ├── EntityPopulator.php
│ │ │ │ │ └── Populator.php
│ │ │ │ ├── Propel2
│ │ │ │ │ ├── ColumnTypeGuesser.php
│ │ │ │ │ ├── EntityPopulator.php
│ │ │ │ │ └── Populator.php
│ │ │ │ └── Spot
│ │ │ │ │ ├── ColumnTypeGuesser.php
│ │ │ │ │ ├── EntityPopulator.php
│ │ │ │ │ └── Populator.php
│ │ │ ├── Provider
│ │ │ │ ├── Address.php
│ │ │ │ ├── Barcode.php
│ │ │ │ ├── Base.php
│ │ │ │ ├── Biased.php
│ │ │ │ ├── Color.php
│ │ │ │ ├── Company.php
│ │ │ │ ├── DateTime.php
│ │ │ │ ├── File.php
│ │ │ │ ├── Image.php
│ │ │ │ ├── Internet.php
│ │ │ │ ├── Lorem.php
│ │ │ │ ├── Miscellaneous.php
│ │ │ │ ├── Payment.php
│ │ │ │ ├── Person.php
│ │ │ │ ├── PhoneNumber.php
│ │ │ │ ├── Text.php
│ │ │ │ ├── UserAgent.php
│ │ │ │ ├── Uuid.php
│ │ │ │ ├── ar_JO
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── ar_SA
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── at_AT
│ │ │ │ │ └── Payment.php
│ │ │ │ ├── bg_BG
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── bn_BD
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Utils.php
│ │ │ │ ├── cs_CZ
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── DateTime.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── da_DK
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── de_AT
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── de_CH
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── de_DE
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── el_GR
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── en_AU
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── en_CA
│ │ │ │ │ ├── Address.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── en_GB
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── en_IN
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── en_NZ
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── en_PH
│ │ │ │ │ ├── Address.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── en_SG
│ │ │ │ │ ├── Address.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── en_UG
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── en_US
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── en_ZA
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── es_AR
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── es_ES
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── es_PE
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── es_VE
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── fa_IR
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── fi_FI
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── fr_BE
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── fr_CA
│ │ │ │ │ ├── Address.php
│ │ │ │ │ └── Person.php
│ │ │ │ ├── fr_CH
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── fr_FR
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── he_IL
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── hr_HR
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── hu_HU
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── hy_AM
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── id_ID
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── is_IS
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── it_CH
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── it_IT
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── ja_JP
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── ka_GE
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── DateTime.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── kk_KZ
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── ko_KR
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── lt_LT
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── lv_LV
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── me_ME
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── mn_MN
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── nb_NO
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── ne_NP
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── nl_BE
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── nl_NL
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── pl_PL
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── pt_BR
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── check_digit.php
│ │ │ │ ├── pt_PT
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── ro_MD
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── ro_RO
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── ru_RU
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── sk_SK
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── sl_SI
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── sr_Cyrl_RS
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ └── Person.php
│ │ │ │ ├── sr_Latn_RS
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ └── Person.php
│ │ │ │ ├── sr_RS
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ └── Person.php
│ │ │ │ ├── sv_SE
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── tr_TR
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── DateTime.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── uk_UA
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── vi_VN
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── zh_CN
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── DateTime.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ └── zh_TW
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── DateTime.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ ├── UniqueGenerator.php
│ │ │ └── ValidGenerator.php
│ │ └── autoload.php
│ │ └── test
│ │ ├── Faker
│ │ ├── Calculator
│ │ │ ├── IbanTest.php
│ │ │ └── LuhnTest.php
│ │ ├── DefaultGeneratorTest.php
│ │ ├── GeneratorTest.php
│ │ └── Provider
│ │ │ ├── AddressTest.php
│ │ │ ├── BarcodeTest.php
│ │ │ ├── BaseTest.php
│ │ │ ├── BiasedTest.php
│ │ │ ├── ColorTest.php
│ │ │ ├── CompanyTest.php
│ │ │ ├── DateTimeTest.php
│ │ │ ├── ImageTest.php
│ │ │ ├── InternetTest.php
│ │ │ ├── LocalizationTest.php
│ │ │ ├── LoremTest.php
│ │ │ ├── MiscellaneousTest.php
│ │ │ ├── PaymentTest.php
│ │ │ ├── PersonTest.php
│ │ │ ├── PhoneNumberTest.php
│ │ │ ├── ProviderOverrideTest.php
│ │ │ ├── TextTest.php
│ │ │ ├── UserAgentTest.php
│ │ │ ├── UuidTest.php
│ │ │ ├── ar_JO
│ │ │ └── InternetTest.php
│ │ │ ├── ar_SA
│ │ │ └── InternetTest.php
│ │ │ ├── at_AT
│ │ │ └── PaymentTest.php
│ │ │ ├── bg_BG
│ │ │ └── PaymentTest.php
│ │ │ ├── bn_BD
│ │ │ └── PersonTest.php
│ │ │ ├── cs_CZ
│ │ │ └── PersonTest.php
│ │ │ ├── da_DK
│ │ │ └── InternetTest.php
│ │ │ ├── de_AT
│ │ │ ├── InternetTest.php
│ │ │ └── PhoneNumberTest.php
│ │ │ ├── de_CH
│ │ │ ├── AddressTest.php
│ │ │ ├── InternetTest.php
│ │ │ └── PhoneNumberTest.php
│ │ │ ├── de_DE
│ │ │ └── InternetTest.php
│ │ │ ├── en_AU
│ │ │ └── AddressTest.php
│ │ │ ├── en_CA
│ │ │ └── AddressTest.php
│ │ │ ├── en_IN
│ │ │ └── AddressTest.php
│ │ │ ├── en_NZ
│ │ │ └── PhoneNumberTest.php
│ │ │ ├── en_PH
│ │ │ └── AddressTest.php
│ │ │ ├── en_SG
│ │ │ ├── AddressTest.php
│ │ │ └── PhoneNumberTest.php
│ │ │ ├── en_UG
│ │ │ └── AddressTest.php
│ │ │ ├── en_US
│ │ │ ├── PaymentTest.php
│ │ │ └── PhoneNumberTest.php
│ │ │ ├── en_ZA
│ │ │ ├── CompanyTest.php
│ │ │ ├── InternetTest.php
│ │ │ └── PhoneNumberTest.php
│ │ │ ├── es_ES
│ │ │ └── PersonTest.php
│ │ │ ├── fi_FI
│ │ │ └── InternetTest.php
│ │ │ ├── fr_BE
│ │ │ └── PaymentTest.php
│ │ │ ├── fr_CH
│ │ │ ├── AddressTest.php
│ │ │ ├── InternetTest.php
│ │ │ └── PhoneNumberTest.php
│ │ │ ├── fr_FR
│ │ │ └── CompanyTest.php
│ │ │ ├── id_ID
│ │ │ └── PersonTest.php
│ │ │ ├── it_CH
│ │ │ ├── AddressTest.php
│ │ │ ├── InternetTest.php
│ │ │ └── PhoneNumberTest.php
│ │ │ ├── it_IT
│ │ │ ├── CompanyTest.php
│ │ │ └── PersonTest.php
│ │ │ ├── ja_JP
│ │ │ └── PersonTest.php
│ │ │ ├── mn_MN
│ │ │ └── PersonTest.php
│ │ │ ├── nl_BE
│ │ │ └── PaymentTest.php
│ │ │ ├── nl_NL
│ │ │ └── CompanyTest.php
│ │ │ ├── pt_BR
│ │ │ ├── CompanyTest.php
│ │ │ └── PersonTest.php
│ │ │ ├── pt_PT
│ │ │ ├── AddressTest.php
│ │ │ ├── PersonTest.php
│ │ │ └── PhoneNumberTest.php
│ │ │ ├── ro_RO
│ │ │ ├── PersonTest.php
│ │ │ └── PhoneNumberTest.php
│ │ │ ├── sv_SE
│ │ │ └── PersonTest.php
│ │ │ ├── uk_UA
│ │ │ ├── AddressTest.php
│ │ │ └── PhoneNumberTest.php
│ │ │ └── zh_TW
│ │ │ └── TextTest.php
│ │ ├── documentor.php
│ │ └── test.php
├── guzzlehttp
│ └── psr7
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── Makefile
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── phpunit.xml.dist
│ │ ├── 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
│ │ ├── functions.php
│ │ └── functions_include.php
│ │ └── tests
│ │ ├── AppendStreamTest.php
│ │ ├── BufferStreamTest.php
│ │ ├── CachingStreamTest.php
│ │ ├── DroppingStreamTest.php
│ │ ├── FnStreamTest.php
│ │ ├── FunctionsTest.php
│ │ ├── InflateStreamTest.php
│ │ ├── LazyOpenStreamTest.php
│ │ ├── LimitStreamTest.php
│ │ ├── MultipartStreamTest.php
│ │ ├── NoSeekStreamTest.php
│ │ ├── PumpStreamTest.php
│ │ ├── RequestTest.php
│ │ ├── ResponseTest.php
│ │ ├── ServerRequestTest.php
│ │ ├── StreamDecoratorTraitTest.php
│ │ ├── StreamTest.php
│ │ ├── StreamWrapperTest.php
│ │ ├── UploadedFileTest.php
│ │ ├── UriTest.php
│ │ └── bootstrap.php
├── phpdocumentor
│ ├── reflection-common
│ │ ├── .gitignore
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── composer.lock
│ │ ├── phpunit.xml.dist
│ │ ├── src
│ │ │ ├── Element.php
│ │ │ ├── File.php
│ │ │ ├── Fqsen.php
│ │ │ ├── Location.php
│ │ │ ├── Project.php
│ │ │ └── ProjectFactory.php
│ │ └── tests
│ │ │ ├── common
│ │ │ └── bootstrap.php
│ │ │ └── unit
│ │ │ └── FqsenTest.php
│ ├── reflection-docblock
│ │ ├── .gitignore
│ │ ├── .scrutinizer.yml
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── composer.lock
│ │ ├── examples
│ │ │ ├── 01-interpreting-a-simple-docblock.php
│ │ │ ├── 02-interpreting-tags.php
│ │ │ ├── 03-reconstituting-a-docblock.php
│ │ │ ├── 04-adding-your-own-tag.php
│ │ │ └── playing-with-descriptions
│ │ │ │ └── 02-escaping.php
│ │ ├── phpmd.xml.dist
│ │ ├── phpunit.xml.dist
│ │ ├── src
│ │ │ ├── DocBlock.php
│ │ │ ├── DocBlock
│ │ │ │ ├── Description.php
│ │ │ │ ├── DescriptionFactory.php
│ │ │ │ ├── ExampleFinder.php
│ │ │ │ ├── Serializer.php
│ │ │ │ ├── StandardTagFactory.php
│ │ │ │ ├── Tag.php
│ │ │ │ ├── TagFactory.php
│ │ │ │ └── Tags
│ │ │ │ │ ├── Author.php
│ │ │ │ │ ├── BaseTag.php
│ │ │ │ │ ├── Covers.php
│ │ │ │ │ ├── Deprecated.php
│ │ │ │ │ ├── Example.php
│ │ │ │ │ ├── Factory
│ │ │ │ │ ├── StaticMethod.php
│ │ │ │ │ └── Strategy.php
│ │ │ │ │ ├── Formatter.php
│ │ │ │ │ ├── Formatter
│ │ │ │ │ └── PassthroughFormatter.php
│ │ │ │ │ ├── Generic.php
│ │ │ │ │ ├── Link.php
│ │ │ │ │ ├── Method.php
│ │ │ │ │ ├── Param.php
│ │ │ │ │ ├── Property.php
│ │ │ │ │ ├── PropertyRead.php
│ │ │ │ │ ├── PropertyWrite.php
│ │ │ │ │ ├── Return_.php
│ │ │ │ │ ├── See.php
│ │ │ │ │ ├── Since.php
│ │ │ │ │ ├── Source.php
│ │ │ │ │ ├── Throws.php
│ │ │ │ │ ├── Uses.php
│ │ │ │ │ ├── Var_.php
│ │ │ │ │ └── Version.php
│ │ │ ├── DocBlockFactory.php
│ │ │ └── DocBlockFactoryInterface.php
│ │ └── tests
│ │ │ ├── integration
│ │ │ ├── InterpretingDocBlocksTest.php
│ │ │ ├── ReconstitutingADocBlockTest.php
│ │ │ └── UsingTagsTest.php
│ │ │ └── unit
│ │ │ ├── DocBlock
│ │ │ ├── DescriptionFactoryTest.php
│ │ │ ├── DescriptionTest.php
│ │ │ ├── SerializerTest.php
│ │ │ ├── StandardTagFactoryTest.php
│ │ │ └── Tags
│ │ │ │ ├── AuthorTest.php
│ │ │ │ ├── CoversTest.php
│ │ │ │ ├── DeprecatedTest.php
│ │ │ │ ├── Formatter
│ │ │ │ └── PassthroughFormatterTest.php
│ │ │ │ ├── GenericTest.php
│ │ │ │ ├── LinkTest.php
│ │ │ │ ├── MethodTest.php
│ │ │ │ ├── ParamTest.php
│ │ │ │ ├── PropertyReadTest.php
│ │ │ │ ├── PropertyTest.php
│ │ │ │ ├── PropertyWriteTest.php
│ │ │ │ ├── ReturnTest.php
│ │ │ │ ├── SeeTest.php
│ │ │ │ ├── SinceTest.php
│ │ │ │ ├── SourceTest.php
│ │ │ │ ├── ThrowsTest.php
│ │ │ │ ├── UsesTest.php
│ │ │ │ ├── VarTest.php
│ │ │ │ └── VersionTest.php
│ │ │ ├── DocBlockFactoryTest.php
│ │ │ └── DocBlockTest.php
│ └── type-resolver
│ │ ├── .gitignore
│ │ ├── .scrutinizer.yml
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── examples
│ │ ├── 01-resolving-simple-types.php
│ │ ├── 02-resolving-classes.php
│ │ ├── 03-resolving-all-elements.php
│ │ ├── 04-discovering-the-context-using-class-reflection.php
│ │ ├── 05-discovering-the-context-using-method-reflection.php
│ │ ├── 06-discovering-the-context-using-file-contents.php
│ │ └── Classy.php
│ │ ├── phpmd.xml.dist
│ │ ├── phpunit.xml.dist
│ │ ├── src
│ │ ├── FqsenResolver.php
│ │ ├── Type.php
│ │ ├── TypeResolver.php
│ │ └── Types
│ │ │ ├── Array_.php
│ │ │ ├── Boolean.php
│ │ │ ├── Callable_.php
│ │ │ ├── Compound.php
│ │ │ ├── Context.php
│ │ │ ├── ContextFactory.php
│ │ │ ├── Float_.php
│ │ │ ├── Integer.php
│ │ │ ├── Mixed.php
│ │ │ ├── Null_.php
│ │ │ ├── Object_.php
│ │ │ ├── Resource.php
│ │ │ ├── Scalar.php
│ │ │ ├── Self_.php
│ │ │ ├── Static_.php
│ │ │ ├── String_.php
│ │ │ ├── This.php
│ │ │ └── Void_.php
│ │ └── tests
│ │ └── unit
│ │ ├── TypeResolverTest.php
│ │ └── Types
│ │ ├── ContextFactoryTest.php
│ │ └── ContextTest.php
├── phpspec
│ ├── php-diff
│ │ ├── README
│ │ ├── composer.json
│ │ ├── example
│ │ │ ├── a.txt
│ │ │ ├── b.txt
│ │ │ ├── example.php
│ │ │ └── styles.css
│ │ └── lib
│ │ │ ├── Diff.php
│ │ │ └── Diff
│ │ │ ├── Renderer
│ │ │ ├── Abstract.php
│ │ │ ├── Html
│ │ │ │ ├── Array.php
│ │ │ │ ├── Inline.php
│ │ │ │ └── SideBySide.php
│ │ │ └── Text
│ │ │ │ ├── Context.php
│ │ │ │ └── Unified.php
│ │ │ └── SequenceMatcher.php
│ └── prophecy
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── CHANGES.md
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── fixtures
│ │ ├── EmptyClass.php
│ │ ├── EmptyInterface.php
│ │ ├── FinalClass.php
│ │ ├── ModifierInterface.php
│ │ ├── Named.php
│ │ ├── OptionalDepsClass.php
│ │ ├── SpecialMethods.php
│ │ ├── WithArguments.php
│ │ ├── WithCallableArgument.php
│ │ ├── WithFinalMethod.php
│ │ ├── WithFinalVirtuallyPrivateMethod.php
│ │ ├── WithProtectedAbstractMethod.php
│ │ ├── WithReferences.php
│ │ ├── WithReturnTypehints.php
│ │ ├── WithStaticMethod.php
│ │ ├── WithTypehintedVariadicArgument.php
│ │ ├── WithVariadicArgument.php
│ │ └── WithVirtuallyPrivateMethod.php
│ │ ├── phpunit.xml.dist
│ │ ├── spec
│ │ └── Prophecy
│ │ │ ├── Argument
│ │ │ ├── ArgumentsWildcardSpec.php
│ │ │ └── Token
│ │ │ │ ├── AnyValueTokenSpec.php
│ │ │ │ ├── AnyValuesTokenSpec.php
│ │ │ │ ├── ApproximateValueTokenSpec.php
│ │ │ │ ├── ArrayCountTokenSpec.php
│ │ │ │ ├── ArrayEntryTokenSpec.php
│ │ │ │ ├── ArrayEveryEntryTokenSpec.php
│ │ │ │ ├── CallbackTokenSpec.php
│ │ │ │ ├── ExactValueTokenSpec.php
│ │ │ │ ├── IdenticalValueTokenSpec.php
│ │ │ │ ├── LogicalAndTokenSpec.php
│ │ │ │ ├── LogicalNotTokenSpec.php
│ │ │ │ ├── ObjectStateTokenSpec.php
│ │ │ │ ├── StringContainsTokenSpec.php
│ │ │ │ └── TypeTokenSpec.php
│ │ │ ├── ArgumentSpec.php
│ │ │ ├── Call
│ │ │ ├── CallCenterSpec.php
│ │ │ └── CallSpec.php
│ │ │ ├── Comparator
│ │ │ ├── ClosureComparatorSpec.php
│ │ │ ├── FactorySpec.php
│ │ │ └── ProphecyComparatorSpec.php
│ │ │ ├── Doubler
│ │ │ ├── ClassPatch
│ │ │ │ ├── DisableConstructorPatchSpec.php
│ │ │ │ ├── HhvmExceptionPatchSpec.php
│ │ │ │ ├── KeywordPatchSpec.php
│ │ │ │ ├── MagicCallPatchSpec.php
│ │ │ │ ├── ProphecySubjectPatchSpec.php
│ │ │ │ ├── ReflectionClassNewInstancePatchSpec.php
│ │ │ │ ├── SplFileInfoPatchSpec.php
│ │ │ │ └── TraversablePatchSpec.php
│ │ │ ├── DoublerSpec.php
│ │ │ ├── Generator
│ │ │ │ ├── ClassCodeGeneratorSpec.php
│ │ │ │ ├── ClassCreatorSpec.php
│ │ │ │ └── Node
│ │ │ │ │ ├── ArgumentNodeSpec.php
│ │ │ │ │ ├── ClassNodeSpec.php
│ │ │ │ │ └── MethodNodeSpec.php
│ │ │ ├── LazyDoubleSpec.php
│ │ │ └── NameGeneratorSpec.php
│ │ │ ├── Exception
│ │ │ ├── Call
│ │ │ │ └── UnexpectedCallExceptionSpec.php
│ │ │ ├── Doubler
│ │ │ │ ├── ClassCreatorExceptionSpec.php
│ │ │ │ ├── ClassMirrorExceptionSpec.php
│ │ │ │ ├── ClassNotFoundExceptionSpec.php
│ │ │ │ ├── DoubleExceptionSpec.php
│ │ │ │ ├── InterfaceNotFoundExceptionSpec.php
│ │ │ │ ├── MethodNotExtendableExceptionSpec.php
│ │ │ │ └── MethodNotFoundExceptionSpec.php
│ │ │ ├── Prediction
│ │ │ │ ├── AggregateExceptionSpec.php
│ │ │ │ ├── NoCallsExceptionSpec.php
│ │ │ │ ├── UnexpectedCallsCountExceptionSpec.php
│ │ │ │ └── UnexpectedCallsExceptionSpec.php
│ │ │ └── Prophecy
│ │ │ │ ├── MethodProphecyExceptionSpec.php
│ │ │ │ └── ObjectProphecyExceptionSpec.php
│ │ │ ├── Prediction
│ │ │ ├── CallPredictionSpec.php
│ │ │ ├── CallTimesPredictionSpec.php
│ │ │ ├── CallbackPredictionSpec.php
│ │ │ └── NoCallsPredictionSpec.php
│ │ │ ├── Promise
│ │ │ ├── CallbackPromiseSpec.php
│ │ │ ├── ReturnArgumentPromiseSpec.php
│ │ │ ├── ReturnPromiseSpec.php
│ │ │ └── ThrowPromiseSpec.php
│ │ │ ├── Prophecy
│ │ │ ├── MethodProphecySpec.php
│ │ │ ├── ObjectProphecySpec.php
│ │ │ └── RevealerSpec.php
│ │ │ ├── ProphetSpec.php
│ │ │ └── Util
│ │ │ └── StringUtilSpec.php
│ │ ├── src
│ │ └── Prophecy
│ │ │ ├── Argument.php
│ │ │ ├── Argument
│ │ │ ├── ArgumentsWildcard.php
│ │ │ └── Token
│ │ │ │ ├── AnyValueToken.php
│ │ │ │ ├── AnyValuesToken.php
│ │ │ │ ├── ApproximateValueToken.php
│ │ │ │ ├── ArrayCountToken.php
│ │ │ │ ├── ArrayEntryToken.php
│ │ │ │ ├── ArrayEveryEntryToken.php
│ │ │ │ ├── CallbackToken.php
│ │ │ │ ├── ExactValueToken.php
│ │ │ │ ├── IdenticalValueToken.php
│ │ │ │ ├── LogicalAndToken.php
│ │ │ │ ├── LogicalNotToken.php
│ │ │ │ ├── ObjectStateToken.php
│ │ │ │ ├── StringContainsToken.php
│ │ │ │ ├── TokenInterface.php
│ │ │ │ └── TypeToken.php
│ │ │ ├── Call
│ │ │ ├── Call.php
│ │ │ └── CallCenter.php
│ │ │ ├── Comparator
│ │ │ ├── ClosureComparator.php
│ │ │ ├── Factory.php
│ │ │ └── ProphecyComparator.php
│ │ │ ├── Doubler
│ │ │ ├── CachedDoubler.php
│ │ │ ├── ClassPatch
│ │ │ │ ├── ClassPatchInterface.php
│ │ │ │ ├── DisableConstructorPatch.php
│ │ │ │ ├── HhvmExceptionPatch.php
│ │ │ │ ├── KeywordPatch.php
│ │ │ │ ├── MagicCallPatch.php
│ │ │ │ ├── ProphecySubjectPatch.php
│ │ │ │ ├── ReflectionClassNewInstancePatch.php
│ │ │ │ ├── SplFileInfoPatch.php
│ │ │ │ └── TraversablePatch.php
│ │ │ ├── DoubleInterface.php
│ │ │ ├── Doubler.php
│ │ │ ├── Generator
│ │ │ │ ├── ClassCodeGenerator.php
│ │ │ │ ├── ClassCreator.php
│ │ │ │ ├── ClassMirror.php
│ │ │ │ ├── Node
│ │ │ │ │ ├── ArgumentNode.php
│ │ │ │ │ ├── ClassNode.php
│ │ │ │ │ └── MethodNode.php
│ │ │ │ └── ReflectionInterface.php
│ │ │ ├── LazyDouble.php
│ │ │ └── NameGenerator.php
│ │ │ ├── Exception
│ │ │ ├── Call
│ │ │ │ └── UnexpectedCallException.php
│ │ │ ├── Doubler
│ │ │ │ ├── ClassCreatorException.php
│ │ │ │ ├── ClassMirrorException.php
│ │ │ │ ├── ClassNotFoundException.php
│ │ │ │ ├── DoubleException.php
│ │ │ │ ├── DoublerException.php
│ │ │ │ ├── InterfaceNotFoundException.php
│ │ │ │ ├── MethodNotExtendableException.php
│ │ │ │ ├── MethodNotFoundException.php
│ │ │ │ └── ReturnByReferenceException.php
│ │ │ ├── Exception.php
│ │ │ ├── InvalidArgumentException.php
│ │ │ ├── Prediction
│ │ │ │ ├── AggregateException.php
│ │ │ │ ├── FailedPredictionException.php
│ │ │ │ ├── NoCallsException.php
│ │ │ │ ├── PredictionException.php
│ │ │ │ ├── UnexpectedCallsCountException.php
│ │ │ │ └── UnexpectedCallsException.php
│ │ │ └── Prophecy
│ │ │ │ ├── MethodProphecyException.php
│ │ │ │ ├── ObjectProphecyException.php
│ │ │ │ └── ProphecyException.php
│ │ │ ├── PhpDocumentor
│ │ │ ├── ClassAndInterfaceTagRetriever.php
│ │ │ ├── ClassTagRetriever.php
│ │ │ ├── LegacyClassTagRetriever.php
│ │ │ └── MethodTagRetrieverInterface.php
│ │ │ ├── Prediction
│ │ │ ├── CallPrediction.php
│ │ │ ├── CallTimesPrediction.php
│ │ │ ├── CallbackPrediction.php
│ │ │ ├── NoCallsPrediction.php
│ │ │ └── PredictionInterface.php
│ │ │ ├── Promise
│ │ │ ├── CallbackPromise.php
│ │ │ ├── PromiseInterface.php
│ │ │ ├── ReturnArgumentPromise.php
│ │ │ ├── ReturnPromise.php
│ │ │ └── ThrowPromise.php
│ │ │ ├── Prophecy
│ │ │ ├── MethodProphecy.php
│ │ │ ├── ObjectProphecy.php
│ │ │ ├── ProphecyInterface.php
│ │ │ ├── ProphecySubjectInterface.php
│ │ │ ├── Revealer.php
│ │ │ └── RevealerInterface.php
│ │ │ ├── Prophet.php
│ │ │ └── Util
│ │ │ ├── ExportUtil.php
│ │ │ └── StringUtil.php
│ │ └── tests
│ │ └── Doubler
│ │ └── Generator
│ │ └── ClassMirrorTest.php
├── phpunit
│ ├── php-code-coverage
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── CONTRIBUTING.md
│ │ ├── ChangeLog-2.2.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── build
│ │ │ └── travis-ci.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml.dist
│ │ ├── scripts
│ │ │ ├── auto_append.php
│ │ │ └── auto_prepend.php
│ │ ├── src
│ │ │ ├── CodeCoverage.php
│ │ │ └── CodeCoverage
│ │ │ │ ├── Driver.php
│ │ │ │ ├── Driver
│ │ │ │ ├── HHVM.php
│ │ │ │ ├── PHPDBG.php
│ │ │ │ └── Xdebug.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── Exception
│ │ │ │ └── UnintentionallyCoveredCode.php
│ │ │ │ ├── Filter.php
│ │ │ │ ├── Report
│ │ │ │ ├── Clover.php
│ │ │ │ ├── Crap4j.php
│ │ │ │ ├── Factory.php
│ │ │ │ ├── HTML.php
│ │ │ │ ├── HTML
│ │ │ │ │ ├── Renderer.php
│ │ │ │ │ └── Renderer
│ │ │ │ │ │ ├── Dashboard.php
│ │ │ │ │ │ ├── Directory.php
│ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ └── Template
│ │ │ │ │ │ ├── coverage_bar.html.dist
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ │ ├── nv.d3.min.css
│ │ │ │ │ │ └── style.css
│ │ │ │ │ │ ├── dashboard.html.dist
│ │ │ │ │ │ ├── directory.html.dist
│ │ │ │ │ │ ├── directory_item.html.dist
│ │ │ │ │ │ ├── file.html.dist
│ │ │ │ │ │ ├── file_item.html.dist
│ │ │ │ │ │ ├── fonts
│ │ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ │ │ │ ├── js
│ │ │ │ │ │ ├── bootstrap.min.js
│ │ │ │ │ │ ├── d3.min.js
│ │ │ │ │ │ ├── holder.min.js
│ │ │ │ │ │ ├── html5shiv.min.js
│ │ │ │ │ │ ├── jquery.min.js
│ │ │ │ │ │ ├── nv.d3.min.js
│ │ │ │ │ │ └── respond.min.js
│ │ │ │ │ │ └── method_item.html.dist
│ │ │ │ ├── Node.php
│ │ │ │ ├── Node
│ │ │ │ │ ├── Directory.php
│ │ │ │ │ ├── File.php
│ │ │ │ │ └── Iterator.php
│ │ │ │ ├── PHP.php
│ │ │ │ ├── Text.php
│ │ │ │ ├── XML.php
│ │ │ │ └── XML
│ │ │ │ │ ├── Directory.php
│ │ │ │ │ ├── File.php
│ │ │ │ │ ├── File
│ │ │ │ │ ├── Coverage.php
│ │ │ │ │ ├── Method.php
│ │ │ │ │ ├── Report.php
│ │ │ │ │ └── Unit.php
│ │ │ │ │ ├── Node.php
│ │ │ │ │ ├── Project.php
│ │ │ │ │ ├── Tests.php
│ │ │ │ │ └── Totals.php
│ │ │ │ ├── Util.php
│ │ │ │ └── Util
│ │ │ │ └── InvalidArgumentHelper.php
│ │ └── tests
│ │ │ ├── PHP
│ │ │ ├── CodeCoverage
│ │ │ │ ├── FilterTest.php
│ │ │ │ ├── Report
│ │ │ │ │ ├── CloverTest.php
│ │ │ │ │ └── FactoryTest.php
│ │ │ │ └── UtilTest.php
│ │ │ └── CodeCoverageTest.php
│ │ │ ├── TestCase.php
│ │ │ └── _files
│ │ │ ├── BankAccount-clover.xml
│ │ │ ├── BankAccount.php
│ │ │ ├── BankAccountTest.php
│ │ │ ├── CoverageClassExtendedTest.php
│ │ │ ├── CoverageClassTest.php
│ │ │ ├── CoverageFunctionParenthesesTest.php
│ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php
│ │ │ ├── CoverageFunctionTest.php
│ │ │ ├── CoverageMethodOneLineAnnotationTest.php
│ │ │ ├── CoverageMethodParenthesesTest.php
│ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php
│ │ │ ├── CoverageMethodTest.php
│ │ │ ├── CoverageNoneTest.php
│ │ │ ├── CoverageNotPrivateTest.php
│ │ │ ├── CoverageNotProtectedTest.php
│ │ │ ├── CoverageNotPublicTest.php
│ │ │ ├── CoverageNothingTest.php
│ │ │ ├── CoveragePrivateTest.php
│ │ │ ├── CoverageProtectedTest.php
│ │ │ ├── CoveragePublicTest.php
│ │ │ ├── CoverageTwoDefaultClassAnnotations.php
│ │ │ ├── CoveredClass.php
│ │ │ ├── CoveredFunction.php
│ │ │ ├── NamespaceCoverageClassExtendedTest.php
│ │ │ ├── NamespaceCoverageClassTest.php
│ │ │ ├── NamespaceCoverageCoversClassPublicTest.php
│ │ │ ├── NamespaceCoverageCoversClassTest.php
│ │ │ ├── NamespaceCoverageMethodTest.php
│ │ │ ├── NamespaceCoverageNotPrivateTest.php
│ │ │ ├── NamespaceCoverageNotProtectedTest.php
│ │ │ ├── NamespaceCoverageNotPublicTest.php
│ │ │ ├── NamespaceCoveragePrivateTest.php
│ │ │ ├── NamespaceCoverageProtectedTest.php
│ │ │ ├── NamespaceCoveragePublicTest.php
│ │ │ ├── NamespaceCoveredClass.php
│ │ │ ├── NotExistingCoveredElementTest.php
│ │ │ ├── class-with-anonymous-function-clover.xml
│ │ │ ├── ignored-lines-clover.xml
│ │ │ ├── source_with_class_and_anonymous_function.php
│ │ │ ├── source_with_ignore.php
│ │ │ ├── source_with_namespace.php
│ │ │ ├── source_with_oneline_annotations.php
│ │ │ ├── source_without_ignore.php
│ │ │ └── source_without_namespace.php
│ ├── php-file-iterator
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ │ ├── Facade.php
│ │ │ ├── Factory.php
│ │ │ └── Iterator.php
│ ├── php-text-template
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ │ └── Template.php
│ ├── php-timer
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── src
│ │ │ └── Timer.php
│ │ └── tests
│ │ │ └── TimerTest.php
│ ├── php-token-stream
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── build
│ │ │ └── phpunit.xml
│ │ ├── composer.json
│ │ ├── src
│ │ │ ├── Token.php
│ │ │ └── Token
│ │ │ │ ├── Stream.php
│ │ │ │ └── Stream
│ │ │ │ └── CachingFactory.php
│ │ └── tests
│ │ │ ├── Token
│ │ │ ├── ClassTest.php
│ │ │ ├── ClosureTest.php
│ │ │ ├── FunctionTest.php
│ │ │ ├── IncludeTest.php
│ │ │ ├── InterfaceTest.php
│ │ │ └── NamespaceTest.php
│ │ │ ├── TokenTest.php
│ │ │ ├── _fixture
│ │ │ ├── classExtendsNamespacedClass.php
│ │ │ ├── classInNamespace.php
│ │ │ ├── classInScopedNamespace.php
│ │ │ ├── classUsesNamespacedFunction.php
│ │ │ ├── class_with_method_that_declares_anonymous_class.php
│ │ │ ├── class_with_method_that_declares_anonymous_class2.php
│ │ │ ├── closure.php
│ │ │ ├── issue19.php
│ │ │ ├── issue30.php
│ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php
│ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php
│ │ │ ├── source.php
│ │ │ ├── source2.php
│ │ │ ├── source3.php
│ │ │ ├── source4.php
│ │ │ └── source5.php
│ │ │ └── bootstrap.php
│ ├── phpunit-mock-objects
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── build
│ │ │ └── travis-ci.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml.dist
│ │ ├── src
│ │ │ └── Framework
│ │ │ │ └── MockObject
│ │ │ │ ├── Builder
│ │ │ │ ├── Identity.php
│ │ │ │ ├── InvocationMocker.php
│ │ │ │ ├── Match.php
│ │ │ │ ├── MethodNameMatch.php
│ │ │ │ ├── Namespace.php
│ │ │ │ ├── ParametersMatch.php
│ │ │ │ └── Stub.php
│ │ │ │ ├── Exception
│ │ │ │ ├── BadMethodCallException.php
│ │ │ │ ├── Exception.php
│ │ │ │ └── RuntimeException.php
│ │ │ │ ├── Generator.php
│ │ │ │ ├── Generator
│ │ │ │ ├── mocked_class.tpl.dist
│ │ │ │ ├── mocked_class_method.tpl.dist
│ │ │ │ ├── mocked_clone.tpl.dist
│ │ │ │ ├── mocked_method.tpl.dist
│ │ │ │ ├── mocked_static_method.tpl.dist
│ │ │ │ ├── proxied_method.tpl.dist
│ │ │ │ ├── trait_class.tpl.dist
│ │ │ │ ├── unmocked_clone.tpl.dist
│ │ │ │ ├── wsdl_class.tpl.dist
│ │ │ │ └── wsdl_method.tpl.dist
│ │ │ │ ├── Invocation.php
│ │ │ │ ├── Invocation
│ │ │ │ ├── Object.php
│ │ │ │ └── Static.php
│ │ │ │ ├── InvocationMocker.php
│ │ │ │ ├── Invokable.php
│ │ │ │ ├── Matcher.php
│ │ │ │ ├── Matcher
│ │ │ │ ├── AnyInvokedCount.php
│ │ │ │ ├── AnyParameters.php
│ │ │ │ ├── ConsecutiveParameters.php
│ │ │ │ ├── Invocation.php
│ │ │ │ ├── InvokedAtIndex.php
│ │ │ │ ├── InvokedAtLeastCount.php
│ │ │ │ ├── InvokedAtLeastOnce.php
│ │ │ │ ├── InvokedAtMostCount.php
│ │ │ │ ├── InvokedCount.php
│ │ │ │ ├── InvokedRecorder.php
│ │ │ │ ├── MethodName.php
│ │ │ │ ├── Parameters.php
│ │ │ │ └── StatelessInvocation.php
│ │ │ │ ├── MockBuilder.php
│ │ │ │ ├── MockObject.php
│ │ │ │ ├── Stub.php
│ │ │ │ ├── Stub
│ │ │ │ ├── ConsecutiveCalls.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── MatcherCollection.php
│ │ │ │ ├── Return.php
│ │ │ │ ├── ReturnArgument.php
│ │ │ │ ├── ReturnCallback.php
│ │ │ │ ├── ReturnSelf.php
│ │ │ │ └── ReturnValueMap.php
│ │ │ │ └── Verifiable.php
│ │ └── tests
│ │ │ ├── GeneratorTest.php
│ │ │ ├── MockBuilderTest.php
│ │ │ ├── MockObject
│ │ │ ├── 232.phpt
│ │ │ ├── Invocation
│ │ │ │ ├── ObjectTest.php
│ │ │ │ └── StaticTest.php
│ │ │ ├── Matcher
│ │ │ │ └── ConsecutiveParametersTest.php
│ │ │ ├── abstract_class.phpt
│ │ │ ├── class.phpt
│ │ │ ├── class_call_parent_clone.phpt
│ │ │ ├── class_call_parent_constructor.phpt
│ │ │ ├── class_dont_call_parent_clone.phpt
│ │ │ ├── class_dont_call_parent_constructor.phpt
│ │ │ ├── class_implementing_interface_call_parent_constructor.phpt
│ │ │ ├── class_implementing_interface_dont_call_parent_constructor.phpt
│ │ │ ├── class_partial.phpt
│ │ │ ├── class_with_method_named_method.phpt
│ │ │ ├── class_with_method_with_variadic_arguments.phpt
│ │ │ ├── interface.phpt
│ │ │ ├── invocation_object_clone_object.phpt
│ │ │ ├── namespaced_class.phpt
│ │ │ ├── namespaced_class_call_parent_clone.phpt
│ │ │ ├── namespaced_class_call_parent_constructor.phpt
│ │ │ ├── namespaced_class_dont_call_parent_clone.phpt
│ │ │ ├── namespaced_class_dont_call_parent_constructor.phpt
│ │ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt
│ │ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt
│ │ │ ├── namespaced_class_partial.phpt
│ │ │ ├── namespaced_interface.phpt
│ │ │ ├── nonexistent_class.phpt
│ │ │ ├── nonexistent_class_with_namespace.phpt
│ │ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt
│ │ │ ├── proxy.phpt
│ │ │ ├── scalar_type_declarations.phpt
│ │ │ ├── wsdl_class.phpt
│ │ │ ├── wsdl_class_namespace.phpt
│ │ │ └── wsdl_class_partial.phpt
│ │ │ ├── MockObjectTest.php
│ │ │ ├── ProxyObjectTest.php
│ │ │ ├── _fixture
│ │ │ ├── AbstractMockTestClass.php
│ │ │ ├── AbstractTrait.php
│ │ │ ├── AnInterface.php
│ │ │ ├── AnotherInterface.php
│ │ │ ├── Bar.php
│ │ │ ├── ClassThatImplementsSerializable.php
│ │ │ ├── ClassWithStaticMethod.php
│ │ │ ├── Foo.php
│ │ │ ├── FunctionCallback.php
│ │ │ ├── GoogleSearch.wsdl
│ │ │ ├── InterfaceWithStaticMethod.php
│ │ │ ├── MethodCallback.php
│ │ │ ├── MethodCallbackByReference.php
│ │ │ ├── MockTestInterface.php
│ │ │ ├── Mockable.php
│ │ │ ├── PartialMockTestClass.php
│ │ │ ├── SingletonClass.php
│ │ │ ├── SomeClass.php
│ │ │ ├── StaticMockTestClass.php
│ │ │ └── TraversableMockTestInterface.php
│ │ │ └── bootstrap.php
│ └── phpunit
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── .php_cs
│ │ ├── .travis.yml
│ │ ├── CODE_OF_CONDUCT.md
│ │ ├── CONTRIBUTING.md
│ │ ├── ChangeLog-4.0.md
│ │ ├── ChangeLog-4.1.md
│ │ ├── ChangeLog-4.2.md
│ │ ├── ChangeLog-4.3.md
│ │ ├── ChangeLog-4.4.md
│ │ ├── ChangeLog-4.5.md
│ │ ├── ChangeLog-4.6.md
│ │ ├── ChangeLog-4.7.md
│ │ ├── ChangeLog-4.8.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit
│ │ ├── phpunit.xml
│ │ ├── phpunit.xsd
│ │ ├── src
│ │ ├── Exception.php
│ │ ├── Extensions
│ │ │ ├── GroupTestSuite.php
│ │ │ ├── PhptTestCase.php
│ │ │ ├── PhptTestSuite.php
│ │ │ ├── RepeatedTest.php
│ │ │ ├── TestDecorator.php
│ │ │ └── TicketListener.php
│ │ ├── Framework
│ │ │ ├── Assert.php
│ │ │ ├── Assert
│ │ │ │ └── Functions.php
│ │ │ ├── AssertionFailedError.php
│ │ │ ├── BaseTestListener.php
│ │ │ ├── CodeCoverageException.php
│ │ │ ├── Constraint.php
│ │ │ ├── Constraint
│ │ │ │ ├── And.php
│ │ │ │ ├── ArrayHasKey.php
│ │ │ │ ├── ArraySubset.php
│ │ │ │ ├── Attribute.php
│ │ │ │ ├── Callback.php
│ │ │ │ ├── ClassHasAttribute.php
│ │ │ │ ├── ClassHasStaticAttribute.php
│ │ │ │ ├── Composite.php
│ │ │ │ ├── Count.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── ExceptionCode.php
│ │ │ │ ├── ExceptionMessage.php
│ │ │ │ ├── ExceptionMessageRegExp.php
│ │ │ │ ├── FileExists.php
│ │ │ │ ├── GreaterThan.php
│ │ │ │ ├── IsAnything.php
│ │ │ │ ├── IsEmpty.php
│ │ │ │ ├── IsEqual.php
│ │ │ │ ├── IsFalse.php
│ │ │ │ ├── IsIdentical.php
│ │ │ │ ├── IsInstanceOf.php
│ │ │ │ ├── IsJson.php
│ │ │ │ ├── IsNull.php
│ │ │ │ ├── IsTrue.php
│ │ │ │ ├── IsType.php
│ │ │ │ ├── JsonMatches.php
│ │ │ │ ├── JsonMatches
│ │ │ │ │ └── ErrorMessageProvider.php
│ │ │ │ ├── LessThan.php
│ │ │ │ ├── Not.php
│ │ │ │ ├── ObjectHasAttribute.php
│ │ │ │ ├── Or.php
│ │ │ │ ├── PCREMatch.php
│ │ │ │ ├── SameSize.php
│ │ │ │ ├── StringContains.php
│ │ │ │ ├── StringEndsWith.php
│ │ │ │ ├── StringMatches.php
│ │ │ │ ├── StringStartsWith.php
│ │ │ │ ├── TraversableContains.php
│ │ │ │ ├── TraversableContainsOnly.php
│ │ │ │ └── Xor.php
│ │ │ ├── Error.php
│ │ │ ├── Error
│ │ │ │ ├── Deprecated.php
│ │ │ │ ├── Notice.php
│ │ │ │ └── Warning.php
│ │ │ ├── Exception.php
│ │ │ ├── ExceptionWrapper.php
│ │ │ ├── ExpectationFailedException.php
│ │ │ ├── IncompleteTest.php
│ │ │ ├── IncompleteTestCase.php
│ │ │ ├── IncompleteTestError.php
│ │ │ ├── InvalidCoversTargetError.php
│ │ │ ├── InvalidCoversTargetException.php
│ │ │ ├── OutputError.php
│ │ │ ├── RiskyTest.php
│ │ │ ├── RiskyTestError.php
│ │ │ ├── SelfDescribing.php
│ │ │ ├── SkippedTest.php
│ │ │ ├── SkippedTestCase.php
│ │ │ ├── SkippedTestError.php
│ │ │ ├── SkippedTestSuiteError.php
│ │ │ ├── SyntheticError.php
│ │ │ ├── Test.php
│ │ │ ├── TestCase.php
│ │ │ ├── TestFailure.php
│ │ │ ├── TestListener.php
│ │ │ ├── TestResult.php
│ │ │ ├── TestSuite.php
│ │ │ ├── TestSuite
│ │ │ │ └── DataProvider.php
│ │ │ ├── UnintentionallyCoveredCodeError.php
│ │ │ └── Warning.php
│ │ ├── Runner
│ │ │ ├── BaseTestRunner.php
│ │ │ ├── Exception.php
│ │ │ ├── Filter
│ │ │ │ ├── Factory.php
│ │ │ │ ├── Group.php
│ │ │ │ ├── Group
│ │ │ │ │ ├── Exclude.php
│ │ │ │ │ └── Include.php
│ │ │ │ └── Test.php
│ │ │ ├── StandardTestSuiteLoader.php
│ │ │ ├── TestSuiteLoader.php
│ │ │ └── Version.php
│ │ ├── TextUI
│ │ │ ├── Command.php
│ │ │ ├── ResultPrinter.php
│ │ │ └── TestRunner.php
│ │ └── Util
│ │ │ ├── Blacklist.php
│ │ │ ├── Configuration.php
│ │ │ ├── ErrorHandler.php
│ │ │ ├── Fileloader.php
│ │ │ ├── Filesystem.php
│ │ │ ├── Filter.php
│ │ │ ├── Getopt.php
│ │ │ ├── GlobalState.php
│ │ │ ├── InvalidArgumentHelper.php
│ │ │ ├── Log
│ │ │ ├── JSON.php
│ │ │ ├── JUnit.php
│ │ │ └── TAP.php
│ │ │ ├── PHP.php
│ │ │ ├── PHP
│ │ │ ├── Default.php
│ │ │ ├── Template
│ │ │ │ └── TestCaseMethod.tpl.dist
│ │ │ ├── Windows.php
│ │ │ └── eval-stdin.php
│ │ │ ├── Printer.php
│ │ │ ├── Regex.php
│ │ │ ├── String.php
│ │ │ ├── Test.php
│ │ │ ├── TestDox
│ │ │ ├── NamePrettifier.php
│ │ │ ├── ResultPrinter.php
│ │ │ └── ResultPrinter
│ │ │ │ ├── HTML.php
│ │ │ │ └── Text.php
│ │ │ ├── TestSuiteIterator.php
│ │ │ ├── Type.php
│ │ │ └── XML.php
│ │ └── tests
│ │ ├── Extensions
│ │ ├── PhptTestCaseTest.php
│ │ └── RepeatedTestTest.php
│ │ ├── Fail
│ │ └── fail.phpt
│ │ ├── Framework
│ │ ├── AssertTest.php
│ │ ├── BaseTestListenerTest.php
│ │ ├── Constraint
│ │ │ ├── CountTest.php
│ │ │ ├── ExceptionMessageRegExpTest.php
│ │ │ ├── ExceptionMessageTest.php
│ │ │ ├── JsonMatches
│ │ │ │ └── ErrorMessageProviderTest.php
│ │ │ └── JsonMatchesTest.php
│ │ ├── ConstraintTest.php
│ │ ├── SuiteTest.php
│ │ ├── TestCaseTest.php
│ │ ├── TestFailureTest.php
│ │ ├── TestImplementorTest.php
│ │ └── TestListenerTest.php
│ │ ├── Regression
│ │ ├── GitHub
│ │ │ ├── 74
│ │ │ │ ├── Issue74Test.php
│ │ │ │ └── NewException.php
│ │ │ ├── 244
│ │ │ │ └── Issue244Test.php
│ │ │ ├── 322
│ │ │ │ ├── Issue322Test.php
│ │ │ │ └── phpunit322.xml
│ │ │ ├── 433
│ │ │ │ └── Issue433Test.php
│ │ │ ├── 445
│ │ │ │ └── Issue445Test.php
│ │ │ ├── 498
│ │ │ │ └── Issue498Test.php
│ │ │ ├── 503
│ │ │ │ └── Issue503Test.php
│ │ │ ├── 581
│ │ │ │ └── Issue581Test.php
│ │ │ ├── 765
│ │ │ │ └── Issue765Test.php
│ │ │ ├── 797
│ │ │ │ ├── Issue797Test.php
│ │ │ │ └── bootstrap797.php
│ │ │ ├── 873
│ │ │ │ └── Issue873Test.php
│ │ │ ├── 1149
│ │ │ │ └── Issue1149Test.php
│ │ │ ├── 1216
│ │ │ │ ├── Issue1216Test.php
│ │ │ │ ├── bootstrap1216.php
│ │ │ │ └── phpunit1216.xml
│ │ │ ├── 1265
│ │ │ │ ├── Issue1265Test.php
│ │ │ │ └── phpunit1265.xml
│ │ │ ├── 1330
│ │ │ │ ├── Issue1330Test.php
│ │ │ │ └── phpunit1330.xml
│ │ │ ├── 1335
│ │ │ │ ├── Issue1335Test.php
│ │ │ │ └── bootstrap1335.php
│ │ │ ├── 1337
│ │ │ │ └── Issue1337Test.php
│ │ │ ├── 1348
│ │ │ │ └── Issue1348Test.php
│ │ │ ├── 1351
│ │ │ │ ├── ChildProcessClass1351.php
│ │ │ │ └── Issue1351Test.php
│ │ │ ├── 1374
│ │ │ │ └── Issue1374Test.php
│ │ │ ├── 1437
│ │ │ │ └── Issue1437Test.php
│ │ │ ├── 1468
│ │ │ │ └── Issue1468Test.php
│ │ │ ├── 1471
│ │ │ │ └── Issue1471Test.php
│ │ │ ├── 1472
│ │ │ │ └── Issue1472Test.php
│ │ │ ├── 1570
│ │ │ │ └── Issue1570Test.php
│ │ │ ├── 2158
│ │ │ │ ├── Issue2158Test.php
│ │ │ │ └── constant.inc
│ │ │ ├── 1149.phpt
│ │ │ ├── 1216.phpt
│ │ │ ├── 1265.phpt
│ │ │ ├── 1330.phpt
│ │ │ ├── 1335.phpt
│ │ │ ├── 1337.phpt
│ │ │ ├── 1348.phpt
│ │ │ ├── 1351.phpt
│ │ │ ├── 1374.phpt
│ │ │ ├── 1437.phpt
│ │ │ ├── 1468.phpt
│ │ │ ├── 1471.phpt
│ │ │ ├── 1472.phpt
│ │ │ ├── 1570.phpt
│ │ │ ├── 2158.phpt
│ │ │ ├── 244.phpt
│ │ │ ├── 322.phpt
│ │ │ ├── 433.phpt
│ │ │ ├── 445.phpt
│ │ │ ├── 498.phpt
│ │ │ ├── 503.phpt
│ │ │ ├── 581.phpt
│ │ │ ├── 74.phpt
│ │ │ ├── 765.phpt
│ │ │ ├── 797.phpt
│ │ │ ├── 863.phpt
│ │ │ ├── 873-php5.phpt
│ │ │ └── 873-php7.phpt
│ │ └── Trac
│ │ │ ├── 523
│ │ │ └── Issue523Test.php
│ │ │ ├── 578
│ │ │ └── Issue578Test.php
│ │ │ ├── 684
│ │ │ └── Issue684Test.php
│ │ │ ├── 783
│ │ │ ├── ChildSuite.php
│ │ │ ├── OneTest.php
│ │ │ ├── ParentSuite.php
│ │ │ └── TwoTest.php
│ │ │ ├── 1021
│ │ │ └── Issue1021Test.php
│ │ │ ├── 1021.phpt
│ │ │ ├── 523.phpt
│ │ │ ├── 578.phpt
│ │ │ ├── 684.phpt
│ │ │ └── 783.phpt
│ │ ├── Runner
│ │ └── BaseTestRunnerTest.php
│ │ ├── TextUI
│ │ ├── abstract-test-class.phpt
│ │ ├── colors-always.phpt
│ │ ├── concrete-test-class.phpt
│ │ ├── custom-printer-debug.phpt
│ │ ├── custom-printer-verbose.phpt
│ │ ├── dataprovider-debug.phpt
│ │ ├── dataprovider-log-xml-isolation.phpt
│ │ ├── dataprovider-log-xml.phpt
│ │ ├── dataprovider-testdox.phpt
│ │ ├── debug.phpt
│ │ ├── default-isolation.phpt
│ │ ├── default.phpt
│ │ ├── dependencies-isolation.phpt
│ │ ├── dependencies.phpt
│ │ ├── dependencies2-isolation.phpt
│ │ ├── dependencies2.phpt
│ │ ├── dependencies3-isolation.phpt
│ │ ├── dependencies3.phpt
│ │ ├── empty-testcase.phpt
│ │ ├── exception-stack.phpt
│ │ ├── exclude-group-isolation.phpt
│ │ ├── exclude-group.phpt
│ │ ├── failure-isolation.phpt
│ │ ├── failure.phpt
│ │ ├── fatal-isolation.phpt
│ │ ├── filter-class-isolation.phpt
│ │ ├── filter-class.phpt
│ │ ├── filter-dataprovider-by-classname-and-range-isolation.phpt
│ │ ├── filter-dataprovider-by-classname-and-range.phpt
│ │ ├── filter-dataprovider-by-number-isolation.phpt
│ │ ├── filter-dataprovider-by-number.phpt
│ │ ├── filter-dataprovider-by-only-range-isolation.phpt
│ │ ├── filter-dataprovider-by-only-range.phpt
│ │ ├── filter-dataprovider-by-only-regexp-isolation.phpt
│ │ ├── filter-dataprovider-by-only-regexp.phpt
│ │ ├── filter-dataprovider-by-only-string-isolation.phpt
│ │ ├── filter-dataprovider-by-only-string.phpt
│ │ ├── filter-dataprovider-by-range-isolation.phpt
│ │ ├── filter-dataprovider-by-range.phpt
│ │ ├── filter-dataprovider-by-regexp-isolation.phpt
│ │ ├── filter-dataprovider-by-regexp.phpt
│ │ ├── filter-dataprovider-by-string-isolation.phpt
│ │ ├── filter-dataprovider-by-string.phpt
│ │ ├── filter-method-case-insensitive.phpt
│ │ ├── filter-method-case-sensitive-no-result.phpt
│ │ ├── filter-method-isolation.phpt
│ │ ├── filter-method.phpt
│ │ ├── filter-no-results.phpt
│ │ ├── group-isolation.phpt
│ │ ├── group.phpt
│ │ ├── help.phpt
│ │ ├── help2.phpt
│ │ ├── ini-isolation.phpt
│ │ ├── list-groups.phpt
│ │ ├── log-json-no-pretty-print.phpt
│ │ ├── log-json-post-66021.phpt
│ │ ├── log-json-pre-66021.phpt
│ │ ├── log-tap.phpt
│ │ ├── log-xml.phpt
│ │ ├── options-after-arguments.phpt
│ │ ├── output-isolation.phpt
│ │ ├── repeat.phpt
│ │ ├── report-useless-tests-incomplete.phpt
│ │ ├── report-useless-tests-isolation.phpt
│ │ ├── report-useless-tests.phpt
│ │ ├── tap.phpt
│ │ ├── test-suffix-multiple.phpt
│ │ ├── test-suffix-single.phpt
│ │ ├── testdox-html.phpt
│ │ ├── testdox-text.phpt
│ │ └── testdox.phpt
│ │ ├── Util
│ │ ├── ConfigurationTest.php
│ │ ├── GetoptTest.php
│ │ ├── GlobalStateTest.php
│ │ ├── RegexTest.php
│ │ ├── TestDox
│ │ │ └── NamePrettifierTest.php
│ │ ├── TestTest.php
│ │ └── XMLTest.php
│ │ ├── _files
│ │ ├── AbstractTest.php
│ │ ├── Author.php
│ │ ├── BankAccount.php
│ │ ├── BankAccountTest.php
│ │ ├── BankAccountTest.test.php
│ │ ├── BaseTestListenerSample.php
│ │ ├── BeforeAndAfterTest.php
│ │ ├── BeforeClassAndAfterClassTest.php
│ │ ├── Book.php
│ │ ├── Calculator.php
│ │ ├── ChangeCurrentWorkingDirectoryTest.php
│ │ ├── ClassWithNonPublicAttributes.php
│ │ ├── ClassWithScalarTypeDeclarations.php
│ │ ├── ClassWithToString.php
│ │ ├── ConcreteTest.my.php
│ │ ├── ConcreteTest.php
│ │ ├── CoverageClassExtendedTest.php
│ │ ├── CoverageClassTest.php
│ │ ├── CoverageFunctionParenthesesTest.php
│ │ ├── CoverageFunctionParenthesesWhitespaceTest.php
│ │ ├── CoverageFunctionTest.php
│ │ ├── CoverageMethodOneLineAnnotationTest.php
│ │ ├── CoverageMethodParenthesesTest.php
│ │ ├── CoverageMethodParenthesesWhitespaceTest.php
│ │ ├── CoverageMethodTest.php
│ │ ├── CoverageNamespacedFunctionTest.php
│ │ ├── CoverageNoneTest.php
│ │ ├── CoverageNotPrivateTest.php
│ │ ├── CoverageNotProtectedTest.php
│ │ ├── CoverageNotPublicTest.php
│ │ ├── CoverageNothingTest.php
│ │ ├── CoveragePrivateTest.php
│ │ ├── CoverageProtectedTest.php
│ │ ├── CoveragePublicTest.php
│ │ ├── CoverageTwoDefaultClassAnnotations.php
│ │ ├── CoveredClass.php
│ │ ├── CoveredFunction.php
│ │ ├── CustomPrinter.php
│ │ ├── DataProviderDebugTest.php
│ │ ├── DataProviderFilterTest.php
│ │ ├── DataProviderIncompleteTest.php
│ │ ├── DataProviderSkippedTest.php
│ │ ├── DataProviderTest.php
│ │ ├── DependencyFailureTest.php
│ │ ├── DependencySuccessTest.php
│ │ ├── DependencyTestSuite.php
│ │ ├── DoubleTestCase.php
│ │ ├── DummyException.php
│ │ ├── EmptyTestCaseTest.php
│ │ ├── ExceptionInAssertPostConditionsTest.php
│ │ ├── ExceptionInAssertPreConditionsTest.php
│ │ ├── ExceptionInSetUpTest.php
│ │ ├── ExceptionInTearDownTest.php
│ │ ├── ExceptionInTest.php
│ │ ├── ExceptionNamespaceTest.php
│ │ ├── ExceptionStackTest.php
│ │ ├── ExceptionTest.php
│ │ ├── Failure.php
│ │ ├── FailureTest.php
│ │ ├── FatalTest.php
│ │ ├── IncompleteTest.php
│ │ ├── Inheritance
│ │ │ ├── InheritanceA.php
│ │ │ └── InheritanceB.php
│ │ ├── InheritedTestCase.php
│ │ ├── IniTest.php
│ │ ├── IsolationTest.php
│ │ ├── JsonData
│ │ │ ├── arrayObject.json
│ │ │ └── simpleObject.json
│ │ ├── MockRunner.php
│ │ ├── MultiDependencyTest.php
│ │ ├── NamespaceCoverageClassExtendedTest.php
│ │ ├── NamespaceCoverageClassTest.php
│ │ ├── NamespaceCoverageCoversClassPublicTest.php
│ │ ├── NamespaceCoverageCoversClassTest.php
│ │ ├── NamespaceCoverageMethodTest.php
│ │ ├── NamespaceCoverageNotPrivateTest.php
│ │ ├── NamespaceCoverageNotProtectedTest.php
│ │ ├── NamespaceCoverageNotPublicTest.php
│ │ ├── NamespaceCoveragePrivateTest.php
│ │ ├── NamespaceCoverageProtectedTest.php
│ │ ├── NamespaceCoveragePublicTest.php
│ │ ├── NamespaceCoveredClass.php
│ │ ├── NamespaceCoveredFunction.php
│ │ ├── NoArgTestCaseTest.php
│ │ ├── NoTestCaseClass.php
│ │ ├── NoTestCases.php
│ │ ├── NonStatic.php
│ │ ├── NotExistingCoveredElementTest.php
│ │ ├── NotPublicTestCase.php
│ │ ├── NotVoidTestCase.php
│ │ ├── NothingTest.php
│ │ ├── OneTestCase.php
│ │ ├── OutputTestCase.php
│ │ ├── OverrideTestCase.php
│ │ ├── RequirementsClassBeforeClassHookTest.php
│ │ ├── RequirementsClassDocBlockTest.php
│ │ ├── RequirementsTest.php
│ │ ├── SampleArrayAccess.php
│ │ ├── SampleClass.php
│ │ ├── Singleton.php
│ │ ├── StackTest.php
│ │ ├── Struct.php
│ │ ├── Success.php
│ │ ├── TemplateMethodsTest.php
│ │ ├── TestIncomplete.php
│ │ ├── TestIterator.php
│ │ ├── TestIterator2.php
│ │ ├── TestSkipped.php
│ │ ├── TestTestError.php
│ │ ├── TestWithTest.php
│ │ ├── ThrowExceptionTestCase.php
│ │ ├── ThrowNoExceptionTestCase.php
│ │ ├── WasRun.php
│ │ ├── bar.xml
│ │ ├── configuration.colors.empty.xml
│ │ ├── configuration.colors.false.xml
│ │ ├── configuration.colors.invalid.xml
│ │ ├── configuration.colors.true.xml
│ │ ├── configuration.custom-printer.xml
│ │ ├── configuration.xml
│ │ ├── configuration_empty.xml
│ │ ├── configuration_xinclude.xml
│ │ ├── expectedFileFormat.txt
│ │ ├── foo.xml
│ │ ├── structureAttributesAreSameButValuesAreNot.xml
│ │ ├── structureExpected.xml
│ │ ├── structureIgnoreTextNodes.xml
│ │ ├── structureIsSameButDataIsNot.xml
│ │ ├── structureWrongNumberOfAttributes.xml
│ │ └── structureWrongNumberOfNodes.xml
│ │ └── bootstrap.php
├── psr
│ ├── http-message
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ │ ├── MessageInterface.php
│ │ │ ├── RequestInterface.php
│ │ │ ├── ResponseInterface.php
│ │ │ ├── ServerRequestInterface.php
│ │ │ ├── StreamInterface.php
│ │ │ ├── UploadedFileInterface.php
│ │ │ └── UriInterface.php
│ └── log
│ │ ├── .gitignore
│ │ ├── LICENSE
│ │ ├── Psr
│ │ └── Log
│ │ │ ├── AbstractLogger.php
│ │ │ ├── InvalidArgumentException.php
│ │ │ ├── LogLevel.php
│ │ │ ├── LoggerAwareInterface.php
│ │ │ ├── LoggerAwareTrait.php
│ │ │ ├── LoggerInterface.php
│ │ │ ├── LoggerTrait.php
│ │ │ ├── NullLogger.php
│ │ │ └── Test
│ │ │ └── LoggerInterfaceTest.php
│ │ ├── README.md
│ │ └── composer.json
├── sebastian
│ ├── comparator
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── build
│ │ │ └── travis-ci.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml.dist
│ │ ├── src
│ │ │ ├── ArrayComparator.php
│ │ │ ├── Comparator.php
│ │ │ ├── ComparisonFailure.php
│ │ │ ├── DOMNodeComparator.php
│ │ │ ├── DateTimeComparator.php
│ │ │ ├── DoubleComparator.php
│ │ │ ├── ExceptionComparator.php
│ │ │ ├── Factory.php
│ │ │ ├── MockObjectComparator.php
│ │ │ ├── NumericComparator.php
│ │ │ ├── ObjectComparator.php
│ │ │ ├── ResourceComparator.php
│ │ │ ├── ScalarComparator.php
│ │ │ ├── SplObjectStorageComparator.php
│ │ │ └── TypeComparator.php
│ │ └── tests
│ │ │ ├── ArrayComparatorTest.php
│ │ │ ├── DOMNodeComparatorTest.php
│ │ │ ├── DateTimeComparatorTest.php
│ │ │ ├── DoubleComparatorTest.php
│ │ │ ├── ExceptionComparatorTest.php
│ │ │ ├── FactoryTest.php
│ │ │ ├── MockObjectComparatorTest.php
│ │ │ ├── NumericComparatorTest.php
│ │ │ ├── ObjectComparatorTest.php
│ │ │ ├── ResourceComparatorTest.php
│ │ │ ├── ScalarComparatorTest.php
│ │ │ ├── SplObjectStorageComparatorTest.php
│ │ │ ├── TypeComparatorTest.php
│ │ │ ├── _files
│ │ │ ├── Author.php
│ │ │ ├── Book.php
│ │ │ ├── ClassWithToString.php
│ │ │ ├── SampleClass.php
│ │ │ ├── Struct.php
│ │ │ ├── TestClass.php
│ │ │ └── TestClassComparator.php
│ │ │ ├── autoload.php
│ │ │ └── bootstrap.php
│ ├── diff
│ │ ├── .gitignore
│ │ ├── .php_cs
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml.dist
│ │ ├── src
│ │ │ ├── Chunk.php
│ │ │ ├── Diff.php
│ │ │ ├── Differ.php
│ │ │ ├── LCS
│ │ │ │ ├── LongestCommonSubsequence.php
│ │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php
│ │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php
│ │ │ ├── Line.php
│ │ │ └── Parser.php
│ │ └── tests
│ │ │ ├── DifferTest.php
│ │ │ ├── LCS
│ │ │ └── TimeEfficientImplementationTest.php
│ │ │ ├── ParserTest.php
│ │ │ └── fixtures
│ │ │ ├── patch.txt
│ │ │ └── patch2.txt
│ ├── environment
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ ├── Console.php
│ │ │ └── Runtime.php
│ │ └── tests
│ │ │ ├── ConsoleTest.php
│ │ │ └── RuntimeTest.php
│ ├── exporter
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml.dist
│ │ ├── src
│ │ │ └── Exporter.php
│ │ └── tests
│ │ │ └── ExporterTest.php
│ ├── global-state
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml.dist
│ │ ├── src
│ │ │ ├── Blacklist.php
│ │ │ ├── CodeExporter.php
│ │ │ ├── Exception.php
│ │ │ ├── Restorer.php
│ │ │ ├── RuntimeException.php
│ │ │ └── Snapshot.php
│ │ └── tests
│ │ │ ├── BlacklistTest.php
│ │ │ ├── SnapshotTest.php
│ │ │ └── _fixture
│ │ │ ├── BlacklistedChildClass.php
│ │ │ ├── BlacklistedClass.php
│ │ │ ├── BlacklistedImplementor.php
│ │ │ ├── BlacklistedInterface.php
│ │ │ ├── SnapshotClass.php
│ │ │ ├── SnapshotDomDocument.php
│ │ │ ├── SnapshotFunctions.php
│ │ │ └── SnapshotTrait.php
│ ├── recursion-context
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml.dist
│ │ ├── src
│ │ │ ├── Context.php
│ │ │ ├── Exception.php
│ │ │ └── InvalidArgumentException.php
│ │ └── tests
│ │ │ └── ContextTest.php
│ └── version
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ └── Version.php
├── swiftmailer
│ └── swiftmailer
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── CHANGES
│ │ ├── LICENSE
│ │ ├── README
│ │ ├── VERSION
│ │ ├── composer.json
│ │ ├── doc
│ │ ├── headers.rst
│ │ ├── help-resources.rst
│ │ ├── including-the-files.rst
│ │ ├── index.rst
│ │ ├── installing.rst
│ │ ├── introduction.rst
│ │ ├── japanese.rst
│ │ ├── messages.rst
│ │ ├── overview.rst
│ │ ├── plugins.rst
│ │ ├── sending.rst
│ │ └── uml
│ │ │ ├── Encoders.graffle
│ │ │ ├── Mime.graffle
│ │ │ └── Transports.graffle
│ │ ├── lib
│ │ ├── classes
│ │ │ ├── Swift.php
│ │ │ └── Swift
│ │ │ │ ├── Attachment.php
│ │ │ │ ├── ByteStream
│ │ │ │ ├── AbstractFilterableInputStream.php
│ │ │ │ ├── ArrayByteStream.php
│ │ │ │ ├── FileByteStream.php
│ │ │ │ └── TemporaryFileByteStream.php
│ │ │ │ ├── CharacterReader.php
│ │ │ │ ├── CharacterReader
│ │ │ │ ├── GenericFixedWidthReader.php
│ │ │ │ ├── UsAsciiReader.php
│ │ │ │ └── Utf8Reader.php
│ │ │ │ ├── CharacterReaderFactory.php
│ │ │ │ ├── CharacterReaderFactory
│ │ │ │ └── SimpleCharacterReaderFactory.php
│ │ │ │ ├── CharacterStream.php
│ │ │ │ ├── CharacterStream
│ │ │ │ ├── ArrayCharacterStream.php
│ │ │ │ └── NgCharacterStream.php
│ │ │ │ ├── ConfigurableSpool.php
│ │ │ │ ├── DependencyContainer.php
│ │ │ │ ├── DependencyException.php
│ │ │ │ ├── EmbeddedFile.php
│ │ │ │ ├── Encoder.php
│ │ │ │ ├── Encoder
│ │ │ │ ├── Base64Encoder.php
│ │ │ │ ├── QpEncoder.php
│ │ │ │ └── Rfc2231Encoder.php
│ │ │ │ ├── Encoding.php
│ │ │ │ ├── Events
│ │ │ │ ├── CommandEvent.php
│ │ │ │ ├── CommandListener.php
│ │ │ │ ├── Event.php
│ │ │ │ ├── EventDispatcher.php
│ │ │ │ ├── EventListener.php
│ │ │ │ ├── EventObject.php
│ │ │ │ ├── ResponseEvent.php
│ │ │ │ ├── ResponseListener.php
│ │ │ │ ├── SendEvent.php
│ │ │ │ ├── SendListener.php
│ │ │ │ ├── SimpleEventDispatcher.php
│ │ │ │ ├── TransportChangeEvent.php
│ │ │ │ ├── TransportChangeListener.php
│ │ │ │ ├── TransportExceptionEvent.php
│ │ │ │ └── TransportExceptionListener.php
│ │ │ │ ├── FailoverTransport.php
│ │ │ │ ├── FileSpool.php
│ │ │ │ ├── FileStream.php
│ │ │ │ ├── Filterable.php
│ │ │ │ ├── Image.php
│ │ │ │ ├── InputByteStream.php
│ │ │ │ ├── IoException.php
│ │ │ │ ├── KeyCache.php
│ │ │ │ ├── KeyCache
│ │ │ │ ├── ArrayKeyCache.php
│ │ │ │ ├── DiskKeyCache.php
│ │ │ │ ├── KeyCacheInputStream.php
│ │ │ │ ├── NullKeyCache.php
│ │ │ │ └── SimpleKeyCacheInputStream.php
│ │ │ │ ├── LoadBalancedTransport.php
│ │ │ │ ├── MailTransport.php
│ │ │ │ ├── Mailer.php
│ │ │ │ ├── Mailer
│ │ │ │ ├── ArrayRecipientIterator.php
│ │ │ │ └── RecipientIterator.php
│ │ │ │ ├── MemorySpool.php
│ │ │ │ ├── Message.php
│ │ │ │ ├── Mime
│ │ │ │ ├── Attachment.php
│ │ │ │ ├── CharsetObserver.php
│ │ │ │ ├── ContentEncoder.php
│ │ │ │ ├── ContentEncoder
│ │ │ │ │ ├── Base64ContentEncoder.php
│ │ │ │ │ ├── NativeQpContentEncoder.php
│ │ │ │ │ ├── PlainContentEncoder.php
│ │ │ │ │ ├── QpContentEncoder.php
│ │ │ │ │ ├── QpContentEncoderProxy.php
│ │ │ │ │ └── RawContentEncoder.php
│ │ │ │ ├── EmbeddedFile.php
│ │ │ │ ├── EncodingObserver.php
│ │ │ │ ├── Grammar.php
│ │ │ │ ├── Header.php
│ │ │ │ ├── HeaderEncoder.php
│ │ │ │ ├── HeaderEncoder
│ │ │ │ │ ├── Base64HeaderEncoder.php
│ │ │ │ │ └── QpHeaderEncoder.php
│ │ │ │ ├── HeaderFactory.php
│ │ │ │ ├── HeaderSet.php
│ │ │ │ ├── Headers
│ │ │ │ │ ├── AbstractHeader.php
│ │ │ │ │ ├── DateHeader.php
│ │ │ │ │ ├── IdentificationHeader.php
│ │ │ │ │ ├── MailboxHeader.php
│ │ │ │ │ ├── OpenDKIMHeader.php
│ │ │ │ │ ├── ParameterizedHeader.php
│ │ │ │ │ ├── PathHeader.php
│ │ │ │ │ └── UnstructuredHeader.php
│ │ │ │ ├── Message.php
│ │ │ │ ├── MimeEntity.php
│ │ │ │ ├── MimePart.php
│ │ │ │ ├── ParameterizedHeader.php
│ │ │ │ ├── SimpleHeaderFactory.php
│ │ │ │ ├── SimpleHeaderSet.php
│ │ │ │ ├── SimpleMessage.php
│ │ │ │ └── SimpleMimeEntity.php
│ │ │ │ ├── MimePart.php
│ │ │ │ ├── NullTransport.php
│ │ │ │ ├── OutputByteStream.php
│ │ │ │ ├── Plugins
│ │ │ │ ├── AntiFloodPlugin.php
│ │ │ │ ├── BandwidthMonitorPlugin.php
│ │ │ │ ├── Decorator
│ │ │ │ │ └── Replacements.php
│ │ │ │ ├── DecoratorPlugin.php
│ │ │ │ ├── ImpersonatePlugin.php
│ │ │ │ ├── Logger.php
│ │ │ │ ├── LoggerPlugin.php
│ │ │ │ ├── Loggers
│ │ │ │ │ ├── ArrayLogger.php
│ │ │ │ │ └── EchoLogger.php
│ │ │ │ ├── MessageLogger.php
│ │ │ │ ├── Pop
│ │ │ │ │ ├── Pop3Connection.php
│ │ │ │ │ └── Pop3Exception.php
│ │ │ │ ├── PopBeforeSmtpPlugin.php
│ │ │ │ ├── RedirectingPlugin.php
│ │ │ │ ├── Reporter.php
│ │ │ │ ├── ReporterPlugin.php
│ │ │ │ ├── Reporters
│ │ │ │ │ ├── HitReporter.php
│ │ │ │ │ └── HtmlReporter.php
│ │ │ │ ├── Sleeper.php
│ │ │ │ ├── ThrottlerPlugin.php
│ │ │ │ └── Timer.php
│ │ │ │ ├── Preferences.php
│ │ │ │ ├── ReplacementFilterFactory.php
│ │ │ │ ├── RfcComplianceException.php
│ │ │ │ ├── SendmailTransport.php
│ │ │ │ ├── SignedMessage.php
│ │ │ │ ├── Signer.php
│ │ │ │ ├── Signers
│ │ │ │ ├── BodySigner.php
│ │ │ │ ├── DKIMSigner.php
│ │ │ │ ├── DomainKeySigner.php
│ │ │ │ ├── HeaderSigner.php
│ │ │ │ ├── OpenDKIMSigner.php
│ │ │ │ └── SMimeSigner.php
│ │ │ │ ├── SmtpTransport.php
│ │ │ │ ├── Spool.php
│ │ │ │ ├── SpoolTransport.php
│ │ │ │ ├── StreamFilter.php
│ │ │ │ ├── StreamFilters
│ │ │ │ ├── ByteArrayReplacementFilter.php
│ │ │ │ ├── StringReplacementFilter.php
│ │ │ │ └── StringReplacementFilterFactory.php
│ │ │ │ ├── SwiftException.php
│ │ │ │ ├── Transport.php
│ │ │ │ ├── Transport
│ │ │ │ ├── AbstractSmtpTransport.php
│ │ │ │ ├── Esmtp
│ │ │ │ │ ├── Auth
│ │ │ │ │ │ ├── CramMd5Authenticator.php
│ │ │ │ │ │ ├── LoginAuthenticator.php
│ │ │ │ │ │ ├── NTLMAuthenticator.php
│ │ │ │ │ │ ├── PlainAuthenticator.php
│ │ │ │ │ │ └── XOAuth2Authenticator.php
│ │ │ │ │ ├── AuthHandler.php
│ │ │ │ │ └── Authenticator.php
│ │ │ │ ├── EsmtpHandler.php
│ │ │ │ ├── EsmtpTransport.php
│ │ │ │ ├── FailoverTransport.php
│ │ │ │ ├── IoBuffer.php
│ │ │ │ ├── LoadBalancedTransport.php
│ │ │ │ ├── MailInvoker.php
│ │ │ │ ├── MailTransport.php
│ │ │ │ ├── NullTransport.php
│ │ │ │ ├── SendmailTransport.php
│ │ │ │ ├── SimpleMailInvoker.php
│ │ │ │ ├── SmtpAgent.php
│ │ │ │ ├── SpoolTransport.php
│ │ │ │ └── StreamBuffer.php
│ │ │ │ ├── TransportException.php
│ │ │ │ └── Validate.php
│ │ ├── dependency_maps
│ │ │ ├── cache_deps.php
│ │ │ ├── message_deps.php
│ │ │ ├── mime_deps.php
│ │ │ └── transport_deps.php
│ │ ├── mime_types.php
│ │ ├── preferences.php
│ │ ├── swift_init.php
│ │ ├── swift_required.php
│ │ ├── swift_required_pear.php
│ │ └── swiftmailer_generate_mimes_config.php
│ │ ├── phpunit.xml.dist
│ │ └── tests
│ │ ├── IdenticalBinaryConstraint.php
│ │ ├── StreamCollector.php
│ │ ├── SwiftMailerSmokeTestCase.php
│ │ ├── SwiftMailerTestCase.php
│ │ ├── _samples
│ │ ├── charsets
│ │ │ ├── iso-2022-jp
│ │ │ │ └── one.txt
│ │ │ ├── iso-8859-1
│ │ │ │ └── one.txt
│ │ │ └── utf-8
│ │ │ │ ├── one.txt
│ │ │ │ ├── three.txt
│ │ │ │ └── two.txt
│ │ ├── dkim
│ │ │ ├── dkim.test.priv
│ │ │ └── dkim.test.pub
│ │ ├── files
│ │ │ ├── data.txt
│ │ │ ├── swiftmailer.png
│ │ │ └── textfile.zip
│ │ └── smime
│ │ │ ├── CA.srl
│ │ │ ├── ca.crt
│ │ │ ├── ca.key
│ │ │ ├── create-cert.sh
│ │ │ ├── encrypt.crt
│ │ │ ├── encrypt.key
│ │ │ ├── encrypt2.crt
│ │ │ ├── encrypt2.key
│ │ │ ├── intermediate.crt
│ │ │ ├── intermediate.key
│ │ │ ├── sign.crt
│ │ │ ├── sign.key
│ │ │ ├── sign2.crt
│ │ │ └── sign2.key
│ │ ├── acceptance.conf.php.default
│ │ ├── acceptance
│ │ └── Swift
│ │ │ ├── AttachmentAcceptanceTest.php
│ │ │ ├── ByteStream
│ │ │ └── FileByteStreamAcceptanceTest.php
│ │ │ ├── CharacterReaderFactory
│ │ │ └── SimpleCharacterReaderFactoryAcceptanceTest.php
│ │ │ ├── DependencyContainerAcceptanceTest.php
│ │ │ ├── EmbeddedFileAcceptanceTest.php
│ │ │ ├── Encoder
│ │ │ ├── Base64EncoderAcceptanceTest.php
│ │ │ ├── QpEncoderAcceptanceTest.php
│ │ │ └── Rfc2231EncoderAcceptanceTest.php
│ │ │ ├── EncodingAcceptanceTest.php
│ │ │ ├── KeyCache
│ │ │ ├── ArrayKeyCacheAcceptanceTest.php
│ │ │ └── DiskKeyCacheAcceptanceTest.php
│ │ │ ├── MessageAcceptanceTest.php
│ │ │ ├── Mime
│ │ │ ├── AttachmentAcceptanceTest.php
│ │ │ ├── ContentEncoder
│ │ │ │ ├── Base64ContentEncoderAcceptanceTest.php
│ │ │ │ ├── NativeQpContentEncoderAcceptanceTest.php
│ │ │ │ ├── PlainContentEncoderAcceptanceTest.php
│ │ │ │ └── QpContentEncoderAcceptanceTest.php
│ │ │ ├── EmbeddedFileAcceptanceTest.php
│ │ │ ├── HeaderEncoder
│ │ │ │ └── Base64HeaderEncoderAcceptanceTest.php
│ │ │ ├── MimePartAcceptanceTest.php
│ │ │ └── SimpleMessageAcceptanceTest.php
│ │ │ ├── MimePartAcceptanceTest.php
│ │ │ └── Transport
│ │ │ └── StreamBuffer
│ │ │ ├── AbstractStreamBufferAcceptanceTest.php
│ │ │ ├── BasicSocketAcceptanceTest.php
│ │ │ ├── ProcessAcceptanceTest.php
│ │ │ ├── SocketTimeoutTest.php
│ │ │ ├── SslSocketAcceptanceTest.php
│ │ │ └── TlsSocketAcceptanceTest.php
│ │ ├── bootstrap.php
│ │ ├── bug
│ │ └── Swift
│ │ │ ├── Bug111Test.php
│ │ │ ├── Bug118Test.php
│ │ │ ├── Bug206Test.php
│ │ │ ├── Bug274Test.php
│ │ │ ├── Bug34Test.php
│ │ │ ├── Bug35Test.php
│ │ │ ├── Bug38Test.php
│ │ │ ├── Bug518Test.php
│ │ │ ├── Bug51Test.php
│ │ │ ├── Bug534Test.php
│ │ │ ├── Bug650Test.php
│ │ │ ├── Bug71Test.php
│ │ │ ├── Bug76Test.php
│ │ │ └── BugFileByteStreamConsecutiveReadCallsTest.php
│ │ ├── fixtures
│ │ └── MimeEntityFixture.php
│ │ ├── smoke.conf.php.default
│ │ ├── smoke
│ │ └── Swift
│ │ │ └── Smoke
│ │ │ ├── AttachmentSmokeTest.php
│ │ │ ├── BasicSmokeTest.php
│ │ │ ├── HtmlWithAttachmentSmokeTest.php
│ │ │ └── InternationalSmokeTest.php
│ │ └── unit
│ │ └── Swift
│ │ ├── ByteStream
│ │ └── ArrayByteStreamTest.php
│ │ ├── CharacterReader
│ │ ├── GenericFixedWidthReaderTest.php
│ │ ├── UsAsciiReaderTest.php
│ │ └── Utf8ReaderTest.php
│ │ ├── CharacterStream
│ │ └── ArrayCharacterStreamTest.php
│ │ ├── DependencyContainerTest.php
│ │ ├── Encoder
│ │ ├── Base64EncoderTest.php
│ │ ├── QpEncoderTest.php
│ │ └── Rfc2231EncoderTest.php
│ │ ├── Events
│ │ ├── CommandEventTest.php
│ │ ├── EventObjectTest.php
│ │ ├── ResponseEventTest.php
│ │ ├── SendEventTest.php
│ │ ├── SimpleEventDispatcherTest.php
│ │ ├── TransportChangeEventTest.php
│ │ └── TransportExceptionEventTest.php
│ │ ├── KeyCache
│ │ ├── ArrayKeyCacheTest.php
│ │ └── SimpleKeyCacheInputStreamTest.php
│ │ ├── Mailer
│ │ └── ArrayRecipientIteratorTest.php
│ │ ├── MailerTest.php
│ │ ├── MessageTest.php
│ │ ├── Mime
│ │ ├── AbstractMimeEntityTest.php
│ │ ├── AttachmentTest.php
│ │ ├── ContentEncoder
│ │ │ ├── Base64ContentEncoderTest.php
│ │ │ ├── PlainContentEncoderTest.php
│ │ │ └── QpContentEncoderTest.php
│ │ ├── EmbeddedFileTest.php
│ │ ├── HeaderEncoder
│ │ │ ├── Base64HeaderEncoderTest.php
│ │ │ └── QpHeaderEncoderTest.php
│ │ ├── Headers
│ │ │ ├── DateHeaderTest.php
│ │ │ ├── IdentificationHeaderTest.php
│ │ │ ├── MailboxHeaderTest.php
│ │ │ ├── ParameterizedHeaderTest.php
│ │ │ ├── PathHeaderTest.php
│ │ │ └── UnstructuredHeaderTest.php
│ │ ├── MimePartTest.php
│ │ ├── SimpleHeaderFactoryTest.php
│ │ ├── SimpleHeaderSetTest.php
│ │ ├── SimpleMessageTest.php
│ │ └── SimpleMimeEntityTest.php
│ │ ├── Plugins
│ │ ├── AntiFloodPluginTest.php
│ │ ├── BandwidthMonitorPluginTest.php
│ │ ├── DecoratorPluginTest.php
│ │ ├── LoggerPluginTest.php
│ │ ├── Loggers
│ │ │ ├── ArrayLoggerTest.php
│ │ │ └── EchoLoggerTest.php
│ │ ├── PopBeforeSmtpPluginTest.php
│ │ ├── RedirectingPluginTest.php
│ │ ├── ReporterPluginTest.php
│ │ ├── Reporters
│ │ │ ├── HitReporterTest.php
│ │ │ └── HtmlReporterTest.php
│ │ └── ThrottlerPluginTest.php
│ │ ├── Signers
│ │ ├── DKIMSignerTest.php
│ │ ├── OpenDKIMSignerTest.php
│ │ └── SMimeSignerTest.php
│ │ ├── StreamFilters
│ │ ├── ByteArrayReplacementFilterTest.php
│ │ ├── StringReplacementFilterFactoryTest.php
│ │ └── StringReplacementFilterTest.php
│ │ └── Transport
│ │ ├── AbstractSmtpEventSupportTest.php
│ │ ├── AbstractSmtpTest.php
│ │ ├── Esmtp
│ │ ├── Auth
│ │ │ ├── CramMd5AuthenticatorTest.php
│ │ │ ├── LoginAuthenticatorTest.php
│ │ │ ├── NTLMAuthenticatorTest.php
│ │ │ └── PlainAuthenticatorTest.php
│ │ └── AuthHandlerTest.php
│ │ ├── EsmtpTransport
│ │ └── ExtensionSupportTest.php
│ │ ├── EsmtpTransportTest.php
│ │ ├── FailoverTransportTest.php
│ │ ├── LoadBalancedTransportTest.php
│ │ ├── MailTransportTest.php
│ │ ├── SendmailTransportTest.php
│ │ └── StreamBufferTest.php
├── symfony
│ ├── browser-kit
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── Client.php
│ │ ├── Cookie.php
│ │ ├── CookieJar.php
│ │ ├── History.php
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── Request.php
│ │ ├── Response.php
│ │ ├── Tests
│ │ │ ├── ClientTest.php
│ │ │ ├── CookieJarTest.php
│ │ │ ├── CookieTest.php
│ │ │ ├── HistoryTest.php
│ │ │ ├── RequestTest.php
│ │ │ └── ResponseTest.php
│ │ ├── composer.json
│ │ └── phpunit.xml.dist
│ ├── console
│ │ ├── .gitignore
│ │ ├── Application.php
│ │ ├── CHANGELOG.md
│ │ ├── Command
│ │ │ ├── Command.php
│ │ │ ├── HelpCommand.php
│ │ │ ├── ListCommand.php
│ │ │ └── LockableTrait.php
│ │ ├── ConsoleEvents.php
│ │ ├── Descriptor
│ │ │ ├── ApplicationDescription.php
│ │ │ ├── Descriptor.php
│ │ │ ├── DescriptorInterface.php
│ │ │ ├── JsonDescriptor.php
│ │ │ ├── MarkdownDescriptor.php
│ │ │ ├── TextDescriptor.php
│ │ │ └── XmlDescriptor.php
│ │ ├── Event
│ │ │ ├── ConsoleCommandEvent.php
│ │ │ ├── ConsoleEvent.php
│ │ │ ├── ConsoleExceptionEvent.php
│ │ │ └── ConsoleTerminateEvent.php
│ │ ├── Exception
│ │ │ ├── CommandNotFoundException.php
│ │ │ ├── ExceptionInterface.php
│ │ │ ├── InvalidArgumentException.php
│ │ │ ├── InvalidOptionException.php
│ │ │ ├── LogicException.php
│ │ │ └── RuntimeException.php
│ │ ├── Formatter
│ │ │ ├── OutputFormatter.php
│ │ │ ├── OutputFormatterInterface.php
│ │ │ ├── OutputFormatterStyle.php
│ │ │ ├── OutputFormatterStyleInterface.php
│ │ │ └── OutputFormatterStyleStack.php
│ │ ├── Helper
│ │ │ ├── DebugFormatterHelper.php
│ │ │ ├── DescriptorHelper.php
│ │ │ ├── FormatterHelper.php
│ │ │ ├── Helper.php
│ │ │ ├── HelperInterface.php
│ │ │ ├── HelperSet.php
│ │ │ ├── InputAwareHelper.php
│ │ │ ├── ProcessHelper.php
│ │ │ ├── ProgressBar.php
│ │ │ ├── ProgressIndicator.php
│ │ │ ├── QuestionHelper.php
│ │ │ ├── SymfonyQuestionHelper.php
│ │ │ ├── Table.php
│ │ │ ├── TableCell.php
│ │ │ ├── TableSeparator.php
│ │ │ └── TableStyle.php
│ │ ├── Input
│ │ │ ├── ArgvInput.php
│ │ │ ├── ArrayInput.php
│ │ │ ├── Input.php
│ │ │ ├── InputArgument.php
│ │ │ ├── InputAwareInterface.php
│ │ │ ├── InputDefinition.php
│ │ │ ├── InputInterface.php
│ │ │ ├── InputOption.php
│ │ │ ├── StreamableInputInterface.php
│ │ │ └── StringInput.php
│ │ ├── LICENSE
│ │ ├── Logger
│ │ │ └── ConsoleLogger.php
│ │ ├── Output
│ │ │ ├── BufferedOutput.php
│ │ │ ├── ConsoleOutput.php
│ │ │ ├── ConsoleOutputInterface.php
│ │ │ ├── NullOutput.php
│ │ │ ├── Output.php
│ │ │ ├── OutputInterface.php
│ │ │ └── StreamOutput.php
│ │ ├── Question
│ │ │ ├── ChoiceQuestion.php
│ │ │ ├── ConfirmationQuestion.php
│ │ │ └── Question.php
│ │ ├── README.md
│ │ ├── Resources
│ │ │ └── bin
│ │ │ │ └── hiddeninput.exe
│ │ ├── Style
│ │ │ ├── OutputStyle.php
│ │ │ ├── StyleInterface.php
│ │ │ └── SymfonyStyle.php
│ │ ├── Terminal.php
│ │ ├── Tester
│ │ │ ├── ApplicationTester.php
│ │ │ └── CommandTester.php
│ │ ├── Tests
│ │ │ ├── ApplicationTest.php
│ │ │ ├── Command
│ │ │ │ ├── CommandTest.php
│ │ │ │ ├── HelpCommandTest.php
│ │ │ │ ├── ListCommandTest.php
│ │ │ │ └── LockableTraitTest.php
│ │ │ ├── Descriptor
│ │ │ │ ├── AbstractDescriptorTest.php
│ │ │ │ ├── JsonDescriptorTest.php
│ │ │ │ ├── MarkdownDescriptorTest.php
│ │ │ │ ├── ObjectsProvider.php
│ │ │ │ ├── TextDescriptorTest.php
│ │ │ │ └── XmlDescriptorTest.php
│ │ │ ├── Fixtures
│ │ │ │ ├── BarBucCommand.php
│ │ │ │ ├── DescriptorApplication1.php
│ │ │ │ ├── DescriptorApplication2.php
│ │ │ │ ├── DescriptorApplicationMbString.php
│ │ │ │ ├── DescriptorCommand1.php
│ │ │ │ ├── DescriptorCommand2.php
│ │ │ │ ├── DescriptorCommand3.php
│ │ │ │ ├── DescriptorCommandMbString.php
│ │ │ │ ├── DummyOutput.php
│ │ │ │ ├── Foo1Command.php
│ │ │ │ ├── Foo2Command.php
│ │ │ │ ├── Foo3Command.php
│ │ │ │ ├── Foo4Command.php
│ │ │ │ ├── Foo5Command.php
│ │ │ │ ├── Foo6Command.php
│ │ │ │ ├── FooCommand.php
│ │ │ │ ├── FooLock2Command.php
│ │ │ │ ├── FooLockCommand.php
│ │ │ │ ├── FooSubnamespaced1Command.php
│ │ │ │ ├── FooSubnamespaced2Command.php
│ │ │ │ ├── FoobarCommand.php
│ │ │ │ ├── Style
│ │ │ │ │ └── SymfonyStyle
│ │ │ │ │ │ ├── command
│ │ │ │ │ │ ├── command_0.php
│ │ │ │ │ │ ├── command_1.php
│ │ │ │ │ │ ├── command_10.php
│ │ │ │ │ │ ├── command_11.php
│ │ │ │ │ │ ├── command_12.php
│ │ │ │ │ │ ├── command_13.php
│ │ │ │ │ │ ├── command_14.php
│ │ │ │ │ │ ├── command_15.php
│ │ │ │ │ │ ├── command_16.php
│ │ │ │ │ │ ├── command_17.php
│ │ │ │ │ │ ├── command_2.php
│ │ │ │ │ │ ├── command_3.php
│ │ │ │ │ │ ├── command_4.php
│ │ │ │ │ │ ├── command_5.php
│ │ │ │ │ │ ├── command_6.php
│ │ │ │ │ │ ├── command_7.php
│ │ │ │ │ │ ├── command_8.php
│ │ │ │ │ │ ├── command_9.php
│ │ │ │ │ │ └── interactive_command_1.php
│ │ │ │ │ │ └── output
│ │ │ │ │ │ ├── interactive_output_1.txt
│ │ │ │ │ │ ├── output_0.txt
│ │ │ │ │ │ ├── output_1.txt
│ │ │ │ │ │ ├── output_10.txt
│ │ │ │ │ │ ├── output_11.txt
│ │ │ │ │ │ ├── output_12.txt
│ │ │ │ │ │ ├── output_13.txt
│ │ │ │ │ │ ├── output_14.txt
│ │ │ │ │ │ ├── output_15.txt
│ │ │ │ │ │ ├── output_16.txt
│ │ │ │ │ │ ├── output_17.txt
│ │ │ │ │ │ ├── output_2.txt
│ │ │ │ │ │ ├── output_3.txt
│ │ │ │ │ │ ├── output_4.txt
│ │ │ │ │ │ ├── output_5.txt
│ │ │ │ │ │ ├── output_6.txt
│ │ │ │ │ │ ├── output_7.txt
│ │ │ │ │ │ ├── output_8.txt
│ │ │ │ │ │ └── output_9.txt
│ │ │ │ ├── TestCommand.php
│ │ │ │ ├── application_1.json
│ │ │ │ ├── application_1.md
│ │ │ │ ├── application_1.txt
│ │ │ │ ├── application_1.xml
│ │ │ │ ├── application_2.json
│ │ │ │ ├── application_2.md
│ │ │ │ ├── application_2.txt
│ │ │ │ ├── application_2.xml
│ │ │ │ ├── application_gethelp.txt
│ │ │ │ ├── application_mbstring.md
│ │ │ │ ├── application_mbstring.txt
│ │ │ │ ├── application_renderexception1.txt
│ │ │ │ ├── application_renderexception2.txt
│ │ │ │ ├── application_renderexception3.txt
│ │ │ │ ├── application_renderexception3decorated.txt
│ │ │ │ ├── application_renderexception4.txt
│ │ │ │ ├── application_renderexception_doublewidth1.txt
│ │ │ │ ├── application_renderexception_doublewidth1decorated.txt
│ │ │ │ ├── application_renderexception_doublewidth2.txt
│ │ │ │ ├── application_run1.txt
│ │ │ │ ├── application_run2.txt
│ │ │ │ ├── application_run3.txt
│ │ │ │ ├── application_run4.txt
│ │ │ │ ├── command_1.json
│ │ │ │ ├── command_1.md
│ │ │ │ ├── command_1.txt
│ │ │ │ ├── command_1.xml
│ │ │ │ ├── command_2.json
│ │ │ │ ├── command_2.md
│ │ │ │ ├── command_2.txt
│ │ │ │ ├── command_2.xml
│ │ │ │ ├── command_mbstring.md
│ │ │ │ ├── command_mbstring.txt
│ │ │ │ ├── input_argument_1.json
│ │ │ │ ├── input_argument_1.md
│ │ │ │ ├── input_argument_1.txt
│ │ │ │ ├── input_argument_1.xml
│ │ │ │ ├── input_argument_2.json
│ │ │ │ ├── input_argument_2.md
│ │ │ │ ├── input_argument_2.txt
│ │ │ │ ├── input_argument_2.xml
│ │ │ │ ├── input_argument_3.json
│ │ │ │ ├── input_argument_3.md
│ │ │ │ ├── input_argument_3.txt
│ │ │ │ ├── input_argument_3.xml
│ │ │ │ ├── input_argument_4.json
│ │ │ │ ├── input_argument_4.md
│ │ │ │ ├── input_argument_4.txt
│ │ │ │ ├── input_argument_4.xml
│ │ │ │ ├── input_argument_with_style.json
│ │ │ │ ├── input_argument_with_style.md
│ │ │ │ ├── input_argument_with_style.txt
│ │ │ │ ├── input_argument_with_style.xml
│ │ │ │ ├── input_definition_1.json
│ │ │ │ ├── input_definition_1.md
│ │ │ │ ├── input_definition_1.txt
│ │ │ │ ├── input_definition_1.xml
│ │ │ │ ├── input_definition_2.json
│ │ │ │ ├── input_definition_2.md
│ │ │ │ ├── input_definition_2.txt
│ │ │ │ ├── input_definition_2.xml
│ │ │ │ ├── input_definition_3.json
│ │ │ │ ├── input_definition_3.md
│ │ │ │ ├── input_definition_3.txt
│ │ │ │ ├── input_definition_3.xml
│ │ │ │ ├── input_definition_4.json
│ │ │ │ ├── input_definition_4.md
│ │ │ │ ├── input_definition_4.txt
│ │ │ │ ├── input_definition_4.xml
│ │ │ │ ├── input_option_1.json
│ │ │ │ ├── input_option_1.md
│ │ │ │ ├── input_option_1.txt
│ │ │ │ ├── input_option_1.xml
│ │ │ │ ├── input_option_2.json
│ │ │ │ ├── input_option_2.md
│ │ │ │ ├── input_option_2.txt
│ │ │ │ ├── input_option_2.xml
│ │ │ │ ├── input_option_3.json
│ │ │ │ ├── input_option_3.md
│ │ │ │ ├── input_option_3.txt
│ │ │ │ ├── input_option_3.xml
│ │ │ │ ├── input_option_4.json
│ │ │ │ ├── input_option_4.md
│ │ │ │ ├── input_option_4.txt
│ │ │ │ ├── input_option_4.xml
│ │ │ │ ├── input_option_5.json
│ │ │ │ ├── input_option_5.md
│ │ │ │ ├── input_option_5.txt
│ │ │ │ ├── input_option_5.xml
│ │ │ │ ├── input_option_6.json
│ │ │ │ ├── input_option_6.md
│ │ │ │ ├── input_option_6.txt
│ │ │ │ ├── input_option_6.xml
│ │ │ │ ├── input_option_with_style.json
│ │ │ │ ├── input_option_with_style.md
│ │ │ │ ├── input_option_with_style.txt
│ │ │ │ ├── input_option_with_style.xml
│ │ │ │ ├── input_option_with_style_array.json
│ │ │ │ ├── input_option_with_style_array.md
│ │ │ │ ├── input_option_with_style_array.txt
│ │ │ │ └── input_option_with_style_array.xml
│ │ │ ├── Formatter
│ │ │ │ ├── OutputFormatterStyleStackTest.php
│ │ │ │ ├── OutputFormatterStyleTest.php
│ │ │ │ └── OutputFormatterTest.php
│ │ │ ├── Helper
│ │ │ │ ├── AbstractQuestionHelperTest.php
│ │ │ │ ├── FormatterHelperTest.php
│ │ │ │ ├── HelperSetTest.php
│ │ │ │ ├── HelperTest.php
│ │ │ │ ├── ProcessHelperTest.php
│ │ │ │ ├── ProgressBarTest.php
│ │ │ │ ├── ProgressIndicatorTest.php
│ │ │ │ ├── QuestionHelperTest.php
│ │ │ │ ├── SymfonyQuestionHelperTest.php
│ │ │ │ ├── TableStyleTest.php
│ │ │ │ └── TableTest.php
│ │ │ ├── Input
│ │ │ │ ├── ArgvInputTest.php
│ │ │ │ ├── ArrayInputTest.php
│ │ │ │ ├── InputArgumentTest.php
│ │ │ │ ├── InputDefinitionTest.php
│ │ │ │ ├── InputOptionTest.php
│ │ │ │ ├── InputTest.php
│ │ │ │ └── StringInputTest.php
│ │ │ ├── Logger
│ │ │ │ └── ConsoleLoggerTest.php
│ │ │ ├── Output
│ │ │ │ ├── ConsoleOutputTest.php
│ │ │ │ ├── NullOutputTest.php
│ │ │ │ ├── OutputTest.php
│ │ │ │ └── StreamOutputTest.php
│ │ │ ├── Style
│ │ │ │ └── SymfonyStyleTest.php
│ │ │ ├── TerminalTest.php
│ │ │ └── Tester
│ │ │ │ ├── ApplicationTesterTest.php
│ │ │ │ └── CommandTesterTest.php
│ │ ├── composer.json
│ │ └── phpunit.xml.dist
│ ├── css-selector
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── CssSelectorConverter.php
│ │ ├── Exception
│ │ │ ├── ExceptionInterface.php
│ │ │ ├── ExpressionErrorException.php
│ │ │ ├── InternalErrorException.php
│ │ │ ├── ParseException.php
│ │ │ └── SyntaxErrorException.php
│ │ ├── LICENSE
│ │ ├── Node
│ │ │ ├── AbstractNode.php
│ │ │ ├── AttributeNode.php
│ │ │ ├── ClassNode.php
│ │ │ ├── CombinedSelectorNode.php
│ │ │ ├── ElementNode.php
│ │ │ ├── FunctionNode.php
│ │ │ ├── HashNode.php
│ │ │ ├── NegationNode.php
│ │ │ ├── NodeInterface.php
│ │ │ ├── PseudoNode.php
│ │ │ ├── SelectorNode.php
│ │ │ └── Specificity.php
│ │ ├── Parser
│ │ │ ├── Handler
│ │ │ │ ├── CommentHandler.php
│ │ │ │ ├── HandlerInterface.php
│ │ │ │ ├── HashHandler.php
│ │ │ │ ├── IdentifierHandler.php
│ │ │ │ ├── NumberHandler.php
│ │ │ │ ├── StringHandler.php
│ │ │ │ └── WhitespaceHandler.php
│ │ │ ├── Parser.php
│ │ │ ├── ParserInterface.php
│ │ │ ├── Reader.php
│ │ │ ├── Shortcut
│ │ │ │ ├── ClassParser.php
│ │ │ │ ├── ElementParser.php
│ │ │ │ ├── EmptyStringParser.php
│ │ │ │ └── HashParser.php
│ │ │ ├── Token.php
│ │ │ ├── TokenStream.php
│ │ │ └── Tokenizer
│ │ │ │ ├── Tokenizer.php
│ │ │ │ ├── TokenizerEscaping.php
│ │ │ │ └── TokenizerPatterns.php
│ │ ├── README.md
│ │ ├── Tests
│ │ │ ├── CssSelectorConverterTest.php
│ │ │ ├── Node
│ │ │ │ ├── AbstractNodeTest.php
│ │ │ │ ├── AttributeNodeTest.php
│ │ │ │ ├── ClassNodeTest.php
│ │ │ │ ├── CombinedSelectorNodeTest.php
│ │ │ │ ├── ElementNodeTest.php
│ │ │ │ ├── FunctionNodeTest.php
│ │ │ │ ├── HashNodeTest.php
│ │ │ │ ├── NegationNodeTest.php
│ │ │ │ ├── PseudoNodeTest.php
│ │ │ │ ├── SelectorNodeTest.php
│ │ │ │ └── SpecificityTest.php
│ │ │ ├── Parser
│ │ │ │ ├── Handler
│ │ │ │ │ ├── AbstractHandlerTest.php
│ │ │ │ │ ├── CommentHandlerTest.php
│ │ │ │ │ ├── HashHandlerTest.php
│ │ │ │ │ ├── IdentifierHandlerTest.php
│ │ │ │ │ ├── NumberHandlerTest.php
│ │ │ │ │ ├── StringHandlerTest.php
│ │ │ │ │ └── WhitespaceHandlerTest.php
│ │ │ │ ├── ParserTest.php
│ │ │ │ ├── ReaderTest.php
│ │ │ │ ├── Shortcut
│ │ │ │ │ ├── ClassParserTest.php
│ │ │ │ │ ├── ElementParserTest.php
│ │ │ │ │ ├── EmptyStringParserTest.php
│ │ │ │ │ └── HashParserTest.php
│ │ │ │ └── TokenStreamTest.php
│ │ │ └── XPath
│ │ │ │ ├── Fixtures
│ │ │ │ ├── ids.html
│ │ │ │ ├── lang.xml
│ │ │ │ └── shakespear.html
│ │ │ │ └── TranslatorTest.php
│ │ ├── XPath
│ │ │ ├── Extension
│ │ │ │ ├── AbstractExtension.php
│ │ │ │ ├── AttributeMatchingExtension.php
│ │ │ │ ├── CombinationExtension.php
│ │ │ │ ├── ExtensionInterface.php
│ │ │ │ ├── FunctionExtension.php
│ │ │ │ ├── HtmlExtension.php
│ │ │ │ ├── NodeExtension.php
│ │ │ │ └── PseudoClassExtension.php
│ │ │ ├── Translator.php
│ │ │ ├── TranslatorInterface.php
│ │ │ └── XPathExpr.php
│ │ ├── composer.json
│ │ └── phpunit.xml.dist
│ ├── debug
│ │ ├── .gitignore
│ │ ├── BufferingLogger.php
│ │ ├── CHANGELOG.md
│ │ ├── Debug.php
│ │ ├── DebugClassLoader.php
│ │ ├── ErrorHandler.php
│ │ ├── Exception
│ │ │ ├── ClassNotFoundException.php
│ │ │ ├── ContextErrorException.php
│ │ │ ├── FatalErrorException.php
│ │ │ ├── FatalThrowableError.php
│ │ │ ├── FlattenException.php
│ │ │ ├── OutOfMemoryException.php
│ │ │ ├── SilencedErrorContext.php
│ │ │ ├── UndefinedFunctionException.php
│ │ │ └── UndefinedMethodException.php
│ │ ├── ExceptionHandler.php
│ │ ├── FatalErrorHandler
│ │ │ ├── ClassNotFoundFatalErrorHandler.php
│ │ │ ├── FatalErrorHandlerInterface.php
│ │ │ ├── UndefinedFunctionFatalErrorHandler.php
│ │ │ └── UndefinedMethodFatalErrorHandler.php
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── Resources
│ │ │ └── ext
│ │ │ │ ├── README.md
│ │ │ │ ├── config.m4
│ │ │ │ ├── config.w32
│ │ │ │ ├── php_symfony_debug.h
│ │ │ │ ├── symfony_debug.c
│ │ │ │ └── tests
│ │ │ │ ├── 001.phpt
│ │ │ │ ├── 002.phpt
│ │ │ │ ├── 002_1.phpt
│ │ │ │ └── 003.phpt
│ │ ├── Tests
│ │ │ ├── DebugClassLoaderTest.php
│ │ │ ├── ErrorHandlerTest.php
│ │ │ ├── Exception
│ │ │ │ └── FlattenExceptionTest.php
│ │ │ ├── ExceptionHandlerTest.php
│ │ │ ├── FatalErrorHandler
│ │ │ │ ├── ClassNotFoundFatalErrorHandlerTest.php
│ │ │ │ ├── UndefinedFunctionFatalErrorHandlerTest.php
│ │ │ │ └── UndefinedMethodFatalErrorHandlerTest.php
│ │ │ ├── Fixtures
│ │ │ │ ├── ClassAlias.php
│ │ │ │ ├── DeprecatedClass.php
│ │ │ │ ├── DeprecatedInterface.php
│ │ │ │ ├── NonDeprecatedInterface.php
│ │ │ │ ├── PEARClass.php
│ │ │ │ ├── ToStringThrower.php
│ │ │ │ ├── casemismatch.php
│ │ │ │ ├── notPsr0Bis.php
│ │ │ │ ├── psr4
│ │ │ │ │ └── Psr4CaseMismatch.php
│ │ │ │ └── reallyNotPsr0.php
│ │ │ ├── Fixtures2
│ │ │ │ └── RequiredTwice.php
│ │ │ ├── HeaderMock.php
│ │ │ └── MockExceptionHandler.php
│ │ ├── composer.json
│ │ └── phpunit.xml.dist
│ ├── dom-crawler
│ │ ├── .gitignore
│ │ ├── AbstractUriElement.php
│ │ ├── CHANGELOG.md
│ │ ├── Crawler.php
│ │ ├── Field
│ │ │ ├── ChoiceFormField.php
│ │ │ ├── FileFormField.php
│ │ │ ├── FormField.php
│ │ │ ├── InputFormField.php
│ │ │ └── TextareaFormField.php
│ │ ├── Form.php
│ │ ├── FormFieldRegistry.php
│ │ ├── Image.php
│ │ ├── LICENSE
│ │ ├── Link.php
│ │ ├── README.md
│ │ ├── Tests
│ │ │ ├── CrawlerTest.php
│ │ │ ├── Field
│ │ │ │ ├── ChoiceFormFieldTest.php
│ │ │ │ ├── FileFormFieldTest.php
│ │ │ │ ├── FormFieldTest.php
│ │ │ │ ├── FormFieldTestCase.php
│ │ │ │ ├── InputFormFieldTest.php
│ │ │ │ └── TextareaFormFieldTest.php
│ │ │ ├── Fixtures
│ │ │ │ ├── no-extension
│ │ │ │ └── windows-1250.html
│ │ │ ├── FormTest.php
│ │ │ ├── ImageTest.php
│ │ │ └── LinkTest.php
│ │ ├── composer.json
│ │ └── phpunit.xml.dist
│ ├── event-dispatcher
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── ContainerAwareEventDispatcher.php
│ │ ├── Debug
│ │ │ ├── TraceableEventDispatcher.php
│ │ │ ├── TraceableEventDispatcherInterface.php
│ │ │ └── WrappedListener.php
│ │ ├── DependencyInjection
│ │ │ └── RegisterListenersPass.php
│ │ ├── Event.php
│ │ ├── EventDispatcher.php
│ │ ├── EventDispatcherInterface.php
│ │ ├── EventSubscriberInterface.php
│ │ ├── GenericEvent.php
│ │ ├── ImmutableEventDispatcher.php
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── Tests
│ │ │ ├── AbstractEventDispatcherTest.php
│ │ │ ├── ContainerAwareEventDispatcherTest.php
│ │ │ ├── Debug
│ │ │ │ └── TraceableEventDispatcherTest.php
│ │ │ ├── DependencyInjection
│ │ │ │ └── RegisterListenersPassTest.php
│ │ │ ├── EventDispatcherTest.php
│ │ │ ├── EventTest.php
│ │ │ ├── GenericEventTest.php
│ │ │ └── ImmutableEventDispatcherTest.php
│ │ ├── composer.json
│ │ └── phpunit.xml.dist
│ ├── finder
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── Comparator
│ │ │ ├── Comparator.php
│ │ │ ├── DateComparator.php
│ │ │ └── NumberComparator.php
│ │ ├── Exception
│ │ │ ├── AccessDeniedException.php
│ │ │ └── ExceptionInterface.php
│ │ ├── Finder.php
│ │ ├── Glob.php
│ │ ├── Iterator
│ │ │ ├── CustomFilterIterator.php
│ │ │ ├── DateRangeFilterIterator.php
│ │ │ ├── DepthRangeFilterIterator.php
│ │ │ ├── ExcludeDirectoryFilterIterator.php
│ │ │ ├── FileTypeFilterIterator.php
│ │ │ ├── FilecontentFilterIterator.php
│ │ │ ├── FilenameFilterIterator.php
│ │ │ ├── FilterIterator.php
│ │ │ ├── MultiplePcreFilterIterator.php
│ │ │ ├── PathFilterIterator.php
│ │ │ ├── RecursiveDirectoryIterator.php
│ │ │ ├── SizeRangeFilterIterator.php
│ │ │ └── SortableIterator.php
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── SplFileInfo.php
│ │ ├── Tests
│ │ │ ├── Comparator
│ │ │ │ ├── ComparatorTest.php
│ │ │ │ ├── DateComparatorTest.php
│ │ │ │ └── NumberComparatorTest.php
│ │ │ ├── FinderTest.php
│ │ │ ├── Fixtures
│ │ │ │ ├── A
│ │ │ │ │ ├── B
│ │ │ │ │ │ ├── C
│ │ │ │ │ │ │ └── abc.dat
│ │ │ │ │ │ └── ab.dat
│ │ │ │ │ └── a.dat
│ │ │ │ ├── copy
│ │ │ │ │ └── A
│ │ │ │ │ │ ├── B
│ │ │ │ │ │ ├── C
│ │ │ │ │ │ │ └── abc.dat.copy
│ │ │ │ │ │ └── ab.dat.copy
│ │ │ │ │ │ └── a.dat.copy
│ │ │ │ ├── dolor.txt
│ │ │ │ ├── ipsum.txt
│ │ │ │ ├── lorem.txt
│ │ │ │ ├── one
│ │ │ │ │ ├── a
│ │ │ │ │ └── b
│ │ │ │ │ │ ├── c.neon
│ │ │ │ │ │ └── d.neon
│ │ │ │ ├── r+e.gex[c]a(r)s
│ │ │ │ │ └── dir
│ │ │ │ │ │ └── bar.dat
│ │ │ │ └── with space
│ │ │ │ │ └── foo.txt
│ │ │ ├── GlobTest.php
│ │ │ └── Iterator
│ │ │ │ ├── CustomFilterIteratorTest.php
│ │ │ │ ├── DateRangeFilterIteratorTest.php
│ │ │ │ ├── DepthRangeFilterIteratorTest.php
│ │ │ │ ├── ExcludeDirectoryFilterIteratorTest.php
│ │ │ │ ├── FileTypeFilterIteratorTest.php
│ │ │ │ ├── FilecontentFilterIteratorTest.php
│ │ │ │ ├── FilenameFilterIteratorTest.php
│ │ │ │ ├── FilterIteratorTest.php
│ │ │ │ ├── Iterator.php
│ │ │ │ ├── IteratorTestCase.php
│ │ │ │ ├── MockFileListIterator.php
│ │ │ │ ├── MockSplFileInfo.php
│ │ │ │ ├── MultiplePcreFilterIteratorTest.php
│ │ │ │ ├── PathFilterIteratorTest.php
│ │ │ │ ├── RealIteratorTestCase.php
│ │ │ │ ├── RecursiveDirectoryIteratorTest.php
│ │ │ │ ├── SizeRangeFilterIteratorTest.php
│ │ │ │ └── SortableIteratorTest.php
│ │ ├── composer.json
│ │ └── phpunit.xml.dist
│ ├── polyfill-mbstring
│ │ ├── LICENSE
│ │ ├── Mbstring.php
│ │ ├── README.md
│ │ ├── Resources
│ │ │ └── unidata
│ │ │ │ ├── lowerCase.php
│ │ │ │ └── upperCase.php
│ │ ├── bootstrap.php
│ │ └── composer.json
│ └── yaml
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── Command
│ │ └── LintCommand.php
│ │ ├── Dumper.php
│ │ ├── Escaper.php
│ │ ├── Exception
│ │ ├── DumpException.php
│ │ ├── ExceptionInterface.php
│ │ ├── ParseException.php
│ │ └── RuntimeException.php
│ │ ├── Inline.php
│ │ ├── LICENSE
│ │ ├── Parser.php
│ │ ├── README.md
│ │ ├── Tests
│ │ ├── Command
│ │ │ └── LintCommandTest.php
│ │ ├── DumperTest.php
│ │ ├── Fixtures
│ │ │ ├── YtsAnchorAlias.yml
│ │ │ ├── YtsBasicTests.yml
│ │ │ ├── YtsBlockMapping.yml
│ │ │ ├── YtsDocumentSeparator.yml
│ │ │ ├── YtsErrorTests.yml
│ │ │ ├── YtsFlowCollections.yml
│ │ │ ├── YtsFoldedScalars.yml
│ │ │ ├── YtsNullsAndEmpties.yml
│ │ │ ├── YtsSpecificationExamples.yml
│ │ │ ├── YtsTypeTransfers.yml
│ │ │ ├── arrow.gif
│ │ │ ├── embededPhp.yml
│ │ │ ├── escapedCharacters.yml
│ │ │ ├── index.yml
│ │ │ ├── multiple_lines_as_literal_block.yml
│ │ │ ├── sfComments.yml
│ │ │ ├── sfCompact.yml
│ │ │ ├── sfMergeKey.yml
│ │ │ ├── sfObjects.yml
│ │ │ ├── sfQuotes.yml
│ │ │ ├── sfTests.yml
│ │ │ └── unindentedCollections.yml
│ │ ├── InlineTest.php
│ │ ├── ParseExceptionTest.php
│ │ ├── ParserTest.php
│ │ └── YamlTest.php
│ │ ├── Unescaper.php
│ │ ├── Yaml.php
│ │ ├── composer.json
│ │ └── phpunit.xml.dist
├── webmozart
│ └── assert
│ │ ├── .composer-auth.json
│ │ ├── .gitignore
│ │ ├── .styleci.yml
│ │ ├── .travis.yml
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── appveyor.yml
│ │ ├── composer.json
│ │ ├── phpunit.xml.dist
│ │ ├── src
│ │ └── Assert.php
│ │ └── tests
│ │ └── AssertTest.php
├── workerman
│ ├── gateway-worker
│ │ ├── .gitignore
│ │ ├── MIT-LICENSE.txt
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ │ ├── BusinessWorker.php
│ │ │ ├── Gateway.php
│ │ │ ├── Lib
│ │ │ ├── Context.php
│ │ │ ├── Db.php
│ │ │ ├── DbConnection.php
│ │ │ └── Gateway.php
│ │ │ ├── Protocols
│ │ │ └── GatewayProtocol.php
│ │ │ └── Register.php
│ └── workerman
│ │ ├── .gitignore
│ │ ├── Autoloader.php
│ │ ├── Connection
│ │ ├── AsyncTcpConnection.php
│ │ ├── ConnectionInterface.php
│ │ ├── TcpConnection.php
│ │ └── UdpConnection.php
│ │ ├── Events
│ │ ├── Ev.php
│ │ ├── Event.php
│ │ ├── EventInterface.php
│ │ ├── Libevent.php
│ │ ├── React.php
│ │ ├── React
│ │ │ ├── ExtEventLoop.php
│ │ │ ├── LibEventLoop.php
│ │ │ └── StreamSelectLoop.php
│ │ └── Select.php
│ │ ├── Lib
│ │ ├── Constants.php
│ │ └── Timer.php
│ │ ├── MIT-LICENSE.txt
│ │ ├── Protocols
│ │ ├── Frame.php
│ │ ├── Http.php
│ │ ├── Http
│ │ │ └── mime.types
│ │ ├── ProtocolInterface.php
│ │ ├── Text.php
│ │ ├── Websocket.php
│ │ └── Ws.php
│ │ ├── README.md
│ │ ├── WebServer.php
│ │ ├── Worker.php
│ │ └── composer.json
└── yiisoft
│ ├── extensions.php
│ ├── yii2-bootstrap
│ ├── ActiveField.php
│ ├── ActiveForm.php
│ ├── Alert.php
│ ├── BaseHtml.php
│ ├── BootstrapAsset.php
│ ├── BootstrapPluginAsset.php
│ ├── BootstrapThemeAsset.php
│ ├── BootstrapWidgetTrait.php
│ ├── Button.php
│ ├── ButtonDropdown.php
│ ├── ButtonGroup.php
│ ├── CHANGELOG.md
│ ├── Carousel.php
│ ├── Collapse.php
│ ├── Dropdown.php
│ ├── Html.php
│ ├── InputWidget.php
│ ├── Makefile
│ ├── Modal.php
│ ├── Nav.php
│ ├── NavBar.php
│ ├── Progress.php
│ ├── README.md
│ ├── Tabs.php
│ ├── ToggleButtonGroup.php
│ ├── Widget.php
│ └── composer.json
│ ├── yii2-composer
│ ├── CHANGELOG.md
│ ├── Installer.php
│ ├── LICENSE.md
│ ├── Plugin.php
│ ├── README.md
│ └── composer.json
│ ├── yii2-debug
│ ├── CHANGELOG.md
│ ├── DebugAsset.php
│ ├── LogTarget.php
│ ├── Module.php
│ ├── Panel.php
│ ├── README.md
│ ├── TimelineAsset.php
│ ├── actions
│ │ └── db
│ │ │ └── ExplainAction.php
│ ├── assets
│ │ ├── arrow.svg
│ │ ├── main.css
│ │ ├── maximize.svg
│ │ ├── timeline.css
│ │ ├── timeline.js
│ │ ├── toolbar.css
│ │ └── toolbar.js
│ ├── components
│ │ ├── TimelineDataProvider.php
│ │ └── search
│ │ │ ├── Filter.php
│ │ │ └── matchers
│ │ │ ├── Base.php
│ │ │ ├── GreaterThan.php
│ │ │ ├── GreaterThanOrEqual.php
│ │ │ ├── LowerThan.php
│ │ │ ├── MatcherInterface.php
│ │ │ └── SameAs.php
│ ├── composer.json
│ ├── controllers
│ │ └── DefaultController.php
│ ├── models
│ │ └── search
│ │ │ ├── Base.php
│ │ │ ├── Db.php
│ │ │ ├── Debug.php
│ │ │ ├── Log.php
│ │ │ ├── Mail.php
│ │ │ ├── Profile.php
│ │ │ └── Timeline.php
│ ├── panels
│ │ ├── AssetPanel.php
│ │ ├── ConfigPanel.php
│ │ ├── DbPanel.php
│ │ ├── LogPanel.php
│ │ ├── MailPanel.php
│ │ ├── ProfilingPanel.php
│ │ ├── RequestPanel.php
│ │ └── TimelinePanel.php
│ └── views
│ │ ├── default
│ │ ├── index.php
│ │ ├── panels
│ │ │ ├── assets
│ │ │ │ ├── detail.php
│ │ │ │ └── summary.php
│ │ │ ├── config
│ │ │ │ ├── detail.php
│ │ │ │ ├── summary.php
│ │ │ │ └── table.php
│ │ │ ├── db
│ │ │ │ ├── detail.php
│ │ │ │ └── summary.php
│ │ │ ├── log
│ │ │ │ ├── detail.php
│ │ │ │ └── summary.php
│ │ │ ├── mail
│ │ │ │ ├── _item.php
│ │ │ │ ├── detail.php
│ │ │ │ └── summary.php
│ │ │ ├── profile
│ │ │ │ ├── detail.php
│ │ │ │ └── summary.php
│ │ │ ├── request
│ │ │ │ ├── detail.php
│ │ │ │ ├── summary.php
│ │ │ │ └── table.php
│ │ │ └── timeline
│ │ │ │ └── detail.php
│ │ ├── toolbar.php
│ │ └── view.php
│ │ └── layouts
│ │ └── main.php
│ ├── yii2-faker
│ ├── CHANGELOG.md
│ ├── FixtureController.php
│ ├── LICENSE.md
│ ├── README.md
│ └── composer.json
│ ├── yii2-gii
│ ├── CHANGELOG.md
│ ├── CodeFile.php
│ ├── Generator.php
│ ├── GiiAsset.php
│ ├── Makefile
│ ├── Module.php
│ ├── README.md
│ ├── TypeAheadAsset.php
│ ├── assets
│ │ ├── gii.js
│ │ ├── logo.png
│ │ └── main.css
│ ├── components
│ │ ├── ActiveField.php
│ │ └── DiffRendererHtmlInline.php
│ ├── composer.json
│ ├── console
│ │ ├── GenerateAction.php
│ │ └── GenerateController.php
│ ├── controllers
│ │ └── DefaultController.php
│ ├── generators
│ │ ├── controller
│ │ │ ├── Generator.php
│ │ │ ├── default
│ │ │ │ ├── controller.php
│ │ │ │ └── view.php
│ │ │ └── form.php
│ │ ├── crud
│ │ │ ├── Generator.php
│ │ │ ├── default
│ │ │ │ ├── controller.php
│ │ │ │ ├── search.php
│ │ │ │ └── views
│ │ │ │ │ ├── _form.php
│ │ │ │ │ ├── _search.php
│ │ │ │ │ ├── create.php
│ │ │ │ │ ├── index.php
│ │ │ │ │ ├── update.php
│ │ │ │ │ └── view.php
│ │ │ └── form.php
│ │ ├── extension
│ │ │ ├── Generator.php
│ │ │ ├── default
│ │ │ │ ├── AutoloadExample.php
│ │ │ │ ├── README.md
│ │ │ │ └── composer.json
│ │ │ └── form.php
│ │ ├── form
│ │ │ ├── Generator.php
│ │ │ ├── default
│ │ │ │ ├── action.php
│ │ │ │ └── form.php
│ │ │ └── form.php
│ │ ├── model
│ │ │ ├── Generator.php
│ │ │ ├── default
│ │ │ │ ├── model.php
│ │ │ │ └── query.php
│ │ │ └── form.php
│ │ └── module
│ │ │ ├── Generator.php
│ │ │ ├── default
│ │ │ ├── controller.php
│ │ │ ├── module.php
│ │ │ └── view.php
│ │ │ └── form.php
│ └── views
│ │ ├── default
│ │ ├── diff.php
│ │ ├── index.php
│ │ ├── view.php
│ │ └── view
│ │ │ ├── files.php
│ │ │ └── results.php
│ │ └── layouts
│ │ ├── generator.php
│ │ └── main.php
│ ├── yii2-swiftmailer
│ ├── CHANGELOG.md
│ ├── LICENSE.md
│ ├── Logger.php
│ ├── Mailer.php
│ ├── Makefile
│ ├── Message.php
│ ├── README.md
│ └── composer.json
│ └── yii2
│ ├── .gitignore
│ ├── .htaccess
│ ├── BaseYii.php
│ ├── CHANGELOG.md
│ ├── LICENSE.md
│ ├── README.md
│ ├── UPGRADE.md
│ ├── Yii.php
│ ├── assets
│ ├── yii.activeForm.js
│ ├── yii.captcha.js
│ ├── yii.gridView.js
│ ├── yii.js
│ └── yii.validation.js
│ ├── base
│ ├── Action.php
│ ├── ActionEvent.php
│ ├── ActionFilter.php
│ ├── Application.php
│ ├── ArrayAccessTrait.php
│ ├── Arrayable.php
│ ├── ArrayableTrait.php
│ ├── Behavior.php
│ ├── BootstrapInterface.php
│ ├── Component.php
│ ├── Configurable.php
│ ├── Controller.php
│ ├── DynamicModel.php
│ ├── ErrorException.php
│ ├── ErrorHandler.php
│ ├── Event.php
│ ├── Exception.php
│ ├── ExitException.php
│ ├── InlineAction.php
│ ├── InvalidCallException.php
│ ├── InvalidConfigException.php
│ ├── InvalidParamException.php
│ ├── InvalidRouteException.php
│ ├── InvalidValueException.php
│ ├── Model.php
│ ├── ModelEvent.php
│ ├── Module.php
│ ├── NotSupportedException.php
│ ├── Object.php
│ ├── Request.php
│ ├── Response.php
│ ├── Security.php
│ ├── Theme.php
│ ├── UnknownClassException.php
│ ├── UnknownMethodException.php
│ ├── UnknownPropertyException.php
│ ├── UserException.php
│ ├── View.php
│ ├── ViewContextInterface.php
│ ├── ViewEvent.php
│ ├── ViewNotFoundException.php
│ ├── ViewRenderer.php
│ └── Widget.php
│ ├── behaviors
│ ├── AttributeBehavior.php
│ ├── AttributeTypecastBehavior.php
│ ├── BlameableBehavior.php
│ ├── SluggableBehavior.php
│ └── TimestampBehavior.php
│ ├── caching
│ ├── ApcCache.php
│ ├── ArrayCache.php
│ ├── Cache.php
│ ├── ChainedDependency.php
│ ├── DbCache.php
│ ├── DbDependency.php
│ ├── Dependency.php
│ ├── DummyCache.php
│ ├── ExpressionDependency.php
│ ├── FileCache.php
│ ├── FileDependency.php
│ ├── MemCache.php
│ ├── MemCacheServer.php
│ ├── TagDependency.php
│ ├── WinCache.php
│ ├── XCache.php
│ ├── ZendDataCache.php
│ └── migrations
│ │ ├── m150909_153426_cache_init.php
│ │ ├── schema-mssql.sql
│ │ ├── schema-mysql.sql
│ │ ├── schema-oci.sql
│ │ ├── schema-pgsql.sql
│ │ └── schema-sqlite.sql
│ ├── captcha
│ ├── Captcha.php
│ ├── CaptchaAction.php
│ ├── CaptchaAsset.php
│ ├── CaptchaValidator.php
│ ├── SpicyRice.md
│ └── SpicyRice.ttf
│ ├── classes.php
│ ├── composer.json
│ ├── console
│ ├── Application.php
│ ├── Controller.php
│ ├── ErrorHandler.php
│ ├── Exception.php
│ ├── Markdown.php
│ ├── Request.php
│ ├── Response.php
│ └── controllers
│ │ ├── AssetController.php
│ │ ├── BaseMigrateController.php
│ │ ├── CacheController.php
│ │ ├── FixtureController.php
│ │ ├── HelpController.php
│ │ ├── MessageController.php
│ │ ├── MigrateController.php
│ │ └── ServeController.php
│ ├── data
│ ├── ActiveDataProvider.php
│ ├── ArrayDataProvider.php
│ ├── BaseDataProvider.php
│ ├── DataProviderInterface.php
│ ├── Pagination.php
│ ├── Sort.php
│ └── SqlDataProvider.php
│ ├── db
│ ├── ActiveQuery.php
│ ├── ActiveQueryInterface.php
│ ├── ActiveQueryTrait.php
│ ├── ActiveRecord.php
│ ├── ActiveRecordInterface.php
│ ├── ActiveRelationTrait.php
│ ├── AfterSaveEvent.php
│ ├── BaseActiveRecord.php
│ ├── BatchQueryResult.php
│ ├── ColumnSchema.php
│ ├── ColumnSchemaBuilder.php
│ ├── Command.php
│ ├── Connection.php
│ ├── DataReader.php
│ ├── Exception.php
│ ├── Expression.php
│ ├── IntegrityException.php
│ ├── Migration.php
│ ├── MigrationInterface.php
│ ├── Query.php
│ ├── QueryBuilder.php
│ ├── QueryInterface.php
│ ├── QueryTrait.php
│ ├── Schema.php
│ ├── SchemaBuilderTrait.php
│ ├── StaleObjectException.php
│ ├── TableSchema.php
│ ├── Transaction.php
│ ├── cubrid
│ │ ├── ColumnSchemaBuilder.php
│ │ ├── QueryBuilder.php
│ │ └── Schema.php
│ ├── mssql
│ │ ├── PDO.php
│ │ ├── QueryBuilder.php
│ │ ├── Schema.php
│ │ ├── SqlsrvPDO.php
│ │ └── TableSchema.php
│ ├── mysql
│ │ ├── ColumnSchemaBuilder.php
│ │ ├── QueryBuilder.php
│ │ └── Schema.php
│ ├── oci
│ │ ├── ColumnSchemaBuilder.php
│ │ ├── QueryBuilder.php
│ │ └── Schema.php
│ ├── pgsql
│ │ ├── QueryBuilder.php
│ │ └── Schema.php
│ └── sqlite
│ │ ├── ColumnSchemaBuilder.php
│ │ ├── QueryBuilder.php
│ │ └── Schema.php
│ ├── di
│ ├── Container.php
│ ├── Instance.php
│ ├── NotInstantiableException.php
│ └── ServiceLocator.php
│ ├── filters
│ ├── AccessControl.php
│ ├── AccessRule.php
│ ├── ContentNegotiator.php
│ ├── Cors.php
│ ├── HttpCache.php
│ ├── PageCache.php
│ ├── RateLimitInterface.php
│ ├── RateLimiter.php
│ ├── VerbFilter.php
│ └── auth
│ │ ├── AuthInterface.php
│ │ ├── AuthMethod.php
│ │ ├── CompositeAuth.php
│ │ ├── HttpBasicAuth.php
│ │ ├── HttpBearerAuth.php
│ │ └── QueryParamAuth.php
│ ├── grid
│ ├── ActionColumn.php
│ ├── CheckboxColumn.php
│ ├── Column.php
│ ├── DataColumn.php
│ ├── GridView.php
│ ├── GridViewAsset.php
│ └── SerialColumn.php
│ ├── helpers
│ ├── ArrayHelper.php
│ ├── BaseArrayHelper.php
│ ├── BaseConsole.php
│ ├── BaseFileHelper.php
│ ├── BaseFormatConverter.php
│ ├── BaseHtml.php
│ ├── BaseHtmlPurifier.php
│ ├── BaseInflector.php
│ ├── BaseJson.php
│ ├── BaseMarkdown.php
│ ├── BaseStringHelper.php
│ ├── BaseUrl.php
│ ├── BaseVarDumper.php
│ ├── Console.php
│ ├── FileHelper.php
│ ├── FormatConverter.php
│ ├── Html.php
│ ├── HtmlPurifier.php
│ ├── Inflector.php
│ ├── Json.php
│ ├── Markdown.php
│ ├── ReplaceArrayValue.php
│ ├── StringHelper.php
│ ├── UnsetArrayValue.php
│ ├── Url.php
│ ├── VarDumper.php
│ └── mimeTypes.php
│ ├── i18n
│ ├── DbMessageSource.php
│ ├── Formatter.php
│ ├── GettextFile.php
│ ├── GettextMessageSource.php
│ ├── GettextMoFile.php
│ ├── GettextPoFile.php
│ ├── I18N.php
│ ├── MessageFormatter.php
│ ├── MessageSource.php
│ ├── MissingTranslationEvent.php
│ ├── PhpMessageSource.php
│ └── migrations
│ │ ├── m150207_210500_i18n_init.php
│ │ ├── schema-mssql.sql
│ │ ├── schema-mysql.sql
│ │ ├── schema-oci.sql
│ │ ├── schema-pgsql.sql
│ │ └── schema-sqlite.sql
│ ├── log
│ ├── DbTarget.php
│ ├── Dispatcher.php
│ ├── EmailTarget.php
│ ├── FileTarget.php
│ ├── Logger.php
│ ├── SyslogTarget.php
│ ├── Target.php
│ └── migrations
│ │ ├── m141106_185632_log_init.php
│ │ ├── schema-mssql.sql
│ │ ├── schema-mysql.sql
│ │ ├── schema-oci.sql
│ │ ├── schema-pgsql.sql
│ │ └── schema-sqlite.sql
│ ├── mail
│ ├── BaseMailer.php
│ ├── BaseMessage.php
│ ├── MailEvent.php
│ ├── MailerInterface.php
│ └── MessageInterface.php
│ ├── messages
│ ├── ar
│ │ └── yii.php
│ ├── az
│ │ └── yii.php
│ ├── bg
│ │ └── yii.php
│ ├── bs
│ │ └── yii.php
│ ├── ca
│ │ └── yii.php
│ ├── config.php
│ ├── cs
│ │ └── yii.php
│ ├── da
│ │ └── yii.php
│ ├── de
│ │ └── yii.php
│ ├── el
│ │ └── yii.php
│ ├── es
│ │ └── yii.php
│ ├── et
│ │ └── yii.php
│ ├── fa
│ │ └── yii.php
│ ├── fi
│ │ └── yii.php
│ ├── fr
│ │ └── yii.php
│ ├── he
│ │ └── yii.php
│ ├── hr
│ │ └── yii.php
│ ├── hu
│ │ └── yii.php
│ ├── id
│ │ └── yii.php
│ ├── it
│ │ └── yii.php
│ ├── ja
│ │ └── yii.php
│ ├── ka
│ │ └── yii.php
│ ├── kk
│ │ └── yii.php
│ ├── ko
│ │ └── yii.php
│ ├── lt
│ │ └── yii.php
│ ├── lv
│ │ └── yii.php
│ ├── ms
│ │ └── yii.php
│ ├── nb-NO
│ │ └── yii.php
│ ├── nl
│ │ └── yii.php
│ ├── pl
│ │ └── yii.php
│ ├── pt-BR
│ │ └── yii.php
│ ├── pt
│ │ └── yii.php
│ ├── ro
│ │ └── yii.php
│ ├── ru
│ │ └── yii.php
│ ├── sk
│ │ └── yii.php
│ ├── sl
│ │ └── yii.php
│ ├── sr-Latn
│ │ └── yii.php
│ ├── sr
│ │ └── yii.php
│ ├── sv
│ │ └── yii.php
│ ├── tg
│ │ └── yii.php
│ ├── th
│ │ └── yii.php
│ ├── tr
│ │ └── yii.php
│ ├── uk
│ │ └── yii.php
│ ├── uz
│ │ └── yii.php
│ ├── vi
│ │ └── yii.php
│ ├── zh-CN
│ │ └── yii.php
│ └── zh-TW
│ │ └── yii.php
│ ├── mutex
│ ├── DbMutex.php
│ ├── FileMutex.php
│ ├── Mutex.php
│ ├── MysqlMutex.php
│ ├── OracleMutex.php
│ └── PgsqlMutex.php
│ ├── rbac
│ ├── Assignment.php
│ ├── BaseManager.php
│ ├── CheckAccessInterface.php
│ ├── DbManager.php
│ ├── Item.php
│ ├── ManagerInterface.php
│ ├── Permission.php
│ ├── PhpManager.php
│ ├── Role.php
│ ├── Rule.php
│ └── migrations
│ │ ├── m140506_102106_rbac_init.php
│ │ ├── schema-mssql.sql
│ │ ├── schema-mysql.sql
│ │ ├── schema-oci.sql
│ │ ├── schema-pgsql.sql
│ │ └── schema-sqlite.sql
│ ├── requirements
│ ├── YiiRequirementChecker.php
│ ├── requirements.php
│ └── views
│ │ ├── console
│ │ └── index.php
│ │ └── web
│ │ ├── css.php
│ │ └── index.php
│ ├── rest
│ ├── Action.php
│ ├── ActiveController.php
│ ├── Controller.php
│ ├── CreateAction.php
│ ├── DeleteAction.php
│ ├── IndexAction.php
│ ├── OptionsAction.php
│ ├── Serializer.php
│ ├── UpdateAction.php
│ ├── UrlRule.php
│ └── ViewAction.php
│ ├── test
│ ├── ActiveFixture.php
│ ├── ArrayFixture.php
│ ├── BaseActiveFixture.php
│ ├── DbFixture.php
│ ├── Fixture.php
│ ├── FixtureTrait.php
│ └── InitDbFixture.php
│ ├── validators
│ ├── BooleanValidator.php
│ ├── CompareValidator.php
│ ├── DateValidator.php
│ ├── DefaultValueValidator.php
│ ├── EachValidator.php
│ ├── EmailValidator.php
│ ├── ExistValidator.php
│ ├── FileValidator.php
│ ├── FilterValidator.php
│ ├── ImageValidator.php
│ ├── InlineValidator.php
│ ├── IpValidator.php
│ ├── NumberValidator.php
│ ├── PunycodeAsset.php
│ ├── RangeValidator.php
│ ├── RegularExpressionValidator.php
│ ├── RequiredValidator.php
│ ├── SafeValidator.php
│ ├── StringValidator.php
│ ├── UniqueValidator.php
│ ├── UrlValidator.php
│ ├── ValidationAsset.php
│ └── Validator.php
│ ├── views
│ ├── _addColumns.php
│ ├── _addForeignKeys.php
│ ├── _createTable.php
│ ├── _dropColumns.php
│ ├── _dropForeignKeys.php
│ ├── _dropTable.php
│ ├── _foreignTables.php
│ ├── addColumnMigration.php
│ ├── createJunctionMigration.php
│ ├── createTableMigration.php
│ ├── dropColumnMigration.php
│ ├── dropTableMigration.php
│ ├── errorHandler
│ │ ├── callStackItem.php
│ │ ├── error.php
│ │ ├── exception.php
│ │ └── previousException.php
│ ├── messageConfig.php
│ └── migration.php
│ ├── web
│ ├── Application.php
│ ├── AssetBundle.php
│ ├── AssetConverter.php
│ ├── AssetConverterInterface.php
│ ├── AssetManager.php
│ ├── BadRequestHttpException.php
│ ├── CacheSession.php
│ ├── CompositeUrlRule.php
│ ├── ConflictHttpException.php
│ ├── Controller.php
│ ├── Cookie.php
│ ├── CookieCollection.php
│ ├── DbSession.php
│ ├── ErrorAction.php
│ ├── ErrorHandler.php
│ ├── ForbiddenHttpException.php
│ ├── GoneHttpException.php
│ ├── GroupUrlRule.php
│ ├── HeaderCollection.php
│ ├── HtmlResponseFormatter.php
│ ├── HttpException.php
│ ├── IdentityInterface.php
│ ├── JqueryAsset.php
│ ├── JsExpression.php
│ ├── JsonParser.php
│ ├── JsonResponseFormatter.php
│ ├── Link.php
│ ├── Linkable.php
│ ├── MethodNotAllowedHttpException.php
│ ├── MultiFieldSession.php
│ ├── MultipartFormDataParser.php
│ ├── NotAcceptableHttpException.php
│ ├── NotFoundHttpException.php
│ ├── Request.php
│ ├── RequestParserInterface.php
│ ├── Response.php
│ ├── ResponseFormatterInterface.php
│ ├── ServerErrorHttpException.php
│ ├── Session.php
│ ├── SessionIterator.php
│ ├── TooManyRequestsHttpException.php
│ ├── UnauthorizedHttpException.php
│ ├── UnprocessableEntityHttpException.php
│ ├── UnsupportedMediaTypeHttpException.php
│ ├── UploadedFile.php
│ ├── UrlManager.php
│ ├── UrlNormalizer.php
│ ├── UrlNormalizerRedirectException.php
│ ├── UrlRule.php
│ ├── UrlRuleInterface.php
│ ├── User.php
│ ├── UserEvent.php
│ ├── View.php
│ ├── ViewAction.php
│ ├── XmlResponseFormatter.php
│ ├── YiiAsset.php
│ └── migrations
│ │ ├── m160313_153426_session_init.php
│ │ ├── schema-mssql.sql
│ │ ├── schema-mysql.sql
│ │ ├── schema-oci.sql
│ │ ├── schema-pgsql.sql
│ │ └── schema-sqlite.sql
│ ├── widgets
│ ├── ActiveField.php
│ ├── ActiveForm.php
│ ├── ActiveFormAsset.php
│ ├── BaseListView.php
│ ├── Block.php
│ ├── Breadcrumbs.php
│ ├── ContentDecorator.php
│ ├── DetailView.php
│ ├── FragmentCache.php
│ ├── InputWidget.php
│ ├── LinkPager.php
│ ├── LinkSorter.php
│ ├── ListView.php
│ ├── MaskedInput.php
│ ├── MaskedInputAsset.php
│ ├── Menu.php
│ ├── Pjax.php
│ ├── PjaxAsset.php
│ └── Spaceless.php
│ ├── yii
│ └── yii.bat
└── yii.bat
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/README.md
--------------------------------------------------------------------------------
/advanced/.bowerrc:
--------------------------------------------------------------------------------
1 | {
2 | "directory" : "vendor/bower"
3 | }
4 |
--------------------------------------------------------------------------------
/advanced/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/.gitignore
--------------------------------------------------------------------------------
/advanced/Events.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/Events.php
--------------------------------------------------------------------------------
/advanced/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/LICENSE.md
--------------------------------------------------------------------------------
/advanced/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/README.md
--------------------------------------------------------------------------------
/advanced/Vagrantfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/Vagrantfile
--------------------------------------------------------------------------------
/advanced/admin/assets/AppAsset.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/assets/AppAsset.php
--------------------------------------------------------------------------------
/advanced/admin/config/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/config/.gitignore
--------------------------------------------------------------------------------
/advanced/admin/config/bootstrap.php:
--------------------------------------------------------------------------------
1 | title = '新侠投资';
6 | ?>
7 |
--------------------------------------------------------------------------------
/advanced/admin/views/site/login.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/views/site/login.php
--------------------------------------------------------------------------------
/advanced/admin/views/site/test.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/views/site/test.php
--------------------------------------------------------------------------------
/advanced/admin/web/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/.gitignore
--------------------------------------------------------------------------------
/advanced/admin/web/assets/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/advanced/admin/web/crossbrowserjs/html5shiv.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/crossbrowserjs/html5shiv.js
--------------------------------------------------------------------------------
/advanced/admin/web/css/animate.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/css/animate.css
--------------------------------------------------------------------------------
/advanced/admin/web/css/animate.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/css/animate.min.css
--------------------------------------------------------------------------------
/advanced/admin/web/css/invoice-print.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/css/invoice-print.css
--------------------------------------------------------------------------------
/advanced/admin/web/css/invoice-print.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/css/invoice-print.min.css
--------------------------------------------------------------------------------
/advanced/admin/web/css/media.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/admin/web/css/style-responsive.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/css/style-responsive.css
--------------------------------------------------------------------------------
/advanced/admin/web/css/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/css/style.css
--------------------------------------------------------------------------------
/advanced/admin/web/css/style.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/css/style.min.css
--------------------------------------------------------------------------------
/advanced/admin/web/css/theme/black.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/css/theme/black.css
--------------------------------------------------------------------------------
/advanced/admin/web/css/theme/blue.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/css/theme/blue.css
--------------------------------------------------------------------------------
/advanced/admin/web/css/theme/default.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/css/theme/default.css
--------------------------------------------------------------------------------
/advanced/admin/web/css/theme/orange.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/css/theme/orange.css
--------------------------------------------------------------------------------
/advanced/admin/web/css/theme/purple.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/css/theme/purple.css
--------------------------------------------------------------------------------
/advanced/admin/web/css/theme/red.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/css/theme/red.css
--------------------------------------------------------------------------------
/advanced/admin/web/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/favicon.ico
--------------------------------------------------------------------------------
/advanced/admin/web/images/avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/images/avatar.png
--------------------------------------------------------------------------------
/advanced/admin/web/js/apps.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/apps.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/apps.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/apps.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/calendar.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/calendar.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/calendar.demo.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/calendar.demo.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/chart-d3.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/chart-d3.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/chart-d3.demo.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/chart-d3.demo.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/chart-flot.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/chart-flot.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/chart-flot.demo.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/chart-flot.demo.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/chart-js.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/chart-js.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/chart-js.demo.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/chart-js.demo.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/chart-morris.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/chart-morris.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/chart-morris.demo.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/chart-morris.demo.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/coming-soon.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/coming-soon.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/coming-soon.demo.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/coming-soon.demo.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/dashboard-v2.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/dashboard-v2.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/dashboard-v2.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/dashboard-v2.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/dashboard.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/dashboard.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/dashboard.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/dashboard.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/email-compose.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/email-compose.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/email-inbox-v2.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/email-inbox-v2.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/form-editable.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/form-editable.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/form-editable.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/form-editable.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/form-plugins.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/form-plugins.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/form-plugins.demo.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/form-plugins.demo.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/form-wizards.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/form-wizards.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/form-wizards.demo.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/form-wizards.demo.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/form-wysiwyg.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/form-wysiwyg.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/form-wysiwyg.demo.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/form-wysiwyg.demo.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/gallery-v2.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/gallery-v2.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/gallery-v2.demo.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/gallery-v2.demo.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/gallery.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/gallery.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/gallery.demo.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/gallery.demo.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/helpers/base-helper.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/helpers/base-helper.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/inbox.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/inbox.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/inbox.demo.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/inbox.demo.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/login-v2.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/login-v2.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/login.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/login.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/map-google.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/map-google.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/map-google.demo.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/map-google.demo.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/map-vector.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/map-vector.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/map-vector.demo.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/map-vector.demo.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/timeline.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/timeline.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/timeline.demo.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/timeline.demo.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/ui-tree.demo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/ui-tree.demo.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/ui-tree.demo.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/ui-tree.demo.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/webuploader.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/webuploader.js
--------------------------------------------------------------------------------
/advanced/admin/web/js/webuploader.nolog.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/js/webuploader.nolog.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/php-info.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/php-info.php
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/bootstrap-timepicker/spec/js/helpers/SpecHelper.js:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/bootstrap/js/npm.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/bootstrap/js/npm.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/chart-js/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/chart-js/LICENSE.md
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/chart-js/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/chart-js/README.md
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/chart-js/bower.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/chart-js/bower.json
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/chart-js/chart.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/chart-js/chart.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/config.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/af.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/af.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/ar.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/ar.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/bg.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/bg.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/bn.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/bn.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/bs.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/bs.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/ca.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/ca.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/cs.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/cs.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/cy.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/cy.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/da.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/da.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/de.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/de.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/el.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/el.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/en.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/en.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/eo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/eo.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/es.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/es.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/et.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/et.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/eu.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/eu.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/fa.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/fa.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/fi.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/fi.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/fo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/fo.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/fr.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/fr.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/gl.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/gl.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/gu.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/gu.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/he.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/he.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/hi.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/hi.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/hr.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/hr.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/hu.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/hu.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/is.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/is.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/it.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/it.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/ja.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/ja.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/ka.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/ka.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/km.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/km.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/ko.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/ko.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/ku.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/ku.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/lt.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/lt.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/lv.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/lv.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/mk.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/mk.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/mn.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/mn.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/ms.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/ms.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/nb.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/nb.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/nl.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/nl.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/no.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/no.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/pl.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/pl.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/pt.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/pt.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/ro.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/ro.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/ru.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/ru.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/sk.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/sk.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/sl.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/sl.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/sr.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/sr.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/sv.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/sv.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/th.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/th.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ckeditor/lang/tr.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ckeditor/lang/tr.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/flag-icon/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/flag-icon/LICENSE
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/flot/API.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/flot/API.md
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/flot/FAQ.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/flot/FAQ.md
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/flot/LICENSE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/flot/LICENSE.txt
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/flot/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/flot/Makefile
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/flot/NEWS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/flot/NEWS.md
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/flot/PLUGINS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/flot/PLUGINS.md
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/flot/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/flot/README.md
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/flot/excanvas.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/flot/excanvas.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/flot/jquery.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/flot/jquery.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/ionicons/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/ionicons/LICENSE
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/jquery-file-upload/server/gae-go/static/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/jquery-file-upload/server/gae-python/static/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/jquery-tag-it/.githooks/pre-commit:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | make
4 |
5 | touch .commit
6 |
7 |
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/jstree/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/jstree/README.md
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/jstree/bower.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/jstree/bower.json
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/jstree/demo/filebrowser/data/.htaccess:
--------------------------------------------------------------------------------
1 | deny from all
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/jstree/demo/filebrowser/data/root/asdf/New Text Document.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/jstree/demo/filebrowser/data/root/asdf/New file4:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/jstree/demo/filebrowser/data/root/asdf/asdf asdf:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/jstree/demo/filebrowser/data/root/asdf/asdfasdf:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/jstree/demo/filebrowser/data/root/asdf/asdfasdfasdfasdfasdf:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/jstree/src/outro.js:
--------------------------------------------------------------------------------
1 | }));
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/less/less.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/less/less.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/morris/morris.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/morris/morris.css
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/morris/morris.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/morris/morris.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/nvd3/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "asi": true
3 | }
4 |
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/nvd3/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/nvd3/.travis.yml
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/nvd3/GruntFile.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/nvd3/GruntFile.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/nvd3/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/nvd3/LICENSE.md
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/nvd3/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/nvd3/README.md
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/nvd3/bower.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/nvd3/bower.json
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/nvd3/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/nvd3/index.html
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/nvd3/package.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/nvd3/package.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/nvd3/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/nvd3/package.json
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/nvd3/src/core.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/nvd3/src/core.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/nvd3/src/dom.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/nvd3/src/dom.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/nvd3/src/utils.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/nvd3/src/utils.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/pace/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/pace/LICENSE
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/pace/pace.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/pace/pace.coffee
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/pace/pace.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/pace/pace.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/pace/pace.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/pace/pace.min.js
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/pace/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/pace/package.json
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/select2/.jshintrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/select2/.jshintrc
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/select2/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/select2/README.md
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/select2/docs/dist/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/zTree/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/zTree/.gitignore
--------------------------------------------------------------------------------
/advanced/admin/web/plugins/zTree/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/admin/web/plugins/zTree/README.md
--------------------------------------------------------------------------------
/advanced/admin/web/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow: /
3 |
--------------------------------------------------------------------------------
/advanced/admin/web/upload/file/tmp.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/admin/web/upload/image/tmp.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/backend/assets/AppAsset.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/backend/assets/AppAsset.php
--------------------------------------------------------------------------------
/advanced/backend/codeception.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/backend/codeception.yml
--------------------------------------------------------------------------------
/advanced/backend/config/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/backend/config/.gitignore
--------------------------------------------------------------------------------
/advanced/backend/config/bootstrap.php:
--------------------------------------------------------------------------------
1 | 'app-backend-tests',
4 | ];
5 |
--------------------------------------------------------------------------------
/advanced/backend/models/.gitkeep:
--------------------------------------------------------------------------------
1 | *
2 |
--------------------------------------------------------------------------------
/advanced/backend/runtime/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
--------------------------------------------------------------------------------
/advanced/backend/tests/_bootstrap.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/backend/tests/_bootstrap.php
--------------------------------------------------------------------------------
/advanced/backend/tests/_data/.gitignore:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/backend/tests/_data/login_data.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/backend/tests/_data/login_data.php
--------------------------------------------------------------------------------
/advanced/backend/tests/_output/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/advanced/backend/tests/_support/.gitignore:
--------------------------------------------------------------------------------
1 | _generated
2 |
--------------------------------------------------------------------------------
/advanced/backend/tests/functional.suite.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/backend/tests/functional.suite.yml
--------------------------------------------------------------------------------
/advanced/backend/tests/functional/_bootstrap.php:
--------------------------------------------------------------------------------
1 | 'app-frontend-tests',
4 | ];
5 |
--------------------------------------------------------------------------------
/advanced/frontend/models/ContactForm.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/frontend/models/ContactForm.php
--------------------------------------------------------------------------------
/advanced/frontend/models/SignupForm.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/frontend/models/SignupForm.php
--------------------------------------------------------------------------------
/advanced/frontend/runtime/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
--------------------------------------------------------------------------------
/advanced/frontend/tests/_bootstrap.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/frontend/tests/_bootstrap.php
--------------------------------------------------------------------------------
/advanced/frontend/tests/_data/login_data.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/frontend/tests/_data/login_data.php
--------------------------------------------------------------------------------
/advanced/frontend/tests/_data/user.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/frontend/tests/_data/user.php
--------------------------------------------------------------------------------
/advanced/frontend/tests/_output/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/advanced/frontend/tests/_support/.gitignore:
--------------------------------------------------------------------------------
1 | _generated
2 |
--------------------------------------------------------------------------------
/advanced/frontend/tests/acceptance/_bootstrap.php:
--------------------------------------------------------------------------------
1 | type pairs
4 | return {};
5 | } );
6 |
--------------------------------------------------------------------------------
/advanced/vendor/bower/jquery/src/var/document.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | return window.document;
3 | } );
4 |
--------------------------------------------------------------------------------
/advanced/vendor/bower/jquery/src/var/pnum.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/bower/jquery/src/var/pnum.js
--------------------------------------------------------------------------------
/advanced/vendor/bower/jquery/src/var/push.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/bower/jquery/src/var/push.js
--------------------------------------------------------------------------------
/advanced/vendor/bower/jquery/src/wrap.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/bower/jquery/src/wrap.js
--------------------------------------------------------------------------------
/advanced/vendor/bower/punycode/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/bower/punycode/README.md
--------------------------------------------------------------------------------
/advanced/vendor/bower/punycode/bower.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/bower/punycode/bower.json
--------------------------------------------------------------------------------
/advanced/vendor/bower/punycode/punycode.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/bower/punycode/punycode.js
--------------------------------------------------------------------------------
/advanced/vendor/bower/typeahead.js/.jshintrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/bower/typeahead.js/.jshintrc
--------------------------------------------------------------------------------
/advanced/vendor/bower/typeahead.js/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/bower/typeahead.js/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/bower/typeahead.js/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/bower/typeahead.js/README.md
--------------------------------------------------------------------------------
/advanced/vendor/bower/typeahead.js/test/ci:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/bower/typeahead.js/test/ci
--------------------------------------------------------------------------------
/advanced/vendor/bower/yii2-pjax/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/bower/yii2-pjax/.gitignore
--------------------------------------------------------------------------------
/advanced/vendor/bower/yii2-pjax/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/bower/yii2-pjax/CHANGELOG.md
--------------------------------------------------------------------------------
/advanced/vendor/bower/yii2-pjax/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/bower/yii2-pjax/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/bower/yii2-pjax/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/bower/yii2-pjax/README.md
--------------------------------------------------------------------------------
/advanced/vendor/bower/yii2-pjax/bower.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/bower/yii2-pjax/bower.json
--------------------------------------------------------------------------------
/advanced/vendor/bower/yii2-pjax/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/bower/yii2-pjax/package.json
--------------------------------------------------------------------------------
/advanced/vendor/cebe/markdown/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea/
2 | composer.lock
3 | /vendor
4 | README.html
5 |
--------------------------------------------------------------------------------
/advanced/vendor/cebe/markdown/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/cebe/markdown/.travis.yml
--------------------------------------------------------------------------------
/advanced/vendor/cebe/markdown/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/cebe/markdown/CHANGELOG.md
--------------------------------------------------------------------------------
/advanced/vendor/cebe/markdown/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/cebe/markdown/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/cebe/markdown/Markdown.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/cebe/markdown/Markdown.php
--------------------------------------------------------------------------------
/advanced/vendor/cebe/markdown/Parser.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/cebe/markdown/Parser.php
--------------------------------------------------------------------------------
/advanced/vendor/cebe/markdown/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/cebe/markdown/README.md
--------------------------------------------------------------------------------
/advanced/vendor/cebe/markdown/bin/markdown:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/cebe/markdown/bin/markdown
--------------------------------------------------------------------------------
/advanced/vendor/cebe/markdown/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/cebe/markdown/composer.json
--------------------------------------------------------------------------------
/advanced/vendor/codeception/base/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/codeception/base/.gitignore
--------------------------------------------------------------------------------
/advanced/vendor/codeception/base/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/codeception/base/.travis.yml
--------------------------------------------------------------------------------
/advanced/vendor/codeception/base/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/codeception/base/Dockerfile
--------------------------------------------------------------------------------
/advanced/vendor/codeception/base/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/codeception/base/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/codeception/base/codecept:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/codeception/base/codecept
--------------------------------------------------------------------------------
/advanced/vendor/codeception/base/package/bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/codeception/base/package/bin
--------------------------------------------------------------------------------
/advanced/vendor/codeception/base/readme.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/codeception/base/readme.md
--------------------------------------------------------------------------------
/advanced/vendor/codeception/base/ruleset.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/codeception/base/ruleset.xml
--------------------------------------------------------------------------------
/advanced/vendor/codeception/base/shim.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/codeception/base/shim.php
--------------------------------------------------------------------------------
/advanced/vendor/codeception/base/tests/coverage/_bootstrap.php:
--------------------------------------------------------------------------------
1 | wantTo('drink beer, actually...');
--------------------------------------------------------------------------------
/advanced/vendor/codeception/base/tests/data/claypit/src/FooBar/dummy.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/vendor/codeception/base/tests/data/claypit/tests/_data/dump.sql:
--------------------------------------------------------------------------------
1 | /* Replace this file with actual dump of your database */
--------------------------------------------------------------------------------
/advanced/vendor/codeception/base/tests/data/claypit/tests/_support/_generated/.gitignore:
--------------------------------------------------------------------------------
1 | *.php
2 |
--------------------------------------------------------------------------------
/advanced/vendor/codeception/base/tests/data/claypit/tests/order/_bootstrap.php:
--------------------------------------------------------------------------------
1 | ' . file_get_contents('php://stdin'));
4 |
--------------------------------------------------------------------------------
/advanced/vendor/phpunit/phpunit/tests/Regression/GitHub/1351/ChildProcessClass1351.php:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/advanced/vendor/phpunit/phpunit/tests/_files/JsonData/simpleObject.json:
--------------------------------------------------------------------------------
1 | {"Mascott":"Tux"}
--------------------------------------------------------------------------------
/advanced/vendor/phpunit/phpunit/tests/_files/bar.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/advanced/vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/advanced/vendor/phpunit/phpunit/tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/advanced/vendor/psr/http-message/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/psr/http-message/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/psr/http-message/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/psr/http-message/README.md
--------------------------------------------------------------------------------
/advanced/vendor/psr/log/.gitignore:
--------------------------------------------------------------------------------
1 | vendor
2 |
--------------------------------------------------------------------------------
/advanced/vendor/psr/log/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/psr/log/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/psr/log/Psr/Log/LogLevel.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/psr/log/Psr/Log/LogLevel.php
--------------------------------------------------------------------------------
/advanced/vendor/psr/log/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/psr/log/README.md
--------------------------------------------------------------------------------
/advanced/vendor/psr/log/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/psr/log/composer.json
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/comparator/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/sebastian/comparator/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/diff/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/sebastian/diff/.gitignore
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/diff/.php_cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/sebastian/diff/.php_cs
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/diff/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/sebastian/diff/.travis.yml
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/diff/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/sebastian/diff/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/diff/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/sebastian/diff/README.md
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/diff/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/sebastian/diff/build.xml
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/diff/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/sebastian/diff/composer.json
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/diff/src/Chunk.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/sebastian/diff/src/Chunk.php
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/diff/src/Diff.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/sebastian/diff/src/Diff.php
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/diff/src/Line.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/sebastian/diff/src/Line.php
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/exporter/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/sebastian/exporter/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/exporter/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/sebastian/exporter/README.md
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/exporter/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/sebastian/exporter/build.xml
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/version/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/version/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 |
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/version/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/sebastian/version/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/sebastian/version/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/sebastian/version/README.md
--------------------------------------------------------------------------------
/advanced/vendor/swiftmailer/swiftmailer/VERSION:
--------------------------------------------------------------------------------
1 | Swift-5.4.5-DEV
2 |
--------------------------------------------------------------------------------
/advanced/vendor/swiftmailer/swiftmailer/tests/_samples/files/data.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl:
--------------------------------------------------------------------------------
1 | D42DA34CF90FA0DE
2 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/browser-kit/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/browser-kit/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/browser-kit/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/symfony/console/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/console/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/console/CHANGELOG.md
--------------------------------------------------------------------------------
/advanced/vendor/symfony/console/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/console/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/symfony/console/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/console/README.md
--------------------------------------------------------------------------------
/advanced/vendor/symfony/console/Terminal.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/console/Terminal.php
--------------------------------------------------------------------------------
/advanced/vendor/symfony/console/Tests/Fixtures/application_gethelp.txt:
--------------------------------------------------------------------------------
1 | Console Tool
--------------------------------------------------------------------------------
/advanced/vendor/symfony/console/Tests/Fixtures/application_run4.txt:
--------------------------------------------------------------------------------
1 | Console Tool
2 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/console/Tests/Fixtures/input_definition_1.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/css-selector/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/css-selector/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/css-selector/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/symfony/debug/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/debug/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/debug/CHANGELOG.md
--------------------------------------------------------------------------------
/advanced/vendor/symfony/debug/Debug.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/debug/Debug.php
--------------------------------------------------------------------------------
/advanced/vendor/symfony/debug/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/debug/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/symfony/debug/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/debug/README.md
--------------------------------------------------------------------------------
/advanced/vendor/symfony/debug/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/debug/composer.json
--------------------------------------------------------------------------------
/advanced/vendor/symfony/dom-crawler/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/dom-crawler/Form.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/dom-crawler/Form.php
--------------------------------------------------------------------------------
/advanced/vendor/symfony/dom-crawler/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/dom-crawler/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/symfony/dom-crawler/Link.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/dom-crawler/Link.php
--------------------------------------------------------------------------------
/advanced/vendor/symfony/dom-crawler/Tests/Fixtures/no-extension:
--------------------------------------------------------------------------------
1 | Test
2 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/event-dispatcher/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/finder/CHANGELOG.md
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/Finder.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/finder/Finder.php
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/Glob.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/finder/Glob.php
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/finder/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/finder/README.md
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/Tests/Fixtures/A/a.dat:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/Tests/Fixtures/dolor.txt:
--------------------------------------------------------------------------------
1 | dolor sit amet
2 | DOLOR SIT AMET
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/Tests/Fixtures/ipsum.txt:
--------------------------------------------------------------------------------
1 | ipsum dolor sit amet
2 | IPSUM DOLOR SIT AMET
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/Tests/Fixtures/lorem.txt:
--------------------------------------------------------------------------------
1 | lorem ipsum dolor sit amet
2 | LOREM IPSUM DOLOR SIT AMET
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/Tests/Fixtures/one/a:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/Tests/Fixtures/one/b/c.neon:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/Tests/Fixtures/one/b/d.neon:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/Tests/Fixtures/with space/foo.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/finder/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/finder/composer.json
--------------------------------------------------------------------------------
/advanced/vendor/symfony/yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/yaml/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/yaml/CHANGELOG.md
--------------------------------------------------------------------------------
/advanced/vendor/symfony/yaml/Dumper.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/yaml/Dumper.php
--------------------------------------------------------------------------------
/advanced/vendor/symfony/yaml/Escaper.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/yaml/Escaper.php
--------------------------------------------------------------------------------
/advanced/vendor/symfony/yaml/Inline.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/yaml/Inline.php
--------------------------------------------------------------------------------
/advanced/vendor/symfony/yaml/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/yaml/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/symfony/yaml/Parser.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/yaml/Parser.php
--------------------------------------------------------------------------------
/advanced/vendor/symfony/yaml/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/yaml/README.md
--------------------------------------------------------------------------------
/advanced/vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/advanced/vendor/symfony/yaml/Unescaper.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/yaml/Unescaper.php
--------------------------------------------------------------------------------
/advanced/vendor/symfony/yaml/Yaml.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/yaml/Yaml.php
--------------------------------------------------------------------------------
/advanced/vendor/symfony/yaml/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/symfony/yaml/composer.json
--------------------------------------------------------------------------------
/advanced/vendor/webmozart/assert/.gitignore:
--------------------------------------------------------------------------------
1 | /vendor/
2 | composer.lock
3 |
--------------------------------------------------------------------------------
/advanced/vendor/webmozart/assert/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/webmozart/assert/.travis.yml
--------------------------------------------------------------------------------
/advanced/vendor/webmozart/assert/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/webmozart/assert/LICENSE
--------------------------------------------------------------------------------
/advanced/vendor/webmozart/assert/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/webmozart/assert/README.md
--------------------------------------------------------------------------------
/advanced/vendor/workerman/gateway-worker/.gitignore:
--------------------------------------------------------------------------------
1 | .buildpath
2 | .project
3 | .settings
4 | .idea
--------------------------------------------------------------------------------
/advanced/vendor/workerman/workerman/.gitignore:
--------------------------------------------------------------------------------
1 | logs
2 | .buildpath
3 | .project
4 | .settings
5 | .idea
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/extensions.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/extensions.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2-debug/Panel.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2-debug/Panel.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2-debug/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2-debug/README.md
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2-faker/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2-faker/README.md
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2-gii/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2-gii/Makefile
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2-gii/Module.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2-gii/Module.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2-gii/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2-gii/README.md
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/.gitignore:
--------------------------------------------------------------------------------
1 | phpunit.xml
2 | composer.lock
3 |
4 |
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/.htaccess:
--------------------------------------------------------------------------------
1 | deny from all
2 |
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/BaseYii.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/BaseYii.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/CHANGELOG.md
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/LICENSE.md
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/README.md
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/UPGRADE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/UPGRADE.md
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/Yii.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/Yii.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/assets/yii.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/assets/yii.js
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/base/Action.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/base/Action.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/base/Event.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/base/Event.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/base/Model.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/base/Model.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/base/Module.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/base/Module.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/base/Object.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/base/Object.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/base/Theme.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/base/Theme.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/base/View.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/base/View.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/base/Widget.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/base/Widget.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/classes.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/classes.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/composer.json
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/data/Sort.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/data/Sort.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/db/Command.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/db/Command.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/db/Query.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/db/Query.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/db/Schema.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/db/Schema.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/di/Instance.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/di/Instance.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/grid/Column.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/grid/Column.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/helpers/Url.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/helpers/Url.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/i18n/I18N.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/i18n/I18N.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/log/Logger.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/log/Logger.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/log/Target.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/log/Target.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/mutex/Mutex.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/mutex/Mutex.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/rbac/Item.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/rbac/Item.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/rbac/Role.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/rbac/Role.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/rbac/Rule.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/rbac/Rule.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/rest/Action.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/rest/Action.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/web/Cookie.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/web/Cookie.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/web/Link.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/web/Link.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/web/Request.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/web/Request.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/web/Session.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/web/Session.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/web/UrlRule.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/web/UrlRule.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/web/User.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/web/User.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/web/View.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/web/View.php
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/yii:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/yii
--------------------------------------------------------------------------------
/advanced/vendor/yiisoft/yii2/yii.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/vendor/yiisoft/yii2/yii.bat
--------------------------------------------------------------------------------
/advanced/yii.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/751836594/live-chat/HEAD/advanced/yii.bat
--------------------------------------------------------------------------------