├── .all-contributorsrc ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md └── workflows │ ├── lock.yml │ └── stale.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── api ├── classes │ ├── custom.class.php │ ├── deluge.class.php │ ├── logger.class.php │ ├── loggerExt.class.php │ ├── organizr.class.php │ └── ping.class.php ├── composer.json ├── composer.lock ├── config │ └── default.php ├── demo_data │ ├── calendar │ │ └── calendar.json │ ├── lidarr │ │ └── calendar.json │ ├── plex │ │ ├── images │ │ │ ├── 629519-np.jpg │ │ │ ├── 718958-list.jpg │ │ │ └── 718958-np.jpg │ │ ├── plex-metadata.json │ │ └── plex-streams.json │ ├── radarr │ │ └── calendar.json │ └── sonarr │ │ └── calendar.json ├── functions.php ├── functions │ ├── 2fa-functions.php │ ├── UptimeKumaMetrics.php │ ├── api-functions.php │ ├── auth-functions.php │ ├── backup-functions.php │ ├── cert │ │ ├── cacert-initial.pem │ │ └── index.html │ ├── config-functions.php │ ├── custom-class.php │ ├── deluge.class.php │ ├── demo-functions.php │ ├── homepage-connect-functions.php │ ├── homepage-functions.php │ ├── log-functions.php │ ├── netdata-functions.php │ ├── normal-functions.php │ ├── oauth.php │ ├── option-functions.php │ ├── organizr-functions.php │ ├── ping.class.php │ ├── plugin-functions.php │ ├── sso-functions.php │ ├── static-globals.php │ ├── theme-functions.php │ ├── token-functions.php │ ├── update-functions.php │ └── upgrade-functions.php ├── homepage │ ├── adguard.php │ ├── bookmarks.php │ ├── calendar.php │ ├── couchpotato.php │ ├── deluge.php │ ├── donate.php │ ├── emby.php │ ├── embyLiveTVTracker.php │ ├── healthchecks.php │ ├── html.php │ ├── ical.php │ ├── jackett.php │ ├── jdownloader.php │ ├── jellyfin.php │ ├── jellystat.php │ ├── lidarr.php │ ├── misc.php │ ├── monitorr.php │ ├── netdata.php │ ├── nzbget.php │ ├── octoprint.php │ ├── ombi.php │ ├── overseerr.php │ ├── pihole.php │ ├── plex.php │ ├── prompage.php │ ├── prowlarr.php │ ├── qbittorrent.php │ ├── radarr.php │ ├── rtorrent.php │ ├── sabnzbd.php │ ├── sickrage.php │ ├── sonarr.php │ ├── speedtest.php │ ├── tautulli.php │ ├── trakt.php │ ├── transmission.php │ ├── unifi.php │ ├── uptime_kuma.php │ ├── utorrent.php │ └── weather.php ├── index.php ├── pages │ ├── dependencies.php │ ├── error.php │ ├── homepage.php │ ├── lockscreen.php │ ├── login.php │ ├── settings-customize-appearance.php │ ├── settings-customize-settings.php │ ├── settings-image-manager.php │ ├── settings-plugins-disabled.php │ ├── settings-plugins-enabled.php │ ├── settings-plugins-settings.php │ ├── settings-plugins.php │ ├── settings-settings-backup.php │ ├── settings-settings-logs.php │ ├── settings-settings-main.php │ ├── settings-settings-sso.php │ ├── settings-tab-editor-categories.php │ ├── settings-tab-editor-homepage-order.php │ ├── settings-tab-editor-homepage.php │ ├── settings-tab-editor-tabs.php │ ├── settings-template.php │ ├── settings-user-manage-groups.php │ ├── settings-user-manage-users.php │ ├── settings.php │ ├── tabs.php │ └── wizard.php ├── plugins │ ├── bookmark │ │ ├── api.php │ │ ├── bookmark.css │ │ ├── config.php │ │ ├── logo.png │ │ ├── plugin.php │ │ └── settings.js │ ├── chat │ │ ├── api.php │ │ ├── config.php │ │ ├── logo.png │ │ ├── main.js │ │ └── plugin.php │ ├── healthChecks │ │ ├── advancedCron.php │ │ ├── api.php │ │ ├── config.php │ │ ├── cron.php │ │ ├── healthchecks.css │ │ ├── logo.png │ │ ├── main.js │ │ ├── plugin.php │ │ └── settings.js │ ├── invites │ │ ├── api.php │ │ ├── config.php │ │ ├── logo.png │ │ ├── main.js │ │ └── plugin.php │ ├── php-mailer │ │ ├── api.php │ │ ├── config.php │ │ ├── logo.png │ │ ├── main.js │ │ ├── misc │ │ │ └── emailTemplates │ │ │ │ ├── dark.php │ │ │ │ ├── default.php │ │ │ │ ├── gray.php │ │ │ │ ├── light.php │ │ │ │ └── plehex.php │ │ └── plugin.php │ ├── shuck-stop │ │ ├── api.php │ │ ├── config.php │ │ ├── cron.php │ │ ├── drives.json │ │ ├── logo.png │ │ └── plugin.php │ └── speedTest │ │ ├── api.php │ │ ├── config.php │ │ ├── logo.png │ │ ├── main.js │ │ ├── misc │ │ ├── empty.php │ │ ├── garbage.php │ │ ├── getIP.php │ │ ├── speedtest_worker.min.js │ │ ├── telemetry.php │ │ └── telemetry_settings.php │ │ └── plugin.php ├── v2 │ ├── index.php │ ├── routes │ │ ├── 2fa.php │ │ ├── backup.php │ │ ├── categories.php │ │ ├── certificate.php │ │ ├── config.php │ │ ├── connectionTester.php │ │ ├── database.php │ │ ├── emby.php │ │ ├── groups.php │ │ ├── help.php │ │ ├── homepage.php │ │ ├── icon.php │ │ ├── image.php │ │ ├── ip.php │ │ ├── log.php │ │ ├── login.php │ │ ├── logout.php │ │ ├── news.php │ │ ├── oauth.php │ │ ├── organizr.php │ │ ├── pages.php │ │ ├── ping.php │ │ ├── plex.php │ │ ├── plugins.php │ │ ├── root.php │ │ ├── rox.php │ │ ├── settings.php │ │ ├── socks.php │ │ ├── sponsors.php │ │ ├── tabs.php │ │ ├── themes.php │ │ ├── token.php │ │ ├── update.php │ │ ├── users.php │ │ └── wizard.php │ └── schemas.php └── vendor │ ├── Expectation.php │ ├── adldap2 │ └── adldap2 │ │ ├── .gitattributes │ │ ├── .github │ │ ├── issue_template.md │ │ └── workflows │ │ │ └── tests.yaml │ │ ├── .gitignore │ │ ├── .scrutinizer.yml │ │ ├── .styleci.yml │ │ ├── .travis.yml │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── docs │ │ ├── .nojekyll │ │ ├── _coverpage.md │ │ ├── _sidebar.md │ │ ├── distinguished-names.md │ │ ├── events.md │ │ ├── index.html │ │ ├── installation.md │ │ ├── logging.md │ │ ├── media │ │ │ └── bg.svg │ │ ├── models │ │ │ ├── computer.md │ │ │ ├── contact.md │ │ │ ├── container.md │ │ │ ├── group.md │ │ │ ├── model.md │ │ │ ├── organization.md │ │ │ ├── ou.md │ │ │ ├── printer.md │ │ │ ├── root-dse.md │ │ │ ├── traits │ │ │ │ ├── has-critical-system-object.md │ │ │ │ ├── has-description.md │ │ │ │ ├── has-last-login-last-logoff.md │ │ │ │ └── has-member-of.md │ │ │ └── user.md │ │ ├── readme.md │ │ ├── searching.md │ │ ├── setup.md │ │ └── troubleshooting.md │ │ ├── license.md │ │ ├── phpunit.xml │ │ ├── readme.md │ │ └── src │ │ ├── Adldap.php │ │ ├── AdldapException.php │ │ ├── AdldapInterface.php │ │ ├── Auth │ │ ├── BindException.php │ │ ├── Events │ │ │ ├── Attempting.php │ │ │ ├── Binding.php │ │ │ ├── Bound.php │ │ │ ├── Event.php │ │ │ ├── Failed.php │ │ │ └── Passed.php │ │ ├── Guard.php │ │ ├── GuardInterface.php │ │ ├── PasswordRequiredException.php │ │ └── UsernameRequiredException.php │ │ ├── Configuration │ │ ├── ConfigurationException.php │ │ ├── DomainConfiguration.php │ │ └── Validators │ │ │ ├── ArrayValidator.php │ │ │ ├── BooleanValidator.php │ │ │ ├── ClassValidator.php │ │ │ ├── IntegerValidator.php │ │ │ ├── StringOrNullValidator.php │ │ │ └── Validator.php │ │ ├── Connections │ │ ├── ConnectionException.php │ │ ├── ConnectionInterface.php │ │ ├── DetailedError.php │ │ ├── Ldap.php │ │ ├── Provider.php │ │ └── ProviderInterface.php │ │ ├── Events │ │ ├── Dispatcher.php │ │ ├── DispatcherInterface.php │ │ └── DispatchesEvents.php │ │ ├── Log │ │ ├── EventLogger.php │ │ └── LogsInformation.php │ │ ├── Models │ │ ├── Attributes │ │ │ ├── AccountControl.php │ │ │ ├── DistinguishedName.php │ │ │ ├── Guid.php │ │ │ ├── MbString.php │ │ │ ├── Sid.php │ │ │ ├── TSProperty.php │ │ │ └── TSPropertyArray.php │ │ ├── BatchModification.php │ │ ├── Computer.php │ │ ├── Concerns │ │ │ ├── HasAttributes.php │ │ │ ├── HasCriticalSystemObject.php │ │ │ ├── HasDescription.php │ │ │ ├── HasEvents.php │ │ │ ├── HasLastLogonAndLogOff.php │ │ │ ├── HasMemberOf.php │ │ │ ├── HasUserAccountControl.php │ │ │ └── HasUserProperties.php │ │ ├── Contact.php │ │ ├── Container.php │ │ ├── Entry.php │ │ ├── Events │ │ │ ├── Created.php │ │ │ ├── Creating.php │ │ │ ├── Deleted.php │ │ │ ├── Deleting.php │ │ │ ├── Event.php │ │ │ ├── Saved.php │ │ │ ├── Saving.php │ │ │ ├── Updated.php │ │ │ └── Updating.php │ │ ├── Factory.php │ │ ├── ForeignSecurityPrincipal.php │ │ ├── Group.php │ │ ├── Model.php │ │ ├── ModelDoesNotExistException.php │ │ ├── ModelNotFoundException.php │ │ ├── Organization.php │ │ ├── OrganizationalUnit.php │ │ ├── Printer.php │ │ ├── RootDse.php │ │ ├── User.php │ │ ├── UserPasswordIncorrectException.php │ │ └── UserPasswordPolicyException.php │ │ ├── Query │ │ ├── Builder.php │ │ ├── Cache.php │ │ ├── Collection.php │ │ ├── Events │ │ │ ├── Listing.php │ │ │ ├── Paginate.php │ │ │ ├── QueryExecuted.php │ │ │ ├── Read.php │ │ │ └── Search.php │ │ ├── Factory.php │ │ ├── Grammar.php │ │ ├── Operator.php │ │ ├── Paginator.php │ │ └── Processor.php │ │ ├── Schemas │ │ ├── ActiveDirectory.php │ │ ├── Directory389.php │ │ ├── EDirectory.php │ │ ├── FreeIPA.php │ │ ├── OpenLDAP.php │ │ ├── Schema.php │ │ └── SchemaInterface.php │ │ └── Utilities.php │ ├── autoload.php │ ├── bcremer │ └── line-reader │ │ ├── .github │ │ └── workflows │ │ │ └── build.yaml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── infection.json.dist │ │ ├── phpunit.xml.dist │ │ ├── src │ │ └── LineReader.php │ │ └── tests │ │ └── LineReaderTest.php │ ├── bin │ ├── openapi │ ├── openapi.bat │ ├── var-dump-server │ ├── var-dump-server.bat │ ├── yaml-lint │ └── yaml-lint.bat │ ├── bogstag │ └── oauth2-trakt │ │ ├── .gitignore │ │ ├── .scrutinizer.yml │ │ ├── .styleci.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ └── Provider │ │ │ ├── Trakt.php │ │ │ └── TraktResourceOwner.php │ │ └── tests │ │ └── src │ │ └── Provider │ │ └── TraktTest.php │ ├── brick │ └── math │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ ├── BigDecimal.php │ │ ├── BigInteger.php │ │ ├── BigNumber.php │ │ ├── BigRational.php │ │ ├── Exception │ │ ├── DivisionByZeroException.php │ │ ├── IntegerOverflowException.php │ │ ├── MathException.php │ │ ├── NegativeNumberException.php │ │ ├── NumberFormatException.php │ │ └── RoundingNecessaryException.php │ │ ├── Internal │ │ ├── Calculator.php │ │ └── Calculator │ │ │ ├── BcMathCalculator.php │ │ │ ├── GmpCalculator.php │ │ │ └── NativeCalculator.php │ │ └── RoundingMode.php │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ ├── platform_check.php │ └── semver │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Comparator.php │ │ ├── Constraint │ │ ├── AbstractConstraint.php │ │ ├── Constraint.php │ │ ├── ConstraintInterface.php │ │ ├── EmptyConstraint.php │ │ └── MultiConstraint.php │ │ ├── Semver.php │ │ └── VersionParser.php │ ├── dibi │ └── dibi │ │ ├── appveyor.yml │ │ ├── composer.json │ │ ├── contributing.md │ │ ├── examples │ │ ├── connecting-to-databases.php │ │ ├── data │ │ │ ├── arrow.png │ │ │ ├── dibi-powered.gif │ │ │ ├── sample.dump.sql.gz │ │ │ ├── sample.mdb │ │ │ ├── sample.s3db │ │ │ └── style.css │ │ ├── database-reflection.php │ │ ├── dumping-sql-and-result-set.php │ │ ├── fetching-examples.php │ │ ├── importing-dump-from-file.php │ │ ├── query-language-and-conditions.php │ │ ├── query-language-basic-examples.php │ │ ├── result-set-data-types.php │ │ ├── tracy-and-exceptions.php │ │ ├── tracy.php │ │ ├── using-datetime.php │ │ ├── using-fluent-syntax.php │ │ ├── using-limit-and-offset.php │ │ ├── using-logger.php │ │ ├── using-substitutions.php │ │ └── using-transactions.php │ │ ├── license.md │ │ ├── readme.md │ │ └── src │ │ └── Dibi │ │ ├── Bridges │ │ └── Nette │ │ │ ├── DibiExtension22.php │ │ │ └── config.sample.neon │ │ ├── Connection.php │ │ ├── DataSource.php │ │ ├── DateTime.php │ │ ├── Drivers │ │ ├── DummyDriver.php │ │ ├── FirebirdDriver.php │ │ ├── FirebirdReflector.php │ │ ├── FirebirdResult.php │ │ ├── MySqlReflector.php │ │ ├── MySqliDriver.php │ │ ├── MySqliResult.php │ │ ├── NoDataResult.php │ │ ├── OdbcDriver.php │ │ ├── OdbcReflector.php │ │ ├── OdbcResult.php │ │ ├── OracleDriver.php │ │ ├── OracleReflector.php │ │ ├── OracleResult.php │ │ ├── PdoDriver.php │ │ ├── PdoResult.php │ │ ├── PostgreDriver.php │ │ ├── PostgreReflector.php │ │ ├── PostgreResult.php │ │ ├── Sqlite3Driver.php │ │ ├── Sqlite3Result.php │ │ ├── SqliteDriver.php │ │ ├── SqliteReflector.php │ │ ├── SqliteResult.php │ │ ├── SqlsrvDriver.php │ │ ├── SqlsrvReflector.php │ │ └── SqlsrvResult.php │ │ ├── Event.php │ │ ├── Expression.php │ │ ├── Fluent.php │ │ ├── HashMap.php │ │ ├── Helpers.php │ │ ├── Literal.php │ │ ├── Loggers │ │ └── FileLogger.php │ │ ├── Reflection │ │ ├── Column.php │ │ ├── Database.php │ │ ├── ForeignKey.php │ │ ├── Index.php │ │ ├── Result.php │ │ └── Table.php │ │ ├── Result.php │ │ ├── ResultIterator.php │ │ ├── Row.php │ │ ├── Strict.php │ │ ├── Translator.php │ │ ├── Type.php │ │ ├── dibi.php │ │ ├── exceptions.php │ │ └── interfaces.php │ ├── doctrine │ ├── annotations │ │ ├── .doctrine-project.json │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ └── en │ │ │ │ ├── annotations.rst │ │ │ │ ├── custom.rst │ │ │ │ ├── index.rst │ │ │ │ └── sidebar.rst │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Common │ │ │ │ └── Annotations │ │ │ │ ├── Annotation.php │ │ │ │ ├── Annotation │ │ │ │ ├── Attribute.php │ │ │ │ ├── Attributes.php │ │ │ │ ├── Enum.php │ │ │ │ ├── IgnoreAnnotation.php │ │ │ │ ├── Required.php │ │ │ │ └── Target.php │ │ │ │ ├── AnnotationException.php │ │ │ │ ├── AnnotationReader.php │ │ │ │ ├── AnnotationRegistry.php │ │ │ │ ├── CachedReader.php │ │ │ │ ├── DocLexer.php │ │ │ │ ├── DocParser.php │ │ │ │ ├── FileCacheReader.php │ │ │ │ ├── IndexedReader.php │ │ │ │ ├── PhpParser.php │ │ │ │ ├── Reader.php │ │ │ │ ├── SimpleAnnotationReader.php │ │ │ │ └── TokenParser.php │ │ ├── phpbench.json.dist │ │ └── phpstan.neon │ ├── collections │ │ ├── .doctrine-project.json │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ └── en │ │ │ │ ├── derived-collections.rst │ │ │ │ ├── expression-builder.rst │ │ │ │ ├── expressions.rst │ │ │ │ ├── index.rst │ │ │ │ ├── lazy-collections.rst │ │ │ │ └── sidebar.rst │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Common │ │ │ │ └── Collections │ │ │ │ ├── AbstractLazyCollection.php │ │ │ │ ├── ArrayCollection.php │ │ │ │ ├── Collection.php │ │ │ │ ├── Criteria.php │ │ │ │ ├── Expr │ │ │ │ ├── ClosureExpressionVisitor.php │ │ │ │ ├── Comparison.php │ │ │ │ ├── CompositeExpression.php │ │ │ │ ├── Expression.php │ │ │ │ ├── ExpressionVisitor.php │ │ │ │ └── Value.php │ │ │ │ ├── ExpressionBuilder.php │ │ │ │ └── Selectable.php │ │ ├── phpstan.neon.dist │ │ └── psalm.xml.dist │ └── lexer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── lib │ │ └── Doctrine │ │ └── Common │ │ └── Lexer │ │ └── AbstractLexer.php │ ├── dragonmantank │ └── cron-expression │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpstan.neon │ │ └── src │ │ └── Cron │ │ ├── AbstractField.php │ │ ├── CronExpression.php │ │ ├── DayOfMonthField.php │ │ ├── DayOfWeekField.php │ │ ├── FieldFactory.php │ │ ├── FieldFactoryInterface.php │ │ ├── FieldInterface.php │ │ ├── HoursField.php │ │ ├── MinutesField.php │ │ └── MonthField.php │ ├── fig │ └── http-message-util │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── RequestMethodInterface.php │ │ └── StatusCodeInterface.php │ ├── guzzlehttp │ ├── guzzle │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ ├── src │ │ │ ├── BodySummarizer.php │ │ │ ├── BodySummarizerInterface.php │ │ │ ├── Client.php │ │ │ ├── ClientInterface.php │ │ │ ├── ClientTrait.php │ │ │ ├── Cookie │ │ │ │ ├── CookieJar.php │ │ │ │ ├── CookieJarInterface.php │ │ │ │ ├── FileCookieJar.php │ │ │ │ ├── SessionCookieJar.php │ │ │ │ └── SetCookie.php │ │ │ ├── Exception │ │ │ │ ├── BadResponseException.php │ │ │ │ ├── ClientException.php │ │ │ │ ├── ConnectException.php │ │ │ │ ├── GuzzleException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── RequestException.php │ │ │ │ ├── ServerException.php │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ └── TransferException.php │ │ │ ├── Handler │ │ │ │ ├── CurlFactory.php │ │ │ │ ├── CurlFactoryInterface.php │ │ │ │ ├── CurlHandler.php │ │ │ │ ├── CurlMultiHandler.php │ │ │ │ ├── EasyHandle.php │ │ │ │ ├── HeaderProcessor.php │ │ │ │ ├── MockHandler.php │ │ │ │ ├── Proxy.php │ │ │ │ └── StreamHandler.php │ │ │ ├── HandlerStack.php │ │ │ ├── MessageFormatter.php │ │ │ ├── MessageFormatterInterface.php │ │ │ ├── Middleware.php │ │ │ ├── Pool.php │ │ │ ├── PrepareBodyMiddleware.php │ │ │ ├── RedirectMiddleware.php │ │ │ ├── RequestOptions.php │ │ │ ├── RetryMiddleware.php │ │ │ ├── TransferStats.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ │ └── vendor-bin │ │ │ ├── php-cs-fixer │ │ │ └── composer.json │ │ │ ├── phpstan │ │ │ └── composer.json │ │ │ └── psalm │ │ │ └── composer.json │ ├── promises │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── AggregateException.php │ │ │ ├── CancellationException.php │ │ │ ├── Coroutine.php │ │ │ ├── Create.php │ │ │ ├── Each.php │ │ │ ├── EachPromise.php │ │ │ ├── FulfilledPromise.php │ │ │ ├── Is.php │ │ │ ├── Promise.php │ │ │ ├── PromiseInterface.php │ │ │ ├── PromisorInterface.php │ │ │ ├── RejectedPromise.php │ │ │ ├── RejectionException.php │ │ │ ├── TaskQueue.php │ │ │ ├── TaskQueueInterface.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ └── psr7 │ │ ├── .github │ │ └── workflows │ │ │ ├── bc.yml │ │ │ ├── ci.yml │ │ │ ├── integration.yml │ │ │ └── static.yml │ │ ├── .php_cs.dist │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── AppendStream.php │ │ ├── BufferStream.php │ │ ├── CachingStream.php │ │ ├── DroppingStream.php │ │ ├── FnStream.php │ │ ├── Header.php │ │ ├── InflateStream.php │ │ ├── LazyOpenStream.php │ │ ├── LimitStream.php │ │ ├── Message.php │ │ ├── MessageTrait.php │ │ ├── MimeType.php │ │ ├── MultipartStream.php │ │ ├── NoSeekStream.php │ │ ├── PumpStream.php │ │ ├── Query.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Rfc7230.php │ │ ├── ServerRequest.php │ │ ├── Stream.php │ │ ├── StreamDecoratorTrait.php │ │ ├── StreamWrapper.php │ │ ├── UploadedFile.php │ │ ├── Uri.php │ │ ├── UriNormalizer.php │ │ ├── UriResolver.php │ │ ├── Utils.php │ │ ├── functions.php │ │ └── functions_include.php │ ├── illuminate │ └── contracts │ │ ├── Auth │ │ ├── Access │ │ │ ├── Authorizable.php │ │ │ └── Gate.php │ │ ├── Authenticatable.php │ │ ├── CanResetPassword.php │ │ ├── Factory.php │ │ ├── Guard.php │ │ ├── MustVerifyEmail.php │ │ ├── PasswordBroker.php │ │ ├── PasswordBrokerFactory.php │ │ ├── StatefulGuard.php │ │ ├── SupportsBasicAuth.php │ │ └── UserProvider.php │ │ ├── Broadcasting │ │ ├── Broadcaster.php │ │ ├── Factory.php │ │ ├── ShouldBroadcast.php │ │ └── ShouldBroadcastNow.php │ │ ├── Bus │ │ ├── Dispatcher.php │ │ └── QueueingDispatcher.php │ │ ├── Cache │ │ ├── Factory.php │ │ ├── Lock.php │ │ ├── LockProvider.php │ │ ├── LockTimeoutException.php │ │ ├── Repository.php │ │ └── Store.php │ │ ├── Config │ │ └── Repository.php │ │ ├── Console │ │ ├── Application.php │ │ └── Kernel.php │ │ ├── Container │ │ ├── BindingResolutionException.php │ │ ├── Container.php │ │ └── ContextualBindingBuilder.php │ │ ├── Cookie │ │ ├── Factory.php │ │ └── QueueingFactory.php │ │ ├── Database │ │ └── ModelIdentifier.php │ │ ├── Debug │ │ └── ExceptionHandler.php │ │ ├── Encryption │ │ ├── DecryptException.php │ │ ├── EncryptException.php │ │ └── Encrypter.php │ │ ├── Events │ │ └── Dispatcher.php │ │ ├── Filesystem │ │ ├── Cloud.php │ │ ├── Factory.php │ │ ├── FileExistsException.php │ │ ├── FileNotFoundException.php │ │ └── Filesystem.php │ │ ├── Foundation │ │ └── Application.php │ │ ├── Hashing │ │ └── Hasher.php │ │ ├── Http │ │ └── Kernel.php │ │ ├── LICENSE.md │ │ ├── Mail │ │ ├── MailQueue.php │ │ ├── Mailable.php │ │ └── Mailer.php │ │ ├── Notifications │ │ ├── Dispatcher.php │ │ └── Factory.php │ │ ├── Pagination │ │ ├── LengthAwarePaginator.php │ │ └── Paginator.php │ │ ├── Pipeline │ │ ├── Hub.php │ │ └── Pipeline.php │ │ ├── Queue │ │ ├── EntityNotFoundException.php │ │ ├── EntityResolver.php │ │ ├── Factory.php │ │ ├── Job.php │ │ ├── Monitor.php │ │ ├── Queue.php │ │ ├── QueueableCollection.php │ │ ├── QueueableEntity.php │ │ └── ShouldQueue.php │ │ ├── Redis │ │ ├── Connection.php │ │ ├── Factory.php │ │ └── LimiterTimeoutException.php │ │ ├── Routing │ │ ├── BindingRegistrar.php │ │ ├── Registrar.php │ │ ├── ResponseFactory.php │ │ ├── UrlGenerator.php │ │ └── UrlRoutable.php │ │ ├── Session │ │ └── Session.php │ │ ├── Support │ │ ├── Arrayable.php │ │ ├── DeferrableProvider.php │ │ ├── Htmlable.php │ │ ├── Jsonable.php │ │ ├── MessageBag.php │ │ ├── MessageProvider.php │ │ ├── Renderable.php │ │ └── Responsable.php │ │ ├── Translation │ │ ├── HasLocalePreference.php │ │ ├── Loader.php │ │ └── Translator.php │ │ ├── Validation │ │ ├── Factory.php │ │ ├── ImplicitRule.php │ │ ├── Rule.php │ │ ├── ValidatesWhenResolved.php │ │ └── Validator.php │ │ ├── View │ │ ├── Engine.php │ │ ├── Factory.php │ │ └── View.php │ │ └── composer.json │ ├── kryptonit3 │ ├── couchpotato │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CouchPotato.php │ │ │ └── Exceptions │ │ │ └── InvalidException.php │ ├── sickrage │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Exceptions │ │ │ └── InvalidException.php │ │ │ └── SickRage.php │ └── sonarr │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Sonarr.php │ ├── lcobucci │ ├── clock │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ │ ├── Clock.php │ │ │ ├── FrozenClock.php │ │ │ └── SystemClock.php │ └── jwt │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ ├── Builder.php │ │ ├── ClaimsFormatter.php │ │ ├── Configuration.php │ │ ├── Decoder.php │ │ ├── Encoder.php │ │ ├── Encoding │ │ ├── CannotDecodeContent.php │ │ ├── CannotEncodeContent.php │ │ ├── ChainedFormatter.php │ │ ├── JoseEncoder.php │ │ ├── MicrosecondBasedDateConversion.php │ │ ├── UnifyAudience.php │ │ └── UnixTimestampDates.php │ │ ├── Exception.php │ │ ├── Parser.php │ │ ├── Signer.php │ │ ├── Signer │ │ ├── CannotSignPayload.php │ │ ├── Ecdsa.php │ │ ├── Ecdsa │ │ │ ├── ConversionFailed.php │ │ │ ├── MultibyteStringConverter.php │ │ │ ├── Sha256.php │ │ │ ├── Sha384.php │ │ │ ├── Sha512.php │ │ │ └── SignatureConverter.php │ │ ├── Eddsa.php │ │ ├── Hmac.php │ │ ├── Hmac │ │ │ ├── Sha256.php │ │ │ ├── Sha384.php │ │ │ └── Sha512.php │ │ ├── InvalidKeyProvided.php │ │ ├── Key.php │ │ ├── Key │ │ │ ├── FileCouldNotBeRead.php │ │ │ ├── InMemory.php │ │ │ └── LocalFileReference.php │ │ ├── None.php │ │ ├── OpenSSL.php │ │ ├── Rsa.php │ │ └── Rsa │ │ │ ├── Sha256.php │ │ │ ├── Sha384.php │ │ │ └── Sha512.php │ │ ├── SodiumBase64Polyfill.php │ │ ├── Token.php │ │ ├── Token │ │ ├── Builder.php │ │ ├── DataSet.php │ │ ├── InvalidTokenStructure.php │ │ ├── Parser.php │ │ ├── Plain.php │ │ ├── RegisteredClaimGiven.php │ │ ├── RegisteredClaims.php │ │ ├── Signature.php │ │ └── UnsupportedHeaderFound.php │ │ ├── UnencryptedToken.php │ │ ├── Validation │ │ ├── Constraint.php │ │ ├── Constraint │ │ │ ├── IdentifiedBy.php │ │ │ ├── IssuedBy.php │ │ │ ├── LeewayCannotBeNegative.php │ │ │ ├── LooseValidAt.php │ │ │ ├── PermittedFor.php │ │ │ ├── RelatedTo.php │ │ │ ├── SignedWith.php │ │ │ ├── StrictValidAt.php │ │ │ └── ValidAt.php │ │ ├── ConstraintViolation.php │ │ ├── NoConstraintsGiven.php │ │ ├── RequiredConstraintsViolated.php │ │ └── Validator.php │ │ └── Validator.php │ ├── league │ └── oauth2-client │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Grant │ │ ├── AbstractGrant.php │ │ ├── AuthorizationCode.php │ │ ├── ClientCredentials.php │ │ ├── Exception │ │ │ └── InvalidGrantException.php │ │ ├── GrantFactory.php │ │ ├── Password.php │ │ └── RefreshToken.php │ │ ├── OptionProvider │ │ ├── HttpBasicAuthOptionProvider.php │ │ ├── OptionProviderInterface.php │ │ └── PostAuthOptionProvider.php │ │ ├── Provider │ │ ├── AbstractProvider.php │ │ ├── Exception │ │ │ └── IdentityProviderException.php │ │ ├── GenericProvider.php │ │ ├── GenericResourceOwner.php │ │ └── ResourceOwnerInterface.php │ │ ├── Token │ │ ├── AccessToken.php │ │ ├── AccessTokenInterface.php │ │ └── ResourceOwnerAccessTokenInterface.php │ │ └── Tool │ │ ├── ArrayAccessorTrait.php │ │ ├── BearerAuthorizationTrait.php │ │ ├── GuardedPropertyTrait.php │ │ ├── MacAuthorizationTrait.php │ │ ├── ProviderRedirectTrait.php │ │ ├── QueryBuilderTrait.php │ │ ├── RequestFactory.php │ │ └── RequiredParameterTrait.php │ ├── monolog │ └── monolog │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpstan.neon.dist │ │ └── src │ │ └── Monolog │ │ ├── ErrorHandler.php │ │ ├── Formatter │ │ ├── ChromePHPFormatter.php │ │ ├── ElasticaFormatter.php │ │ ├── FlowdockFormatter.php │ │ ├── FluentdFormatter.php │ │ ├── FormatterInterface.php │ │ ├── GelfMessageFormatter.php │ │ ├── HtmlFormatter.php │ │ ├── JsonFormatter.php │ │ ├── LineFormatter.php │ │ ├── LogglyFormatter.php │ │ ├── LogstashFormatter.php │ │ ├── MongoDBFormatter.php │ │ ├── NormalizerFormatter.php │ │ ├── ScalarFormatter.php │ │ └── WildfireFormatter.php │ │ ├── Handler │ │ ├── AbstractHandler.php │ │ ├── AbstractProcessingHandler.php │ │ ├── AbstractSyslogHandler.php │ │ ├── AmqpHandler.php │ │ ├── BrowserConsoleHandler.php │ │ ├── BufferHandler.php │ │ ├── ChromePHPHandler.php │ │ ├── CouchDBHandler.php │ │ ├── CubeHandler.php │ │ ├── Curl │ │ │ └── Util.php │ │ ├── DeduplicationHandler.php │ │ ├── DoctrineCouchDBHandler.php │ │ ├── DynamoDbHandler.php │ │ ├── ElasticSearchHandler.php │ │ ├── ErrorLogHandler.php │ │ ├── FilterHandler.php │ │ ├── FingersCrossed │ │ │ ├── ActivationStrategyInterface.php │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ └── ErrorLevelActivationStrategy.php │ │ ├── FingersCrossedHandler.php │ │ ├── FirePHPHandler.php │ │ ├── FleepHookHandler.php │ │ ├── FlowdockHandler.php │ │ ├── FormattableHandlerInterface.php │ │ ├── FormattableHandlerTrait.php │ │ ├── GelfHandler.php │ │ ├── GroupHandler.php │ │ ├── HandlerInterface.php │ │ ├── HandlerWrapper.php │ │ ├── HipChatHandler.php │ │ ├── IFTTTHandler.php │ │ ├── InsightOpsHandler.php │ │ ├── LogEntriesHandler.php │ │ ├── LogglyHandler.php │ │ ├── MailHandler.php │ │ ├── MandrillHandler.php │ │ ├── MissingExtensionException.php │ │ ├── MongoDBHandler.php │ │ ├── NativeMailerHandler.php │ │ ├── NewRelicHandler.php │ │ ├── NullHandler.php │ │ ├── PHPConsoleHandler.php │ │ ├── ProcessableHandlerInterface.php │ │ ├── ProcessableHandlerTrait.php │ │ ├── PsrHandler.php │ │ ├── PushoverHandler.php │ │ ├── RavenHandler.php │ │ ├── RedisHandler.php │ │ ├── RollbarHandler.php │ │ ├── RotatingFileHandler.php │ │ ├── SamplingHandler.php │ │ ├── Slack │ │ │ └── SlackRecord.php │ │ ├── SlackHandler.php │ │ ├── SlackWebhookHandler.php │ │ ├── SlackbotHandler.php │ │ ├── SocketHandler.php │ │ ├── StreamHandler.php │ │ ├── SwiftMailerHandler.php │ │ ├── SyslogHandler.php │ │ ├── SyslogUdp │ │ │ └── UdpSocket.php │ │ ├── SyslogUdpHandler.php │ │ ├── TestHandler.php │ │ ├── WhatFailureGroupHandler.php │ │ └── ZendMonitorHandler.php │ │ ├── Logger.php │ │ ├── Processor │ │ ├── GitProcessor.php │ │ ├── IntrospectionProcessor.php │ │ ├── MemoryPeakUsageProcessor.php │ │ ├── MemoryProcessor.php │ │ ├── MemoryUsageProcessor.php │ │ ├── MercurialProcessor.php │ │ ├── ProcessIdProcessor.php │ │ ├── ProcessorInterface.php │ │ ├── PsrLogMessageProcessor.php │ │ ├── TagProcessor.php │ │ ├── UidProcessor.php │ │ └── WebProcessor.php │ │ ├── Registry.php │ │ ├── ResettableInterface.php │ │ ├── SignalHandler.php │ │ └── Utils.php │ ├── myclabs │ └── php-enum │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── psalm.xml │ │ └── src │ │ ├── Enum.php │ │ └── PHPUnit │ │ └── Comparator.php │ ├── nekonomokochan │ └── php-json-logger │ │ ├── .dockerignore │ │ ├── .github │ │ ├── CONTRIBUTING.md │ │ ├── ISSUE_TEMPLATE │ │ │ ├── Bug_report.md │ │ │ └── Feature_request.md │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ └── cov │ │ │ └── .gitignore │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── docker-compose.yml │ │ ├── docker │ │ ├── Dockerfile │ │ └── config │ │ │ ├── docker-php-ext-xdebug.ini │ │ │ └── php.ini │ │ ├── phpunit.xml │ │ ├── src │ │ └── PhpJsonLogger │ │ │ ├── ErrorsContextFormatter.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── JsonFormatter.php │ │ │ ├── Logger.php │ │ │ ├── LoggerBuilder.php │ │ │ ├── MonologCreator.php │ │ │ ├── ServerEnvExtractor.php │ │ │ ├── SlackHandlerBuilder.php │ │ │ └── SlackWebhookHandlerBuilder.php │ │ └── tests │ │ ├── ExtendedMonologTest.php │ │ ├── Logger │ │ ├── AlertTest.php │ │ ├── CriticalTest.php │ │ ├── DebugTest.php │ │ ├── EmergencyTest.php │ │ ├── ErrorTest.php │ │ ├── InfoTest.php │ │ ├── LoggerTest.php │ │ ├── NoticeTest.php │ │ ├── SlackNotificationTest.php │ │ └── WarningTest.php │ │ └── UseInDockerTest.php │ ├── nikic │ └── fast-route │ │ ├── .gitignore │ │ ├── .hhconfig │ │ ├── .travis.yml │ │ ├── FastRoute.hhi │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── psalm.xml │ │ ├── src │ │ ├── BadRouteException.php │ │ ├── DataGenerator.php │ │ ├── DataGenerator │ │ │ ├── CharCountBased.php │ │ │ ├── GroupCountBased.php │ │ │ ├── GroupPosBased.php │ │ │ ├── MarkBased.php │ │ │ └── RegexBasedAbstract.php │ │ ├── Dispatcher.php │ │ ├── Dispatcher │ │ │ ├── CharCountBased.php │ │ │ ├── GroupCountBased.php │ │ │ ├── GroupPosBased.php │ │ │ ├── MarkBased.php │ │ │ └── RegexBasedAbstract.php │ │ ├── Route.php │ │ ├── RouteCollector.php │ │ ├── RouteParser.php │ │ ├── RouteParser │ │ │ └── Std.php │ │ ├── bootstrap.php │ │ └── functions.php │ │ └── test │ │ ├── Dispatcher │ │ ├── CharCountBasedTest.php │ │ ├── DispatcherTest.php │ │ ├── GroupCountBasedTest.php │ │ ├── GroupPosBasedTest.php │ │ └── MarkBasedTest.php │ │ ├── HackTypechecker │ │ ├── HackTypecheckerTest.php │ │ └── fixtures │ │ │ ├── all_options.php │ │ │ ├── empty_options.php │ │ │ └── no_options.php │ │ ├── RouteCollectorTest.php │ │ ├── RouteParser │ │ └── StdTest.php │ │ └── bootstrap.php │ ├── paquettg │ ├── php-html-parser │ │ ├── .gitattributes │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── .scrutinizer.yml │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ └── PHPHtmlParser │ │ │ ├── Content.php │ │ │ ├── Contracts │ │ │ ├── Dom │ │ │ │ ├── CleanerInterface.php │ │ │ │ └── ParserInterface.php │ │ │ ├── DomInterface.php │ │ │ └── Selector │ │ │ │ ├── ParserInterface.php │ │ │ │ ├── SeekerInterface.php │ │ │ │ └── SelectorInterface.php │ │ │ ├── DTO │ │ │ ├── Selector │ │ │ │ ├── ParsedSelectorCollectionDTO.php │ │ │ │ ├── ParsedSelectorDTO.php │ │ │ │ └── RuleDTO.php │ │ │ ├── Tag │ │ │ │ └── AttributeDTO.php │ │ │ └── TagDTO.php │ │ │ ├── Discovery │ │ │ ├── CleanerDiscovery.php │ │ │ ├── DomParserDiscovery.php │ │ │ ├── SeekerDiscovery.php │ │ │ └── SelectorParserDiscovery.php │ │ │ ├── Dom.php │ │ │ ├── Dom │ │ │ ├── Cleaner.php │ │ │ ├── Node │ │ │ │ ├── AbstractNode.php │ │ │ │ ├── ArrayNode.php │ │ │ │ ├── Collection.php │ │ │ │ ├── HtmlNode.php │ │ │ │ ├── InnerNode.php │ │ │ │ ├── LeafNode.php │ │ │ │ └── TextNode.php │ │ │ ├── Parser.php │ │ │ ├── RootAccessTrait.php │ │ │ └── Tag.php │ │ │ ├── Enum │ │ │ └── StringToken.php │ │ │ ├── Exceptions │ │ │ ├── ChildNotFoundException.php │ │ │ ├── CircularException.php │ │ │ ├── ContentLengthException.php │ │ │ ├── CurlException.php │ │ │ ├── EmptyCollectionException.php │ │ │ ├── LogicalException.php │ │ │ ├── NotLoadedException.php │ │ │ ├── ParentNotFoundException.php │ │ │ ├── StrictException.php │ │ │ ├── Tag │ │ │ │ └── AttributeNotFoundException.php │ │ │ ├── UnknownChildTypeException.php │ │ │ └── UnknownOptionException.php │ │ │ ├── Finder.php │ │ │ ├── Options.php │ │ │ ├── Selector │ │ │ ├── Parser.php │ │ │ ├── Seeker.php │ │ │ └── Selector.php │ │ │ └── StaticDom.php │ └── string-encode │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.php │ │ ├── phpunit.xml │ │ ├── src │ │ └── stringEncode │ │ │ ├── Encode.php │ │ │ └── Exception.php │ │ └── tests │ │ └── EncodeTest.php │ ├── paragonie │ ├── constant_time_encoding │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── psalm.xml │ │ ├── src │ │ │ ├── Base32.php │ │ │ ├── Base32Hex.php │ │ │ ├── Base64.php │ │ │ ├── Base64DotSlash.php │ │ │ ├── Base64DotSlashOrdered.php │ │ │ ├── Base64UrlSafe.php │ │ │ ├── Binary.php │ │ │ ├── EncoderInterface.php │ │ │ ├── Encoding.php │ │ │ ├── Hex.php │ │ │ └── RFC4648.php │ │ └── tests │ │ │ ├── Base32HexTest.php │ │ │ ├── Base32Test.php │ │ │ ├── Base64DotSlashOrderedTest.php │ │ │ ├── Base64DotSlashTest.php │ │ │ ├── Base64Test.php │ │ │ ├── Base64UrlSafeTest.php │ │ │ ├── EncodingTest.php │ │ │ ├── HexTest.php │ │ │ └── RFC4648Test.php │ ├── random_compat │ │ ├── LICENSE │ │ ├── build-phar.sh │ │ ├── composer.json │ │ ├── dist │ │ │ ├── random_compat.phar.pubkey │ │ │ └── random_compat.phar.pubkey.asc │ │ ├── lib │ │ │ └── random.php │ │ ├── other │ │ │ └── build_phar.php │ │ ├── psalm-autoload.php │ │ └── psalm.xml │ └── sodium_compat │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── autoload-fast.php │ │ ├── autoload-pedantic.php │ │ ├── autoload.php │ │ ├── build-phar.sh │ │ ├── composer.json │ │ ├── dist │ │ ├── Makefile │ │ └── box.json │ │ ├── lib │ │ ├── constants.php │ │ ├── namespaced.php │ │ ├── php72compat.php │ │ └── sodium_compat.php │ │ ├── namespaced │ │ ├── Compat.php │ │ ├── Core │ │ │ ├── BLAKE2b.php │ │ │ ├── ChaCha20.php │ │ │ ├── ChaCha20 │ │ │ │ ├── Ctx.php │ │ │ │ └── IetfCtx.php │ │ │ ├── Curve25519.php │ │ │ ├── Curve25519 │ │ │ │ ├── Fe.php │ │ │ │ ├── Ge │ │ │ │ │ ├── Cached.php │ │ │ │ │ ├── P1p1.php │ │ │ │ │ ├── P2.php │ │ │ │ │ ├── P3.php │ │ │ │ │ └── Precomp.php │ │ │ │ └── H.php │ │ │ ├── Ed25519.php │ │ │ ├── HChaCha20.php │ │ │ ├── HSalsa20.php │ │ │ ├── Poly1305.php │ │ │ ├── Poly1305 │ │ │ │ └── State.php │ │ │ ├── Salsa20.php │ │ │ ├── SipHash.php │ │ │ ├── Util.php │ │ │ ├── X25519.php │ │ │ ├── XChaCha20.php │ │ │ └── Xsalsa20.php │ │ ├── Crypto.php │ │ └── File.php │ │ ├── phpunit.xml.dist │ │ └── src │ │ ├── Compat.php │ │ ├── Core │ │ ├── BLAKE2b.php │ │ ├── ChaCha20.php │ │ ├── ChaCha20 │ │ │ ├── Ctx.php │ │ │ └── IetfCtx.php │ │ ├── Curve25519.php │ │ ├── Curve25519 │ │ │ ├── Fe.php │ │ │ ├── Ge │ │ │ │ ├── Cached.php │ │ │ │ ├── P1p1.php │ │ │ │ ├── P2.php │ │ │ │ ├── P3.php │ │ │ │ └── Precomp.php │ │ │ ├── H.php │ │ │ └── README.md │ │ ├── Ed25519.php │ │ ├── HChaCha20.php │ │ ├── HSalsa20.php │ │ ├── Poly1305.php │ │ ├── Poly1305 │ │ │ └── State.php │ │ ├── Salsa20.php │ │ ├── SipHash.php │ │ ├── Util.php │ │ ├── X25519.php │ │ ├── XChaCha20.php │ │ └── XSalsa20.php │ │ ├── Core32 │ │ ├── BLAKE2b.php │ │ ├── ChaCha20.php │ │ ├── ChaCha20 │ │ │ ├── Ctx.php │ │ │ └── IetfCtx.php │ │ ├── Curve25519.php │ │ ├── Curve25519 │ │ │ ├── Fe.php │ │ │ ├── Ge │ │ │ │ ├── Cached.php │ │ │ │ ├── P1p1.php │ │ │ │ ├── P2.php │ │ │ │ ├── P3.php │ │ │ │ └── Precomp.php │ │ │ ├── H.php │ │ │ └── README.md │ │ ├── Ed25519.php │ │ ├── HChaCha20.php │ │ ├── HSalsa20.php │ │ ├── Int32.php │ │ ├── Int64.php │ │ ├── Poly1305.php │ │ ├── Poly1305 │ │ │ └── State.php │ │ ├── Salsa20.php │ │ ├── SipHash.php │ │ ├── Util.php │ │ ├── X25519.php │ │ ├── XChaCha20.php │ │ └── XSalsa20.php │ │ ├── Crypto.php │ │ ├── Crypto32.php │ │ ├── File.php │ │ └── SodiumException.php │ ├── peppeocchi │ └── php-cron-scheduler │ │ ├── .coveralls.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ └── GO │ │ │ ├── FailedJob.php │ │ │ ├── Job.php │ │ │ ├── Scheduler.php │ │ │ └── Traits │ │ │ ├── Interval.php │ │ │ └── Mailer.php │ │ └── tests │ │ ├── GO │ │ ├── IntervalTest.php │ │ ├── JobOutputFilesTest.php │ │ ├── JobTest.php │ │ ├── MailerTest.php │ │ └── SchedulerTest.php │ │ ├── async_job.php │ │ ├── test_job.php │ │ └── tmp │ │ └── .gitignore │ ├── php-http │ ├── httplug │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── puli.json │ │ └── src │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ ├── HttpException.php │ │ │ ├── NetworkException.php │ │ │ ├── RequestAwareTrait.php │ │ │ ├── RequestException.php │ │ │ └── TransferException.php │ │ │ ├── HttpAsyncClient.php │ │ │ ├── HttpClient.php │ │ │ └── Promise │ │ │ ├── HttpFulfilledPromise.php │ │ │ └── HttpRejectedPromise.php │ └── promise │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── FulfilledPromise.php │ │ ├── Promise.php │ │ └── RejectedPromise.php │ ├── phpmailer │ └── phpmailer │ │ ├── COMMITMENT │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION │ │ ├── composer.json │ │ ├── get_oauth_token.php │ │ ├── language │ │ ├── phpmailer.lang-af.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-ba.php │ │ ├── phpmailer.lang-be.php │ │ ├── phpmailer.lang-bg.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-ch.php │ │ ├── phpmailer.lang-cs.php │ │ ├── phpmailer.lang-da.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-el.php │ │ ├── phpmailer.lang-eo.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-fa.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-gl.php │ │ ├── phpmailer.lang-he.php │ │ ├── phpmailer.lang-hi.php │ │ ├── phpmailer.lang-hr.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-hy.php │ │ ├── phpmailer.lang-id.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-ka.php │ │ ├── phpmailer.lang-ko.php │ │ ├── phpmailer.lang-lt.php │ │ ├── phpmailer.lang-lv.php │ │ ├── phpmailer.lang-mg.php │ │ ├── phpmailer.lang-ms.php │ │ ├── phpmailer.lang-nb.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-pt.php │ │ ├── phpmailer.lang-pt_br.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-sr.php │ │ ├── phpmailer.lang-sr_latn.php │ │ ├── phpmailer.lang-sv.php │ │ ├── phpmailer.lang-tl.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-uk.php │ │ ├── phpmailer.lang-vi.php │ │ ├── phpmailer.lang-zh.php │ │ └── phpmailer.lang-zh_cn.php │ │ ├── phpunit.xml.dist │ │ └── src │ │ ├── Exception.php │ │ ├── OAuth.php │ │ ├── PHPMailer.php │ │ ├── POP3.php │ │ └── SMTP.php │ ├── pragmarx │ └── google2fa │ │ ├── .gitignore │ │ ├── .scrutinizer.yml │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── RELICENSED.md │ │ ├── changelog.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── docs │ │ └── playground.jpg │ │ ├── phpunit.xml │ │ ├── src │ │ ├── Exceptions │ │ │ ├── IncompatibleWithGoogleAuthenticatorException.php │ │ │ ├── InsecureCallException.php │ │ │ ├── InvalidCharactersException.php │ │ │ └── SecretKeyTooShortException.php │ │ ├── Google2FA.php │ │ └── Support │ │ │ ├── Base32.php │ │ │ ├── Constants.php │ │ │ ├── QRCode.php │ │ │ └── Url.php │ │ ├── tests │ │ ├── .gitkeep │ │ ├── Constants.php │ │ ├── Google2FATest.php │ │ └── bootstrap.php │ │ └── upgrading.md │ ├── psr │ ├── container │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ContainerExceptionInterface.php │ │ │ ├── ContainerInterface.php │ │ │ └── NotFoundExceptionInterface.php │ ├── http-client │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClientExceptionInterface.php │ │ │ ├── ClientInterface.php │ │ │ ├── NetworkExceptionInterface.php │ │ │ └── RequestExceptionInterface.php │ ├── http-factory │ │ ├── .gitignore │ │ ├── .pullapprove.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── RequestFactoryInterface.php │ │ │ ├── ResponseFactoryInterface.php │ │ │ ├── ServerRequestFactoryInterface.php │ │ │ ├── StreamFactoryInterface.php │ │ │ ├── UploadedFileFactoryInterface.php │ │ │ └── UriFactoryInterface.php │ ├── http-message │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── MessageInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerRequestInterface.php │ │ │ ├── StreamInterface.php │ │ │ ├── UploadedFileInterface.php │ │ │ └── UriInterface.php │ ├── http-server-handler │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── RequestHandlerInterface.php │ ├── http-server-middleware │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── MiddlewareInterface.php │ ├── log │ │ ├── LICENSE │ │ ├── Psr │ │ │ └── Log │ │ │ │ ├── AbstractLogger.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogLevel.php │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ ├── LoggerInterface.php │ │ │ │ ├── LoggerTrait.php │ │ │ │ ├── NullLogger.php │ │ │ │ └── Test │ │ │ │ ├── DummyTest.php │ │ │ │ ├── LoggerInterfaceTest.php │ │ │ │ └── TestLogger.php │ │ ├── README.md │ │ └── composer.json │ └── simple-cache │ │ ├── .editorconfig │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── CacheException.php │ │ ├── CacheInterface.php │ │ └── InvalidArgumentException.php │ ├── pusher │ └── pusher-php-server │ │ ├── CHANGELOG.md │ │ ├── composer.json │ │ ├── encryption.ini │ │ ├── scripts │ │ └── travis-install.sh │ │ └── src │ │ ├── Pusher.php │ │ ├── PusherCrypto.php │ │ ├── PusherException.php │ │ ├── PusherInstance.php │ │ └── Webhook.php │ ├── ralouphie │ └── getallheaders │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── getallheaders.php │ ├── ramsey │ ├── collection │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── AbstractArray.php │ │ │ ├── AbstractCollection.php │ │ │ ├── AbstractSet.php │ │ │ ├── ArrayInterface.php │ │ │ ├── Collection.php │ │ │ ├── CollectionInterface.php │ │ │ ├── DoubleEndedQueue.php │ │ │ ├── DoubleEndedQueueInterface.php │ │ │ ├── Exception │ │ │ ├── CollectionMismatchException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidSortOrderException.php │ │ │ ├── NoSuchElementException.php │ │ │ ├── OutOfBoundsException.php │ │ │ ├── UnsupportedOperationException.php │ │ │ └── ValueExtractionException.php │ │ │ ├── GenericArray.php │ │ │ ├── Map │ │ │ ├── AbstractMap.php │ │ │ ├── AbstractTypedMap.php │ │ │ ├── AssociativeArrayMap.php │ │ │ ├── MapInterface.php │ │ │ ├── NamedParameterMap.php │ │ │ ├── TypedMap.php │ │ │ └── TypedMapInterface.php │ │ │ ├── Queue.php │ │ │ ├── QueueInterface.php │ │ │ ├── Set.php │ │ │ └── Tool │ │ │ ├── TypeTrait.php │ │ │ ├── ValueExtractorTrait.php │ │ │ └── ValueToStringTrait.php │ └── uuid │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── BinaryUtils.php │ │ ├── Builder │ │ ├── BuilderCollection.php │ │ ├── DefaultUuidBuilder.php │ │ ├── DegradedUuidBuilder.php │ │ ├── FallbackBuilder.php │ │ └── UuidBuilderInterface.php │ │ ├── Codec │ │ ├── CodecInterface.php │ │ ├── GuidStringCodec.php │ │ ├── OrderedTimeCodec.php │ │ ├── StringCodec.php │ │ ├── TimestampFirstCombCodec.php │ │ └── TimestampLastCombCodec.php │ │ ├── Converter │ │ ├── Number │ │ │ ├── BigNumberConverter.php │ │ │ ├── DegradedNumberConverter.php │ │ │ └── GenericNumberConverter.php │ │ ├── NumberConverterInterface.php │ │ ├── Time │ │ │ ├── BigNumberTimeConverter.php │ │ │ ├── DegradedTimeConverter.php │ │ │ ├── GenericTimeConverter.php │ │ │ └── PhpTimeConverter.php │ │ └── TimeConverterInterface.php │ │ ├── DegradedUuid.php │ │ ├── DeprecatedUuidInterface.php │ │ ├── DeprecatedUuidMethodsTrait.php │ │ ├── Exception │ │ ├── BuilderNotFoundException.php │ │ ├── DateTimeException.php │ │ ├── DceSecurityException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidBytesException.php │ │ ├── InvalidUuidStringException.php │ │ ├── NameException.php │ │ ├── NodeException.php │ │ ├── RandomSourceException.php │ │ ├── TimeSourceException.php │ │ ├── UnableToBuildUuidException.php │ │ ├── UnsupportedOperationException.php │ │ └── UuidExceptionInterface.php │ │ ├── FeatureSet.php │ │ ├── Fields │ │ ├── FieldsInterface.php │ │ └── SerializableFieldsTrait.php │ │ ├── Generator │ │ ├── CombGenerator.php │ │ ├── DceSecurityGenerator.php │ │ ├── DceSecurityGeneratorInterface.php │ │ ├── DefaultNameGenerator.php │ │ ├── DefaultTimeGenerator.php │ │ ├── NameGeneratorFactory.php │ │ ├── NameGeneratorInterface.php │ │ ├── PeclUuidNameGenerator.php │ │ ├── PeclUuidRandomGenerator.php │ │ ├── PeclUuidTimeGenerator.php │ │ ├── RandomBytesGenerator.php │ │ ├── RandomGeneratorFactory.php │ │ ├── RandomGeneratorInterface.php │ │ ├── RandomLibAdapter.php │ │ ├── TimeGeneratorFactory.php │ │ └── TimeGeneratorInterface.php │ │ ├── Guid │ │ ├── Fields.php │ │ ├── Guid.php │ │ └── GuidBuilder.php │ │ ├── Lazy │ │ └── LazyUuidFromString.php │ │ ├── Math │ │ ├── BrickMathCalculator.php │ │ ├── CalculatorInterface.php │ │ └── RoundingMode.php │ │ ├── Nonstandard │ │ ├── Fields.php │ │ ├── Uuid.php │ │ ├── UuidBuilder.php │ │ └── UuidV6.php │ │ ├── Provider │ │ ├── Dce │ │ │ └── SystemDceSecurityProvider.php │ │ ├── DceSecurityProviderInterface.php │ │ ├── Node │ │ │ ├── FallbackNodeProvider.php │ │ │ ├── NodeProviderCollection.php │ │ │ ├── RandomNodeProvider.php │ │ │ ├── StaticNodeProvider.php │ │ │ └── SystemNodeProvider.php │ │ ├── NodeProviderInterface.php │ │ ├── Time │ │ │ ├── FixedTimeProvider.php │ │ │ └── SystemTimeProvider.php │ │ └── TimeProviderInterface.php │ │ ├── Rfc4122 │ │ ├── Fields.php │ │ ├── FieldsInterface.php │ │ ├── NilTrait.php │ │ ├── NilUuid.php │ │ ├── UuidBuilder.php │ │ ├── UuidInterface.php │ │ ├── UuidV1.php │ │ ├── UuidV2.php │ │ ├── UuidV3.php │ │ ├── UuidV4.php │ │ ├── UuidV5.php │ │ ├── Validator.php │ │ ├── VariantTrait.php │ │ └── VersionTrait.php │ │ ├── Type │ │ ├── Decimal.php │ │ ├── Hexadecimal.php │ │ ├── Integer.php │ │ ├── NumberInterface.php │ │ ├── Time.php │ │ └── TypeInterface.php │ │ ├── Uuid.php │ │ ├── UuidFactory.php │ │ ├── UuidFactoryInterface.php │ │ ├── UuidInterface.php │ │ ├── Validator │ │ ├── GenericValidator.php │ │ └── ValidatorInterface.php │ │ └── functions.php │ ├── rmccue │ └── requests │ │ ├── .codecov.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── library │ │ ├── Requests.php │ │ └── Requests │ │ │ ├── Auth.php │ │ │ ├── Auth │ │ │ └── Basic.php │ │ │ ├── Cookie.php │ │ │ ├── Cookie │ │ │ └── Jar.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ ├── HTTP.php │ │ │ ├── HTTP │ │ │ │ ├── 304.php │ │ │ │ ├── 305.php │ │ │ │ ├── 306.php │ │ │ │ ├── 400.php │ │ │ │ ├── 401.php │ │ │ │ ├── 402.php │ │ │ │ ├── 403.php │ │ │ │ ├── 404.php │ │ │ │ ├── 405.php │ │ │ │ ├── 406.php │ │ │ │ ├── 407.php │ │ │ │ ├── 408.php │ │ │ │ ├── 409.php │ │ │ │ ├── 410.php │ │ │ │ ├── 411.php │ │ │ │ ├── 412.php │ │ │ │ ├── 413.php │ │ │ │ ├── 414.php │ │ │ │ ├── 415.php │ │ │ │ ├── 416.php │ │ │ │ ├── 417.php │ │ │ │ ├── 418.php │ │ │ │ ├── 428.php │ │ │ │ ├── 429.php │ │ │ │ ├── 431.php │ │ │ │ ├── 500.php │ │ │ │ ├── 501.php │ │ │ │ ├── 502.php │ │ │ │ ├── 503.php │ │ │ │ ├── 504.php │ │ │ │ ├── 505.php │ │ │ │ ├── 511.php │ │ │ │ └── Unknown.php │ │ │ ├── Transport.php │ │ │ └── Transport │ │ │ │ └── cURL.php │ │ │ ├── Hooker.php │ │ │ ├── Hooks.php │ │ │ ├── IDNAEncoder.php │ │ │ ├── IPv6.php │ │ │ ├── IRI.php │ │ │ ├── Proxy.php │ │ │ ├── Proxy │ │ │ └── HTTP.php │ │ │ ├── Response.php │ │ │ ├── Response │ │ │ └── Headers.php │ │ │ ├── SSL.php │ │ │ ├── Session.php │ │ │ ├── Transport.php │ │ │ ├── Transport │ │ │ ├── cURL.php │ │ │ ├── cacert.pem │ │ │ └── fsockopen.php │ │ │ └── Utility │ │ │ ├── CaseInsensitiveDictionary.php │ │ │ └── FilteredIterator.php │ │ └── phpunit.xml.dist │ ├── simshaun │ └── recurr │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── src │ │ └── Recurr │ │ │ ├── DateExclusion.php │ │ │ ├── DateInclusion.php │ │ │ ├── DateInfo.php │ │ │ ├── DateUtil.php │ │ │ ├── DaySet.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ ├── InvalidArgument.php │ │ │ ├── InvalidRRule.php │ │ │ └── InvalidWeekday.php │ │ │ ├── Frequency.php │ │ │ ├── Recurrence.php │ │ │ ├── RecurrenceCollection.php │ │ │ ├── Rule.php │ │ │ ├── Time.php │ │ │ ├── Transformer │ │ │ ├── ArrayTransformer.php │ │ │ ├── ArrayTransformerConfig.php │ │ │ ├── Constraint.php │ │ │ ├── Constraint │ │ │ │ ├── AfterConstraint.php │ │ │ │ ├── BeforeConstraint.php │ │ │ │ └── BetweenConstraint.php │ │ │ ├── ConstraintInterface.php │ │ │ ├── TextTransformer.php │ │ │ ├── Translator.php │ │ │ └── TranslatorInterface.php │ │ │ └── Weekday.php │ │ └── translations │ │ ├── da.php │ │ ├── de.php │ │ ├── el.php │ │ ├── en.php │ │ ├── es.php │ │ ├── eu.php │ │ ├── fr.php │ │ ├── it.php │ │ ├── nl.php │ │ ├── no.php │ │ ├── pt-br.php │ │ ├── sv.php │ │ └── tr.php │ ├── slim │ ├── psr7 │ │ ├── LICENSE.md │ │ ├── MAINTAINERS.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Cookies.php │ │ │ ├── Environment.php │ │ │ ├── Factory │ │ │ ├── RequestFactory.php │ │ │ ├── ResponseFactory.php │ │ │ ├── ServerRequestFactory.php │ │ │ ├── StreamFactory.php │ │ │ ├── UploadedFileFactory.php │ │ │ └── UriFactory.php │ │ │ ├── Header.php │ │ │ ├── Headers.php │ │ │ ├── Interfaces │ │ │ └── HeadersInterface.php │ │ │ ├── Message.php │ │ │ ├── NonBufferedBody.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Stream.php │ │ │ ├── UploadedFile.php │ │ │ └── Uri.php │ └── slim │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── MAINTAINERS.md │ │ ├── Slim │ │ ├── App.php │ │ ├── CallableResolver.php │ │ ├── Error │ │ │ ├── AbstractErrorRenderer.php │ │ │ └── Renderers │ │ │ │ ├── HtmlErrorRenderer.php │ │ │ │ ├── JsonErrorRenderer.php │ │ │ │ ├── PlainTextErrorRenderer.php │ │ │ │ └── XmlErrorRenderer.php │ │ ├── Exception │ │ │ ├── HttpBadRequestException.php │ │ │ ├── HttpException.php │ │ │ ├── HttpForbiddenException.php │ │ │ ├── HttpInternalServerErrorException.php │ │ │ ├── HttpMethodNotAllowedException.php │ │ │ ├── HttpNotFoundException.php │ │ │ ├── HttpNotImplementedException.php │ │ │ ├── HttpSpecializedException.php │ │ │ └── HttpUnauthorizedException.php │ │ ├── Factory │ │ │ ├── AppFactory.php │ │ │ ├── Psr17 │ │ │ │ ├── GuzzlePsr17Factory.php │ │ │ │ ├── LaminasDiactorosPsr17Factory.php │ │ │ │ ├── NyholmPsr17Factory.php │ │ │ │ ├── Psr17Factory.php │ │ │ │ ├── Psr17FactoryProvider.php │ │ │ │ ├── ServerRequestCreator.php │ │ │ │ ├── SlimHttpPsr17Factory.php │ │ │ │ ├── SlimHttpServerRequestCreator.php │ │ │ │ ├── SlimPsr17Factory.php │ │ │ │ └── ZendDiactorosPsr17Factory.php │ │ │ └── ServerRequestCreatorFactory.php │ │ ├── Handlers │ │ │ ├── ErrorHandler.php │ │ │ └── Strategies │ │ │ │ ├── RequestHandler.php │ │ │ │ ├── RequestResponse.php │ │ │ │ └── RequestResponseArgs.php │ │ ├── Interfaces │ │ │ ├── AdvancedCallableResolverInterface.php │ │ │ ├── CallableResolverInterface.php │ │ │ ├── DispatcherInterface.php │ │ │ ├── ErrorHandlerInterface.php │ │ │ ├── ErrorRendererInterface.php │ │ │ ├── InvocationStrategyInterface.php │ │ │ ├── MiddlewareDispatcherInterface.php │ │ │ ├── Psr17FactoryInterface.php │ │ │ ├── Psr17FactoryProviderInterface.php │ │ │ ├── RequestHandlerInvocationStrategyInterface.php │ │ │ ├── RouteCollectorInterface.php │ │ │ ├── RouteCollectorProxyInterface.php │ │ │ ├── RouteGroupInterface.php │ │ │ ├── RouteInterface.php │ │ │ ├── RouteParserInterface.php │ │ │ ├── RouteResolverInterface.php │ │ │ └── ServerRequestCreatorInterface.php │ │ ├── Logger.php │ │ ├── Middleware │ │ │ ├── BodyParsingMiddleware.php │ │ │ ├── ContentLengthMiddleware.php │ │ │ ├── ErrorMiddleware.php │ │ │ ├── MethodOverrideMiddleware.php │ │ │ ├── OutputBufferingMiddleware.php │ │ │ └── RoutingMiddleware.php │ │ ├── MiddlewareDispatcher.php │ │ ├── ResponseEmitter.php │ │ └── Routing │ │ │ ├── Dispatcher.php │ │ │ ├── FastRouteDispatcher.php │ │ │ ├── Route.php │ │ │ ├── RouteCollector.php │ │ │ ├── RouteCollectorProxy.php │ │ │ ├── RouteContext.php │ │ │ ├── RouteGroup.php │ │ │ ├── RouteParser.php │ │ │ ├── RouteResolver.php │ │ │ ├── RouteRunner.php │ │ │ └── RoutingResults.php │ │ └── composer.json │ ├── stripe │ └── stripe-php │ │ ├── .coveralls.github-actions.yml │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .php-cs-fixer.php │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── VERSION │ │ ├── build.php │ │ ├── composer.json │ │ ├── data │ │ └── ca-certificates.crt │ │ ├── init.php │ │ ├── lib │ │ ├── Account.php │ │ ├── AccountLink.php │ │ ├── AlipayAccount.php │ │ ├── ApiOperations │ │ │ ├── All.php │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ ├── NestedResource.php │ │ │ ├── Request.php │ │ │ ├── Retrieve.php │ │ │ └── Update.php │ │ ├── ApiRequestor.php │ │ ├── ApiResource.php │ │ ├── ApiResponse.php │ │ ├── ApplePayDomain.php │ │ ├── ApplicationFee.php │ │ ├── ApplicationFeeRefund.php │ │ ├── Balance.php │ │ ├── BalanceTransaction.php │ │ ├── BankAccount.php │ │ ├── BaseStripeClient.php │ │ ├── BaseStripeClientInterface.php │ │ ├── BillingPortal │ │ │ ├── Configuration.php │ │ │ └── Session.php │ │ ├── BitcoinReceiver.php │ │ ├── BitcoinTransaction.php │ │ ├── Capability.php │ │ ├── Card.php │ │ ├── Charge.php │ │ ├── Checkout │ │ │ └── Session.php │ │ ├── Collection.php │ │ ├── CountrySpec.php │ │ ├── Coupon.php │ │ ├── CreditNote.php │ │ ├── CreditNoteLineItem.php │ │ ├── Customer.php │ │ ├── CustomerBalanceTransaction.php │ │ ├── Discount.php │ │ ├── Dispute.php │ │ ├── EphemeralKey.php │ │ ├── ErrorObject.php │ │ ├── Event.php │ │ ├── Exception │ │ │ ├── ApiConnectionException.php │ │ │ ├── ApiErrorException.php │ │ │ ├── AuthenticationException.php │ │ │ ├── BadMethodCallException.php │ │ │ ├── CardException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── IdempotencyException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidRequestException.php │ │ │ ├── OAuth │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidClientException.php │ │ │ │ ├── InvalidGrantException.php │ │ │ │ ├── InvalidRequestException.php │ │ │ │ ├── InvalidScopeException.php │ │ │ │ ├── OAuthErrorException.php │ │ │ │ ├── UnknownOAuthErrorException.php │ │ │ │ ├── UnsupportedGrantTypeException.php │ │ │ │ └── UnsupportedResponseTypeException.php │ │ │ ├── PermissionException.php │ │ │ ├── RateLimitException.php │ │ │ ├── SignatureVerificationException.php │ │ │ ├── UnexpectedValueException.php │ │ │ └── UnknownApiErrorException.php │ │ ├── ExchangeRate.php │ │ ├── File.php │ │ ├── FileLink.php │ │ ├── HttpClient │ │ │ ├── ClientInterface.php │ │ │ ├── CurlClient.php │ │ │ └── StreamingClientInterface.php │ │ ├── Identity │ │ │ ├── VerificationReport.php │ │ │ └── VerificationSession.php │ │ ├── Invoice.php │ │ ├── InvoiceItem.php │ │ ├── InvoiceLineItem.php │ │ ├── Issuing │ │ │ ├── Authorization.php │ │ │ ├── Card.php │ │ │ ├── CardDetails.php │ │ │ ├── Cardholder.php │ │ │ ├── Dispute.php │ │ │ └── Transaction.php │ │ ├── LineItem.php │ │ ├── LoginLink.php │ │ ├── Mandate.php │ │ ├── OAuth.php │ │ ├── OAuthErrorObject.php │ │ ├── Order.php │ │ ├── OrderItem.php │ │ ├── OrderReturn.php │ │ ├── PaymentIntent.php │ │ ├── PaymentLink.php │ │ ├── PaymentMethod.php │ │ ├── Payout.php │ │ ├── Person.php │ │ ├── Plan.php │ │ ├── Price.php │ │ ├── Product.php │ │ ├── PromotionCode.php │ │ ├── Quote.php │ │ ├── Radar │ │ │ ├── EarlyFraudWarning.php │ │ │ ├── ValueList.php │ │ │ └── ValueListItem.php │ │ ├── Recipient.php │ │ ├── RecipientTransfer.php │ │ ├── Refund.php │ │ ├── Reporting │ │ │ ├── ReportRun.php │ │ │ └── ReportType.php │ │ ├── RequestTelemetry.php │ │ ├── Review.php │ │ ├── SKU.php │ │ ├── Service │ │ │ ├── AbstractService.php │ │ │ ├── AbstractServiceFactory.php │ │ │ ├── AccountLinkService.php │ │ │ ├── AccountService.php │ │ │ ├── ApplePayDomainService.php │ │ │ ├── ApplicationFeeService.php │ │ │ ├── BalanceService.php │ │ │ ├── BalanceTransactionService.php │ │ │ ├── BillingPortal │ │ │ │ ├── BillingPortalServiceFactory.php │ │ │ │ ├── ConfigurationService.php │ │ │ │ └── SessionService.php │ │ │ ├── ChargeService.php │ │ │ ├── Checkout │ │ │ │ ├── CheckoutServiceFactory.php │ │ │ │ └── SessionService.php │ │ │ ├── CoreServiceFactory.php │ │ │ ├── CountrySpecService.php │ │ │ ├── CouponService.php │ │ │ ├── CreditNoteService.php │ │ │ ├── CustomerService.php │ │ │ ├── DisputeService.php │ │ │ ├── EphemeralKeyService.php │ │ │ ├── EventService.php │ │ │ ├── ExchangeRateService.php │ │ │ ├── FileLinkService.php │ │ │ ├── FileService.php │ │ │ ├── Identity │ │ │ │ ├── IdentityServiceFactory.php │ │ │ │ ├── VerificationReportService.php │ │ │ │ └── VerificationSessionService.php │ │ │ ├── InvoiceItemService.php │ │ │ ├── InvoiceService.php │ │ │ ├── Issuing │ │ │ │ ├── AuthorizationService.php │ │ │ │ ├── CardService.php │ │ │ │ ├── CardholderService.php │ │ │ │ ├── DisputeService.php │ │ │ │ ├── IssuingServiceFactory.php │ │ │ │ └── TransactionService.php │ │ │ ├── MandateService.php │ │ │ ├── OAuthService.php │ │ │ ├── OrderReturnService.php │ │ │ ├── OrderService.php │ │ │ ├── PaymentIntentService.php │ │ │ ├── PaymentLinkService.php │ │ │ ├── PaymentMethodService.php │ │ │ ├── PayoutService.php │ │ │ ├── PlanService.php │ │ │ ├── PriceService.php │ │ │ ├── ProductService.php │ │ │ ├── PromotionCodeService.php │ │ │ ├── QuoteService.php │ │ │ ├── Radar │ │ │ │ ├── EarlyFraudWarningService.php │ │ │ │ ├── RadarServiceFactory.php │ │ │ │ ├── ValueListItemService.php │ │ │ │ └── ValueListService.php │ │ │ ├── RefundService.php │ │ │ ├── Reporting │ │ │ │ ├── ReportRunService.php │ │ │ │ ├── ReportTypeService.php │ │ │ │ └── ReportingServiceFactory.php │ │ │ ├── ReviewService.php │ │ │ ├── SetupAttemptService.php │ │ │ ├── SetupIntentService.php │ │ │ ├── ShippingRateService.php │ │ │ ├── Sigma │ │ │ │ ├── ScheduledQueryRunService.php │ │ │ │ └── SigmaServiceFactory.php │ │ │ ├── SkuService.php │ │ │ ├── SourceService.php │ │ │ ├── SubscriptionItemService.php │ │ │ ├── SubscriptionScheduleService.php │ │ │ ├── SubscriptionService.php │ │ │ ├── TaxCodeService.php │ │ │ ├── TaxRateService.php │ │ │ ├── Terminal │ │ │ │ ├── ConnectionTokenService.php │ │ │ │ ├── LocationService.php │ │ │ │ ├── ReaderService.php │ │ │ │ └── TerminalServiceFactory.php │ │ │ ├── TestHelpers │ │ │ │ ├── TestClockService.php │ │ │ │ └── TestHelpersServiceFactory.php │ │ │ ├── TokenService.php │ │ │ ├── TopupService.php │ │ │ ├── TransferService.php │ │ │ └── WebhookEndpointService.php │ │ ├── SetupAttempt.php │ │ ├── SetupIntent.php │ │ ├── ShippingRate.php │ │ ├── Sigma │ │ │ └── ScheduledQueryRun.php │ │ ├── SingletonApiResource.php │ │ ├── Source.php │ │ ├── SourceTransaction.php │ │ ├── Stripe.php │ │ ├── StripeClient.php │ │ ├── StripeClientInterface.php │ │ ├── StripeObject.php │ │ ├── StripeStreamingClientInterface.php │ │ ├── Subscription.php │ │ ├── SubscriptionItem.php │ │ ├── SubscriptionSchedule.php │ │ ├── TaxCode.php │ │ ├── TaxId.php │ │ ├── TaxRate.php │ │ ├── Terminal │ │ │ ├── ConnectionToken.php │ │ │ ├── Location.php │ │ │ └── Reader.php │ │ ├── TestHelpers │ │ │ └── TestClock.php │ │ ├── ThreeDSecure.php │ │ ├── Token.php │ │ ├── Topup.php │ │ ├── Transfer.php │ │ ├── TransferReversal.php │ │ ├── UsageRecord.php │ │ ├── UsageRecordSummary.php │ │ ├── Util │ │ │ ├── CaseInsensitiveArray.php │ │ │ ├── DefaultLogger.php │ │ │ ├── LoggerInterface.php │ │ │ ├── ObjectTypes.php │ │ │ ├── RandomGenerator.php │ │ │ ├── RequestOptions.php │ │ │ ├── Set.php │ │ │ └── Util.php │ │ ├── Webhook.php │ │ ├── WebhookEndpoint.php │ │ └── WebhookSignature.php │ │ ├── phpdoc.dist.xml │ │ ├── phpstan-baseline.neon │ │ ├── phpstan.neon.dist │ │ └── update_certs.php │ ├── symfony │ ├── deprecation-contracts │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── function.php │ ├── finder │ │ ├── CHANGELOG.md │ │ ├── Comparator │ │ │ ├── Comparator.php │ │ │ ├── DateComparator.php │ │ │ └── NumberComparator.php │ │ ├── Exception │ │ │ ├── AccessDeniedException.php │ │ │ └── DirectoryNotFoundException.php │ │ ├── Finder.php │ │ ├── Gitignore.php │ │ ├── Glob.php │ │ ├── Iterator │ │ │ ├── CustomFilterIterator.php │ │ │ ├── DateRangeFilterIterator.php │ │ │ ├── DepthRangeFilterIterator.php │ │ │ ├── ExcludeDirectoryFilterIterator.php │ │ │ ├── FileTypeFilterIterator.php │ │ │ ├── FilecontentFilterIterator.php │ │ │ ├── FilenameFilterIterator.php │ │ │ ├── MultiplePcreFilterIterator.php │ │ │ ├── PathFilterIterator.php │ │ │ ├── RecursiveDirectoryIterator.php │ │ │ ├── SizeRangeFilterIterator.php │ │ │ └── SortableIterator.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SplFileInfo.php │ │ └── composer.json │ ├── polyfill-ctype │ │ ├── Ctype.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-mbstring │ │ ├── LICENSE │ │ ├── Mbstring.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-php56 │ │ ├── LICENSE │ │ ├── Php56.php │ │ ├── README.md │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-php72 │ │ ├── LICENSE │ │ ├── Php72.php │ │ ├── README.md │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-php80 │ │ ├── LICENSE │ │ ├── Php80.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ ├── Attribute.php │ │ │ │ ├── Stringable.php │ │ │ │ ├── UnhandledMatchError.php │ │ │ │ └── ValueError.php │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-php81 │ │ ├── LICENSE │ │ ├── Php81.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ └── ReturnTypeWillChange.php │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-util │ │ ├── Binary.php │ │ ├── BinaryNoFuncOverload.php │ │ ├── BinaryOnFuncOverload.php │ │ ├── LICENSE │ │ ├── LegacyTestListener.php │ │ ├── README.md │ │ └── composer.json │ ├── var-dumper │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── Caster │ │ │ ├── AmqpCaster.php │ │ │ ├── ArgsStub.php │ │ │ ├── Caster.php │ │ │ ├── ClassStub.php │ │ │ ├── ConstStub.php │ │ │ ├── CutArrayStub.php │ │ │ ├── CutStub.php │ │ │ ├── DOMCaster.php │ │ │ ├── DateCaster.php │ │ │ ├── DoctrineCaster.php │ │ │ ├── EnumStub.php │ │ │ ├── ExceptionCaster.php │ │ │ ├── FrameStub.php │ │ │ ├── GmpCaster.php │ │ │ ├── IntlCaster.php │ │ │ ├── LinkStub.php │ │ │ ├── MemcachedCaster.php │ │ │ ├── PdoCaster.php │ │ │ ├── PgSqlCaster.php │ │ │ ├── ProxyManagerCaster.php │ │ │ ├── RedisCaster.php │ │ │ ├── ReflectionCaster.php │ │ │ ├── ResourceCaster.php │ │ │ ├── SplCaster.php │ │ │ ├── StubCaster.php │ │ │ ├── SymfonyCaster.php │ │ │ ├── TraceStub.php │ │ │ ├── XmlReaderCaster.php │ │ │ └── XmlResourceCaster.php │ │ ├── Cloner │ │ │ ├── AbstractCloner.php │ │ │ ├── ClonerInterface.php │ │ │ ├── Cursor.php │ │ │ ├── Data.php │ │ │ ├── DumperInterface.php │ │ │ ├── Stub.php │ │ │ └── VarCloner.php │ │ ├── Command │ │ │ ├── Descriptor │ │ │ │ ├── CliDescriptor.php │ │ │ │ ├── DumpDescriptorInterface.php │ │ │ │ └── HtmlDescriptor.php │ │ │ └── ServerDumpCommand.php │ │ ├── Dumper │ │ │ ├── AbstractDumper.php │ │ │ ├── CliDumper.php │ │ │ ├── ContextProvider │ │ │ │ ├── CliContextProvider.php │ │ │ │ ├── ContextProviderInterface.php │ │ │ │ ├── RequestContextProvider.php │ │ │ │ └── SourceContextProvider.php │ │ │ ├── DataDumperInterface.php │ │ │ ├── HtmlDumper.php │ │ │ └── ServerDumper.php │ │ ├── Exception │ │ │ └── ThrowingCasterException.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── bin │ │ │ │ └── var-dump-server │ │ │ ├── css │ │ │ │ └── htmlDescriptor.css │ │ │ ├── functions │ │ │ │ └── dump.php │ │ │ └── js │ │ │ │ └── htmlDescriptor.js │ │ ├── Server │ │ │ ├── Connection.php │ │ │ └── DumpServer.php │ │ ├── Test │ │ │ └── VarDumperTestTrait.php │ │ ├── Tests │ │ │ ├── Caster │ │ │ │ ├── CasterTest.php │ │ │ │ ├── DateCasterTest.php │ │ │ │ ├── ExceptionCasterTest.php │ │ │ │ ├── GmpCasterTest.php │ │ │ │ ├── IntlCasterTest.php │ │ │ │ ├── MemcachedCasterTest.php │ │ │ │ ├── PdoCasterTest.php │ │ │ │ ├── RedisCasterTest.php │ │ │ │ ├── ReflectionCasterTest.php │ │ │ │ ├── SplCasterTest.php │ │ │ │ ├── StubCasterTest.php │ │ │ │ └── XmlReaderCasterTest.php │ │ │ ├── Cloner │ │ │ │ ├── DataTest.php │ │ │ │ └── VarClonerTest.php │ │ │ ├── Command │ │ │ │ └── Descriptor │ │ │ │ │ ├── CliDescriptorTest.php │ │ │ │ │ └── HtmlDescriptorTest.php │ │ │ ├── Dumper │ │ │ │ ├── CliDumperTest.php │ │ │ │ ├── FunctionsTest.php │ │ │ │ ├── HtmlDumperTest.php │ │ │ │ └── ServerDumperTest.php │ │ │ ├── Fixtures │ │ │ │ ├── FooInterface.php │ │ │ │ ├── GeneratorDemo.php │ │ │ │ ├── NotLoadableClass.php │ │ │ │ ├── Twig.php │ │ │ │ ├── dumb-var.php │ │ │ │ ├── dump_server.php │ │ │ │ └── xml_reader.xml │ │ │ ├── Server │ │ │ │ └── ConnectionTest.php │ │ │ └── Test │ │ │ │ └── VarDumperTestTraitTest.php │ │ ├── VarDumper.php │ │ ├── composer.json │ │ └── phpunit.xml.dist │ └── yaml │ │ ├── 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 │ │ ├── Resources │ │ └── bin │ │ │ └── yaml-lint │ │ ├── Tag │ │ └── TaggedValue.php │ │ ├── Unescaper.php │ │ ├── Yaml.php │ │ └── composer.json │ ├── tightenco │ └── collect │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── collect-logo.png │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── readme.md │ │ ├── src │ │ └── Collect │ │ │ ├── Contracts │ │ │ └── Support │ │ │ │ ├── Arrayable.php │ │ │ │ ├── Htmlable.php │ │ │ │ └── Jsonable.php │ │ │ └── Support │ │ │ ├── Arr.php │ │ │ ├── Collection.php │ │ │ ├── HigherOrderCollectionProxy.php │ │ │ ├── HtmlString.php │ │ │ ├── Traits │ │ │ └── Macroable.php │ │ │ ├── alias.php │ │ │ └── helpers.php │ │ ├── stubs │ │ ├── src │ │ │ └── Collect │ │ │ │ └── Support │ │ │ │ ├── alias.php │ │ │ │ └── helpers.php │ │ └── tests │ │ │ └── bootstrap.php │ │ ├── tests │ │ ├── Support │ │ │ ├── SupportArrTest.php │ │ │ ├── SupportCarbonTest.php │ │ │ ├── SupportCollectionTest.php │ │ │ └── SupportMacroableTest.php │ │ └── bootstrap.php │ │ └── upgrade.sh │ ├── webmozart │ └── assert │ │ ├── .editorconfig │ │ ├── .github │ │ └── workflows │ │ │ └── ci.yaml │ │ ├── .php_cs │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── psalm.xml │ │ └── src │ │ ├── Assert.php │ │ ├── InvalidArgumentException.php │ │ └── Mixin.php │ └── zircote │ └── swagger-php │ ├── .gitignore │ ├── .travis.yml │ ├── Changelog.md │ ├── Examples │ ├── Examples.md │ ├── example-object │ │ └── example-object.php │ ├── misc │ │ └── misc-api.php │ ├── openapi-spec │ │ ├── PullRequest.php │ │ ├── RepositoriesControler.php │ │ ├── Repository.php │ │ ├── User.php │ │ ├── UsersController.php │ │ └── api.php │ ├── petstore-3.0 │ │ ├── api.php │ │ ├── controllers │ │ │ ├── Pet.php │ │ │ ├── Store.php │ │ │ └── User.php │ │ ├── models │ │ │ ├── ApiResponse.php │ │ │ ├── Category.php │ │ │ ├── Order.php │ │ │ ├── Pet.php │ │ │ ├── RequestBody.php │ │ │ ├── Tag.php │ │ │ └── User.php │ │ └── security.php │ ├── petstore.swagger.io │ │ ├── ApiResponse.php │ │ ├── controllers │ │ │ ├── PetController.php │ │ │ ├── StoreController.php │ │ │ └── UserController.php │ │ ├── models │ │ │ ├── Category.php │ │ │ ├── Order.php │ │ │ ├── Pet.php │ │ │ ├── Tag.php │ │ │ └── User.php │ │ ├── security.php │ │ ├── swagger-v3.php │ │ └── tags.php │ ├── swagger-spec │ │ ├── petstore-simple │ │ │ ├── SimplePet.php │ │ │ ├── SimplePetsController.php │ │ │ └── api.php │ │ ├── petstore-with-external-docs │ │ │ ├── controllers │ │ │ │ └── PetWithDocsController.php │ │ │ ├── docs.php │ │ │ └── models │ │ │ │ ├── ErrorModel.php │ │ │ │ └── Pet.php │ │ └── petstore │ │ │ ├── Pet.php │ │ │ ├── PetsController.php │ │ │ └── api.php │ └── using-refs │ │ ├── Product.php │ │ ├── ProductController.php │ │ └── api-spec.php │ ├── LICENSE-2.0.txt │ ├── README.md │ ├── bin │ └── openapi │ ├── composer.json │ ├── docs │ ├── .vuepress │ │ ├── config.js │ │ └── public │ │ │ └── 1.x │ │ │ ├── annotations.html │ │ │ ├── installation.html │ │ │ ├── partials.html │ │ │ ├── search.html │ │ │ ├── searchindex.js │ │ │ ├── static │ │ │ ├── ajax-loader.gif │ │ │ ├── basic.css │ │ │ ├── comment-bright.png │ │ │ ├── comment-close.png │ │ │ ├── comment.png │ │ │ ├── dialog-note.png │ │ │ ├── dialog-seealso.png │ │ │ ├── dialog-todo.png │ │ │ ├── dialog-topic.png │ │ │ ├── dialog-warning.png │ │ │ ├── doctools.js │ │ │ ├── down-pressed.png │ │ │ ├── down.png │ │ │ ├── epub.css │ │ │ ├── file.png │ │ │ ├── footerbg.png │ │ │ ├── headerbg.png │ │ │ ├── ie6.css │ │ │ ├── jquery-1.11.1.js │ │ │ ├── jquery.js │ │ │ ├── middlebg.png │ │ │ ├── minus.png │ │ │ ├── pixel │ │ │ ├── plus.png │ │ │ ├── pygments.css │ │ │ ├── pyramid.css │ │ │ ├── searchtools.js │ │ │ ├── transparent.gif │ │ │ ├── underscore-1.3.1.js │ │ │ ├── underscore.js │ │ │ ├── up-pressed.png │ │ │ ├── up.png │ │ │ └── websupport.js │ │ │ ├── using_swagger.html │ │ │ └── welcome.html │ ├── 1.x │ │ └── Readme.md │ ├── Getting-started.md │ ├── Migrating-to-v3.md │ ├── Related-projects.md │ ├── index.md │ └── swagger-php-internals.md │ ├── phpunit.xml.dist │ ├── src │ ├── Analyser.php │ ├── Analysis.php │ ├── Annotations │ │ ├── AbstractAnnotation.php │ │ ├── AdditionalProperties.php │ │ ├── Components.php │ │ ├── Contact.php │ │ ├── Delete.php │ │ ├── Discriminator.php │ │ ├── Examples.php │ │ ├── ExternalDocumentation.php │ │ ├── Flow.php │ │ ├── Get.php │ │ ├── Head.php │ │ ├── Header.php │ │ ├── Info.php │ │ ├── Items.php │ │ ├── JsonContent.php │ │ ├── License.php │ │ ├── Link.php │ │ ├── MediaType.php │ │ ├── OpenApi.php │ │ ├── Operation.php │ │ ├── Options.php │ │ ├── Parameter.php │ │ ├── Patch.php │ │ ├── PathItem.php │ │ ├── Post.php │ │ ├── Property.php │ │ ├── Put.php │ │ ├── RequestBody.php │ │ ├── Response.php │ │ ├── Schema.php │ │ ├── SecurityScheme.php │ │ ├── Server.php │ │ ├── ServerVariable.php │ │ ├── Tag.php │ │ ├── Trace.php │ │ ├── Xml.php │ │ └── XmlContent.php │ ├── Context.php │ ├── Logger.php │ ├── Processors │ │ ├── AugmentOperations.php │ │ ├── AugmentParameters.php │ │ ├── AugmentProperties.php │ │ ├── AugmentSchemas.php │ │ ├── BuildPaths.php │ │ ├── CleanUnmerged.php │ │ ├── ImportInterfaces.php │ │ ├── ImportTraits.php │ │ ├── InheritProperties.php │ │ ├── MergeIntoComponents.php │ │ ├── MergeIntoOpenApi.php │ │ ├── MergeJsonContent.php │ │ ├── MergeXmlContent.php │ │ └── OperationId.php │ ├── Serializer.php │ ├── StaticAnalyser.php │ ├── Util.php │ └── functions.php │ └── tests │ ├── AbstractAnnotationTest.php │ ├── AnalyserTest.php │ ├── AnalysisTest.php │ ├── AugmentOperationTest.php │ ├── AugmentParameterTest.php │ ├── AugmentPropertiesTest.php │ ├── AugmentSchemasTest.php │ ├── BuildPathsTest.php │ ├── CleanUnmergedTest.php │ ├── CommandlineInterfaceTest.php │ ├── ConstantsTest.php │ ├── ContextTest.php │ ├── ExamplesOutput │ ├── example-object.json │ ├── misc.json │ ├── openapi-spec.json │ ├── petstore-3.0.json │ ├── petstore-simple.json │ ├── petstore-with-external-docs.json │ ├── petstore.json │ ├── petstore.swagger.io.json │ └── using-refs.json │ ├── ExamplesTest.php │ ├── Fixtures │ ├── Customer.php │ ├── CustomerInterface.php │ ├── HelloTrait.php │ ├── InheritProperties │ │ ├── Ancestor.php │ │ ├── AncestorWithoutDocBlocks.php │ │ ├── Base.php │ │ ├── Child.php │ │ ├── ChildWithDocBlocks.php │ │ ├── Extended.php │ │ ├── ExtendedWithTwoSchemas.php │ │ ├── ExtendedWithoutAllOf.php │ │ └── GrandAncestor.php │ ├── NestedProperty.php │ ├── ThirdPartyAnnotations.php │ ├── TypedProperties.php │ ├── UsingPhpDoc.php │ ├── UsingRefs.php │ ├── UsingVar.php │ ├── php7.php │ └── routes.php │ ├── InheritPropertiesTest.php │ ├── ItemsTest.php │ ├── MergeIntoComponentsTest.php │ ├── MergeIntoOpenApiTest.php │ ├── MergeJsonContentTest.php │ ├── MergeXmlContentTest.php │ ├── NestedPropertyTest.php │ ├── OpenApiTestCase.php │ ├── RefTest.php │ ├── ResponseTest.php │ ├── SecuritySchemesTest.php │ ├── SerializerTest.php │ ├── StaticAnalyserTest.php │ ├── UndefinedTest.php │ ├── UtilTest.php │ └── ValidateRelationsTest.php ├── bootstrap ├── LICENSE ├── README.md ├── 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.svg │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── grunt │ ├── .jshintrc │ ├── configBridge.json │ └── sauce_browsers.yml ├── 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 └── package.json ├── cron.php ├── css ├── animate.css ├── colors │ ├── blue-dark.css │ ├── blue.css │ ├── default-dark.css │ ├── default.css │ ├── gray-dark.css │ ├── gray.css │ ├── green-dark.css │ ├── green.css │ ├── megna-dark.css │ ├── megna.css │ ├── purple-dark.css │ ├── purple.css │ └── red-dark.css ├── dark.css ├── dark.min.css ├── horizontal.css ├── horizontal.min.css ├── icons │ ├── linea-icons │ │ └── linea.css │ └── material-design-iconic-font │ │ ├── css │ │ ├── material-design-iconic-font.css │ │ ├── material-design-iconic-font.min.css │ │ ├── materialdesignicons.min.css │ │ └── materialdesignicons.min.css.map │ │ └── fonts │ │ ├── Material-Design-Iconic-Font.svg │ │ ├── Material-Design-Iconic-Font.woff │ │ ├── Material-Design-Iconic-Font.woff2 │ │ ├── materialdesignicons-webfont.svg │ │ ├── materialdesignicons-webfont.woff │ │ └── materialdesignicons-webfont.woff2 ├── light.css ├── light.min.css ├── mvp.css ├── organizr.css ├── organizr.min.css ├── plyr.css ├── prepros.cfg ├── simplebar.css ├── spinners.css └── themes │ ├── Blue.css │ └── Organizr.css ├── debug_jellystat_metadata.php ├── docs ├── api.json ├── home │ ├── index.html.gz │ ├── index.php │ ├── rapidoc-min.js │ ├── rapidoc-min.js.gz │ ├── rapidoc-min.js.map │ ├── rapidoc-min.js.map.gz │ └── report.html ├── index.php └── swagger │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── index.html │ ├── oauth2-redirect.html │ ├── swagger-ui-bundle.js │ ├── swagger-ui-bundle.js.map │ ├── swagger-ui-standalone-preset.js │ ├── swagger-ui-standalone-preset.js.map │ ├── swagger-ui.css │ ├── swagger-ui.css.map │ ├── swagger-ui.js │ └── swagger-ui.js.map ├── index.php ├── js ├── Sortable.js ├── Sortable.min.js ├── arrive.js ├── arrive.min.js ├── bootstrap-test.json ├── bowser.min.js ├── cbpFWTabs.js ├── chat.js ├── clipboard.js ├── custom.js ├── custom.min.js ├── custom.min.js.bak ├── dashboard1.js ├── dashboard2.js ├── dashboard3.js ├── dashboard4.js ├── emulatetab.joelpurra.js ├── flot-data.js ├── footable-init.js ├── functions.js ├── gauge.min.js ├── icons.json ├── jasny-bootstrap.js ├── jqColorPicker.min.js ├── jquery-2.2.4.min.js ├── jquery-lang.js ├── jquery-lang.min.js ├── jquery-migrate-3.3.0.js ├── jquery-ui.min.js ├── jquery.PrintArea.js ├── jquery.mousewheel.min.js ├── jquery.serializeToJSON.js ├── jquery.slimscroll.js ├── js.cookie.js ├── jsColor.js ├── jsColorPicker.min.js ├── jsgrid-init.js ├── jvectormap.custom.js ├── langpack │ ├── ar-sa[Arabic (Saudi Arabia)].json │ ├── ca[Catalan].json │ ├── cs[Czech].json │ ├── da[Danish].json │ ├── de-ch[German (Switzerland)].json │ ├── de[German].json │ ├── el[Greek].json │ ├── en[English].json │ ├── es[Spanish].json │ ├── et[Estonian].json │ ├── fi[Finnish].json │ ├── fr[French].json │ ├── hi[Hindi].json │ ├── hu[Hungarian].json │ ├── it[Italian].json │ ├── ja[Japanese].json │ ├── ko[Korean].json │ ├── lt[Lithuanian].json │ ├── lv[Latvian].json │ ├── nb[Bokmål].json │ ├── nl[Dutch].json │ ├── pl[Polish].json │ ├── pt[Portuguese].json │ ├── ro[Romanian].json │ ├── ru[Russian].json │ ├── sk[Slovak].json │ ├── sl[Slovenian].json │ ├── sr[Serbian].json │ ├── sv[Swedish].json │ ├── tr[Turkish].json │ ├── zh-Hant[Chinese (Traditional)].json │ └── zh[Chinese].json ├── lazyload.min.js ├── lazyload.min2.js ├── mask.js ├── morris-data.js ├── news.json ├── plyr.js ├── real-estate.js ├── simplebar.js ├── sponsors.json ├── tinycolor.min.js ├── toastr.js ├── ua-parser.min.js ├── validator.js ├── version.json ├── waves.js └── widget-ext.js ├── less ├── colors │ ├── blue-dark.less │ ├── blue.less │ ├── default-dark.less │ ├── default.less │ ├── gray-dark.less │ ├── gray.less │ ├── green-dark.less │ ├── green.less │ ├── megna-dark.less │ ├── megna.less │ ├── purple-dark.less │ ├── purple.less │ └── red-dark.less ├── common.less ├── dark.less ├── icons │ ├── font-awesome │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── HELP-US-OUT.txt │ │ ├── bower.json │ │ ├── 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 │ ├── linea-icons │ │ ├── fonts │ │ │ ├── linea-arrows-10.svg │ │ │ ├── linea-arrows-10.woff │ │ │ ├── linea-basic-10.svg │ │ │ ├── linea-basic-10.woff │ │ │ ├── linea-basic-elaboration-10.svg │ │ │ ├── linea-basic-elaboration-10.woff │ │ │ ├── linea-ecommerce-10.eot │ │ │ ├── linea-ecommerce-10.svg │ │ │ ├── linea-ecommerce-10.woff │ │ │ ├── linea-music-10.svg │ │ │ ├── linea-music-10.woff │ │ │ ├── linea-software-10.svg │ │ │ ├── linea-software-10.ttf │ │ │ ├── linea-software-10.woff │ │ │ ├── linea-weather-10.svg │ │ │ └── linea-weather-10.woff │ │ ├── linea.css │ │ └── linea.less │ ├── material-design-iconic-font2 │ │ ├── css │ │ │ ├── material-design-iconic-font.css │ │ │ └── material-design-iconic-font.min.css │ │ └── fonts │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ └── Material-Design-Iconic-Font.woff2 │ ├── simple-line-icons │ │ ├── css │ │ │ └── simple-line-icons.css │ │ ├── fonts │ │ │ ├── Simple-Line-Icons.eot │ │ │ ├── Simple-Line-Icons.svg │ │ │ ├── Simple-Line-Icons.ttf │ │ │ ├── Simple-Line-Icons.woff │ │ │ └── Simple-Line-Icons.woff2 │ │ ├── less │ │ │ └── simple-line-icons.less │ │ └── scss │ │ │ └── simple-line-icons.scss │ ├── themify-icons │ │ ├── fonts │ │ │ ├── themify.svg │ │ │ ├── themify.ttf │ │ │ └── themify.woff │ │ ├── ie7 │ │ │ └── ie7.css │ │ ├── themify-icons.css │ │ └── themify-icons.less │ └── weather-icons │ │ ├── css │ │ ├── weather-icons-core.css │ │ ├── weather-icons-variables.css │ │ ├── weather-icons-wind.css │ │ ├── weather-icons-wind.min.css │ │ ├── weather-icons.css │ │ └── weather-icons.min.css │ │ ├── font │ │ ├── weathericons-regular-webfont.svg │ │ ├── weathericons-regular-webfont.woff │ │ └── weathericons-regular-webfont.woff2 │ │ ├── less │ │ ├── css │ │ │ ├── variables-beaufort.css │ │ │ ├── variables-day.css │ │ │ ├── variables-direction.css │ │ │ ├── variables-misc.css │ │ │ ├── variables-moon.css │ │ │ ├── variables-neutral.css │ │ │ ├── variables-night.css │ │ │ ├── variables-time.css │ │ │ └── variables-wind-names.css │ │ ├── icon-classes │ │ │ ├── classes-beaufort.less │ │ │ ├── classes-day.less │ │ │ ├── classes-direction.less │ │ │ ├── classes-misc.less │ │ │ ├── classes-moon-aliases.less │ │ │ ├── classes-moon.less │ │ │ ├── classes-neutral.less │ │ │ ├── classes-night.less │ │ │ ├── classes-time.less │ │ │ ├── classes-wind-aliases.less │ │ │ ├── classes-wind-degrees.less │ │ │ └── classes-wind.less │ │ ├── icon-variables │ │ │ ├── variables-beaufort.less │ │ │ ├── variables-day.less │ │ │ ├── variables-direction.less │ │ │ ├── variables-misc.less │ │ │ ├── variables-moon.less │ │ │ ├── variables-neutral.less │ │ │ ├── variables-night.less │ │ │ ├── variables-time.less │ │ │ └── variables-wind-names.less │ │ ├── mappings │ │ │ ├── wi-forecast-io.less │ │ │ ├── wi-owm.less │ │ │ ├── wi-wmo4680.less │ │ │ └── wi-yahoo.less │ │ ├── weather-icons-classes.less │ │ ├── weather-icons-core.less │ │ ├── weather-icons-variables.less │ │ ├── weather-icons-wind.less │ │ ├── weather-icons-wind.min.less │ │ ├── weather-icons.less │ │ └── weather-icons.min.less │ │ └── sass │ │ ├── icon-classes │ │ ├── classes-beaufort.scss │ │ ├── classes-day.scss │ │ ├── classes-direction.scss │ │ ├── classes-misc.scss │ │ ├── classes-moon-aliases.scss │ │ ├── classes-moon.scss │ │ ├── classes-neutral.scss │ │ ├── classes-night.scss │ │ ├── classes-time.scss │ │ ├── classes-wind-aliases.scss │ │ ├── classes-wind-degrees.scss │ │ └── classes-wind.scss │ │ ├── icon-variables │ │ ├── variables-beaufort.scss │ │ ├── variables-day.scss │ │ ├── variables-direction.scss │ │ ├── variables-misc.scss │ │ ├── variables-moon.scss │ │ ├── variables-neutral.scss │ │ ├── variables-night.scss │ │ ├── variables-time.scss │ │ └── variables-wind-names.scss │ │ ├── mappings │ │ ├── wi-forecast-io.scss │ │ ├── wi-owm.scss │ │ ├── wi-wmo4680.scss │ │ └── wi-yahoo.scss │ │ ├── weather-icons-classes.scss │ │ ├── weather-icons-core.scss │ │ ├── weather-icons-variables.scss │ │ ├── weather-icons-wind.min.scss │ │ ├── weather-icons-wind.scss │ │ ├── weather-icons.min.scss │ │ └── weather-icons.scss ├── pages.less ├── prepros.cfg ├── responsive.less ├── sidebar-nav.less ├── spinners.css ├── style.less ├── variables.less └── widgets.less ├── plugins ├── bower_components │ ├── AnimatedSkillsDiagram │ │ ├── css │ │ │ ├── default.css │ │ │ └── reset.css │ │ ├── index.html │ │ └── js │ │ │ ├── animated-bar.js │ │ │ ├── jquery.js │ │ │ └── raphael.js │ ├── Animatedbg │ │ ├── css │ │ │ ├── component.css │ │ │ ├── demo.css │ │ │ └── normalize.css │ │ ├── img │ │ │ ├── deco.svg │ │ │ ├── demo-1-bg.jpg │ │ │ └── demo-2-bg.jpg │ │ └── js │ │ │ ├── EasePack.min.js │ │ │ ├── TweenLite.min.js │ │ │ ├── demo-1.js │ │ │ ├── demo-2.js │ │ │ ├── demo-3.js │ │ │ ├── demo-4.js │ │ │ └── rAF.js │ ├── Chart.js │ │ ├── Chart.js │ │ ├── Chart.min.js │ │ ├── chartjs.init.js │ │ └── src │ │ │ ├── Chart.Bar.js │ │ │ ├── Chart.Core.js │ │ │ ├── Chart.Doughnut.js │ │ │ ├── Chart.Line.js │ │ │ ├── Chart.PolarArea.js │ │ │ └── Chart.Radar.js │ ├── Magnific-Popup-master │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── composer.json │ │ ├── dist │ │ │ ├── jquery.magnific-popup-init.js │ │ │ ├── jquery.magnific-popup.js │ │ │ ├── jquery.magnific-popup.min.js │ │ │ └── magnific-popup.css │ │ ├── libs │ │ │ ├── jquery-loader.js │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ └── qunit │ │ │ │ ├── qunit.css │ │ │ │ └── qunit.js │ │ ├── magnific-popup.jquery.json │ │ ├── package.json │ │ ├── src │ │ │ ├── css │ │ │ │ ├── _settings.scss │ │ │ │ └── main.scss │ │ │ └── js │ │ │ │ ├── ajax.js │ │ │ │ ├── core.js │ │ │ │ ├── gallery.js │ │ │ │ ├── iframe.js │ │ │ │ ├── image.js │ │ │ │ ├── inline.js │ │ │ │ ├── retina.js │ │ │ │ └── zoom.js │ │ └── website │ │ │ ├── _includes │ │ │ ├── analytics.html │ │ │ ├── build-tool.html │ │ │ ├── examples.html │ │ │ ├── logo.html │ │ │ └── signup.html │ │ │ ├── _layouts │ │ │ └── default.html │ │ │ ├── documentation.md │ │ │ ├── index.html │ │ │ ├── site-assets │ │ │ ├── ajax │ │ │ │ ├── test-ajax-2.html │ │ │ │ └── test-ajax.html │ │ │ └── site.css │ │ │ ├── third-party-libs │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── uglify.js │ │ │ ├── zepto.js │ │ │ └── zepto.min.js │ │ │ └── wordpress.html │ ├── Minimal-Gauge-chart │ │ ├── .gitattributes │ │ ├── README.md │ │ ├── css │ │ │ └── cmGauge.css │ │ ├── index.html │ │ └── js │ │ │ └── cmGauge.js │ ├── ace │ │ ├── ace.js │ │ ├── ext-searchbox.js │ │ ├── mode-css.js │ │ ├── mode-html.js │ │ ├── mode-javascript.js │ │ ├── snippets │ │ │ ├── abap.js │ │ │ ├── abc.js │ │ │ ├── actionscript.js │ │ │ ├── ada.js │ │ │ ├── apache_conf.js │ │ │ ├── applescript.js │ │ │ ├── asciidoc.js │ │ │ ├── asl.js │ │ │ ├── assembly_x86.js │ │ │ ├── autohotkey.js │ │ │ ├── batchfile.js │ │ │ ├── bro.js │ │ │ ├── c9search.js │ │ │ ├── c_cpp.js │ │ │ ├── cirru.js │ │ │ ├── clojure.js │ │ │ ├── cobol.js │ │ │ ├── coffee.js │ │ │ ├── coldfusion.js │ │ │ ├── csharp.js │ │ │ ├── csound_document.js │ │ │ ├── csound_orchestra.js │ │ │ ├── csound_score.js │ │ │ ├── csp.js │ │ │ ├── css.js │ │ │ ├── curly.js │ │ │ ├── d.js │ │ │ ├── dart.js │ │ │ ├── diff.js │ │ │ ├── django.js │ │ │ ├── dockerfile.js │ │ │ ├── dot.js │ │ │ ├── drools.js │ │ │ ├── edifact.js │ │ │ ├── eiffel.js │ │ │ ├── ejs.js │ │ │ ├── elixir.js │ │ │ ├── elm.js │ │ │ ├── erlang.js │ │ │ ├── forth.js │ │ │ ├── fortran.js │ │ │ ├── ftl.js │ │ │ ├── gcode.js │ │ │ ├── gherkin.js │ │ │ ├── gitignore.js │ │ │ ├── glsl.js │ │ │ ├── gobstones.js │ │ │ ├── golang.js │ │ │ ├── graphqlschema.js │ │ │ ├── groovy.js │ │ │ ├── haml.js │ │ │ ├── handlebars.js │ │ │ ├── haskell.js │ │ │ ├── haskell_cabal.js │ │ │ ├── haxe.js │ │ │ ├── hjson.js │ │ │ ├── html.js │ │ │ ├── html_elixir.js │ │ │ ├── html_ruby.js │ │ │ ├── ini.js │ │ │ ├── io.js │ │ │ ├── jack.js │ │ │ ├── jade.js │ │ │ ├── java.js │ │ │ ├── javascript.js │ │ │ ├── json.js │ │ │ ├── jsoniq.js │ │ │ ├── jsp.js │ │ │ ├── jssm.js │ │ │ ├── jsx.js │ │ │ ├── julia.js │ │ │ ├── kotlin.js │ │ │ ├── latex.js │ │ │ ├── less.js │ │ │ ├── liquid.js │ │ │ ├── lisp.js │ │ │ ├── livescript.js │ │ │ ├── logiql.js │ │ │ ├── lsl.js │ │ │ ├── lua.js │ │ │ ├── luapage.js │ │ │ ├── lucene.js │ │ │ ├── makefile.js │ │ │ ├── markdown.js │ │ │ ├── mask.js │ │ │ ├── matlab.js │ │ │ ├── maze.js │ │ │ ├── mel.js │ │ │ ├── mixal.js │ │ │ ├── mushcode.js │ │ │ ├── mysql.js │ │ │ ├── nix.js │ │ │ ├── nsis.js │ │ │ ├── objectivec.js │ │ │ ├── ocaml.js │ │ │ ├── pascal.js │ │ │ ├── perl.js │ │ │ ├── pgsql.js │ │ │ ├── php.js │ │ │ ├── pig.js │ │ │ ├── plain_text.js │ │ │ ├── powershell.js │ │ │ ├── praat.js │ │ │ ├── prolog.js │ │ │ ├── properties.js │ │ │ ├── protobuf.js │ │ │ ├── python.js │ │ │ ├── r.js │ │ │ ├── razor.js │ │ │ ├── rdoc.js │ │ │ ├── red.js │ │ │ ├── redshift.js │ │ │ ├── rhtml.js │ │ │ ├── rst.js │ │ │ ├── ruby.js │ │ │ ├── rust.js │ │ │ ├── sass.js │ │ │ ├── scad.js │ │ │ ├── scala.js │ │ │ ├── scheme.js │ │ │ ├── scss.js │ │ │ ├── sh.js │ │ │ ├── sjs.js │ │ │ ├── smarty.js │ │ │ ├── snippets.js │ │ │ ├── soy_template.js │ │ │ ├── space.js │ │ │ ├── sparql.js │ │ │ ├── sql.js │ │ │ ├── sqlserver.js │ │ │ ├── stylus.js │ │ │ ├── svg.js │ │ │ ├── swift.js │ │ │ ├── tcl.js │ │ │ ├── tex.js │ │ │ ├── text.js │ │ │ ├── textile.js │ │ │ ├── toml.js │ │ │ ├── tsx.js │ │ │ ├── turtle.js │ │ │ ├── twig.js │ │ │ ├── typescript.js │ │ │ ├── vala.js │ │ │ ├── vbscript.js │ │ │ ├── velocity.js │ │ │ ├── verilog.js │ │ │ ├── vhdl.js │ │ │ ├── wollok.js │ │ │ ├── xml.js │ │ │ ├── xquery.js │ │ │ └── yaml.js │ │ ├── theme-github.js │ │ ├── theme-idle_fingers.js │ │ ├── worker-coffee.js │ │ ├── worker-css.js │ │ ├── worker-html.js │ │ ├── worker-javascript.js │ │ ├── worker-json.js │ │ ├── worker-lua.js │ │ ├── worker-php.js │ │ ├── worker-xml.js │ │ └── worker-xquery.js │ ├── alertify │ │ ├── alertify.min.css │ │ ├── alertify.min.js │ │ └── default.min.css │ ├── animatedModal │ │ ├── animatedModal.js │ │ └── animatedModal.min.js │ ├── blockUI │ │ ├── jquery.blockUI.js │ │ └── jquery.blockUI.min.js │ ├── bootstrap-colorpicker-sliders │ │ ├── bootstrap.colorpickersliders.min.css │ │ └── bootstrap.colorpickersliders.min.js │ ├── bootstrap-datepicker │ │ ├── bootstrap-datepicker.min.css │ │ └── bootstrap-datepicker.min.js │ ├── bootstrap-daterangepicker │ │ ├── daterangepicker.css │ │ ├── daterangepicker.js │ │ └── drp.png │ ├── bootstrap-old │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── grunt │ │ │ ├── .jshintrc │ │ │ ├── bs-commonjs-generator.js │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ ├── bs-lessdoc-parser.js │ │ │ ├── bs-raw-files-generator.js │ │ │ ├── configBridge.json │ │ │ └── sauce_browsers.yml │ │ ├── js │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── affix.js │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── transition.js │ │ ├── less │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── reset-text.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── nuget │ │ │ ├── MyGet.ps1 │ │ │ ├── bootstrap.less.nuspec │ │ │ └── bootstrap.nuspec │ │ ├── package.js │ │ └── package.json │ ├── bootstrap-rtl-master │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-rtl.min.css │ │ │ │ └── bootstrap-theme-rtl.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap-rtl.js │ │ │ │ └── bootstrap-rtl.min.js │ │ └── src │ │ │ ├── css │ │ │ ├── bootstrap-rtl.css │ │ │ └── bootstrap-theme-rtl.css │ │ │ └── js │ │ │ └── bootstrap-rtl.js │ ├── bootstrap-select │ │ ├── bootstrap-select.js.map │ │ ├── bootstrap-select.min.css │ │ └── bootstrap-select.min.js │ ├── bootstrap-social │ │ ├── .bower.json │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bootstrap-social.css │ │ ├── bootstrap-social.less │ │ ├── bootstrap-social.scss │ │ └── bower.json │ ├── bootstrap-table │ │ ├── bootstrap-test.json │ │ ├── dist │ │ │ ├── bootstrap-table-all.js │ │ │ ├── bootstrap-table-all.min.js │ │ │ ├── bootstrap-table-locale-all.js │ │ │ ├── bootstrap-table-locale-all.min.js │ │ │ ├── bootstrap-table.css │ │ │ ├── bootstrap-table.ints.js │ │ │ ├── bootstrap-table.js │ │ │ ├── bootstrap-table.min.css │ │ │ ├── bootstrap-table.min.js │ │ │ ├── extensions │ │ │ │ ├── cookie │ │ │ │ │ ├── bootstrap-table-cookie.js │ │ │ │ │ └── bootstrap-table-cookie.min.js │ │ │ │ ├── editable │ │ │ │ │ ├── bootstrap-table-editable.js │ │ │ │ │ └── bootstrap-table-editable.min.js │ │ │ │ ├── export │ │ │ │ │ ├── bootstrap-table-export.js │ │ │ │ │ └── bootstrap-table-export.min.js │ │ │ │ ├── filter-control │ │ │ │ │ ├── bootstrap-table-filter-control.js │ │ │ │ │ └── bootstrap-table-filter-control.min.js │ │ │ │ ├── filter │ │ │ │ │ ├── bootstrap-table-filter.js │ │ │ │ │ └── bootstrap-table-filter.min.js │ │ │ │ ├── flat-json │ │ │ │ │ ├── bootstrap-table-flat-json.js │ │ │ │ │ └── bootstrap-table-flat-json.min.js │ │ │ │ ├── key-events │ │ │ │ │ ├── bootstrap-table-key-events.js │ │ │ │ │ └── bootstrap-table-key-events.min.js │ │ │ │ ├── mobile │ │ │ │ │ ├── bootstrap-table-mobile.js │ │ │ │ │ └── bootstrap-table-mobile.min.js │ │ │ │ ├── multiple-sort │ │ │ │ │ ├── bootstrap-table-multiple-sort.js │ │ │ │ │ └── bootstrap-table-multiple-sort.min.js │ │ │ │ ├── natural-sorting │ │ │ │ │ ├── bootstrap-table-natural-sorting.js │ │ │ │ │ └── bootstrap-table-natural-sorting.min.js │ │ │ │ ├── reorder-columns │ │ │ │ │ ├── bootstrap-table-reorder-columns.js │ │ │ │ │ └── bootstrap-table-reorder-columns.min.js │ │ │ │ ├── reorder-rows │ │ │ │ │ ├── bootstrap-table-reorder-rows.css │ │ │ │ │ ├── bootstrap-table-reorder-rows.js │ │ │ │ │ └── bootstrap-table-reorder-rows.min.js │ │ │ │ ├── resizable │ │ │ │ │ ├── bootstrap-table-resizable.js │ │ │ │ │ └── bootstrap-table-resizable.min.js │ │ │ │ └── toolbar │ │ │ │ │ ├── bootstrap-table-toolbar.js │ │ │ │ │ └── bootstrap-table-toolbar.min.js │ │ │ └── locale │ │ │ │ ├── bootstrap-table-ar-SA.js │ │ │ │ ├── bootstrap-table-ar-SA.min.js │ │ │ │ ├── bootstrap-table-cs-CZ.js │ │ │ │ ├── bootstrap-table-cs-CZ.min.js │ │ │ │ ├── bootstrap-table-da-DK.js │ │ │ │ ├── bootstrap-table-da-DK.min.js │ │ │ │ ├── bootstrap-table-de-DE.js │ │ │ │ ├── bootstrap-table-de-DE.min.js │ │ │ │ ├── bootstrap-table-el-GR.js │ │ │ │ ├── bootstrap-table-el-GR.min.js │ │ │ │ ├── bootstrap-table-en-US.js │ │ │ │ ├── bootstrap-table-en-US.min.js │ │ │ │ ├── bootstrap-table-es-AR.js │ │ │ │ ├── bootstrap-table-es-AR.min.js │ │ │ │ ├── bootstrap-table-es-CR.js │ │ │ │ ├── bootstrap-table-es-CR.min.js │ │ │ │ ├── bootstrap-table-es-MX.js │ │ │ │ ├── bootstrap-table-es-MX.min.js │ │ │ │ ├── bootstrap-table-es-NI.js │ │ │ │ ├── bootstrap-table-es-NI.min.js │ │ │ │ ├── bootstrap-table-es-SP.js │ │ │ │ ├── bootstrap-table-es-SP.min.js │ │ │ │ ├── bootstrap-table-fr-BE.js │ │ │ │ ├── bootstrap-table-fr-BE.min.js │ │ │ │ ├── bootstrap-table-fr-FR.js │ │ │ │ ├── bootstrap-table-fr-FR.min.js │ │ │ │ ├── bootstrap-table-hu-HU.js │ │ │ │ ├── bootstrap-table-hu-HU.min.js │ │ │ │ ├── bootstrap-table-it-IT.js │ │ │ │ ├── bootstrap-table-it-IT.min.js │ │ │ │ ├── bootstrap-table-ja-JP.js │ │ │ │ ├── bootstrap-table-ja-JP.min.js │ │ │ │ ├── bootstrap-table-ka-GE.js │ │ │ │ ├── bootstrap-table-ka-GE.min.js │ │ │ │ ├── bootstrap-table-ko-KR.js │ │ │ │ ├── bootstrap-table-ko-KR.min.js │ │ │ │ ├── bootstrap-table-ms-MY.js │ │ │ │ ├── bootstrap-table-ms-MY.min.js │ │ │ │ ├── bootstrap-table-nb-NO.js │ │ │ │ ├── bootstrap-table-nb-NO.min.js │ │ │ │ ├── bootstrap-table-nl-NL.js │ │ │ │ ├── bootstrap-table-nl-NL.min.js │ │ │ │ ├── bootstrap-table-pl-PL.js │ │ │ │ ├── bootstrap-table-pl-PL.min.js │ │ │ │ ├── bootstrap-table-pt-BR.js │ │ │ │ ├── bootstrap-table-pt-BR.min.js │ │ │ │ ├── bootstrap-table-pt-PT.js │ │ │ │ ├── bootstrap-table-pt-PT.min.js │ │ │ │ ├── bootstrap-table-ro-RO.js │ │ │ │ ├── bootstrap-table-ro-RO.min.js │ │ │ │ ├── bootstrap-table-ru-RU.js │ │ │ │ ├── bootstrap-table-ru-RU.min.js │ │ │ │ ├── bootstrap-table-sk-SK.js │ │ │ │ ├── bootstrap-table-sk-SK.min.js │ │ │ │ ├── bootstrap-table-sv-SE.js │ │ │ │ ├── bootstrap-table-sv-SE.min.js │ │ │ │ ├── bootstrap-table-th-TH.js │ │ │ │ ├── bootstrap-table-th-TH.min.js │ │ │ │ ├── bootstrap-table-tr-TR.js │ │ │ │ ├── bootstrap-table-tr-TR.min.js │ │ │ │ ├── bootstrap-table-uk-UA.js │ │ │ │ ├── bootstrap-table-uk-UA.min.js │ │ │ │ ├── bootstrap-table-ur-PK.js │ │ │ │ ├── bootstrap-table-ur-PK.min.js │ │ │ │ ├── bootstrap-table-vi-VN.js │ │ │ │ ├── bootstrap-table-vi-VN.min.js │ │ │ │ ├── bootstrap-table-zh-CN.js │ │ │ │ ├── bootstrap-table-zh-CN.min.js │ │ │ │ ├── bootstrap-table-zh-TW.js │ │ │ │ └── bootstrap-table-zh-TW.min.js │ │ └── src │ │ │ ├── bootstrap-table.css │ │ │ ├── bootstrap-table.js │ │ │ ├── extensions │ │ │ ├── cookie │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-cookie.js │ │ │ ├── editable │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-editable.js │ │ │ ├── export │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-export.js │ │ │ ├── filter-control │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-filter-control.js │ │ │ ├── filter │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-filter.js │ │ │ ├── flat-json │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-flat-json.js │ │ │ ├── key-events │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-key-events.js │ │ │ ├── mobile │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-mobile.js │ │ │ ├── multiple-sort │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-multiple-sort.js │ │ │ ├── natural-sorting │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-natural-sorting.js │ │ │ ├── reorder-columns │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-reorder-columns.js │ │ │ ├── reorder-rows │ │ │ │ ├── README.md │ │ │ │ ├── bootstrap-table-reorder-rows.css │ │ │ │ └── bootstrap-table-reorder-rows.js │ │ │ ├── resizable │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-resizable.js │ │ │ └── toolbar │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-toolbar.js │ │ │ └── locale │ │ │ ├── README.md │ │ │ ├── bootstrap-table-ar-SA.js │ │ │ ├── bootstrap-table-cs-CZ.js │ │ │ ├── bootstrap-table-da-DK.js │ │ │ ├── bootstrap-table-de-DE.js │ │ │ ├── bootstrap-table-el-GR.js │ │ │ ├── bootstrap-table-en-US.js │ │ │ ├── bootstrap-table-en-US.js.template │ │ │ ├── bootstrap-table-es-AR.js │ │ │ ├── bootstrap-table-es-CR.js │ │ │ ├── bootstrap-table-es-MX.js │ │ │ ├── bootstrap-table-es-NI.js │ │ │ ├── bootstrap-table-es-SP.js │ │ │ ├── bootstrap-table-fr-BE.js │ │ │ ├── bootstrap-table-fr-FR.js │ │ │ ├── bootstrap-table-hu-HU.js │ │ │ ├── bootstrap-table-it-IT.js │ │ │ ├── bootstrap-table-ja-JP.js │ │ │ ├── bootstrap-table-ka-GE.js │ │ │ ├── bootstrap-table-ko-KR.js │ │ │ ├── bootstrap-table-ms-MY.js │ │ │ ├── bootstrap-table-nb-NO.js │ │ │ ├── bootstrap-table-nl-NL.js │ │ │ ├── bootstrap-table-pl-PL.js │ │ │ ├── bootstrap-table-pt-BR.js │ │ │ ├── bootstrap-table-pt-PT.js │ │ │ ├── bootstrap-table-ro-RO.js │ │ │ ├── bootstrap-table-ru-RU.js │ │ │ ├── bootstrap-table-sk-SK.js │ │ │ ├── bootstrap-table-sv-SE.js │ │ │ ├── bootstrap-table-th-TH.js │ │ │ ├── bootstrap-table-tr-TR.js │ │ │ ├── bootstrap-table-uk-UA.js │ │ │ ├── bootstrap-table-ur-PK.js │ │ │ ├── bootstrap-table-vi-VN.js │ │ │ ├── bootstrap-table-zh-CN.js │ │ │ └── bootstrap-table-zh-TW.js │ ├── bootstrap-tagsinput │ │ ├── css │ │ │ └── bootstrap-tagsinput.css │ │ ├── dist │ │ │ ├── bootstrap-tagsinput-angular.js │ │ │ ├── bootstrap-tagsinput-angular.min.js │ │ │ ├── bootstrap-tagsinput-angular.min.js.map │ │ │ ├── bootstrap-tagsinput.css │ │ │ ├── bootstrap-tagsinput.js │ │ │ ├── bootstrap-tagsinput.less │ │ │ ├── bootstrap-tagsinput.min.js │ │ │ ├── bootstrap-tagsinput.min.js.map │ │ │ └── bootstrap-tagsinput.zip │ │ └── src │ │ │ ├── bootstrap-tagsinput-angular.js │ │ │ ├── bootstrap-tagsinput.css │ │ │ └── bootstrap-tagsinput.js │ ├── bootstrap-touchspin │ │ ├── dist │ │ │ ├── jquery.bootstrap-touchspin.css │ │ │ ├── jquery.bootstrap-touchspin.js │ │ │ ├── jquery.bootstrap-touchspin.min.css │ │ │ └── jquery.bootstrap-touchspin.min.js │ │ └── src │ │ │ ├── jquery.bootstrap-touchspin.css │ │ │ └── jquery.bootstrap-touchspin.js │ ├── bootstrap-treeview-master │ │ ├── .bowerrc │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app.js │ │ ├── bower.json │ │ ├── dist │ │ │ ├── bootstrap-treeview-init.js │ │ │ ├── bootstrap-treeview.min.css │ │ │ └── bootstrap-treeview.min.js │ │ ├── package.json │ │ ├── public │ │ │ ├── css │ │ │ │ └── bootstrap-treeview.css │ │ │ ├── example-dom.html │ │ │ ├── index.html │ │ │ └── js │ │ │ │ └── bootstrap-treeview.js │ │ ├── screenshot │ │ │ └── default.PNG │ │ ├── src │ │ │ ├── css │ │ │ │ └── bootstrap-treeview.css │ │ │ └── js │ │ │ │ └── bootstrap-treeview.js │ │ └── tests │ │ │ ├── README.md │ │ │ ├── lib │ │ │ ├── blanket.min.js │ │ │ ├── bootstrap-treeview.css │ │ │ ├── bootstrap-treeview.js │ │ │ ├── jquery.js │ │ │ ├── qunit-1.12.0.css │ │ │ └── qunit-1.12.0.js │ │ │ ├── tests.html │ │ │ └── tests.js │ ├── calendar │ │ ├── dist │ │ │ ├── cal-init.js │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.css │ │ │ ├── fullcalendar.min.js │ │ │ ├── fullcalendar.print.css │ │ │ ├── gcal.js │ │ │ ├── jquery.fullcalendar.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 │ │ └── jquery-ui.min.js │ ├── chartist-js │ │ └── dist │ │ │ ├── chartist-init.css │ │ │ ├── chartist-init.js │ │ │ ├── chartist.css │ │ │ ├── chartist.css.map │ │ │ ├── chartist.js │ │ │ ├── chartist.min.css │ │ │ ├── chartist.min.js │ │ │ ├── chartist.min.js.map │ │ │ └── scss │ │ │ ├── chartist.scss │ │ │ └── settings │ │ │ └── _chartist-settings.scss │ ├── chartist-plugin-tooltip-master │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── LICENSE │ │ │ ├── chartist-plugin-tooltip.css │ │ │ ├── chartist-plugin-tooltip.css.map │ │ │ ├── chartist-plugin-tooltip.js │ │ │ ├── chartist-plugin-tooltip.min.js │ │ │ └── chartist-plugin-tooltip.min.js.map │ │ ├── package.json │ │ ├── src │ │ │ ├── css │ │ │ │ ├── chartist-plugin-tooltip.css │ │ │ │ └── chartist-plugin-tooltip.css.map │ │ │ ├── scripts │ │ │ │ └── chartist-plugin-tooltip.js │ │ │ └── scss │ │ │ │ └── chartist-plugin-tooltip.scss │ │ ├── tasks │ │ │ ├── aliases.yml │ │ │ ├── clean.js │ │ │ ├── copy.js │ │ │ ├── jasmine.js │ │ │ ├── jshint.js │ │ │ ├── sass.js │ │ │ ├── uglify.js │ │ │ └── umd.js │ │ └── test │ │ │ ├── .jshintrc │ │ │ ├── runner.html │ │ │ └── spec │ │ │ └── spec-tooltip.js │ ├── clockpicker │ │ └── dist │ │ │ ├── bootstrap-clockpicker.css │ │ │ ├── bootstrap-clockpicker.js │ │ │ ├── bootstrap-clockpicker.min.css │ │ │ ├── bootstrap-clockpicker.min.js │ │ │ ├── jquery-clockpicker.css │ │ │ ├── jquery-clockpicker.js │ │ │ ├── jquery-clockpicker.min.css │ │ │ └── jquery-clockpicker.min.js │ ├── colorpicker │ │ ├── bootstrap-colorpicker.js │ │ ├── colorpicker.css │ │ └── img │ │ │ ├── alpha.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ ├── counterup │ │ └── jquery.counterup.min.js │ ├── cropper │ │ ├── cropper-init.js │ │ ├── cropper.css │ │ ├── cropper.js │ │ ├── cropper.min.css │ │ └── cropper.min.js │ ├── css-chart │ │ └── css-chart.css │ ├── custom-select │ │ ├── custom-select.css │ │ ├── custom-select.js │ │ ├── custom-select.min.js │ │ ├── select2-spinner.gif │ │ ├── select2.png │ │ └── select2x2.png │ ├── custombox │ │ └── dist │ │ │ ├── custombox.legacy.min.js │ │ │ ├── custombox.min.css │ │ │ └── custombox.min.js │ ├── datatables-plugins │ │ ├── .bower.json │ │ ├── README.md │ │ ├── api │ │ │ ├── average().js │ │ │ ├── column().title().js │ │ │ ├── columns().order().js │ │ │ ├── fnAddDataAndDisplay.js │ │ │ ├── fnAddTr.js │ │ │ ├── fnColumnIndexToVisible.js │ │ │ ├── fnDataUpdate.js │ │ │ ├── fnDisplayRow.js │ │ │ ├── fnDisplayStart.js │ │ │ ├── fnFakeRowspan.js │ │ │ ├── fnFilterAll.js │ │ │ ├── fnFilterClear.js │ │ │ ├── fnFilterOnReturn.js │ │ │ ├── fnFindCellRowIndexes.js │ │ │ ├── fnFindCellRowNodes.js │ │ │ ├── fnGetAdjacentTr.js │ │ │ ├── fnGetColumnData.js │ │ │ ├── fnGetColumnIndex.js │ │ │ ├── fnGetHiddenNodes.js │ │ │ ├── fnGetTd.js │ │ │ ├── fnGetTds.js │ │ │ ├── fnLengthChange.js │ │ │ ├── fnMultiFilter.js │ │ │ ├── fnPagingInfo.js │ │ │ ├── fnProcessingIndicator.js │ │ │ ├── fnReloadAjax.js │ │ │ ├── fnSetFilteringDelay.js │ │ │ ├── fnSortNeutral.js │ │ │ ├── fnStandingRedraw.js │ │ │ ├── fnVisibleToColumnIndex.js │ │ │ ├── index.html │ │ │ ├── page.jumpToData().js │ │ │ └── sum().js │ │ ├── features │ │ │ ├── alphabetSearch │ │ │ │ ├── dataTables.alphabetSearch.css │ │ │ │ ├── dataTables.alphabetSearch.js │ │ │ │ └── dataTables.alphabetSearch.min.js │ │ │ ├── lengthLinks │ │ │ │ ├── dataTables.lengthLinks.css │ │ │ │ ├── dataTables.lengthLinks.js │ │ │ │ └── dataTables.lengthLinks.min.js │ │ │ └── searchHighlight │ │ │ │ ├── dataTables.searchHighlight.css │ │ │ │ ├── dataTables.searchHighlight.js │ │ │ │ └── dataTables.searchHighlight.min.js │ │ ├── filtering │ │ │ ├── index.html │ │ │ ├── row-based │ │ │ │ ├── TableTools.ShowSelectedOnly.js │ │ │ │ ├── range_dates.js │ │ │ │ └── range_numbers.js │ │ │ └── type-based │ │ │ │ ├── accent-neutralise.js │ │ │ │ ├── html.js │ │ │ │ └── phoneNumber.js │ │ ├── i18n │ │ │ ├── Afrikaans.lang │ │ │ ├── Albanian.lang │ │ │ ├── Arabic.lang │ │ │ ├── Azerbaijan.lang │ │ │ ├── Bangla.lang │ │ │ ├── Belarusian.lang │ │ │ ├── Bulgarian.lang │ │ │ ├── Catalan.lang │ │ │ ├── Chinese-traditional.lang │ │ │ ├── Chinese.lang │ │ │ ├── Croatian.lang │ │ │ ├── Czech.lang │ │ │ ├── Danish.lang │ │ │ ├── Dutch.lang │ │ │ ├── English.lang │ │ │ ├── Estonian.lang │ │ │ ├── Filipino.lang │ │ │ ├── Finnish.lang │ │ │ ├── French.lang │ │ │ ├── Galician.lang │ │ │ ├── Georgian.lang │ │ │ ├── German.lang │ │ │ ├── Greek.lang │ │ │ ├── Gujarati.lang │ │ │ ├── Hebrew.lang │ │ │ ├── Hindi.lang │ │ │ ├── Hungarian.lang │ │ │ ├── Icelandic.lang │ │ │ ├── Indonesian-Alternative.lang │ │ │ ├── Indonesian.lang │ │ │ ├── Irish.lang │ │ │ ├── Italian.lang │ │ │ ├── Japanese.lang │ │ │ ├── Korean.lang │ │ │ ├── Latvian.lang │ │ │ ├── Lithuanian.lang │ │ │ ├── Macedonian.lang │ │ │ ├── Malay.lang │ │ │ ├── Norwegian.lang │ │ │ ├── Persian.lang │ │ │ ├── Polish.lang │ │ │ ├── Portuguese-Brasil.lang │ │ │ ├── Portuguese.lang │ │ │ ├── Romanian.lang │ │ │ ├── Russian.lang │ │ │ ├── Serbian.lang │ │ │ ├── Slovak.lang │ │ │ ├── Slovenian.lang │ │ │ ├── Spanish.lang │ │ │ ├── Swahili.lang │ │ │ ├── Swedish.lang │ │ │ ├── Tamil.lang │ │ │ ├── Thai.lang │ │ │ ├── Turkish.lang │ │ │ ├── Ukranian.lang │ │ │ ├── Urdu.lang │ │ │ ├── Uzbek.lang │ │ │ ├── Vietnamese.lang │ │ │ └── index.html │ │ ├── integration │ │ │ ├── bootstrap │ │ │ │ ├── 1 │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ └── dataTables.bootstrap.js │ │ │ │ ├── 2 │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ │ └── index.html │ │ │ │ ├── 3 │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ │ └── index.html │ │ │ │ └── images │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ ├── font-awesome │ │ │ │ ├── bootstrap.html │ │ │ │ ├── dataTables.fontAwesome.css │ │ │ │ ├── datatables.html │ │ │ │ └── foundation.html │ │ │ ├── foundation │ │ │ │ ├── dataTables.foundation.css │ │ │ │ ├── dataTables.foundation.js │ │ │ │ ├── dataTables.foundation.min.js │ │ │ │ ├── images │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ └── index.html │ │ │ └── jqueryui │ │ │ │ ├── dataTables.jqueryui.css │ │ │ │ ├── dataTables.jqueryui.js │ │ │ │ ├── dataTables.jqueryui.min.js │ │ │ │ ├── dataTables.jqueryui.scss │ │ │ │ └── index.html │ │ ├── make.sh │ │ ├── pagination │ │ │ ├── ellipses.js │ │ │ ├── extjs.js │ │ │ ├── four_button.js │ │ │ ├── index.html │ │ │ ├── input.js │ │ │ ├── jPaginator │ │ │ │ └── dataTables.jPaginator.js │ │ │ ├── scrolling.js │ │ │ └── select.js │ │ ├── sorting │ │ │ ├── alt-string.js │ │ │ ├── anti-the.js │ │ │ ├── chinese-string.js │ │ │ ├── currency.js │ │ │ ├── custom-data-source │ │ │ │ ├── dom-checkbox.js │ │ │ │ ├── dom-select.js │ │ │ │ └── dom-text.js │ │ │ ├── date-dd-MMM-yyyy.js │ │ │ ├── date-de.js │ │ │ ├── date-eu.js │ │ │ ├── date-euro.js │ │ │ ├── date-uk.js │ │ │ ├── datetime-moment.js │ │ │ ├── datetime-us.js │ │ │ ├── enum.js │ │ │ ├── file-size.js │ │ │ ├── formatted-numbers.js │ │ │ ├── index.html │ │ │ ├── ip-address.js │ │ │ ├── monthYear.js │ │ │ ├── natural.js │ │ │ ├── num-html.js │ │ │ ├── numeric-comma.js │ │ │ ├── percent.js │ │ │ ├── persian.js │ │ │ ├── scientific.js │ │ │ ├── signed-num.js │ │ │ ├── stringMonthYear.js │ │ │ ├── time.js │ │ │ ├── title-numeric.js │ │ │ ├── title-string.js │ │ │ └── turkish-string.js │ │ └── type-detection │ │ │ ├── currency.js │ │ │ ├── date-uk.js │ │ │ ├── file-size.js │ │ │ ├── formatted-num.js │ │ │ ├── index.html │ │ │ ├── ip-address.js │ │ │ ├── num-html.js │ │ │ └── numeric-comma.js │ ├── datatables-responsive │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── License.txt │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── css │ │ │ ├── responsive.bootstrap.scss │ │ │ ├── responsive.dataTables.scss │ │ │ ├── responsive.foundation.scss │ │ │ └── responsive.jqueryui.scss │ │ ├── docs │ │ │ ├── api │ │ │ │ ├── responsive.index().xml │ │ │ │ ├── responsive.rebuild().xml │ │ │ │ └── responsive.recalc().xml │ │ │ └── option │ │ │ │ ├── responsive.breakpoints.xml │ │ │ │ ├── responsive.details.renderer.xml │ │ │ │ ├── responsive.details.target.xml │ │ │ │ ├── responsive.details.type.xml │ │ │ │ ├── responsive.details.xml │ │ │ │ └── responsive.xml │ │ ├── examples │ │ │ ├── child-rows │ │ │ │ ├── column-control.xml │ │ │ │ ├── custom-renderer.xml │ │ │ │ ├── disable-child-rows.xml │ │ │ │ ├── index.xml │ │ │ │ ├── right-column.xml │ │ │ │ └── whole-row-control.xml │ │ │ ├── display-control │ │ │ │ ├── auto.xml │ │ │ │ ├── classes.xml │ │ │ │ ├── complexHeader.xml │ │ │ │ ├── fixedHeader.xml │ │ │ │ ├── index.xml │ │ │ │ └── init-classes.xml │ │ │ ├── index.xml │ │ │ ├── initialisation │ │ │ │ ├── ajax.xml │ │ │ │ ├── className.xml │ │ │ │ ├── default.xml │ │ │ │ ├── index.xml │ │ │ │ ├── new.xml │ │ │ │ └── option.xml │ │ │ └── styling │ │ │ │ ├── bootstrap.xml │ │ │ │ ├── compact.xml │ │ │ │ ├── foundation.xml │ │ │ │ ├── index.xml │ │ │ │ ├── jqueryui.xml │ │ │ │ └── scrolling.xml │ │ ├── js │ │ │ └── dataTables.responsive.js │ │ └── make.sh │ ├── datatables │ │ ├── .bower.json │ │ ├── Contributing.md │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── dataTables.bootstrap.js │ │ ├── jquery.dataTables.min.css │ │ ├── jquery.dataTables.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 │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png │ ├── dropify │ │ ├── .gitignore │ │ ├── README.md │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── demo.css │ │ │ │ ├── dropify.css │ │ │ │ └── dropify.min.css │ │ │ ├── fonts │ │ │ │ ├── dropify.eot │ │ │ │ ├── dropify.svg │ │ │ │ ├── dropify.ttf │ │ │ │ └── dropify.woff │ │ │ └── js │ │ │ │ ├── dropify.js │ │ │ │ └── dropify.min.js │ │ ├── gulpfile.js │ │ ├── index.html │ │ ├── package.json │ │ └── src │ │ │ ├── fonts │ │ │ ├── dropify.eot │ │ │ ├── dropify.svg │ │ │ ├── dropify.ttf │ │ │ └── dropify.woff │ │ │ ├── images │ │ │ ├── cover.jpg │ │ │ ├── test-image-1.jpg │ │ │ └── test-image-2.jpg │ │ │ ├── js │ │ │ └── dropify.js │ │ │ └── sass │ │ │ ├── _dropify-font.scss │ │ │ ├── demo.scss │ │ │ ├── demo │ │ │ ├── _grid.scss │ │ │ ├── _normalize.scss │ │ │ ├── _reset.scss │ │ │ ├── _typo.scss │ │ │ ├── _variables.scss │ │ │ └── helpers │ │ │ │ ├── _grid.scss │ │ │ │ ├── _mixins.scss │ │ │ │ └── _shortcuts.scss │ │ │ └── dropify.scss │ ├── dropzone-master │ │ ├── .gitignore │ │ ├── .tagconfig │ │ ├── .travis.yml │ │ ├── AMD_footer │ │ ├── AMD_header │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.coffee │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── dist │ │ │ ├── basic.css │ │ │ ├── dropzone-amd-module.js │ │ │ ├── dropzone.css │ │ │ ├── dropzone.js │ │ │ ├── dropzone.min.js │ │ │ ├── min │ │ │ │ ├── basic.min.css │ │ │ │ ├── dropzone-amd-module.min.js │ │ │ │ ├── dropzone.min.css │ │ │ │ └── dropzone.min.js │ │ │ └── readme.md │ │ ├── index.js │ │ ├── package.json │ │ ├── src │ │ │ ├── basic.scss │ │ │ ├── dropzone.coffee │ │ │ └── dropzone.scss │ │ ├── test.sh │ │ └── test │ │ │ ├── test.coffee │ │ │ ├── test.html │ │ │ └── test.js │ ├── fancybox │ │ ├── ekko-lightbox.min.css │ │ └── ekko-lightbox.min.js │ ├── flot.tooltip │ │ ├── .bower.json │ │ ├── bower.json │ │ └── js │ │ │ ├── excanvas.min.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.tooltip.js │ │ │ ├── jquery.flot.tooltip.min.js │ │ │ └── jquery.flot.tooltip.source.js │ ├── flot │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── API.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── NEWS.md │ │ ├── PLUGINS.md │ │ ├── README.md │ │ ├── component.json │ │ ├── examples │ │ │ ├── ajax │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ └── index.html │ │ │ ├── annotating │ │ │ │ └── index.html │ │ │ ├── axes-interacting │ │ │ │ └── index.html │ │ │ ├── axes-multiple │ │ │ │ └── index.html │ │ │ ├── axes-time-zones │ │ │ │ ├── date.js │ │ │ │ ├── index.html │ │ │ │ └── tz │ │ │ │ │ ├── africa │ │ │ │ │ ├── antarctica │ │ │ │ │ ├── asia │ │ │ │ │ ├── australasia │ │ │ │ │ ├── backward │ │ │ │ │ ├── etcetera │ │ │ │ │ ├── europe │ │ │ │ │ ├── factory │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ ├── leapseconds │ │ │ │ │ ├── northamerica │ │ │ │ │ ├── pacificnew │ │ │ │ │ ├── solar87 │ │ │ │ │ ├── solar88 │ │ │ │ │ ├── solar89 │ │ │ │ │ ├── southamerica │ │ │ │ │ ├── systemv │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ └── zone.tab │ │ │ ├── axes-time │ │ │ │ └── index.html │ │ │ ├── background.png │ │ │ ├── basic-options │ │ │ │ └── index.html │ │ │ ├── basic-usage │ │ │ │ └── index.html │ │ │ ├── canvas │ │ │ │ └── index.html │ │ │ ├── categories │ │ │ │ └── index.html │ │ │ ├── examples.css │ │ │ ├── image │ │ │ │ ├── hs-2004-27-a-large-web.jpg │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interacting │ │ │ │ └── index.html │ │ │ ├── navigate │ │ │ │ ├── arrow-down.gif │ │ │ │ ├── arrow-left.gif │ │ │ │ ├── arrow-right.gif │ │ │ │ ├── arrow-up.gif │ │ │ │ └── index.html │ │ │ ├── percentiles │ │ │ │ └── index.html │ │ │ ├── realtime │ │ │ │ └── index.html │ │ │ ├── resize │ │ │ │ └── index.html │ │ │ ├── selection │ │ │ │ └── index.html │ │ │ ├── series-errorbars │ │ │ │ └── index.html │ │ │ ├── series-pie │ │ │ │ └── index.html │ │ │ ├── series-toggle │ │ │ │ └── index.html │ │ │ ├── series-types │ │ │ │ └── index.html │ │ │ ├── shared │ │ │ │ └── jquery-ui │ │ │ │ │ └── jquery-ui.min.css │ │ │ ├── stacking │ │ │ │ └── index.html │ │ │ ├── symbols │ │ │ │ └── index.html │ │ │ ├── threshold │ │ │ │ └── index.html │ │ │ ├── tracking │ │ │ │ └── index.html │ │ │ ├── visitors │ │ │ │ └── index.html │ │ │ └── zooming │ │ │ │ └── index.html │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── flot.jquery.json │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.flot.canvas.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.errorbars.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.threshold.js │ │ ├── jquery.flot.time.js │ │ ├── jquery.js │ │ └── package.json │ ├── footable │ │ ├── css │ │ │ ├── fonts │ │ │ │ ├── footable.eot │ │ │ │ ├── footable.svg │ │ │ │ ├── footable.ttf │ │ │ │ └── footable.woff │ │ │ └── footable.core.css │ │ └── js │ │ │ └── footable.all.min.js │ ├── gallery │ │ ├── css │ │ │ └── animated-masonry-gallery.css │ │ └── js │ │ │ ├── animated-masonry-gallery.js │ │ │ └── jquery.isotope.min.js │ ├── gmaps │ │ ├── gmaps.js │ │ ├── gmaps.min.js │ │ ├── gmaps.min.js.map │ │ ├── jquery.gmaps.js │ │ └── lib │ │ │ ├── gmaps.controls.js │ │ │ ├── gmaps.core.js │ │ │ ├── gmaps.events.js │ │ │ ├── gmaps.geofences.js │ │ │ ├── gmaps.geometry.js │ │ │ ├── gmaps.layers.js │ │ │ ├── gmaps.map_types.js │ │ │ ├── gmaps.markers.js │ │ │ ├── gmaps.native_extensions.js │ │ │ ├── gmaps.overlays.js │ │ │ ├── gmaps.routes.js │ │ │ ├── gmaps.static.js │ │ │ ├── gmaps.streetview.js │ │ │ ├── gmaps.styles.js │ │ │ └── gmaps.utils.js │ ├── holderjs │ │ ├── .bower.json │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── README.md │ │ ├── bower.json │ │ ├── composer.json │ │ ├── gulpfile.js │ │ ├── holder.js │ │ ├── package.json │ │ ├── src │ │ │ ├── augment.js │ │ │ ├── holder.js │ │ │ ├── ondomready.js │ │ │ └── polyfills.js │ │ └── test │ │ │ ├── .gitignore │ │ │ ├── image.jpg │ │ │ └── index.html │ ├── horizontal-timeline │ │ ├── css │ │ │ ├── horizontal-timeline.css │ │ │ └── reset.css │ │ ├── img │ │ │ └── cd-arrow.svg │ │ └── js │ │ │ ├── horizontal-timeline.js │ │ │ ├── jquery-2.1.4.js │ │ │ ├── jquery.mobile.custom.min.js │ │ │ └── modernizr.js │ ├── hover │ │ └── hover-min.css │ ├── html5-editor │ │ ├── bootstrap-wysihtml5.css │ │ ├── bootstrap-wysihtml5.js │ │ └── wysihtml5-0.3.0.js │ ├── ion-rangeslider │ │ ├── css │ │ │ ├── ion.rangeSlider.css │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ ├── ion.rangeSlider.skinHTML5.css │ │ │ ├── ion.rangeSlider.skinModern.css │ │ │ ├── ion.rangeSlider.skinNice.css │ │ │ ├── ion.rangeSlider.skinSimple.css │ │ │ └── normalize.css │ │ ├── img │ │ │ ├── sprite-skin-flat.png │ │ │ ├── sprite-skin-modern.png │ │ │ ├── sprite-skin-nice.png │ │ │ └── sprite-skin-simple.png │ │ └── js │ │ │ ├── ion-rangeSlider │ │ │ ├── ion.rangeSlider-init.js │ │ │ ├── ion.rangeSlider.js │ │ │ └── ion.rangeSlider.min.js │ │ │ └── vendor │ │ │ └── jquery-1.12.3.min.js │ ├── iziToast │ │ ├── css │ │ │ ├── iziToast.css │ │ │ └── iziToast.min.css │ │ └── js │ │ │ ├── iziToast.js │ │ │ └── iziToast.min.js │ ├── jquery-asColorPicker-master │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .jscsrc │ │ ├── .jshintrc │ │ ├── Gruntfile.js │ │ ├── LICENSE-GPL │ │ ├── README.md │ │ ├── bower.json │ │ ├── css │ │ │ └── asColorPicker.css │ │ ├── demo │ │ │ ├── css │ │ │ │ ├── main.css │ │ │ │ └── prism.css │ │ │ ├── demo.gif │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── jquery.toc.js │ │ │ │ └── prism.js │ │ ├── dist │ │ │ ├── jquery-asColorPicker.js │ │ │ └── jquery-asColorPicker.min.js │ │ ├── i18n │ │ │ ├── jquery-asColorInput-cn.js │ │ │ ├── jquery-asColorInput-de.js │ │ │ ├── jquery-asColorInput-dk.js │ │ │ ├── jquery-asColorInput-es.js │ │ │ ├── jquery-asColorInput-fi.js │ │ │ ├── jquery-asColorInput-fr.js │ │ │ ├── jquery-asColorInput-it.js │ │ │ ├── jquery-asColorInput-ja.js │ │ │ ├── jquery-asColorInput-ru.js │ │ │ ├── jquery-asColorInput-sv.js │ │ │ └── jquery-asColorInput-tr.js │ │ ├── images │ │ │ ├── alpha.png │ │ │ ├── hue.png │ │ │ ├── saturation.png │ │ │ └── transparent.png │ │ ├── less │ │ │ └── jquery-asColorPicker.less │ │ ├── libs │ │ │ ├── jquery-asColor.js │ │ │ ├── jquery-asGradient.js │ │ │ └── jquery.min.js │ │ ├── package.json │ │ ├── resource.txt │ │ └── src │ │ │ ├── .jshintrc │ │ │ ├── alpha.js │ │ │ ├── buttons.js │ │ │ ├── clear.js │ │ │ ├── core.js │ │ │ ├── gradient.js │ │ │ ├── hex.js │ │ │ ├── hue.js │ │ │ ├── info.js │ │ │ ├── keyboard.js │ │ │ ├── palettes.js │ │ │ ├── preview.js │ │ │ ├── saturation.js │ │ │ └── trigger.js │ ├── jquery-datatables-editable │ │ ├── dataTables.bootstrap.js │ │ ├── datatables.css │ │ └── jquery.dataTables.js │ ├── jquery-sparkline │ │ ├── jquery.charts-sparkline.js │ │ └── jquery.sparkline.min.js │ ├── jquery-steps-master │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Gruntfile.js │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── jQuery.Steps.1.1.0.nupkg │ │ │ ├── jquery.steps-1.1.0.zip │ │ │ ├── jquery.steps.js │ │ │ └── jquery.steps.min.js │ │ ├── demo │ │ │ ├── css │ │ │ │ ├── jquery.steps.css │ │ │ │ ├── main.css │ │ │ │ └── normalize.css │ │ │ ├── index.html │ │ │ ├── tabs.html │ │ │ └── vertical.html │ │ ├── lib │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.11.1.min.js │ │ │ ├── jquery-1.9.1.min.js │ │ │ ├── jquery.cookie-1.3.1.js │ │ │ └── modernizr-2.6.2.min.js │ │ ├── nuget │ │ │ ├── NuGet.exe │ │ │ └── jQuery.Steps.nuspec │ │ ├── package.json │ │ ├── src │ │ │ ├── _banner.js │ │ │ ├── defaults.js │ │ │ ├── enums.js │ │ │ ├── helper.js │ │ │ ├── model.js │ │ │ ├── privates.js │ │ │ └── publics.js │ │ ├── steps.jquery.json │ │ └── test │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── qunit │ │ │ ├── qunit-1.11.0.css │ │ │ └── qunit-1.11.0.js │ │ │ └── tests.js │ ├── jquery-wizard-master │ │ ├── .csscomb.json │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .jscsrc │ │ ├── .jshintrc │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE-GPL │ │ ├── README.md │ │ ├── bower.json │ │ ├── css │ │ │ └── wizard.css │ │ ├── demo │ │ │ ├── ajax │ │ │ │ ├── 1.html │ │ │ │ ├── 2.html │ │ │ │ └── 3.html │ │ │ ├── collapse.html │ │ │ ├── css │ │ │ │ └── main.css │ │ │ ├── index.html │ │ │ └── tabs.html │ │ ├── dist │ │ │ ├── jquery-wizard.js │ │ │ └── jquery-wizard.min.js │ │ ├── less │ │ │ └── wizard.less │ │ ├── libs │ │ │ ├── bootstrap │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.js │ │ │ ├── formvalidation │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── formValidation.min.css │ │ │ │ └── formValidation.min.js │ │ │ ├── jquery-loader.js │ │ │ └── jquery │ │ │ │ └── jquery.js │ │ ├── package.json │ │ └── src │ │ │ ├── .jshintrc │ │ │ ├── bind.js │ │ │ ├── defaults.js │ │ │ ├── intro.js │ │ │ ├── outro.js │ │ │ ├── public.js │ │ │ ├── setup.js │ │ │ ├── step.js │ │ │ ├── support.js │ │ │ └── util.js │ ├── jquery.easy-pie-chart │ │ ├── dist │ │ │ ├── angular.easypiechart.js │ │ │ ├── angular.easypiechart.min.js │ │ │ ├── easypiechart.js │ │ │ ├── easypiechart.min.js │ │ │ ├── jquery.easypiechart.js │ │ │ └── jquery.easypiechart.min.js │ │ ├── easy-pie-chart.init.js │ │ └── src │ │ │ ├── angular.directive.js │ │ │ ├── easypiechart.js │ │ │ ├── jquery.plugin.js │ │ │ └── renderer │ │ │ └── canvas.js │ ├── jquery │ │ ├── .bower.json │ │ ├── bower.json │ │ ├── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ └── src │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseJSON.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── 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 │ │ │ ├── curCSS.js │ │ │ ├── defaultDisplay.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── support.js │ │ │ ├── swap.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── getStyles.js │ │ │ │ ├── isHidden.js │ │ │ │ ├── rmargin.js │ │ │ │ └── rnumnonpx.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── Data.js │ │ │ ├── accepts.js │ │ │ └── var │ │ │ │ ├── data_priv.js │ │ │ │ └── data_user.js │ │ │ ├── deferred.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ └── animatedSelector.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ └── support.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── intro.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ └── rcheckableType.js │ │ │ ├── offset.js │ │ │ ├── outro.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-native.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── sizzle │ │ │ └── dist │ │ │ │ ├── sizzle.js │ │ │ │ ├── sizzle.min.js │ │ │ │ └── sizzle.min.map │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ └── rneedsContext.js │ │ │ ├── var │ │ │ ├── arr.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rnotwhite.js │ │ │ ├── slice.js │ │ │ ├── strundefined.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ │ └── wrap.js │ ├── jsgrid │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── css │ │ │ ├── icons-2x.png │ │ │ ├── icons.png │ │ │ ├── jsgrid.css │ │ │ └── theme.css │ │ ├── db.js │ │ ├── dist │ │ │ ├── jsgrid-theme.css │ │ │ ├── jsgrid-theme.min.css │ │ │ ├── jsgrid.css │ │ │ ├── jsgrid.js │ │ │ ├── jsgrid.min.css │ │ │ └── jsgrid.min.js │ │ ├── external │ │ │ ├── jquery │ │ │ │ └── jquery-1.8.3.js │ │ │ └── qunit │ │ │ │ ├── qunit-1.10.0.css │ │ │ │ └── qunit-1.10.0.js │ │ ├── package.json │ │ ├── src │ │ │ ├── fields │ │ │ │ ├── jsgrid.field.checkbox.js │ │ │ │ ├── jsgrid.field.control.js │ │ │ │ ├── jsgrid.field.number.js │ │ │ │ ├── jsgrid.field.select.js │ │ │ │ ├── jsgrid.field.text.js │ │ │ │ └── jsgrid.field.textarea.js │ │ │ ├── i18n │ │ │ │ ├── es.js │ │ │ │ ├── fr.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ └── ru.js │ │ │ ├── jsgrid.core.js │ │ │ ├── jsgrid.field.js │ │ │ ├── jsgrid.load-indicator.js │ │ │ ├── jsgrid.load-strategies.js │ │ │ ├── jsgrid.sort-strategies.js │ │ │ └── jsgrid.validation.js │ │ └── tests │ │ │ ├── index.html │ │ │ ├── jsgrid.field.tests.js │ │ │ ├── jsgrid.sort-strategies.tests.js │ │ │ ├── jsgrid.tests.js │ │ │ └── jsgrid.validation.tests.js │ ├── knob │ │ ├── jquery.knob.js │ │ └── jquery.knob.min.js │ ├── magnific-popup │ │ ├── dist │ │ │ ├── jquery.magnific-popup.js │ │ │ ├── jquery.magnific-popup.min.js │ │ │ └── magnific-popup.css │ │ └── src │ │ │ ├── css │ │ │ ├── _settings.scss │ │ │ └── main.scss │ │ │ └── js │ │ │ ├── ajax.js │ │ │ ├── core.js │ │ │ ├── fastclick.js │ │ │ ├── gallery.js │ │ │ ├── iframe.js │ │ │ ├── image.js │ │ │ ├── inline.js │ │ │ ├── retina.js │ │ │ └── zoom.js │ ├── mjolnic-bootstrap-colorpicker │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-colorpicker.css │ │ │ └── bootstrap-colorpicker.min.css │ │ │ ├── img │ │ │ └── bootstrap-colorpicker │ │ │ │ ├── alpha-horizontal.png │ │ │ │ ├── alpha.png │ │ │ │ ├── hue-horizontal.png │ │ │ │ ├── hue.png │ │ │ │ └── saturation.png │ │ │ └── js │ │ │ ├── bootstrap-colorpicker.js │ │ │ └── bootstrap-colorpicker.min.js │ ├── mocha │ │ ├── .bower.json │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── media │ │ │ └── logo.svg │ │ ├── mocha.css │ │ └── mocha.js │ ├── moment │ │ ├── min │ │ │ ├── locales.js │ │ │ ├── locales.min.js │ │ │ ├── moment-with-locales.js │ │ │ ├── moment-with-locales.min.js │ │ │ ├── moment.min.js │ │ │ └── tests.js │ │ ├── moment - Copy.js │ │ ├── moment-timezone.js │ │ ├── moment.js │ │ └── src │ │ │ ├── lib │ │ │ ├── create │ │ │ │ ├── check-overflow.js │ │ │ │ ├── date-from-array.js │ │ │ │ ├── from-anything.js │ │ │ │ ├── from-array.js │ │ │ │ ├── from-object.js │ │ │ │ ├── from-string-and-array.js │ │ │ │ ├── from-string-and-format.js │ │ │ │ ├── from-string.js │ │ │ │ ├── local.js │ │ │ │ ├── parsing-flags.js │ │ │ │ ├── utc.js │ │ │ │ └── valid.js │ │ │ ├── duration │ │ │ │ ├── abs.js │ │ │ │ ├── add-subtract.js │ │ │ │ ├── as.js │ │ │ │ ├── bubble.js │ │ │ │ ├── constructor.js │ │ │ │ ├── create.js │ │ │ │ ├── duration.js │ │ │ │ ├── get.js │ │ │ │ ├── humanize.js │ │ │ │ ├── iso-string.js │ │ │ │ └── prototype.js │ │ │ ├── format │ │ │ │ └── format.js │ │ │ ├── locale │ │ │ │ ├── calendar.js │ │ │ │ ├── constructor.js │ │ │ │ ├── en.js │ │ │ │ ├── formats.js │ │ │ │ ├── invalid.js │ │ │ │ ├── lists.js │ │ │ │ ├── locale.js │ │ │ │ ├── locales.js │ │ │ │ ├── ordinal.js │ │ │ │ ├── pre-post-format.js │ │ │ │ ├── prototype.js │ │ │ │ ├── relative.js │ │ │ │ └── set.js │ │ │ ├── moment │ │ │ │ ├── add-subtract.js │ │ │ │ ├── calendar.js │ │ │ │ ├── clone.js │ │ │ │ ├── compare.js │ │ │ │ ├── constructor.js │ │ │ │ ├── diff.js │ │ │ │ ├── format.js │ │ │ │ ├── from.js │ │ │ │ ├── get-set.js │ │ │ │ ├── locale.js │ │ │ │ ├── min-max.js │ │ │ │ ├── moment.js │ │ │ │ ├── prototype.js │ │ │ │ ├── start-end-of.js │ │ │ │ ├── to-type.js │ │ │ │ ├── to.js │ │ │ │ └── valid.js │ │ │ ├── parse │ │ │ │ ├── regex.js │ │ │ │ └── token.js │ │ │ ├── units │ │ │ │ ├── aliases.js │ │ │ │ ├── constants.js │ │ │ │ ├── day-of-month.js │ │ │ │ ├── day-of-week.js │ │ │ │ ├── day-of-year.js │ │ │ │ ├── hour.js │ │ │ │ ├── millisecond.js │ │ │ │ ├── minute.js │ │ │ │ ├── month.js │ │ │ │ ├── offset.js │ │ │ │ ├── quarter.js │ │ │ │ ├── second.js │ │ │ │ ├── timestamp.js │ │ │ │ ├── timezone.js │ │ │ │ ├── units.js │ │ │ │ ├── week-year.js │ │ │ │ ├── week.js │ │ │ │ └── year.js │ │ │ └── utils │ │ │ │ ├── abs-ceil.js │ │ │ │ ├── abs-floor.js │ │ │ │ ├── compare-arrays.js │ │ │ │ ├── defaults.js │ │ │ │ ├── deprecate.js │ │ │ │ ├── extend.js │ │ │ │ ├── has-own-prop.js │ │ │ │ ├── hooks.js │ │ │ │ ├── is-array.js │ │ │ │ ├── is-date.js │ │ │ │ ├── map.js │ │ │ │ ├── to-int.js │ │ │ │ └── zero-fill.js │ │ │ ├── locale │ │ │ ├── af.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bo.js │ │ │ ├── br.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── fy.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── hy-am.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── jv.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lb.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── me.js │ │ │ ├── mk.js │ │ │ ├── ml.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── ms.js │ │ │ ├── my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── ta.js │ │ │ ├── th.js │ │ │ ├── tl-ph.js │ │ │ ├── tr.js │ │ │ ├── tzl.js │ │ │ ├── tzm-latn.js │ │ │ ├── tzm.js │ │ │ ├── uk.js │ │ │ ├── uz.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ │ └── moment.js │ ├── morrisjs │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bower.json │ │ ├── bower.travis.json │ │ ├── examples │ │ │ ├── _template.html │ │ │ ├── area-as-line.html │ │ │ ├── area.html │ │ │ ├── bar-colors.html │ │ │ ├── bar-no-axes.html │ │ │ ├── bar.html │ │ │ ├── days.html │ │ │ ├── decimal-custom-hover.html │ │ │ ├── diagonal-xlabels-bar.html │ │ │ ├── diagonal-xlabels.html │ │ │ ├── donut-colors.html │ │ │ ├── donut-formatter.html │ │ │ ├── donut.html │ │ │ ├── dst.html │ │ │ ├── events.html │ │ │ ├── goals.html │ │ │ ├── lib │ │ │ │ ├── example.css │ │ │ │ └── example.js │ │ │ ├── months-no-smooth.html │ │ │ ├── negative.html │ │ │ ├── no-grid.html │ │ │ ├── non-continuous.html │ │ │ ├── non-date.html │ │ │ ├── quarters.html │ │ │ ├── resize.html │ │ │ ├── stacked_bars.html │ │ │ ├── timestamps.html │ │ │ ├── updating.html │ │ │ ├── weeks.html │ │ │ └── years.html │ │ ├── less │ │ │ └── morris.core.less │ │ ├── lib │ │ │ ├── morris.area.coffee │ │ │ ├── morris.bar.coffee │ │ │ ├── morris.coffee │ │ │ ├── morris.donut.coffee │ │ │ ├── morris.grid.coffee │ │ │ ├── morris.hover.coffee │ │ │ └── morris.line.coffee │ │ ├── morris.css │ │ ├── morris.js │ │ ├── morris.min.js │ │ ├── package.json │ │ └── spec │ │ │ ├── lib │ │ │ ├── area │ │ │ │ └── area_spec.coffee │ │ │ ├── bar │ │ │ │ ├── bar_spec.coffee │ │ │ │ └── colours.coffee │ │ │ ├── commas_spec.coffee │ │ │ ├── donut │ │ │ │ └── donut_spec.coffee │ │ │ ├── grid │ │ │ │ ├── auto_grid_lines_spec.coffee │ │ │ │ ├── set_data_spec.coffee │ │ │ │ └── y_label_format_spec.coffee │ │ │ ├── hover_spec.coffee │ │ │ ├── label_series_spec.coffee │ │ │ ├── line │ │ │ │ └── line_spec.coffee │ │ │ ├── pad_spec.coffee │ │ │ └── parse_time_spec.coffee │ │ │ ├── specs.html │ │ │ ├── support │ │ │ └── placeholder.coffee │ │ │ └── viz │ │ │ ├── examples.js │ │ │ ├── exemplary │ │ │ ├── area0.png │ │ │ ├── bar0.png │ │ │ ├── line0.png │ │ │ └── stacked_bar0.png │ │ │ ├── run.sh │ │ │ ├── test.html │ │ │ └── visual_specs.js │ ├── mousetrap │ │ └── mousetrap.min.js │ ├── multiselect │ │ ├── css │ │ │ └── multi-select.css │ │ ├── img │ │ │ └── switch.png │ │ └── js │ │ │ └── jquery.multi-select.js │ ├── nestable │ │ ├── jquery.nestable.js │ │ └── nestable.css │ ├── node_modules │ │ └── bootstrap │ │ │ ├── CHANGELOG.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ ├── grunt │ │ │ ├── .jshintrc │ │ │ ├── bs-commonjs-generator.js │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ ├── bs-lessdoc-parser.js │ │ │ ├── bs-raw-files-generator.js │ │ │ ├── configBridge.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 │ │ │ └── package.json │ ├── noty │ │ ├── mint.css │ │ ├── mo.min.js │ │ ├── noty.css │ │ ├── noty.css.map │ │ ├── noty.min.js │ │ └── noty.min.js.map │ ├── overlayScrollbars │ │ ├── OverlayScrollbars.css │ │ ├── OverlayScrollbars.min.css │ │ ├── jquery.overlayScrollbars.js │ │ └── jquery.overlayScrollbars.min.js │ ├── owl.carousel │ │ ├── owl.carousel.js │ │ ├── owl.carousel.min.css │ │ ├── owl.carousel.min.js │ │ ├── owl.custom.js │ │ └── owl.theme.default.css │ ├── peity │ │ ├── jquery.peity.init.js │ │ └── jquery.peity.min.js │ ├── raphael │ │ ├── .bower.json │ │ ├── bower.json │ │ ├── dev │ │ │ ├── amdDev.js │ │ │ ├── index.js │ │ │ └── require.js │ │ ├── license.txt │ │ ├── raphael-min.js │ │ └── raphael.js │ ├── register-steps │ │ ├── jquery.easing.min.js │ │ ├── register-init.js │ │ └── steps.css │ ├── sidebar-nav │ │ ├── .bower.json │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── sidebar-nav.css │ │ │ ├── sidebar-nav.js │ │ │ ├── sidebar-nav.min.css │ │ │ └── sidebar-nav.min.js │ │ ├── package.json │ │ └── src │ │ │ ├── metisMenu.css │ │ │ └── metisMenu.js │ ├── skycons │ │ └── skycons.js │ ├── styleswitcher │ │ └── jQuery.style.switcher.js │ ├── summernote │ │ ├── dist │ │ │ ├── summernote-bs3.css │ │ │ ├── summernote.css │ │ │ ├── summernote.js │ │ │ └── summernote.min.js │ │ ├── lang │ │ │ ├── summernote-ar-AR.js │ │ │ ├── summernote-bg-BG.js │ │ │ ├── summernote-ca-ES.js │ │ │ ├── summernote-cs-CZ.js │ │ │ ├── summernote-da-DK.js │ │ │ ├── summernote-de-DE.js │ │ │ ├── summernote-es-ES.js │ │ │ ├── summernote-es-EU.js │ │ │ ├── summernote-fa-IR.js │ │ │ ├── summernote-fi-FI.js │ │ │ ├── summernote-fr-FR.js │ │ │ ├── summernote-he-IL.js │ │ │ ├── summernote-hu-HU.js │ │ │ ├── summernote-id-ID.js │ │ │ ├── summernote-it-IT.js │ │ │ ├── summernote-ja-JP.js │ │ │ ├── summernote-ko-KR.js │ │ │ ├── summernote-lt-LT.js │ │ │ ├── summernote-nb-NO.js │ │ │ ├── summernote-nl-NL.js │ │ │ ├── summernote-pl-PL.js │ │ │ ├── summernote-pt-BR.js │ │ │ ├── summernote-pt-PT.js │ │ │ ├── summernote-ro-RO.js │ │ │ ├── summernote-ru-RU.js │ │ │ ├── summernote-sk-SK.js │ │ │ ├── summernote-sl-SI.js │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ ├── summernote-sr-RS.js │ │ │ ├── summernote-sv-SE.js │ │ │ ├── summernote-th-TH.js │ │ │ ├── summernote-tr-TR.js │ │ │ ├── summernote-uk-UA.js │ │ │ ├── summernote-vi-VN.js │ │ │ ├── summernote-zh-CN.js │ │ │ └── summernote-zh-TW.js │ │ ├── meteor │ │ │ ├── README.md │ │ │ ├── package-standalone.js │ │ │ ├── package.js │ │ │ ├── publish.sh │ │ │ ├── runtests.sh │ │ │ └── test.js │ │ ├── plugin │ │ │ ├── summernote-ext-hello.js │ │ │ ├── summernote-ext-hint.js │ │ │ └── summernote-ext-video.js │ │ └── src │ │ │ ├── css │ │ │ ├── elements.css │ │ │ └── summernote.css │ │ │ ├── js │ │ │ ├── EventHandler.js │ │ │ ├── Renderer.js │ │ │ ├── app.js │ │ │ ├── core │ │ │ │ ├── agent.js │ │ │ │ ├── async.js │ │ │ │ ├── dom.js │ │ │ │ ├── func.js │ │ │ │ ├── key.js │ │ │ │ ├── list.js │ │ │ │ └── range.js │ │ │ ├── defaults.js │ │ │ ├── editing │ │ │ │ ├── Bullet.js │ │ │ │ ├── History.js │ │ │ │ ├── Style.js │ │ │ │ ├── Table.js │ │ │ │ └── Typing.js │ │ │ ├── intro.js │ │ │ ├── module │ │ │ │ ├── Button.js │ │ │ │ ├── Clipboard.js │ │ │ │ ├── Codeview.js │ │ │ │ ├── DragAndDrop.js │ │ │ │ ├── Editor.js │ │ │ │ ├── Fullscreen.js │ │ │ │ ├── Handle.js │ │ │ │ ├── HelpDialog.js │ │ │ │ ├── ImageDialog.js │ │ │ │ ├── LinkDialog.js │ │ │ │ ├── Popover.js │ │ │ │ ├── Statusbar.js │ │ │ │ └── Toolbar.js │ │ │ ├── outro.js │ │ │ └── summernote.js │ │ │ ├── less │ │ │ ├── elements.less │ │ │ └── summernote.less │ │ │ └── sass │ │ │ └── summernote.scss │ ├── sweetalert │ │ ├── jquery.sweet-alert.custom.js │ │ ├── sweetalert-dev.js │ │ ├── sweetalert.css │ │ └── sweetalert.min.js │ ├── switchery │ │ ├── dist │ │ │ ├── switchery.css │ │ │ ├── switchery.js │ │ │ ├── switchery.min.css │ │ │ └── switchery.min.js │ │ ├── meteor │ │ │ ├── export.js │ │ │ └── tests.js │ │ ├── switchery.css │ │ └── switchery.js │ ├── tablesaw-master │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── ajax-init-stack.html │ │ │ ├── ajax-init.html │ │ │ ├── bare.html │ │ │ ├── caption.html │ │ │ ├── demo.css │ │ │ ├── issues │ │ │ │ ├── 109.html │ │ │ │ ├── 110.html │ │ │ │ ├── ajax-init-tbody.html │ │ │ │ ├── charset-test-issue-106.php │ │ │ │ ├── hideempty.html │ │ │ │ ├── issue-31.html │ │ │ │ ├── issue-32.html │ │ │ │ ├── issue-35.html │ │ │ │ ├── issue-37.html │ │ │ │ ├── issue-48-49.html │ │ │ │ ├── issue-65.html │ │ │ │ └── issue-74.html │ │ │ ├── kitchensink-nomodeswitch.html │ │ │ ├── kitchensink.html │ │ │ ├── modeswitch.html │ │ │ ├── sort-custom.html │ │ │ ├── sort.html │ │ │ ├── stack.html │ │ │ ├── stackonly.html │ │ │ ├── swipe-config.html │ │ │ ├── swipe-container.html │ │ │ ├── swipe-fixcols-media.html │ │ │ ├── swipe.html │ │ │ └── toggle.html │ │ ├── dist │ │ │ ├── bare │ │ │ │ └── tablesaw.bare.css │ │ │ ├── dependencies │ │ │ │ ├── jquery.js │ │ │ │ ├── qunit.css │ │ │ │ ├── qunit.js │ │ │ │ └── respond.js │ │ │ ├── stackonly │ │ │ │ ├── tablesaw.stackonly.css │ │ │ │ ├── tablesaw.stackonly.js │ │ │ │ └── tablesaw.stackonly.scss │ │ │ ├── tablesaw-init.js │ │ │ ├── tablesaw.css │ │ │ └── tablesaw.js │ │ ├── docs │ │ │ ├── columntoggle-minimap.gif │ │ │ ├── mode-switch.gif │ │ │ ├── sortable.png │ │ │ ├── stack.gif │ │ │ └── swipe-minimap.gif │ │ ├── package.json │ │ ├── src │ │ │ ├── .jshintrc │ │ │ ├── tables-init.js │ │ │ ├── tables.btnmarkup.js │ │ │ ├── tables.columntoggle.css │ │ │ ├── tables.columntoggle.js │ │ │ ├── tables.css │ │ │ ├── tables.js │ │ │ ├── tables.minimap.css │ │ │ ├── tables.minimap.js │ │ │ ├── tables.modeswitch.js │ │ │ ├── tables.skin.css │ │ │ ├── tables.sortable.css │ │ │ ├── tables.sortable.js │ │ │ ├── tables.stack-default-breakpoint.css │ │ │ ├── tables.stack-mixin.scss │ │ │ ├── tables.stack.css │ │ │ ├── tables.stack.js │ │ │ ├── tables.swipetoggle.css │ │ │ ├── tables.swipetoggle.js │ │ │ └── tables.toolbar.css │ │ └── test │ │ │ ├── .jshintrc │ │ │ ├── tablesaw.html │ │ │ ├── tablesaw_bare.html │ │ │ └── tablesaw_test.js │ ├── timepicker │ │ ├── bootstrap-timepicker.min.css │ │ └── bootstrap-timepicker.min.js │ ├── tiny-editable │ │ ├── mindmup-editabletable.js │ │ └── numeric-input-example.js │ ├── tinymce │ │ ├── jquery.tinymce.min.js │ │ ├── langs │ │ │ └── readme.md │ │ ├── license.txt │ │ ├── plugins │ │ │ ├── advlist │ │ │ │ └── plugin.min.js │ │ │ ├── anchor │ │ │ │ └── plugin.min.js │ │ │ ├── autolink │ │ │ │ └── plugin.min.js │ │ │ ├── autoresize │ │ │ │ └── plugin.min.js │ │ │ ├── autosave │ │ │ │ └── plugin.min.js │ │ │ ├── bbcode │ │ │ │ └── plugin.min.js │ │ │ ├── charmap │ │ │ │ └── plugin.min.js │ │ │ ├── code │ │ │ │ └── plugin.min.js │ │ │ ├── colorpicker │ │ │ │ └── plugin.min.js │ │ │ ├── contextmenu │ │ │ │ └── plugin.min.js │ │ │ ├── directionality │ │ │ │ └── plugin.min.js │ │ │ ├── emoticons │ │ │ │ ├── img │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ └── smiley-yell.gif │ │ │ │ └── plugin.min.js │ │ │ ├── example │ │ │ │ ├── dialog.html │ │ │ │ └── plugin.min.js │ │ │ ├── example_dependency │ │ │ │ └── plugin.min.js │ │ │ ├── fullpage │ │ │ │ └── plugin.min.js │ │ │ ├── fullscreen │ │ │ │ └── plugin.min.js │ │ │ ├── hr │ │ │ │ └── plugin.min.js │ │ │ ├── image │ │ │ │ └── plugin.min.js │ │ │ ├── imagetools │ │ │ │ └── plugin.min.js │ │ │ ├── importcss │ │ │ │ └── plugin.min.js │ │ │ ├── insertdatetime │ │ │ │ └── plugin.min.js │ │ │ ├── layer │ │ │ │ └── plugin.min.js │ │ │ ├── legacyoutput │ │ │ │ └── plugin.min.js │ │ │ ├── link │ │ │ │ └── plugin.min.js │ │ │ ├── lists │ │ │ │ └── plugin.min.js │ │ │ ├── media │ │ │ │ ├── moxieplayer.swf │ │ │ │ └── plugin.min.js │ │ │ ├── nonbreaking │ │ │ │ └── plugin.min.js │ │ │ ├── noneditable │ │ │ │ └── plugin.min.js │ │ │ ├── pagebreak │ │ │ │ └── plugin.min.js │ │ │ ├── paste │ │ │ │ └── plugin.min.js │ │ │ ├── preview │ │ │ │ └── plugin.min.js │ │ │ ├── print │ │ │ │ └── plugin.min.js │ │ │ ├── save │ │ │ │ └── plugin.min.js │ │ │ ├── searchreplace │ │ │ │ └── plugin.min.js │ │ │ ├── spellchecker │ │ │ │ └── plugin.min.js │ │ │ ├── tabfocus │ │ │ │ └── plugin.min.js │ │ │ ├── table │ │ │ │ └── plugin.min.js │ │ │ ├── template │ │ │ │ └── plugin.min.js │ │ │ ├── textcolor │ │ │ │ └── plugin.min.js │ │ │ ├── textpattern │ │ │ │ └── plugin.min.js │ │ │ ├── visualblocks │ │ │ │ ├── css │ │ │ │ │ └── visualblocks.css │ │ │ │ └── plugin.min.js │ │ │ ├── visualchars │ │ │ │ └── plugin.min.js │ │ │ └── wordcount │ │ │ │ └── plugin.min.js │ │ ├── skins │ │ │ └── lightgray │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── fonts │ │ │ │ ├── tinymce-small.eot │ │ │ │ ├── tinymce-small.svg │ │ │ │ ├── tinymce-small.ttf │ │ │ │ ├── tinymce-small.woff │ │ │ │ ├── tinymce.eot │ │ │ │ ├── tinymce.svg │ │ │ │ ├── tinymce.ttf │ │ │ │ └── tinymce.woff │ │ │ │ ├── img │ │ │ │ ├── anchor.gif │ │ │ │ ├── loader.gif │ │ │ │ ├── object.gif │ │ │ │ └── trans.gif │ │ │ │ ├── skin.ie7.min.css │ │ │ │ └── skin.min.css │ │ ├── themes │ │ │ └── modern │ │ │ │ └── theme.min.js │ │ └── tinymce.min.js │ ├── toast-master │ │ ├── css │ │ │ └── jquery.toast.css │ │ └── js │ │ │ └── jquery.toast.js │ ├── typeahead.js-master │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── composer.json │ │ ├── countries.json │ │ ├── dist │ │ │ ├── bloodhound.js │ │ │ ├── bloodhound.min.js │ │ │ ├── typeahead-init.js │ │ │ ├── typeahead.bundle.js │ │ │ ├── typeahead.bundle.min.js │ │ │ ├── typeahead.jquery.js │ │ │ ├── typeahead.jquery.min.js │ │ │ └── typehead-min.css │ │ ├── doc │ │ │ ├── bloodhound.md │ │ │ ├── jquery_typeahead.md │ │ │ └── migration │ │ │ │ └── 0.10.0.md │ │ ├── karma.conf.js │ │ ├── nba.json │ │ ├── nfl.json │ │ ├── nhl.json │ │ ├── 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 │ ├── typed.js-master │ │ ├── dist │ │ │ └── typed.min.js │ │ └── js │ │ │ └── typed.js │ ├── vectormap │ │ ├── gdp-data.js │ │ ├── jquery-jvectormap-2.0.2.css │ │ ├── jquery-jvectormap-2.0.2.min.js │ │ ├── jquery-jvectormap-asia-mill.js │ │ ├── jquery-jvectormap-au-mill.js │ │ ├── jquery-jvectormap-ca-lcc.js │ │ ├── jquery-jvectormap-de-mill.js │ │ ├── jquery-jvectormap-europe-mill-en.js │ │ ├── jquery-jvectormap-in-mill.js │ │ ├── jquery-jvectormap-uk-mill-en.js │ │ ├── jquery-jvectormap-us-aea-en.js │ │ ├── jquery-jvectormap-us-il-chicago-mill-en.js │ │ ├── jquery-jvectormap-world-mill-en.js │ │ └── jvectormap.custom.js │ ├── waypoints │ │ └── lib │ │ │ ├── jquery.waypoints.js │ │ │ ├── jquery.waypoints.min.js │ │ │ ├── noframework.waypoints.js │ │ │ ├── noframework.waypoints.min.js │ │ │ ├── shortcuts │ │ │ ├── infinite.js │ │ │ ├── infinite.min.js │ │ │ ├── inview.js │ │ │ ├── inview.min.js │ │ │ ├── sticky.js │ │ │ └── sticky.min.js │ │ │ ├── waypoints.debug.js │ │ │ ├── zepto.waypoints.js │ │ │ └── zepto.waypoints.min.js │ └── x-editable │ │ └── dist │ │ ├── bootstrap-editable │ │ ├── css │ │ │ └── bootstrap-editable.css │ │ ├── img │ │ │ ├── clear.png │ │ │ └── loading.gif │ │ └── js │ │ │ ├── bootstrap-editable.js │ │ │ └── bootstrap-editable.min.js │ │ ├── bootstrap3-editable │ │ ├── css │ │ │ └── bootstrap-editable.css │ │ ├── img │ │ │ ├── clear.png │ │ │ └── loading.gif │ │ └── js │ │ │ ├── bootstrap-editable.js │ │ │ └── bootstrap-editable.min.js │ │ ├── inputs-ext │ │ ├── address │ │ │ ├── address.css │ │ │ └── address.js │ │ ├── typeaheadjs │ │ │ ├── lib │ │ │ │ ├── typeahead.js │ │ │ │ └── typeahead.js-bootstrap.css │ │ │ └── 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 │ │ ├── jquery-editable │ │ ├── css │ │ │ └── jquery-editable.css │ │ ├── img │ │ │ ├── clear.png │ │ │ └── loading.gif │ │ ├── jquery-ui-datepicker │ │ │ ├── css │ │ │ │ └── redmond │ │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ │ │ └── ui-icons_f9bd01_256x240.png │ │ │ │ │ ├── jquery-ui-1.10.3.custom.css │ │ │ │ │ └── jquery-ui-1.10.3.custom.min.css │ │ │ └── js │ │ │ │ ├── jquery-ui-1.10.3.custom.js │ │ │ │ └── jquery-ui-1.10.3.custom.min.js │ │ └── js │ │ │ ├── jquery-editable-poshytip.js │ │ │ └── jquery-editable-poshytip.min.js │ │ └── jqueryui-editable │ │ ├── css │ │ └── jqueryui-editable.css │ │ ├── img │ │ ├── clear.png │ │ └── loading.gif │ │ └── js │ │ ├── jqueryui-editable.js │ │ └── jqueryui-editable.min.js ├── images │ ├── Bitcoin_QR_code.png │ ├── Ethereum_QR_code.png │ ├── Litecoin_QR_code.png │ ├── bookmark.png │ ├── busy.gif │ ├── categories │ │ └── unsorted.png │ ├── chat.png │ ├── default_user.png │ ├── error-bg.jpg │ ├── favicon │ │ ├── android-chrome-144x144.png │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-256x256.png │ │ ├── android-chrome-36x36.png │ │ ├── android-chrome-384x384.png │ │ ├── android-chrome-48x48.png │ │ ├── android-chrome-512x512.png │ │ ├── android-chrome-72x72.png │ │ ├── android-chrome-96x96.png │ │ ├── apple-touch-icon-120x120-precomposed.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-152x152-precomposed.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-180x180-precomposed.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-60x60-precomposed.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-76x76-precomposed.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon-precomposed.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── mstile-144x144.png │ │ ├── mstile-150x150.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest │ ├── faviconCustom │ │ └── placeFavIconsHere.txt │ ├── groups │ │ ├── admin.png │ │ ├── b1.png │ │ ├── b2.png │ │ ├── b3.png │ │ ├── bl2.png │ │ ├── bl3.png │ │ ├── coadmin.png │ │ ├── g3.png │ │ ├── g4.png │ │ ├── guest.png │ │ ├── m1.png │ │ ├── m2.png │ │ ├── m3.png │ │ ├── poweruser.png │ │ ├── r1.png │ │ ├── r2.png │ │ ├── r3.png │ │ ├── superuser.png │ │ ├── user.png │ │ ├── y1.png │ │ ├── y2.png │ │ └── y3.png │ ├── healthchecksio.png │ ├── homepage │ │ ├── embyLiveTVTracker.png │ │ ├── jellystat.png │ │ ├── livetv.png │ │ ├── no-list.png │ │ ├── no-np.png │ │ ├── no-request.png │ │ └── userWatchStats.png │ ├── invites.png │ ├── languages │ │ ├── de.png │ │ ├── en.png │ │ └── nb.png │ ├── login-register.jpg │ ├── multiple-arrow.png │ ├── organizr │ │ ├── logo-no-border.png │ │ ├── logo-purple-square.png │ │ ├── logo-wide.png │ │ ├── logo.png │ │ ├── organizr-logo-h-d.png │ │ ├── organizr-logo-h.png │ │ ├── organizr_logo.png │ │ └── organizr_logo_d.png │ ├── php-mailer.png │ ├── rotten.png │ ├── sort_asc.png │ ├── sort_asc_disabled.png │ ├── sort_both.png │ ├── sort_desc.png │ ├── sort_desc_disabled.png │ ├── speedtest.png │ ├── sponsor-open-collective.png │ ├── sponsor-patreon.png │ ├── sponsor.png │ ├── sponsor.psd │ ├── tabs │ │ ├── AdGuardHome.png │ │ ├── Docsify.png │ │ ├── Duplicati.png │ │ ├── HTML5.png │ │ ├── Kavita.png │ │ ├── OliveTin.png │ │ ├── TheLounge.png │ │ ├── ajenti.png │ │ ├── amule.png │ │ ├── arduino.png │ │ ├── asusrouter.png │ │ ├── autobrr.png │ │ ├── backrest.png │ │ ├── bazarr.png │ │ ├── bazarr4k.png │ │ ├── bitwarden.png │ │ ├── booksonic.png │ │ ├── bookstack.png │ │ ├── calendar.png │ │ ├── calibre-web.png │ │ ├── cardigann-white.png │ │ ├── cardigann.png │ │ ├── chronograf.png │ │ ├── cockpit.png │ │ ├── codiad.png │ │ ├── cops.png │ │ ├── copyparty.png │ │ ├── couchpotato.png │ │ ├── custom1.png │ │ ├── custom2.png │ │ ├── deluge.png │ │ ├── donate.png │ │ ├── downloader.png │ │ ├── dozzle.png │ │ ├── duplicacy.png │ │ ├── emby.png │ │ ├── filebrowser.png │ │ ├── flaresolverr.png │ │ ├── flood.png │ │ ├── forgejo.png │ │ ├── freenas-logo.png │ │ ├── freenas.png │ │ ├── fritzbox.png │ │ ├── gitea.png │ │ ├── gitlab.png │ │ ├── gitter.png │ │ ├── grafana.png │ │ ├── guacamole.png │ │ ├── haproxy.png │ │ ├── headphones.png │ │ ├── healthchecks.png │ │ ├── hfs.png │ │ ├── homeassistant.png │ │ ├── homebridge.png │ │ ├── hydra.png │ │ ├── hydra2.png │ │ ├── immich.png │ │ ├── influxdb.png │ │ ├── jackett.png │ │ ├── jdownloader.png │ │ ├── jellyfin.png │ │ ├── jupyter.png │ │ ├── kodi.png │ │ ├── komga.png │ │ ├── kuma.png │ │ ├── lazylibrarian.png │ │ ├── lidarr.png │ │ ├── logarr.png │ │ ├── madsonic.png │ │ ├── mantis.png │ │ ├── mcmap.png │ │ ├── medusa.png │ │ ├── meraki.png │ │ ├── monitorr.png │ │ ├── motherboard.png │ │ ├── mumble.png │ │ ├── mylar.png │ │ ├── navidrome.png │ │ ├── netdata.png │ │ ├── netgear.png │ │ ├── nextcloud.png │ │ ├── nginxproxymanager.png │ │ ├── nodered.png │ │ ├── nzbget.png │ │ ├── nzbhydra.png │ │ ├── octoprint.png │ │ ├── ombi-emby.png │ │ ├── ombi-plex.png │ │ ├── ombi.png │ │ ├── openhab.png │ │ ├── openvpn.png │ │ ├── openwrt.png │ │ ├── opnsense.png │ │ ├── overseerr.png │ │ ├── owncloud.png │ │ ├── petio.png │ │ ├── pf-blue.png │ │ ├── pfsense.png │ │ ├── photoprism.png │ │ ├── phpsysinfo.png │ │ ├── pigallery.png │ │ ├── pihole.png │ │ ├── pimpmylog.png │ │ ├── plex.png │ │ ├── portainer.png │ │ ├── prometheus.png │ │ ├── prompage.png │ │ ├── prowlarr.png │ │ ├── proxmox.png │ │ ├── pvr.png │ │ ├── pydio.png │ │ ├── pyload.png │ │ ├── qBittorrent.png │ │ ├── qnap.png │ │ ├── rTorrent.png │ │ ├── radarr.png │ │ ├── radarr4k.png │ │ ├── radarr4kNew.png │ │ ├── radarrNew.png │ │ ├── readarr.png │ │ ├── requestrr.png │ │ ├── resilio.png │ │ ├── romm.png │ │ ├── rsscrawler.png │ │ ├── rustdesk.png │ │ ├── rutorrent.png │ │ ├── sabnzbd.png │ │ ├── sickbeard.png │ │ ├── sickrage.png │ │ ├── sonarr.png │ │ ├── sonarr4k.png │ │ ├── speed.png │ │ ├── speedtest-icon.png │ │ ├── stash.png │ │ ├── statuscake.png │ │ ├── subsonic.png │ │ ├── sugarcrm.png │ │ ├── synclounge-dark.png │ │ ├── synclounge-light.png │ │ ├── syncthing.png │ │ ├── synology.png │ │ ├── tachidesk_sorayomi.png │ │ ├── tautulli.png │ │ ├── teamspeak.png │ │ ├── trakt.png │ │ ├── transmission.png │ │ ├── trilium.png │ │ ├── ubnt.png │ │ ├── ubooquity.png │ │ ├── unifi-protect.png │ │ ├── unifi.png │ │ ├── unraid.png │ │ ├── utorrent.png │ │ ├── vera.png │ │ ├── videochat.png │ │ ├── vmware.png │ │ ├── vscode.png │ │ ├── watcher.png │ │ ├── webmin.png │ │ ├── webtools.png │ │ ├── whisparr.png │ │ ├── wind.png │ │ ├── xbackbone.png │ │ ├── xenorchestra.png │ │ ├── yacd.png │ │ ├── zipline.png │ │ ├── znc.png │ │ └── zwavejs.png │ ├── test.png │ ├── tooltip │ │ ├── shape1.svg │ │ ├── shape2.svg │ │ ├── shape3.svg │ │ ├── tooltip1.svg │ │ ├── tooltip2.svg │ │ └── tooltip3.svg │ └── userTabs │ │ └── index.html ├── plugin_files │ └── index.html ├── sounds │ ├── custom │ │ └── only-mp3s-here.txt │ └── default │ │ ├── arpeggio.mp3 │ │ ├── awareness.mp3 │ │ ├── newmessage.mp3 │ │ └── open-ended.mp3 ├── static │ └── upgrade.html └── theme_files │ └── index.html ├── poster_updates.js ├── scripts ├── linux-update.sh └── windows-update.bat ├── server.log ├── test_debug.php ├── test_jellystat_api.html └── tmp └── index.html /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/README.md -------------------------------------------------------------------------------- /api/classes/custom.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/classes/custom.class.php -------------------------------------------------------------------------------- /api/classes/deluge.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/classes/deluge.class.php -------------------------------------------------------------------------------- /api/classes/logger.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/classes/logger.class.php -------------------------------------------------------------------------------- /api/classes/loggerExt.class.php: -------------------------------------------------------------------------------- 1 | false 4 | ); 5 | -------------------------------------------------------------------------------- /api/plugins/bookmark/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/bookmark/logo.png -------------------------------------------------------------------------------- /api/plugins/bookmark/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/bookmark/plugin.php -------------------------------------------------------------------------------- /api/plugins/bookmark/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/bookmark/settings.js -------------------------------------------------------------------------------- /api/plugins/chat/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/chat/api.php -------------------------------------------------------------------------------- /api/plugins/chat/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/chat/config.php -------------------------------------------------------------------------------- /api/plugins/chat/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/chat/logo.png -------------------------------------------------------------------------------- /api/plugins/chat/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/chat/main.js -------------------------------------------------------------------------------- /api/plugins/chat/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/chat/plugin.php -------------------------------------------------------------------------------- /api/plugins/healthChecks/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/healthChecks/api.php -------------------------------------------------------------------------------- /api/plugins/healthChecks/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/healthChecks/config.php -------------------------------------------------------------------------------- /api/plugins/healthChecks/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/healthChecks/cron.php -------------------------------------------------------------------------------- /api/plugins/healthChecks/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/healthChecks/logo.png -------------------------------------------------------------------------------- /api/plugins/healthChecks/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/healthChecks/main.js -------------------------------------------------------------------------------- /api/plugins/healthChecks/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/healthChecks/plugin.php -------------------------------------------------------------------------------- /api/plugins/healthChecks/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/healthChecks/settings.js -------------------------------------------------------------------------------- /api/plugins/invites/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/invites/api.php -------------------------------------------------------------------------------- /api/plugins/invites/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/invites/config.php -------------------------------------------------------------------------------- /api/plugins/invites/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/invites/logo.png -------------------------------------------------------------------------------- /api/plugins/invites/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/invites/main.js -------------------------------------------------------------------------------- /api/plugins/invites/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/invites/plugin.php -------------------------------------------------------------------------------- /api/plugins/php-mailer/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/php-mailer/api.php -------------------------------------------------------------------------------- /api/plugins/php-mailer/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/php-mailer/config.php -------------------------------------------------------------------------------- /api/plugins/php-mailer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/php-mailer/logo.png -------------------------------------------------------------------------------- /api/plugins/php-mailer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/php-mailer/main.js -------------------------------------------------------------------------------- /api/plugins/php-mailer/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/php-mailer/plugin.php -------------------------------------------------------------------------------- /api/plugins/shuck-stop/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/shuck-stop/api.php -------------------------------------------------------------------------------- /api/plugins/shuck-stop/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/shuck-stop/config.php -------------------------------------------------------------------------------- /api/plugins/shuck-stop/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/shuck-stop/cron.php -------------------------------------------------------------------------------- /api/plugins/shuck-stop/drives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/shuck-stop/drives.json -------------------------------------------------------------------------------- /api/plugins/shuck-stop/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/shuck-stop/logo.png -------------------------------------------------------------------------------- /api/plugins/shuck-stop/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/shuck-stop/plugin.php -------------------------------------------------------------------------------- /api/plugins/speedTest/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/speedTest/api.php -------------------------------------------------------------------------------- /api/plugins/speedTest/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/speedTest/config.php -------------------------------------------------------------------------------- /api/plugins/speedTest/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/speedTest/logo.png -------------------------------------------------------------------------------- /api/plugins/speedTest/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/speedTest/main.js -------------------------------------------------------------------------------- /api/plugins/speedTest/misc/empty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/speedTest/misc/empty.php -------------------------------------------------------------------------------- /api/plugins/speedTest/misc/garbage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/speedTest/misc/garbage.php -------------------------------------------------------------------------------- /api/plugins/speedTest/misc/getIP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/speedTest/misc/getIP.php -------------------------------------------------------------------------------- /api/plugins/speedTest/misc/telemetry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/speedTest/misc/telemetry.php -------------------------------------------------------------------------------- /api/plugins/speedTest/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/plugins/speedTest/plugin.php -------------------------------------------------------------------------------- /api/v2/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/index.php -------------------------------------------------------------------------------- /api/v2/routes/2fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/2fa.php -------------------------------------------------------------------------------- /api/v2/routes/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/backup.php -------------------------------------------------------------------------------- /api/v2/routes/categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/categories.php -------------------------------------------------------------------------------- /api/v2/routes/certificate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/certificate.php -------------------------------------------------------------------------------- /api/v2/routes/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/config.php -------------------------------------------------------------------------------- /api/v2/routes/connectionTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/connectionTester.php -------------------------------------------------------------------------------- /api/v2/routes/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/database.php -------------------------------------------------------------------------------- /api/v2/routes/emby.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/emby.php -------------------------------------------------------------------------------- /api/v2/routes/groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/groups.php -------------------------------------------------------------------------------- /api/v2/routes/help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/help.php -------------------------------------------------------------------------------- /api/v2/routes/homepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/homepage.php -------------------------------------------------------------------------------- /api/v2/routes/icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/icon.php -------------------------------------------------------------------------------- /api/v2/routes/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/image.php -------------------------------------------------------------------------------- /api/v2/routes/ip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/ip.php -------------------------------------------------------------------------------- /api/v2/routes/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/log.php -------------------------------------------------------------------------------- /api/v2/routes/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/login.php -------------------------------------------------------------------------------- /api/v2/routes/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/logout.php -------------------------------------------------------------------------------- /api/v2/routes/news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/news.php -------------------------------------------------------------------------------- /api/v2/routes/oauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/oauth.php -------------------------------------------------------------------------------- /api/v2/routes/organizr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/organizr.php -------------------------------------------------------------------------------- /api/v2/routes/pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/pages.php -------------------------------------------------------------------------------- /api/v2/routes/ping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/ping.php -------------------------------------------------------------------------------- /api/v2/routes/plex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/plex.php -------------------------------------------------------------------------------- /api/v2/routes/plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/plugins.php -------------------------------------------------------------------------------- /api/v2/routes/root.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/root.php -------------------------------------------------------------------------------- /api/v2/routes/rox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/rox.php -------------------------------------------------------------------------------- /api/v2/routes/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/settings.php -------------------------------------------------------------------------------- /api/v2/routes/socks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/socks.php -------------------------------------------------------------------------------- /api/v2/routes/sponsors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/sponsors.php -------------------------------------------------------------------------------- /api/v2/routes/tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/tabs.php -------------------------------------------------------------------------------- /api/v2/routes/themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/themes.php -------------------------------------------------------------------------------- /api/v2/routes/token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/token.php -------------------------------------------------------------------------------- /api/v2/routes/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/update.php -------------------------------------------------------------------------------- /api/v2/routes/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/users.php -------------------------------------------------------------------------------- /api/v2/routes/wizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/routes/wizard.php -------------------------------------------------------------------------------- /api/v2/schemas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/api/v2/schemas.php -------------------------------------------------------------------------------- /api/vendor/Expectation.php: -------------------------------------------------------------------------------- 1 | Another Content

-------------------------------------------------------------------------------- /plugins/bower_components/jquery-wizard-master/demo/ajax/3.html: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /plugins/bower_components/jquery-wizard-master/demo/css/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /plugins/bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /plugins/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /plugins/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /plugins/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /plugins/bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /plugins/bower_components/jsgrid/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | _site 4 | -------------------------------------------------------------------------------- /plugins/bower_components/jsgrid/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | _site 4 | .editorconfig 5 | .travis.yml 6 | -------------------------------------------------------------------------------- /plugins/bower_components/jsgrid/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/bower_components/jsgrid/db.js -------------------------------------------------------------------------------- /plugins/bower_components/mocha/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/bower_components/mocha/LICENSE -------------------------------------------------------------------------------- /plugins/bower_components/moment/src/lib/locale/constructor.js: -------------------------------------------------------------------------------- 1 | export function Locale() { 2 | } 3 | -------------------------------------------------------------------------------- /plugins/bower_components/noty/mint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/bower_components/noty/mint.css -------------------------------------------------------------------------------- /plugins/bower_components/noty/noty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/bower_components/noty/noty.css -------------------------------------------------------------------------------- /plugins/bower_components/summernote/src/js/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /plugins/bower_components/tablesaw-master/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .grunt 3 | -------------------------------------------------------------------------------- /plugins/images/Bitcoin_QR_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/Bitcoin_QR_code.png -------------------------------------------------------------------------------- /plugins/images/Ethereum_QR_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/Ethereum_QR_code.png -------------------------------------------------------------------------------- /plugins/images/Litecoin_QR_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/Litecoin_QR_code.png -------------------------------------------------------------------------------- /plugins/images/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/bookmark.png -------------------------------------------------------------------------------- /plugins/images/busy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/busy.gif -------------------------------------------------------------------------------- /plugins/images/categories/unsorted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/categories/unsorted.png -------------------------------------------------------------------------------- /plugins/images/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/chat.png -------------------------------------------------------------------------------- /plugins/images/default_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/default_user.png -------------------------------------------------------------------------------- /plugins/images/error-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/error-bg.jpg -------------------------------------------------------------------------------- /plugins/images/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/favicon/favicon.ico -------------------------------------------------------------------------------- /plugins/images/faviconCustom/placeFavIconsHere.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/images/groups/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/admin.png -------------------------------------------------------------------------------- /plugins/images/groups/b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/b1.png -------------------------------------------------------------------------------- /plugins/images/groups/b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/b2.png -------------------------------------------------------------------------------- /plugins/images/groups/b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/b3.png -------------------------------------------------------------------------------- /plugins/images/groups/bl2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/bl2.png -------------------------------------------------------------------------------- /plugins/images/groups/bl3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/bl3.png -------------------------------------------------------------------------------- /plugins/images/groups/coadmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/coadmin.png -------------------------------------------------------------------------------- /plugins/images/groups/g3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/g3.png -------------------------------------------------------------------------------- /plugins/images/groups/g4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/g4.png -------------------------------------------------------------------------------- /plugins/images/groups/guest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/guest.png -------------------------------------------------------------------------------- /plugins/images/groups/m1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/m1.png -------------------------------------------------------------------------------- /plugins/images/groups/m2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/m2.png -------------------------------------------------------------------------------- /plugins/images/groups/m3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/m3.png -------------------------------------------------------------------------------- /plugins/images/groups/poweruser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/poweruser.png -------------------------------------------------------------------------------- /plugins/images/groups/r1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/r1.png -------------------------------------------------------------------------------- /plugins/images/groups/r2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/r2.png -------------------------------------------------------------------------------- /plugins/images/groups/r3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/r3.png -------------------------------------------------------------------------------- /plugins/images/groups/superuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/superuser.png -------------------------------------------------------------------------------- /plugins/images/groups/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/user.png -------------------------------------------------------------------------------- /plugins/images/groups/y1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/y1.png -------------------------------------------------------------------------------- /plugins/images/groups/y2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/y2.png -------------------------------------------------------------------------------- /plugins/images/groups/y3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/groups/y3.png -------------------------------------------------------------------------------- /plugins/images/healthchecksio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/healthchecksio.png -------------------------------------------------------------------------------- /plugins/images/homepage/jellystat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/homepage/jellystat.png -------------------------------------------------------------------------------- /plugins/images/homepage/livetv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/homepage/livetv.png -------------------------------------------------------------------------------- /plugins/images/homepage/no-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/homepage/no-list.png -------------------------------------------------------------------------------- /plugins/images/homepage/no-np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/homepage/no-np.png -------------------------------------------------------------------------------- /plugins/images/homepage/no-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/homepage/no-request.png -------------------------------------------------------------------------------- /plugins/images/invites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/invites.png -------------------------------------------------------------------------------- /plugins/images/languages/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/languages/de.png -------------------------------------------------------------------------------- /plugins/images/languages/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/languages/en.png -------------------------------------------------------------------------------- /plugins/images/languages/nb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/languages/nb.png -------------------------------------------------------------------------------- /plugins/images/login-register.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/login-register.jpg -------------------------------------------------------------------------------- /plugins/images/multiple-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/multiple-arrow.png -------------------------------------------------------------------------------- /plugins/images/organizr/logo-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/organizr/logo-wide.png -------------------------------------------------------------------------------- /plugins/images/organizr/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/organizr/logo.png -------------------------------------------------------------------------------- /plugins/images/php-mailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/php-mailer.png -------------------------------------------------------------------------------- /plugins/images/rotten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/rotten.png -------------------------------------------------------------------------------- /plugins/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/sort_asc.png -------------------------------------------------------------------------------- /plugins/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /plugins/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/sort_both.png -------------------------------------------------------------------------------- /plugins/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/sort_desc.png -------------------------------------------------------------------------------- /plugins/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /plugins/images/speedtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/speedtest.png -------------------------------------------------------------------------------- /plugins/images/sponsor-patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/sponsor-patreon.png -------------------------------------------------------------------------------- /plugins/images/sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/sponsor.png -------------------------------------------------------------------------------- /plugins/images/sponsor.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/sponsor.psd -------------------------------------------------------------------------------- /plugins/images/tabs/AdGuardHome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/AdGuardHome.png -------------------------------------------------------------------------------- /plugins/images/tabs/Docsify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/Docsify.png -------------------------------------------------------------------------------- /plugins/images/tabs/Duplicati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/Duplicati.png -------------------------------------------------------------------------------- /plugins/images/tabs/HTML5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/HTML5.png -------------------------------------------------------------------------------- /plugins/images/tabs/Kavita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/Kavita.png -------------------------------------------------------------------------------- /plugins/images/tabs/OliveTin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/OliveTin.png -------------------------------------------------------------------------------- /plugins/images/tabs/TheLounge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/TheLounge.png -------------------------------------------------------------------------------- /plugins/images/tabs/ajenti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/ajenti.png -------------------------------------------------------------------------------- /plugins/images/tabs/amule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/amule.png -------------------------------------------------------------------------------- /plugins/images/tabs/arduino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/arduino.png -------------------------------------------------------------------------------- /plugins/images/tabs/asusrouter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/asusrouter.png -------------------------------------------------------------------------------- /plugins/images/tabs/autobrr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/autobrr.png -------------------------------------------------------------------------------- /plugins/images/tabs/backrest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/backrest.png -------------------------------------------------------------------------------- /plugins/images/tabs/bazarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/bazarr.png -------------------------------------------------------------------------------- /plugins/images/tabs/bazarr4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/bazarr4k.png -------------------------------------------------------------------------------- /plugins/images/tabs/bitwarden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/bitwarden.png -------------------------------------------------------------------------------- /plugins/images/tabs/booksonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/booksonic.png -------------------------------------------------------------------------------- /plugins/images/tabs/bookstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/bookstack.png -------------------------------------------------------------------------------- /plugins/images/tabs/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/calendar.png -------------------------------------------------------------------------------- /plugins/images/tabs/calibre-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/calibre-web.png -------------------------------------------------------------------------------- /plugins/images/tabs/cardigann.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/cardigann.png -------------------------------------------------------------------------------- /plugins/images/tabs/chronograf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/chronograf.png -------------------------------------------------------------------------------- /plugins/images/tabs/cockpit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/cockpit.png -------------------------------------------------------------------------------- /plugins/images/tabs/codiad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/codiad.png -------------------------------------------------------------------------------- /plugins/images/tabs/cops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/cops.png -------------------------------------------------------------------------------- /plugins/images/tabs/copyparty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/copyparty.png -------------------------------------------------------------------------------- /plugins/images/tabs/couchpotato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/couchpotato.png -------------------------------------------------------------------------------- /plugins/images/tabs/custom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/custom1.png -------------------------------------------------------------------------------- /plugins/images/tabs/custom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/custom2.png -------------------------------------------------------------------------------- /plugins/images/tabs/deluge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/deluge.png -------------------------------------------------------------------------------- /plugins/images/tabs/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/donate.png -------------------------------------------------------------------------------- /plugins/images/tabs/downloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/downloader.png -------------------------------------------------------------------------------- /plugins/images/tabs/dozzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/dozzle.png -------------------------------------------------------------------------------- /plugins/images/tabs/duplicacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/duplicacy.png -------------------------------------------------------------------------------- /plugins/images/tabs/emby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/emby.png -------------------------------------------------------------------------------- /plugins/images/tabs/filebrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/filebrowser.png -------------------------------------------------------------------------------- /plugins/images/tabs/flaresolverr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/flaresolverr.png -------------------------------------------------------------------------------- /plugins/images/tabs/flood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/flood.png -------------------------------------------------------------------------------- /plugins/images/tabs/forgejo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/forgejo.png -------------------------------------------------------------------------------- /plugins/images/tabs/freenas-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/freenas-logo.png -------------------------------------------------------------------------------- /plugins/images/tabs/freenas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/freenas.png -------------------------------------------------------------------------------- /plugins/images/tabs/fritzbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/fritzbox.png -------------------------------------------------------------------------------- /plugins/images/tabs/gitea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/gitea.png -------------------------------------------------------------------------------- /plugins/images/tabs/gitlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/gitlab.png -------------------------------------------------------------------------------- /plugins/images/tabs/gitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/gitter.png -------------------------------------------------------------------------------- /plugins/images/tabs/grafana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/grafana.png -------------------------------------------------------------------------------- /plugins/images/tabs/guacamole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/guacamole.png -------------------------------------------------------------------------------- /plugins/images/tabs/haproxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/haproxy.png -------------------------------------------------------------------------------- /plugins/images/tabs/headphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/headphones.png -------------------------------------------------------------------------------- /plugins/images/tabs/healthchecks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/healthchecks.png -------------------------------------------------------------------------------- /plugins/images/tabs/hfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/hfs.png -------------------------------------------------------------------------------- /plugins/images/tabs/homeassistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/homeassistant.png -------------------------------------------------------------------------------- /plugins/images/tabs/homebridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/homebridge.png -------------------------------------------------------------------------------- /plugins/images/tabs/hydra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/hydra.png -------------------------------------------------------------------------------- /plugins/images/tabs/hydra2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/hydra2.png -------------------------------------------------------------------------------- /plugins/images/tabs/immich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/immich.png -------------------------------------------------------------------------------- /plugins/images/tabs/influxdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/influxdb.png -------------------------------------------------------------------------------- /plugins/images/tabs/jackett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/jackett.png -------------------------------------------------------------------------------- /plugins/images/tabs/jdownloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/jdownloader.png -------------------------------------------------------------------------------- /plugins/images/tabs/jellyfin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/jellyfin.png -------------------------------------------------------------------------------- /plugins/images/tabs/jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/jupyter.png -------------------------------------------------------------------------------- /plugins/images/tabs/kodi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/kodi.png -------------------------------------------------------------------------------- /plugins/images/tabs/komga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/komga.png -------------------------------------------------------------------------------- /plugins/images/tabs/kuma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/kuma.png -------------------------------------------------------------------------------- /plugins/images/tabs/lazylibrarian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/lazylibrarian.png -------------------------------------------------------------------------------- /plugins/images/tabs/lidarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/lidarr.png -------------------------------------------------------------------------------- /plugins/images/tabs/logarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/logarr.png -------------------------------------------------------------------------------- /plugins/images/tabs/madsonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/madsonic.png -------------------------------------------------------------------------------- /plugins/images/tabs/mantis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/mantis.png -------------------------------------------------------------------------------- /plugins/images/tabs/mcmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/mcmap.png -------------------------------------------------------------------------------- /plugins/images/tabs/medusa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/medusa.png -------------------------------------------------------------------------------- /plugins/images/tabs/meraki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/meraki.png -------------------------------------------------------------------------------- /plugins/images/tabs/monitorr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/monitorr.png -------------------------------------------------------------------------------- /plugins/images/tabs/motherboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/motherboard.png -------------------------------------------------------------------------------- /plugins/images/tabs/mumble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/mumble.png -------------------------------------------------------------------------------- /plugins/images/tabs/mylar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/mylar.png -------------------------------------------------------------------------------- /plugins/images/tabs/navidrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/navidrome.png -------------------------------------------------------------------------------- /plugins/images/tabs/netdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/netdata.png -------------------------------------------------------------------------------- /plugins/images/tabs/netgear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/netgear.png -------------------------------------------------------------------------------- /plugins/images/tabs/nextcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/nextcloud.png -------------------------------------------------------------------------------- /plugins/images/tabs/nodered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/nodered.png -------------------------------------------------------------------------------- /plugins/images/tabs/nzbget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/nzbget.png -------------------------------------------------------------------------------- /plugins/images/tabs/nzbhydra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/nzbhydra.png -------------------------------------------------------------------------------- /plugins/images/tabs/octoprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/octoprint.png -------------------------------------------------------------------------------- /plugins/images/tabs/ombi-emby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/ombi-emby.png -------------------------------------------------------------------------------- /plugins/images/tabs/ombi-plex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/ombi-plex.png -------------------------------------------------------------------------------- /plugins/images/tabs/ombi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/ombi.png -------------------------------------------------------------------------------- /plugins/images/tabs/openhab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/openhab.png -------------------------------------------------------------------------------- /plugins/images/tabs/openvpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/openvpn.png -------------------------------------------------------------------------------- /plugins/images/tabs/openwrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/openwrt.png -------------------------------------------------------------------------------- /plugins/images/tabs/opnsense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/opnsense.png -------------------------------------------------------------------------------- /plugins/images/tabs/overseerr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/overseerr.png -------------------------------------------------------------------------------- /plugins/images/tabs/owncloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/owncloud.png -------------------------------------------------------------------------------- /plugins/images/tabs/petio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/petio.png -------------------------------------------------------------------------------- /plugins/images/tabs/pf-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/pf-blue.png -------------------------------------------------------------------------------- /plugins/images/tabs/pfsense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/pfsense.png -------------------------------------------------------------------------------- /plugins/images/tabs/photoprism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/photoprism.png -------------------------------------------------------------------------------- /plugins/images/tabs/phpsysinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/phpsysinfo.png -------------------------------------------------------------------------------- /plugins/images/tabs/pigallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/pigallery.png -------------------------------------------------------------------------------- /plugins/images/tabs/pihole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/pihole.png -------------------------------------------------------------------------------- /plugins/images/tabs/pimpmylog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/pimpmylog.png -------------------------------------------------------------------------------- /plugins/images/tabs/plex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/plex.png -------------------------------------------------------------------------------- /plugins/images/tabs/portainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/portainer.png -------------------------------------------------------------------------------- /plugins/images/tabs/prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/prometheus.png -------------------------------------------------------------------------------- /plugins/images/tabs/prompage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/prompage.png -------------------------------------------------------------------------------- /plugins/images/tabs/prowlarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/prowlarr.png -------------------------------------------------------------------------------- /plugins/images/tabs/proxmox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/proxmox.png -------------------------------------------------------------------------------- /plugins/images/tabs/pvr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/pvr.png -------------------------------------------------------------------------------- /plugins/images/tabs/pydio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/pydio.png -------------------------------------------------------------------------------- /plugins/images/tabs/pyload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/pyload.png -------------------------------------------------------------------------------- /plugins/images/tabs/qBittorrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/qBittorrent.png -------------------------------------------------------------------------------- /plugins/images/tabs/qnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/qnap.png -------------------------------------------------------------------------------- /plugins/images/tabs/rTorrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/rTorrent.png -------------------------------------------------------------------------------- /plugins/images/tabs/radarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/radarr.png -------------------------------------------------------------------------------- /plugins/images/tabs/radarr4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/radarr4k.png -------------------------------------------------------------------------------- /plugins/images/tabs/radarr4kNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/radarr4kNew.png -------------------------------------------------------------------------------- /plugins/images/tabs/radarrNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/radarrNew.png -------------------------------------------------------------------------------- /plugins/images/tabs/readarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/readarr.png -------------------------------------------------------------------------------- /plugins/images/tabs/requestrr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/requestrr.png -------------------------------------------------------------------------------- /plugins/images/tabs/resilio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/resilio.png -------------------------------------------------------------------------------- /plugins/images/tabs/romm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/romm.png -------------------------------------------------------------------------------- /plugins/images/tabs/rsscrawler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/rsscrawler.png -------------------------------------------------------------------------------- /plugins/images/tabs/rustdesk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/rustdesk.png -------------------------------------------------------------------------------- /plugins/images/tabs/rutorrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/rutorrent.png -------------------------------------------------------------------------------- /plugins/images/tabs/sabnzbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/sabnzbd.png -------------------------------------------------------------------------------- /plugins/images/tabs/sickbeard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/sickbeard.png -------------------------------------------------------------------------------- /plugins/images/tabs/sickrage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/sickrage.png -------------------------------------------------------------------------------- /plugins/images/tabs/sonarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/sonarr.png -------------------------------------------------------------------------------- /plugins/images/tabs/sonarr4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/sonarr4k.png -------------------------------------------------------------------------------- /plugins/images/tabs/speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/speed.png -------------------------------------------------------------------------------- /plugins/images/tabs/speedtest-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/speedtest-icon.png -------------------------------------------------------------------------------- /plugins/images/tabs/stash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/stash.png -------------------------------------------------------------------------------- /plugins/images/tabs/statuscake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/statuscake.png -------------------------------------------------------------------------------- /plugins/images/tabs/subsonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/subsonic.png -------------------------------------------------------------------------------- /plugins/images/tabs/sugarcrm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/sugarcrm.png -------------------------------------------------------------------------------- /plugins/images/tabs/syncthing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/syncthing.png -------------------------------------------------------------------------------- /plugins/images/tabs/synology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/synology.png -------------------------------------------------------------------------------- /plugins/images/tabs/tautulli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/tautulli.png -------------------------------------------------------------------------------- /plugins/images/tabs/teamspeak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/teamspeak.png -------------------------------------------------------------------------------- /plugins/images/tabs/trakt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/trakt.png -------------------------------------------------------------------------------- /plugins/images/tabs/transmission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/transmission.png -------------------------------------------------------------------------------- /plugins/images/tabs/trilium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/trilium.png -------------------------------------------------------------------------------- /plugins/images/tabs/ubnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/ubnt.png -------------------------------------------------------------------------------- /plugins/images/tabs/ubooquity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/ubooquity.png -------------------------------------------------------------------------------- /plugins/images/tabs/unifi-protect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/unifi-protect.png -------------------------------------------------------------------------------- /plugins/images/tabs/unifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/unifi.png -------------------------------------------------------------------------------- /plugins/images/tabs/unraid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/unraid.png -------------------------------------------------------------------------------- /plugins/images/tabs/utorrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/utorrent.png -------------------------------------------------------------------------------- /plugins/images/tabs/vera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/vera.png -------------------------------------------------------------------------------- /plugins/images/tabs/videochat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/videochat.png -------------------------------------------------------------------------------- /plugins/images/tabs/vmware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/vmware.png -------------------------------------------------------------------------------- /plugins/images/tabs/vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/vscode.png -------------------------------------------------------------------------------- /plugins/images/tabs/watcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/watcher.png -------------------------------------------------------------------------------- /plugins/images/tabs/webmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/webmin.png -------------------------------------------------------------------------------- /plugins/images/tabs/webtools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/webtools.png -------------------------------------------------------------------------------- /plugins/images/tabs/whisparr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/whisparr.png -------------------------------------------------------------------------------- /plugins/images/tabs/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/wind.png -------------------------------------------------------------------------------- /plugins/images/tabs/xbackbone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/xbackbone.png -------------------------------------------------------------------------------- /plugins/images/tabs/xenorchestra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/xenorchestra.png -------------------------------------------------------------------------------- /plugins/images/tabs/yacd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/yacd.png -------------------------------------------------------------------------------- /plugins/images/tabs/zipline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/zipline.png -------------------------------------------------------------------------------- /plugins/images/tabs/znc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/znc.png -------------------------------------------------------------------------------- /plugins/images/tabs/zwavejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tabs/zwavejs.png -------------------------------------------------------------------------------- /plugins/images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/test.png -------------------------------------------------------------------------------- /plugins/images/tooltip/shape1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tooltip/shape1.svg -------------------------------------------------------------------------------- /plugins/images/tooltip/shape2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tooltip/shape2.svg -------------------------------------------------------------------------------- /plugins/images/tooltip/shape3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tooltip/shape3.svg -------------------------------------------------------------------------------- /plugins/images/tooltip/tooltip1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tooltip/tooltip1.svg -------------------------------------------------------------------------------- /plugins/images/tooltip/tooltip2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tooltip/tooltip2.svg -------------------------------------------------------------------------------- /plugins/images/tooltip/tooltip3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/tooltip/tooltip3.svg -------------------------------------------------------------------------------- /plugins/images/userTabs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/images/userTabs/index.html -------------------------------------------------------------------------------- /plugins/plugin_files/index.html: -------------------------------------------------------------------------------- 1 | cert file in this directory 2 | -------------------------------------------------------------------------------- /plugins/sounds/custom/only-mp3s-here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/sounds/default/arpeggio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/sounds/default/arpeggio.mp3 -------------------------------------------------------------------------------- /plugins/sounds/default/awareness.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/sounds/default/awareness.mp3 -------------------------------------------------------------------------------- /plugins/sounds/default/newmessage.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/sounds/default/newmessage.mp3 -------------------------------------------------------------------------------- /plugins/sounds/default/open-ended.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/sounds/default/open-ended.mp3 -------------------------------------------------------------------------------- /plugins/static/upgrade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/plugins/static/upgrade.html -------------------------------------------------------------------------------- /plugins/theme_files/index.html: -------------------------------------------------------------------------------- 1 | cert file in this directory 2 | -------------------------------------------------------------------------------- /poster_updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/poster_updates.js -------------------------------------------------------------------------------- /scripts/linux-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/scripts/linux-update.sh -------------------------------------------------------------------------------- /scripts/windows-update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/scripts/windows-update.bat -------------------------------------------------------------------------------- /server.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/server.log -------------------------------------------------------------------------------- /test_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/test_debug.php -------------------------------------------------------------------------------- /test_jellystat_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/test_jellystat_api.html -------------------------------------------------------------------------------- /tmp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/causefx/Organizr/HEAD/tmp/index.html --------------------------------------------------------------------------------