gitextract_97sv444t/ ├── .gitignore ├── LICENSE ├── PRIVACY.MD ├── README.md ├── config.xml ├── hooks/ │ └── README.md ├── platforms/ │ ├── android/ │ │ ├── .gitignore │ │ ├── AndroidManifest.xml │ │ ├── CordovaLib/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── build/ │ │ │ │ ├── generated/ │ │ │ │ │ └── source/ │ │ │ │ │ └── buildConfig/ │ │ │ │ │ ├── debug/ │ │ │ │ │ │ └── org/ │ │ │ │ │ │ └── apache/ │ │ │ │ │ │ └── cordova/ │ │ │ │ │ │ └── BuildConfig.java │ │ │ │ │ └── release/ │ │ │ │ │ └── org/ │ │ │ │ │ └── apache/ │ │ │ │ │ └── cordova/ │ │ │ │ │ └── BuildConfig.java │ │ │ │ ├── intermediates/ │ │ │ │ │ ├── bundles/ │ │ │ │ │ │ ├── debug/ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── release/ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── incremental/ │ │ │ │ │ │ ├── compileDebugAidl/ │ │ │ │ │ │ │ └── dependency.store │ │ │ │ │ │ ├── compileReleaseAidl/ │ │ │ │ │ │ │ └── dependency.store │ │ │ │ │ │ ├── mergeDebugAssets/ │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ │ ├── mergeDebugJniLibFolders/ │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ │ ├── mergeDebugShaders/ │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ │ ├── mergeReleaseAssets/ │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ │ ├── mergeReleaseJniLibFolders/ │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ │ ├── mergeReleaseShaders/ │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ │ ├── packageDebugResources/ │ │ │ │ │ │ │ ├── compile-file-map.properties │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ │ └── packageReleaseResources/ │ │ │ │ │ │ ├── compile-file-map.properties │ │ │ │ │ │ └── merger.xml │ │ │ │ │ ├── incremental-safeguard/ │ │ │ │ │ │ ├── debug/ │ │ │ │ │ │ │ └── tag.txt │ │ │ │ │ │ └── release/ │ │ │ │ │ │ └── tag.txt │ │ │ │ │ └── manifests/ │ │ │ │ │ └── aapt/ │ │ │ │ │ ├── debug/ │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ └── release/ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── outputs/ │ │ │ │ └── aar/ │ │ │ │ ├── CordovaLib-debug.aar │ │ │ │ └── CordovaLib-release.aar │ │ │ ├── build.gradle │ │ │ ├── cordova.gradle │ │ │ ├── project.properties │ │ │ └── src/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── cordova/ │ │ │ ├── AuthenticationToken.java │ │ │ ├── CallbackContext.java │ │ │ ├── CallbackMap.java │ │ │ ├── Config.java │ │ │ ├── ConfigXmlParser.java │ │ │ ├── CordovaActivity.java │ │ │ ├── CordovaArgs.java │ │ │ ├── CordovaBridge.java │ │ │ ├── CordovaClientCertRequest.java │ │ │ ├── CordovaDialogsHelper.java │ │ │ ├── CordovaHttpAuthHandler.java │ │ │ ├── CordovaInterface.java │ │ │ ├── CordovaInterfaceImpl.java │ │ │ ├── CordovaPlugin.java │ │ │ ├── CordovaPreferences.java │ │ │ ├── CordovaResourceApi.java │ │ │ ├── CordovaWebView.java │ │ │ ├── CordovaWebViewEngine.java │ │ │ ├── CordovaWebViewImpl.java │ │ │ ├── CoreAndroid.java │ │ │ ├── ExposedJsApi.java │ │ │ ├── ICordovaClientCertRequest.java │ │ │ ├── ICordovaCookieManager.java │ │ │ ├── ICordovaHttpAuthHandler.java │ │ │ ├── LOG.java │ │ │ ├── NativeToJsMessageQueue.java │ │ │ ├── PluginEntry.java │ │ │ ├── PluginManager.java │ │ │ ├── PluginResult.java │ │ │ ├── ResumeCallback.java │ │ │ ├── Whitelist.java │ │ │ └── engine/ │ │ │ ├── SystemCookieManager.java │ │ │ ├── SystemExposedJsApi.java │ │ │ ├── SystemWebChromeClient.java │ │ │ ├── SystemWebView.java │ │ │ ├── SystemWebViewClient.java │ │ │ └── SystemWebViewEngine.java │ │ ├── android.json │ │ ├── assets/ │ │ │ └── www/ │ │ │ ├── cordova-js-src/ │ │ │ │ ├── android/ │ │ │ │ │ ├── nativeapiprovider.js │ │ │ │ │ └── promptbasednativeapi.js │ │ │ │ ├── exec.js │ │ │ │ ├── platform.js │ │ │ │ └── plugin/ │ │ │ │ └── android/ │ │ │ │ └── app.js │ │ │ ├── cordova.js │ │ │ ├── cordova_plugins.js │ │ │ ├── css/ │ │ │ │ ├── responsive.css │ │ │ │ └── styles.css │ │ │ ├── index.html │ │ │ ├── js/ │ │ │ │ ├── main.js │ │ │ │ └── utilities.js │ │ │ ├── lib/ │ │ │ │ └── DataTables/ │ │ │ │ ├── DataTables-1.10.13/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ │ ├── dataTables.foundation.css │ │ │ │ │ │ ├── dataTables.jqueryui.css │ │ │ │ │ │ ├── dataTables.semanticui.css │ │ │ │ │ │ ├── jquery.dataTables.css │ │ │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ │ │ └── js/ │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ ├── dataTables.foundation.js │ │ │ │ │ ├── dataTables.jqueryui.js │ │ │ │ │ ├── dataTables.semanticui.js │ │ │ │ │ └── jquery.dataTables.js │ │ │ │ ├── datatables.css │ │ │ │ └── datatables.js │ │ │ ├── partial/ │ │ │ │ ├── about-help.html │ │ │ │ ├── app-settings.html │ │ │ │ ├── dashboard.html │ │ │ │ └── query-log.html │ │ │ └── plugins/ │ │ │ ├── cordova-plugin-splashscreen/ │ │ │ │ └── www/ │ │ │ │ └── splashscreen.js │ │ │ └── phonegap-plugin-barcodescanner/ │ │ │ └── www/ │ │ │ └── barcodescanner.js │ │ ├── build.gradle │ │ ├── cordova/ │ │ │ ├── .jshintrc │ │ │ ├── Api.js │ │ │ ├── android_sdk_version │ │ │ ├── android_sdk_version.bat │ │ │ ├── build │ │ │ ├── build.bat │ │ │ ├── check_reqs │ │ │ ├── check_reqs.bat │ │ │ ├── clean │ │ │ ├── clean.bat │ │ │ ├── defaults.xml │ │ │ ├── lib/ │ │ │ │ ├── Adb.js │ │ │ │ ├── AndroidManifest.js │ │ │ │ ├── AndroidProject.js │ │ │ │ ├── AndroidStudio.js │ │ │ │ ├── android_sdk.js │ │ │ │ ├── build.js │ │ │ │ ├── builders/ │ │ │ │ │ ├── AntBuilder.js │ │ │ │ │ ├── GenericBuilder.js │ │ │ │ │ ├── GradleBuilder.js │ │ │ │ │ └── builders.js │ │ │ │ ├── check_reqs.js │ │ │ │ ├── device.js │ │ │ │ ├── emulator.js │ │ │ │ ├── install-device │ │ │ │ ├── install-device.bat │ │ │ │ ├── install-emulator │ │ │ │ ├── install-emulator.bat │ │ │ │ ├── list-devices │ │ │ │ ├── list-devices.bat │ │ │ │ ├── list-emulator-images │ │ │ │ ├── list-emulator-images.bat │ │ │ │ ├── list-started-emulators │ │ │ │ ├── list-started-emulators.bat │ │ │ │ ├── log.js │ │ │ │ ├── plugin-build.gradle │ │ │ │ ├── pluginHandlers.js │ │ │ │ ├── prepare.js │ │ │ │ ├── retry.js │ │ │ │ ├── run.js │ │ │ │ ├── start-emulator │ │ │ │ └── start-emulator.bat │ │ │ ├── log │ │ │ ├── log.bat │ │ │ ├── loggingHelper.js │ │ │ ├── run │ │ │ ├── run.bat │ │ │ ├── version │ │ │ └── version.bat │ │ ├── libs/ │ │ │ └── barcodescanner.aar │ │ ├── phonegap-plugin-barcodescanner/ │ │ │ └── piholedroid-barcodescanner.gradle │ │ ├── platform_www/ │ │ │ ├── cordova-js-src/ │ │ │ │ ├── android/ │ │ │ │ │ ├── nativeapiprovider.js │ │ │ │ │ └── promptbasednativeapi.js │ │ │ │ ├── exec.js │ │ │ │ ├── platform.js │ │ │ │ └── plugin/ │ │ │ │ └── android/ │ │ │ │ └── app.js │ │ │ ├── cordova.js │ │ │ ├── cordova_plugins.js │ │ │ └── plugins/ │ │ │ ├── cordova-plugin-splashscreen/ │ │ │ │ └── www/ │ │ │ │ └── splashscreen.js │ │ │ └── phonegap-plugin-barcodescanner/ │ │ │ └── www/ │ │ │ └── barcodescanner.js │ │ ├── project.properties │ │ ├── res/ │ │ │ ├── values/ │ │ │ │ └── strings.xml │ │ │ └── xml/ │ │ │ └── config.xml │ │ ├── settings.gradle │ │ ├── src/ │ │ │ ├── com/ │ │ │ │ └── phonegap/ │ │ │ │ └── plugins/ │ │ │ │ └── barcodescanner/ │ │ │ │ └── BarcodeScanner.java │ │ │ ├── friimaind/ │ │ │ │ └── piholedroid/ │ │ │ │ └── MainActivity.java │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── cordova/ │ │ │ ├── BuildHelper.java │ │ │ ├── PermissionHelper.java │ │ │ ├── splashscreen/ │ │ │ │ └── SplashScreen.java │ │ │ └── whitelist/ │ │ │ └── WhitelistPlugin.java │ │ └── wrapper.gradle │ ├── browser/ │ │ ├── browser.json │ │ ├── config.xml │ │ ├── cordova/ │ │ │ ├── build │ │ │ ├── build.bat │ │ │ ├── clean │ │ │ ├── defaults.xml │ │ │ ├── lib/ │ │ │ │ ├── build.js │ │ │ │ ├── check_reqs.js │ │ │ │ └── clean.js │ │ │ ├── run │ │ │ ├── run.bat │ │ │ ├── version │ │ │ └── version.bat │ │ ├── css/ │ │ │ └── index.css │ │ ├── index.html │ │ ├── js/ │ │ │ └── index.js │ │ ├── manifest.webapp │ │ ├── platform_www/ │ │ │ ├── confighelper.js │ │ │ ├── cordova-js-src/ │ │ │ │ ├── confighelper.js │ │ │ │ ├── exec.js │ │ │ │ └── platform.js │ │ │ ├── cordova.js │ │ │ ├── cordova_plugins.js │ │ │ ├── exec.js │ │ │ ├── platform.js │ │ │ └── plugins/ │ │ │ ├── cordova-plugin-splashscreen/ │ │ │ │ ├── src/ │ │ │ │ │ └── browser/ │ │ │ │ │ └── SplashScreenProxy.js │ │ │ │ └── www/ │ │ │ │ └── splashscreen.js │ │ │ └── phonegap-plugin-barcodescanner/ │ │ │ ├── src/ │ │ │ │ └── browser/ │ │ │ │ └── BarcodeScannerProxy.js │ │ │ └── www/ │ │ │ └── barcodescanner.js │ │ └── www/ │ │ ├── config.xml │ │ ├── confighelper.js │ │ ├── cordova-js-src/ │ │ │ ├── confighelper.js │ │ │ ├── exec.js │ │ │ └── platform.js │ │ ├── cordova.js │ │ ├── cordova_plugins.js │ │ ├── css/ │ │ │ ├── responsive.css │ │ │ └── styles.css │ │ ├── exec.js │ │ ├── index.html │ │ ├── js/ │ │ │ ├── main.js │ │ │ └── utilities.js │ │ ├── lib/ │ │ │ └── DataTables/ │ │ │ ├── DataTables-1.10.13/ │ │ │ │ ├── css/ │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ ├── dataTables.foundation.css │ │ │ │ │ ├── dataTables.jqueryui.css │ │ │ │ │ ├── dataTables.semanticui.css │ │ │ │ │ ├── jquery.dataTables.css │ │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ ├── dataTables.foundation.js │ │ │ │ ├── dataTables.jqueryui.js │ │ │ │ ├── dataTables.semanticui.js │ │ │ │ └── jquery.dataTables.js │ │ │ ├── datatables.css │ │ │ └── datatables.js │ │ ├── partial/ │ │ │ ├── about-help.html │ │ │ ├── app-settings.html │ │ │ ├── dashboard.html │ │ │ └── query-log.html │ │ ├── platform.js │ │ └── plugins/ │ │ ├── cordova-plugin-splashscreen/ │ │ │ ├── src/ │ │ │ │ └── browser/ │ │ │ │ └── SplashScreenProxy.js │ │ │ └── www/ │ │ │ └── splashscreen.js │ │ └── phonegap-plugin-barcodescanner/ │ │ ├── src/ │ │ │ └── browser/ │ │ │ └── BarcodeScannerProxy.js │ │ └── www/ │ │ └── barcodescanner.js │ └── platforms.json ├── plugins/ │ ├── android.json │ ├── browser.json │ ├── cordova-plugin-compat/ │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── package.json │ │ ├── plugin.xml │ │ └── src/ │ │ ├── android/ │ │ │ ├── BuildHelper.java │ │ │ └── PermissionHelper.java │ │ └── cordova-plugin-compat.iml │ ├── cordova-plugin-splashscreen/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc/ │ │ │ ├── de/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru/ │ │ │ │ └── index.md │ │ │ └── zh/ │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src/ │ │ │ ├── android/ │ │ │ │ └── SplashScreen.java │ │ │ ├── blackberry10/ │ │ │ │ └── index.js │ │ │ ├── browser/ │ │ │ │ └── SplashScreenProxy.js │ │ │ ├── cordova-plugin-splashscreen.iml │ │ │ ├── ios/ │ │ │ │ ├── CDVSplashScreen.h │ │ │ │ ├── CDVSplashScreen.m │ │ │ │ ├── CDVViewController+SplashScreen.h │ │ │ │ └── CDVViewController+SplashScreen.m │ │ │ ├── tizen/ │ │ │ │ └── SplashScreenProxy.js │ │ │ ├── ubuntu/ │ │ │ │ ├── splashscreen.cpp │ │ │ │ └── splashscreen.h │ │ │ └── wp/ │ │ │ ├── ResolutionHelper.cs │ │ │ └── SplashScreen.cs │ │ ├── tests/ │ │ │ ├── ios/ │ │ │ │ ├── CDVSplashScreenTest/ │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── CDVSplashScreenLibTests/ │ │ │ │ │ │ ├── ImageNameTest.m │ │ │ │ │ │ ├── ImageNameTestDelegates.h │ │ │ │ │ │ ├── ImageNameTestDelegates.m │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── CDVSplashScreenTest.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace/ │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ │ └── CDVSplashScreenTest.xccheckout │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── xcschemes/ │ │ │ │ │ ├── CDVSplashScreenLib.xcscheme │ │ │ │ │ └── CDVSplashScreenLibTests.xcscheme │ │ │ │ ├── CDVSplashScreenTest.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ ├── CDVSplashScreenTest.xccheckout │ │ │ │ │ └── xcschemes/ │ │ │ │ │ └── CordovaLib.xcscheme │ │ │ │ ├── README.md │ │ │ │ ├── doc/ │ │ │ │ │ ├── de/ │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── es/ │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── fr/ │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── it/ │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── ja/ │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── ko/ │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── pl/ │ │ │ │ │ │ └── README.md │ │ │ │ │ └── zh/ │ │ │ │ │ └── README.md │ │ │ │ └── package.json │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www/ │ │ ├── splashscreen.js │ │ └── windows/ │ │ └── SplashScreenProxy.js │ ├── cordova-plugin-whitelist/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc/ │ │ │ ├── de/ │ │ │ │ └── README.md │ │ │ ├── es/ │ │ │ │ └── README.md │ │ │ ├── fr/ │ │ │ │ └── README.md │ │ │ ├── it/ │ │ │ │ └── README.md │ │ │ ├── ja/ │ │ │ │ └── README.md │ │ │ ├── ko/ │ │ │ │ └── README.md │ │ │ ├── pl/ │ │ │ │ └── README.md │ │ │ └── zh/ │ │ │ └── README.md │ │ ├── package.json │ │ ├── plugin.xml │ │ └── src/ │ │ ├── android/ │ │ │ └── WhitelistPlugin.java │ │ └── cordova-plugin-whitelist.iml │ ├── fetch.json │ └── phonegap-plugin-barcodescanner/ │ ├── CHANGELOG.md │ ├── README.md │ ├── hooks/ │ │ └── windows/ │ │ └── check-arch.js │ ├── package.json │ ├── plugin.xml │ ├── spec/ │ │ ├── helper/ │ │ │ └── cordova.js │ │ └── index.spec.js │ ├── src/ │ │ ├── android/ │ │ │ ├── README.md │ │ │ ├── barcodescanner-release-2.1.2.aar │ │ │ ├── barcodescanner.gradle │ │ │ └── com/ │ │ │ └── phonegap/ │ │ │ └── plugins/ │ │ │ └── barcodescanner/ │ │ │ └── BarcodeScanner.java │ │ ├── blackberry10/ │ │ │ ├── LICENSE │ │ │ ├── index.js │ │ │ ├── native/ │ │ │ │ ├── .cproject │ │ │ │ ├── .settings/ │ │ │ │ │ └── com.qnx.tools.ide.core.prefs │ │ │ │ ├── device/ │ │ │ │ │ └── .npmignore │ │ │ │ ├── public/ │ │ │ │ │ ├── json/ │ │ │ │ │ │ ├── autolink.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── features.h │ │ │ │ │ │ ├── forwards.h │ │ │ │ │ │ ├── json.h │ │ │ │ │ │ ├── reader.h │ │ │ │ │ │ ├── value.h │ │ │ │ │ │ └── writer.h │ │ │ │ │ ├── json_batchallocator.h │ │ │ │ │ ├── json_internalarray.inl │ │ │ │ │ ├── json_internalmap.inl │ │ │ │ │ ├── json_reader.cpp │ │ │ │ │ ├── json_value.cpp │ │ │ │ │ ├── json_valueiterator.inl │ │ │ │ │ ├── json_writer.cpp │ │ │ │ │ ├── plugin.cpp │ │ │ │ │ ├── plugin.h │ │ │ │ │ ├── tokenizer.cpp │ │ │ │ │ └── tokenizer.h │ │ │ │ ├── simulator/ │ │ │ │ │ └── .npmignore │ │ │ │ └── src/ │ │ │ │ ├── Logger.cpp │ │ │ │ ├── Logger.hpp │ │ │ │ ├── barcodescanner_js.cpp │ │ │ │ ├── barcodescanner_js.hpp │ │ │ │ ├── barcodescanner_ndk.cpp │ │ │ │ └── barcodescanner_ndk.hpp │ │ │ └── qrcode.js │ │ ├── browser/ │ │ │ └── BarcodeScannerProxy.js │ │ ├── ios/ │ │ │ ├── CDVBarcodeScanner.bundle/ │ │ │ │ └── beep.caf │ │ │ ├── CDVBarcodeScanner.mm │ │ │ ├── scannerOverlay.xib │ │ │ ├── zxing-all-in-one.cpp │ │ │ └── zxing-all-in-one.h │ │ ├── phonegap-plugin-barcodescanner.iml │ │ ├── windows/ │ │ │ ├── BarcodeScannerProxy.js │ │ │ ├── assets/ │ │ │ │ └── plugin-barcodeScanner.css │ │ │ ├── lib/ │ │ │ │ ├── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Reader.cs │ │ │ │ ├── WinRTBarcodeReader.csproj │ │ │ │ └── ZXing.winmd │ │ │ └── lib.UW/ │ │ │ ├── ANY/ │ │ │ │ └── ZXing.winmd │ │ │ ├── ARM/ │ │ │ │ └── ZXing.winmd │ │ │ ├── x64/ │ │ │ │ └── ZXing.winmd │ │ │ └── x86/ │ │ │ └── ZXing.winmd │ │ └── wp8/ │ │ ├── BarcodeScanner.cs │ │ ├── BarcodeScannerTask.cs │ │ ├── BarcodeScannerUI.xaml │ │ └── BarcodeScannerUI.xaml.cs │ ├── tests/ │ │ ├── plugin.xml │ │ └── tests.js │ └── www/ │ └── barcodescanner.js └── www/ ├── css/ │ ├── responsive.css │ └── styles.css ├── index.html ├── js/ │ ├── main.js │ └── utilities.js ├── lib/ │ └── DataTables/ │ ├── DataTables-1.10.13/ │ │ ├── css/ │ │ │ ├── dataTables.bootstrap.css │ │ │ ├── dataTables.foundation.css │ │ │ ├── dataTables.jqueryui.css │ │ │ ├── dataTables.semanticui.css │ │ │ ├── jquery.dataTables.css │ │ │ └── jquery.dataTables_themeroller.css │ │ └── js/ │ │ ├── dataTables.bootstrap.js │ │ ├── dataTables.foundation.js │ │ ├── dataTables.jqueryui.js │ │ ├── dataTables.semanticui.js │ │ └── jquery.dataTables.js │ ├── datatables.css │ └── datatables.js └── partial/ ├── about-help.html ├── app-settings.html ├── dashboard.html └── query-log.html