gitextract_066mfw7c/ ├── .editorconfig ├── .github/ │ ├── CONTRIBUTING.md │ ├── DISCUSSION_TEMPLATE/ │ │ └── questions.yml │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── changed-lines-count-labeler.yml │ └── workflows/ │ ├── backport-pr.yml │ ├── build-release-apk.yml │ ├── ci.yml │ ├── image-minimizer.js │ ├── image-minimizer.yml │ ├── no-response.yml │ └── pr-labeler.yml ├── .gitignore ├── LICENSE ├── README.md ├── app/ │ ├── build.gradle.kts │ ├── lint.xml │ ├── proguard-rules.pro │ ├── sampledata/ │ │ └── channels.json │ ├── schemas/ │ │ └── org.schabi.newpipe.database.AppDatabase/ │ │ ├── 2.json │ │ ├── 3.json │ │ ├── 4.json │ │ ├── 5.json │ │ ├── 6.json │ │ ├── 7.json │ │ ├── 8.json │ │ └── 9.json │ └── src/ │ ├── androidTest/ │ │ └── java/ │ │ └── org/ │ │ └── schabi/ │ │ └── newpipe/ │ │ ├── database/ │ │ │ ├── DatabaseMigrationTest.kt │ │ │ └── FeedDAOTest.kt │ │ ├── error/ │ │ │ └── ErrorInfoTest.java │ │ ├── local/ │ │ │ ├── history/ │ │ │ │ └── HistoryRecordManagerTest.kt │ │ │ ├── playlist/ │ │ │ │ └── LocalPlaylistManagerTest.kt │ │ │ └── subscription/ │ │ │ └── SubscriptionManagerTest.java │ │ ├── testUtil/ │ │ │ ├── TestDatabase.kt │ │ │ └── TrampolineSchedulerRule.kt │ │ └── util/ │ │ └── StreamItemAdapterTest.kt │ ├── debug/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── org/ │ │ └── schabi/ │ │ └── newpipe/ │ │ ├── DebugApp.kt │ │ └── settings/ │ │ └── DebugSettingsBVDLeakCanary.java │ ├── main/ │ │ ├── AndroidManifest.xml │ │ ├── assets/ │ │ │ ├── apache2.html │ │ │ ├── epl1.html │ │ │ ├── gpl_3.html │ │ │ ├── mit.html │ │ │ ├── mpl2.html │ │ │ └── po_token.html │ │ ├── java/ │ │ │ ├── androidx/ │ │ │ │ └── fragment/ │ │ │ │ └── app/ │ │ │ │ └── FragmentStatePagerAdapterMenuWorkaround.java │ │ │ ├── com/ │ │ │ │ └── google/ │ │ │ │ └── android/ │ │ │ │ └── material/ │ │ │ │ └── appbar/ │ │ │ │ └── FlingBehavior.java │ │ │ ├── org/ │ │ │ │ ├── apache/ │ │ │ │ │ └── commons/ │ │ │ │ │ └── text/ │ │ │ │ │ └── similarity/ │ │ │ │ │ └── FuzzyScore.java │ │ │ │ └── schabi/ │ │ │ │ └── newpipe/ │ │ │ │ ├── App.kt │ │ │ │ ├── BaseFragment.java │ │ │ │ ├── DownloaderImpl.java │ │ │ │ ├── ExitActivity.kt │ │ │ │ ├── MainActivity.java │ │ │ │ ├── NewPipeDatabase.kt │ │ │ │ ├── NewVersionWorker.kt │ │ │ │ ├── PanicResponderActivity.java │ │ │ │ ├── QueueItemMenuUtil.java │ │ │ │ ├── RouterActivity.java │ │ │ │ ├── about/ │ │ │ │ │ ├── AboutActivity.kt │ │ │ │ │ ├── License.kt │ │ │ │ │ ├── LicenseFragment.kt │ │ │ │ │ ├── LicenseFragmentHelper.kt │ │ │ │ │ ├── SoftwareComponent.kt │ │ │ │ │ └── StandardLicenses.kt │ │ │ │ ├── database/ │ │ │ │ │ ├── AppDatabase.kt │ │ │ │ │ ├── BasicDAO.kt │ │ │ │ │ ├── Converters.kt │ │ │ │ │ ├── LocalItem.kt │ │ │ │ │ ├── Migrations.kt │ │ │ │ │ ├── feed/ │ │ │ │ │ │ ├── dao/ │ │ │ │ │ │ │ ├── FeedDAO.kt │ │ │ │ │ │ │ └── FeedGroupDAO.kt │ │ │ │ │ │ └── model/ │ │ │ │ │ │ ├── FeedEntity.kt │ │ │ │ │ │ ├── FeedGroupEntity.kt │ │ │ │ │ │ ├── FeedGroupSubscriptionEntity.kt │ │ │ │ │ │ └── FeedLastUpdatedEntity.kt │ │ │ │ │ ├── history/ │ │ │ │ │ │ ├── dao/ │ │ │ │ │ │ │ ├── SearchHistoryDAO.kt │ │ │ │ │ │ │ └── StreamHistoryDAO.kt │ │ │ │ │ │ └── model/ │ │ │ │ │ │ ├── SearchHistoryEntry.kt │ │ │ │ │ │ ├── StreamHistoryEntity.kt │ │ │ │ │ │ └── StreamHistoryEntry.kt │ │ │ │ │ ├── playlist/ │ │ │ │ │ │ ├── PlaylistDuplicatesEntry.kt │ │ │ │ │ │ ├── PlaylistLocalItem.kt │ │ │ │ │ │ ├── PlaylistMetadataEntry.kt │ │ │ │ │ │ ├── PlaylistStreamEntry.kt │ │ │ │ │ │ ├── dao/ │ │ │ │ │ │ │ ├── PlaylistDAO.kt │ │ │ │ │ │ │ ├── PlaylistRemoteDAO.kt │ │ │ │ │ │ │ └── PlaylistStreamDAO.kt │ │ │ │ │ │ └── model/ │ │ │ │ │ │ ├── PlaylistEntity.kt │ │ │ │ │ │ ├── PlaylistRemoteEntity.kt │ │ │ │ │ │ └── PlaylistStreamEntity.kt │ │ │ │ │ ├── stream/ │ │ │ │ │ │ ├── StreamStatisticsEntry.kt │ │ │ │ │ │ ├── StreamWithState.kt │ │ │ │ │ │ ├── dao/ │ │ │ │ │ │ │ ├── StreamDAO.kt │ │ │ │ │ │ │ └── StreamStateDAO.kt │ │ │ │ │ │ └── model/ │ │ │ │ │ │ ├── StreamEntity.kt │ │ │ │ │ │ └── StreamStateEntity.kt │ │ │ │ │ └── subscription/ │ │ │ │ │ ├── NotificationMode.kt │ │ │ │ │ ├── SubscriptionDAO.kt │ │ │ │ │ └── SubscriptionEntity.kt │ │ │ │ ├── download/ │ │ │ │ │ ├── DownloadActivity.java │ │ │ │ │ ├── DownloadDialog.java │ │ │ │ │ └── LoadingDialog.java │ │ │ │ ├── error/ │ │ │ │ │ ├── AcraReportSender.java │ │ │ │ │ ├── AcraReportSenderFactory.java │ │ │ │ │ ├── ErrorActivity.kt │ │ │ │ │ ├── ErrorInfo.kt │ │ │ │ │ ├── ErrorPanelHelper.kt │ │ │ │ │ ├── ErrorUtil.kt │ │ │ │ │ ├── ReCaptchaActivity.java │ │ │ │ │ └── UserAction.kt │ │ │ │ ├── fragments/ │ │ │ │ │ ├── BackPressable.java │ │ │ │ │ ├── BaseStateFragment.java │ │ │ │ │ ├── BlankFragment.java │ │ │ │ │ ├── EmptyFragment.java │ │ │ │ │ ├── MainFragment.java │ │ │ │ │ ├── OnScrollBelowItemsListener.java │ │ │ │ │ ├── ViewContract.java │ │ │ │ │ ├── detail/ │ │ │ │ │ │ ├── BaseDescriptionFragment.java │ │ │ │ │ │ ├── DescriptionFragment.java │ │ │ │ │ │ ├── StackItem.java │ │ │ │ │ │ ├── TabAdapter.java │ │ │ │ │ │ ├── VideoDetailFragment.java │ │ │ │ │ │ └── VideoDetailPlayerCrasher.java │ │ │ │ │ └── list/ │ │ │ │ │ ├── BaseListFragment.java │ │ │ │ │ ├── BaseListInfoFragment.java │ │ │ │ │ ├── ListViewContract.java │ │ │ │ │ ├── channel/ │ │ │ │ │ │ ├── ChannelAboutFragment.java │ │ │ │ │ │ ├── ChannelFragment.java │ │ │ │ │ │ └── ChannelTabFragment.java │ │ │ │ │ ├── comments/ │ │ │ │ │ │ ├── CommentRepliesFragment.java │ │ │ │ │ │ ├── CommentRepliesInfo.java │ │ │ │ │ │ └── CommentsFragment.java │ │ │ │ │ ├── kiosk/ │ │ │ │ │ │ ├── DefaultKioskFragment.java │ │ │ │ │ │ └── KioskFragment.java │ │ │ │ │ ├── playlist/ │ │ │ │ │ │ ├── PlaylistControlViewHolder.java │ │ │ │ │ │ └── PlaylistFragment.java │ │ │ │ │ ├── search/ │ │ │ │ │ │ ├── SearchFragment.java │ │ │ │ │ │ ├── SuggestionItem.kt │ │ │ │ │ │ └── SuggestionListAdapter.kt │ │ │ │ │ └── videos/ │ │ │ │ │ ├── RelatedItemsFragment.java │ │ │ │ │ └── RelatedItemsInfo.java │ │ │ │ ├── info_list/ │ │ │ │ │ ├── InfoItemBuilder.kt │ │ │ │ │ ├── InfoListAdapter.java │ │ │ │ │ ├── ItemViewMode.kt │ │ │ │ │ ├── StreamSegmentAdapter.kt │ │ │ │ │ ├── StreamSegmentItem.kt │ │ │ │ │ ├── dialog/ │ │ │ │ │ │ ├── InfoItemDialog.java │ │ │ │ │ │ ├── StreamDialogDefaultEntry.java │ │ │ │ │ │ └── StreamDialogEntry.java │ │ │ │ │ └── holder/ │ │ │ │ │ ├── ChannelCardInfoItemHolder.java │ │ │ │ │ ├── ChannelGridInfoItemHolder.java │ │ │ │ │ ├── ChannelInfoItemHolder.java │ │ │ │ │ ├── ChannelMiniInfoItemHolder.java │ │ │ │ │ ├── CommentInfoItemHolder.java │ │ │ │ │ ├── InfoItemHolder.java │ │ │ │ │ ├── PlaylistCardInfoItemHolder.java │ │ │ │ │ ├── PlaylistGridInfoItemHolder.java │ │ │ │ │ ├── PlaylistInfoItemHolder.java │ │ │ │ │ ├── PlaylistMiniInfoItemHolder.java │ │ │ │ │ ├── StreamCardInfoItemHolder.java │ │ │ │ │ ├── StreamGridInfoItemHolder.java │ │ │ │ │ ├── StreamInfoItemHolder.java │ │ │ │ │ └── StreamMiniInfoItemHolder.java │ │ │ │ ├── ktx/ │ │ │ │ │ ├── Bitmap.kt │ │ │ │ │ ├── Bundle.kt │ │ │ │ │ ├── SharedPreferences.kt │ │ │ │ │ ├── TextView.kt │ │ │ │ │ ├── Throwable.kt │ │ │ │ │ └── View.kt │ │ │ │ ├── local/ │ │ │ │ │ ├── BaseLocalListFragment.java │ │ │ │ │ ├── HeaderFooterHolder.java │ │ │ │ │ ├── LocalItemBuilder.java │ │ │ │ │ ├── LocalItemListAdapter.java │ │ │ │ │ ├── bookmark/ │ │ │ │ │ │ ├── BookmarkFragment.java │ │ │ │ │ │ └── MergedPlaylistManager.java │ │ │ │ │ ├── dialog/ │ │ │ │ │ │ ├── PlaylistAppendDialog.java │ │ │ │ │ │ ├── PlaylistCreationDialog.java │ │ │ │ │ │ └── PlaylistDialog.java │ │ │ │ │ ├── feed/ │ │ │ │ │ │ ├── FeedDatabaseManager.kt │ │ │ │ │ │ ├── FeedFragment.kt │ │ │ │ │ │ ├── FeedState.kt │ │ │ │ │ │ ├── FeedViewModel.kt │ │ │ │ │ │ ├── item/ │ │ │ │ │ │ │ └── StreamItem.kt │ │ │ │ │ │ ├── notifications/ │ │ │ │ │ │ │ ├── NotificationHelper.kt │ │ │ │ │ │ │ ├── NotificationWorker.kt │ │ │ │ │ │ │ └── ScheduleOptions.kt │ │ │ │ │ │ └── service/ │ │ │ │ │ │ ├── FeedEventManager.kt │ │ │ │ │ │ ├── FeedLoadManager.kt │ │ │ │ │ │ ├── FeedLoadService.kt │ │ │ │ │ │ ├── FeedLoadState.kt │ │ │ │ │ │ ├── FeedResultsHolder.kt │ │ │ │ │ │ └── FeedUpdateInfo.kt │ │ │ │ │ ├── history/ │ │ │ │ │ │ ├── HistoryRecordManager.java │ │ │ │ │ │ └── StatisticsPlaylistFragment.java │ │ │ │ │ ├── holder/ │ │ │ │ │ │ ├── LocalBookmarkPlaylistItemHolder.java │ │ │ │ │ │ ├── LocalItemHolder.java │ │ │ │ │ │ ├── LocalPlaylistCardItemHolder.java │ │ │ │ │ │ ├── LocalPlaylistGridItemHolder.java │ │ │ │ │ │ ├── LocalPlaylistItemHolder.java │ │ │ │ │ │ ├── LocalPlaylistStreamCardItemHolder.java │ │ │ │ │ │ ├── LocalPlaylistStreamGridItemHolder.java │ │ │ │ │ │ ├── LocalPlaylistStreamItemHolder.java │ │ │ │ │ │ ├── LocalStatisticStreamCardItemHolder.java │ │ │ │ │ │ ├── LocalStatisticStreamGridItemHolder.java │ │ │ │ │ │ ├── LocalStatisticStreamItemHolder.java │ │ │ │ │ │ ├── PlaylistItemHolder.java │ │ │ │ │ │ ├── RemoteBookmarkPlaylistItemHolder.java │ │ │ │ │ │ ├── RemotePlaylistCardItemHolder.java │ │ │ │ │ │ ├── RemotePlaylistGridItemHolder.java │ │ │ │ │ │ └── RemotePlaylistItemHolder.java │ │ │ │ │ ├── playlist/ │ │ │ │ │ │ ├── ExportPlaylist.kt │ │ │ │ │ │ ├── LocalPlaylistFragment.java │ │ │ │ │ │ ├── LocalPlaylistManager.java │ │ │ │ │ │ ├── PlayListShareMode.kt │ │ │ │ │ │ └── RemotePlaylistManager.kt │ │ │ │ │ └── subscription/ │ │ │ │ │ ├── FeedGroupIcon.kt │ │ │ │ │ ├── ImportConfirmationDialog.java │ │ │ │ │ ├── SubscriptionFragment.kt │ │ │ │ │ ├── SubscriptionManager.kt │ │ │ │ │ ├── SubscriptionViewModel.kt │ │ │ │ │ ├── SubscriptionsImportExportHelper.kt │ │ │ │ │ ├── SubscriptionsImportFragment.java │ │ │ │ │ ├── dialog/ │ │ │ │ │ │ ├── FeedGroupDialog.kt │ │ │ │ │ │ ├── FeedGroupDialogViewModel.kt │ │ │ │ │ │ ├── FeedGroupReorderDialog.kt │ │ │ │ │ │ └── FeedGroupReorderDialogViewModel.kt │ │ │ │ │ ├── item/ │ │ │ │ │ │ ├── ChannelItem.kt │ │ │ │ │ │ ├── FeedGroupAddNewGridItem.kt │ │ │ │ │ │ ├── FeedGroupAddNewItem.kt │ │ │ │ │ │ ├── FeedGroupCardGridItem.kt │ │ │ │ │ │ ├── FeedGroupCardItem.kt │ │ │ │ │ │ ├── FeedGroupCarouselItem.kt │ │ │ │ │ │ ├── FeedGroupReorderItem.kt │ │ │ │ │ │ ├── GroupsHeader.kt │ │ │ │ │ │ ├── Header.kt │ │ │ │ │ │ ├── ImportSubscriptionsHintPlaceholderItem.kt │ │ │ │ │ │ ├── PickerIconItem.kt │ │ │ │ │ │ └── PickerSubscriptionItem.kt │ │ │ │ │ └── workers/ │ │ │ │ │ ├── ImportExportJsonHelper.kt │ │ │ │ │ ├── SubscriptionData.kt │ │ │ │ │ ├── SubscriptionExportWorker.kt │ │ │ │ │ └── SubscriptionImportWorker.kt │ │ │ │ ├── player/ │ │ │ │ │ ├── AudioServiceLeakFix.java │ │ │ │ │ ├── PlayQueueActivity.java │ │ │ │ │ ├── Player.java │ │ │ │ │ ├── PlayerIntentType.kt │ │ │ │ │ ├── PlayerService.java │ │ │ │ │ ├── PlayerType.kt │ │ │ │ │ ├── datasource/ │ │ │ │ │ │ ├── NonUriHlsDataSourceFactory.java │ │ │ │ │ │ └── YoutubeHttpDataSource.java │ │ │ │ │ ├── event/ │ │ │ │ │ │ ├── OnKeyDownListener.java │ │ │ │ │ │ ├── PlayerEventListener.java │ │ │ │ │ │ ├── PlayerServiceEventListener.java │ │ │ │ │ │ └── PlayerServiceExtendedEventListener.java │ │ │ │ │ ├── gesture/ │ │ │ │ │ │ ├── BasePlayerGestureListener.kt │ │ │ │ │ │ ├── CustomBottomSheetBehavior.java │ │ │ │ │ │ ├── DisplayPortion.kt │ │ │ │ │ │ ├── DoubleTapListener.kt │ │ │ │ │ │ ├── MainPlayerGestureListener.kt │ │ │ │ │ │ └── PopupPlayerGestureListener.kt │ │ │ │ │ ├── helper/ │ │ │ │ │ │ ├── AudioReactor.java │ │ │ │ │ │ ├── CacheFactory.java │ │ │ │ │ │ ├── CustomMediaCodecVideoRenderer.java │ │ │ │ │ │ ├── CustomRenderersFactory.java │ │ │ │ │ │ ├── LoadController.java │ │ │ │ │ │ ├── LockManager.java │ │ │ │ │ │ ├── PlaybackParameterDialog.java │ │ │ │ │ │ ├── PlayerDataSource.java │ │ │ │ │ │ ├── PlayerHelper.java │ │ │ │ │ │ ├── PlayerHolder.java │ │ │ │ │ │ ├── PlayerSemitoneHelper.java │ │ │ │ │ │ └── YoutubeDashLiveManifestParser.java │ │ │ │ │ ├── mediabrowser/ │ │ │ │ │ │ ├── MediaBrowserCommon.kt │ │ │ │ │ │ ├── MediaBrowserImpl.kt │ │ │ │ │ │ ├── MediaBrowserPlaybackPreparer.kt │ │ │ │ │ │ └── PackageValidator.kt │ │ │ │ │ ├── mediaitem/ │ │ │ │ │ │ ├── ExceptionTag.java │ │ │ │ │ │ ├── MediaItemTag.java │ │ │ │ │ │ ├── PlaceholderTag.java │ │ │ │ │ │ └── StreamInfoTag.java │ │ │ │ │ ├── mediasession/ │ │ │ │ │ │ ├── MediaSessionPlayerUi.java │ │ │ │ │ │ ├── PlayQueueNavigator.java │ │ │ │ │ │ └── SessionConnectorActionProvider.java │ │ │ │ │ ├── mediasource/ │ │ │ │ │ │ ├── FailedMediaSource.java │ │ │ │ │ │ ├── LoadedMediaSource.java │ │ │ │ │ │ ├── ManagedMediaSource.java │ │ │ │ │ │ ├── ManagedMediaSourcePlaylist.java │ │ │ │ │ │ └── PlaceholderMediaSource.java │ │ │ │ │ ├── notification/ │ │ │ │ │ │ ├── NotificationActionData.java │ │ │ │ │ │ ├── NotificationConstants.java │ │ │ │ │ │ ├── NotificationPlayerUi.java │ │ │ │ │ │ └── NotificationUtil.java │ │ │ │ │ ├── playback/ │ │ │ │ │ │ ├── MediaSourceManager.java │ │ │ │ │ │ ├── PlaybackListener.java │ │ │ │ │ │ └── SurfaceHolderCallback.java │ │ │ │ │ ├── playqueue/ │ │ │ │ │ │ ├── AbstractInfoPlayQueue.java │ │ │ │ │ │ ├── ChannelTabPlayQueue.java │ │ │ │ │ │ ├── PlayQueue.java │ │ │ │ │ │ ├── PlayQueueAdapter.java │ │ │ │ │ │ ├── PlayQueueEvent.kt │ │ │ │ │ │ ├── PlayQueueItem.java │ │ │ │ │ │ ├── PlayQueueItemBuilder.java │ │ │ │ │ │ ├── PlayQueueItemHolder.java │ │ │ │ │ │ ├── PlayQueueItemTouchCallback.java │ │ │ │ │ │ ├── PlaylistPlayQueue.java │ │ │ │ │ │ └── SinglePlayQueue.java │ │ │ │ │ ├── resolver/ │ │ │ │ │ │ ├── AudioPlaybackResolver.java │ │ │ │ │ │ ├── PlaybackResolver.java │ │ │ │ │ │ ├── Resolver.java │ │ │ │ │ │ └── VideoPlaybackResolver.java │ │ │ │ │ ├── seekbarpreview/ │ │ │ │ │ │ ├── SeekbarPreviewThumbnailHelper.java │ │ │ │ │ │ └── SeekbarPreviewThumbnailHolder.java │ │ │ │ │ └── ui/ │ │ │ │ │ ├── BackgroundPlayerUi.java │ │ │ │ │ ├── MainPlayerUi.java │ │ │ │ │ ├── PlayerUi.java │ │ │ │ │ ├── PlayerUiList.java │ │ │ │ │ ├── PopupPlayerUi.java │ │ │ │ │ └── VideoPlayerUi.java │ │ │ │ ├── settings/ │ │ │ │ │ ├── AppearanceSettingsFragment.java │ │ │ │ │ ├── BackupRestoreSettingsFragment.java │ │ │ │ │ ├── BasePreferenceFragment.java │ │ │ │ │ ├── ContentSettingsFragment.java │ │ │ │ │ ├── DebugSettingsFragment.java │ │ │ │ │ ├── DownloadSettingsFragment.java │ │ │ │ │ ├── ExoPlayerSettingsFragment.java │ │ │ │ │ ├── HistorySettingsFragment.java │ │ │ │ │ ├── MainSettingsFragment.java │ │ │ │ │ ├── NewPipeSettings.java │ │ │ │ │ ├── NotificationSettingsFragment.kt │ │ │ │ │ ├── NotificationsSettingsFragment.kt │ │ │ │ │ ├── PeertubeInstanceListFragment.java │ │ │ │ │ ├── PlayerNotificationSettingsFragment.kt │ │ │ │ │ ├── SelectChannelFragment.java │ │ │ │ │ ├── SelectFeedGroupFragment.java │ │ │ │ │ ├── SelectKioskFragment.java │ │ │ │ │ ├── SelectPlaylistFragment.java │ │ │ │ │ ├── SettingsActivity.java │ │ │ │ │ ├── SettingsResourceRegistry.java │ │ │ │ │ ├── UpdateSettingsFragment.java │ │ │ │ │ ├── VideoAudioSettingsFragment.java │ │ │ │ │ ├── custom/ │ │ │ │ │ │ ├── DurationListPreference.kt │ │ │ │ │ │ ├── NotificationActionsPreference.java │ │ │ │ │ │ └── NotificationSlot.java │ │ │ │ │ ├── export/ │ │ │ │ │ │ ├── BackupFileLocator.kt │ │ │ │ │ │ ├── ImportExportManager.kt │ │ │ │ │ │ └── PreferencesObjectInputStream.kt │ │ │ │ │ ├── migration/ │ │ │ │ │ │ ├── MigrationManager.java │ │ │ │ │ │ └── SettingMigrations.java │ │ │ │ │ ├── notifications/ │ │ │ │ │ │ ├── NotificationModeConfigAdapter.kt │ │ │ │ │ │ └── NotificationModeConfigFragment.kt │ │ │ │ │ ├── preferencesearch/ │ │ │ │ │ │ ├── PreferenceFuzzySearchFunction.java │ │ │ │ │ │ ├── PreferenceParser.java │ │ │ │ │ │ ├── PreferenceSearchAdapter.java │ │ │ │ │ │ ├── PreferenceSearchConfiguration.java │ │ │ │ │ │ ├── PreferenceSearchFragment.java │ │ │ │ │ │ ├── PreferenceSearchItem.kt │ │ │ │ │ │ ├── PreferenceSearchResultHighlighter.java │ │ │ │ │ │ ├── PreferenceSearchResultListener.kt │ │ │ │ │ │ ├── PreferenceSearcher.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── tabs/ │ │ │ │ │ ├── AddTabDialog.java │ │ │ │ │ ├── ChooseTabsFragment.java │ │ │ │ │ ├── Tab.java │ │ │ │ │ ├── TabsJsonHelper.java │ │ │ │ │ └── TabsManager.java │ │ │ │ ├── streams/ │ │ │ │ │ ├── DataReader.java │ │ │ │ │ ├── Mp4DashReader.java │ │ │ │ │ ├── Mp4FromDashWriter.java │ │ │ │ │ ├── OggFromWebMWriter.java │ │ │ │ │ ├── SrtFromTtmlWriter.java │ │ │ │ │ ├── WebMReader.java │ │ │ │ │ ├── WebMWriter.java │ │ │ │ │ └── io/ │ │ │ │ │ ├── NoFileManagerSafeGuard.java │ │ │ │ │ ├── SharpInputStream.java │ │ │ │ │ ├── SharpOutputStream.java │ │ │ │ │ ├── SharpStream.java │ │ │ │ │ ├── StoredDirectoryHelper.java │ │ │ │ │ └── StoredFileHelper.java │ │ │ │ ├── util/ │ │ │ │ │ ├── AudioTrackAdapter.java │ │ │ │ │ ├── BridgeStateSaverInitializer.java │ │ │ │ │ ├── ChannelTabHelper.java │ │ │ │ │ ├── Constants.kt │ │ │ │ │ ├── DependentPreferenceHelper.kt │ │ │ │ │ ├── DeviceUtils.java │ │ │ │ │ ├── ExtractorHelper.java │ │ │ │ │ ├── FallbackViewHolder.java │ │ │ │ │ ├── FilePickerActivityHelper.java │ │ │ │ │ ├── FilenameUtils.kt │ │ │ │ │ ├── InfoCache.java │ │ │ │ │ ├── KeyboardUtil.java │ │ │ │ │ ├── KioskTranslator.kt │ │ │ │ │ ├── ListHelper.java │ │ │ │ │ ├── Localization.java │ │ │ │ │ ├── NavigationHelper.java │ │ │ │ │ ├── NewPipeTextViewHelper.kt │ │ │ │ │ ├── OnClickGesture.java │ │ │ │ │ ├── PeertubeHelper.kt │ │ │ │ │ ├── PermissionHelper.java │ │ │ │ │ ├── PlayButtonHelper.kt │ │ │ │ │ ├── ReleaseVersionUtil.kt │ │ │ │ │ ├── SavedState.kt │ │ │ │ │ ├── SecondaryStreamHelper.java │ │ │ │ │ ├── SerializedCache.java │ │ │ │ │ ├── ServiceHelper.kt │ │ │ │ │ ├── SimpleOnSeekBarChangeListener.kt │ │ │ │ │ ├── SliderStrategy.java │ │ │ │ │ ├── SparseItemUtil.java │ │ │ │ │ ├── StateSaver.java │ │ │ │ │ ├── StreamItemAdapter.java │ │ │ │ │ ├── StreamTypeUtil.kt │ │ │ │ │ ├── ThemeHelper.java │ │ │ │ │ ├── ZipHelper.java │ │ │ │ │ ├── debounce/ │ │ │ │ │ │ ├── DebounceSavable.java │ │ │ │ │ │ └── DebounceSaver.java │ │ │ │ │ ├── external_communication/ │ │ │ │ │ │ ├── KoreUtils.java │ │ │ │ │ │ └── ShareUtils.java │ │ │ │ │ ├── image/ │ │ │ │ │ │ ├── CoilHelper.kt │ │ │ │ │ │ ├── ImageStrategy.kt │ │ │ │ │ │ └── PreferredImageQuality.kt │ │ │ │ │ ├── potoken/ │ │ │ │ │ │ ├── JavaScriptUtil.kt │ │ │ │ │ │ ├── PoTokenException.kt │ │ │ │ │ │ ├── PoTokenGenerator.kt │ │ │ │ │ │ ├── PoTokenProviderImpl.kt │ │ │ │ │ │ └── PoTokenWebView.kt │ │ │ │ │ ├── text/ │ │ │ │ │ │ ├── HashtagLongPressClickableSpan.java │ │ │ │ │ │ ├── InternalUrlsHandler.java │ │ │ │ │ │ ├── LongPressClickableSpan.java │ │ │ │ │ │ ├── LongPressLinkMovementMethod.java │ │ │ │ │ │ ├── TextEllipsizer.java │ │ │ │ │ │ ├── TextLinkifier.java │ │ │ │ │ │ ├── TextViewExtensions.kt │ │ │ │ │ │ ├── TimestampExtractor.java │ │ │ │ │ │ ├── TimestampLongPressClickableSpan.kt │ │ │ │ │ │ ├── TouchUtils.java │ │ │ │ │ │ └── UrlLongPressClickableSpan.java │ │ │ │ │ └── urlfinder/ │ │ │ │ │ ├── PatternsCompat.java │ │ │ │ │ └── UrlFinder.kt │ │ │ │ └── views/ │ │ │ │ ├── AnimatedProgressBar.java │ │ │ │ ├── CustomCollapsingToolbarLayout.java │ │ │ │ ├── ExpandableSurfaceView.java │ │ │ │ ├── FocusAwareCoordinator.java │ │ │ │ ├── FocusAwareDrawerLayout.java │ │ │ │ ├── FocusAwareSeekBar.java │ │ │ │ ├── FocusOverlayView.java │ │ │ │ ├── NewPipeEditText.java │ │ │ │ ├── NewPipeRecyclerView.java │ │ │ │ ├── NewPipeTextView.java │ │ │ │ ├── ScrollableTabLayout.java │ │ │ │ ├── SimpleWindowCallback.kt │ │ │ │ ├── SuperScrollLayoutManager.java │ │ │ │ └── player/ │ │ │ │ ├── CircleClipTapView.kt │ │ │ │ ├── PlayerFastSeekOverlay.kt │ │ │ │ └── SecondsView.kt │ │ │ └── us/ │ │ │ └── shandian/ │ │ │ └── giga/ │ │ │ ├── get/ │ │ │ │ ├── DownloadInitializer.java │ │ │ │ ├── DownloadMission.java │ │ │ │ ├── DownloadMissionRecover.java │ │ │ │ ├── DownloadRunnable.java │ │ │ │ ├── DownloadRunnableFallback.java │ │ │ │ ├── FinishedMission.java │ │ │ │ ├── Mission.java │ │ │ │ ├── MissionRecoveryInfo.kt │ │ │ │ └── sqlite/ │ │ │ │ └── FinishedMissionStore.java │ │ │ ├── io/ │ │ │ │ ├── ChunkFileInputStream.java │ │ │ │ ├── CircularFileWriter.java │ │ │ │ ├── FileStream.java │ │ │ │ ├── FileStreamSAF.java │ │ │ │ └── ProgressReport.java │ │ │ ├── postprocessing/ │ │ │ │ ├── M4aNoDash.java │ │ │ │ ├── Mp4FromDashMuxer.java │ │ │ │ ├── OggFromWebmDemuxer.java │ │ │ │ ├── Postprocessing.java │ │ │ │ ├── TtmlConverter.java │ │ │ │ └── WebMMuxer.java │ │ │ ├── service/ │ │ │ │ ├── DownloadManager.java │ │ │ │ ├── DownloadManagerService.java │ │ │ │ └── MissionState.java │ │ │ ├── ui/ │ │ │ │ ├── adapter/ │ │ │ │ │ └── MissionAdapter.java │ │ │ │ ├── common/ │ │ │ │ │ ├── Deleter.java │ │ │ │ │ ├── ProgressDrawable.java │ │ │ │ │ └── ToolbarActivity.java │ │ │ │ └── fragment/ │ │ │ │ └── MissionsFragment.java │ │ │ └── util/ │ │ │ └── Utility.java │ │ └── res/ │ │ ├── animator/ │ │ │ ├── custom_fade_in.xml │ │ │ └── custom_fade_out.xml │ │ ├── drawable/ │ │ │ ├── background_oval_black_transparent.xml │ │ │ ├── dashed_border_black.xml │ │ │ ├── dashed_border_dark.xml │ │ │ ├── dashed_border_light.xml │ │ │ ├── drawer_header_bottom_background.xml │ │ │ ├── ic_add.xml │ │ │ ├── ic_add_circle_outline.xml │ │ │ ├── ic_apps.xml │ │ │ ├── ic_arrow_back.xml │ │ │ ├── ic_arrow_drop_down.xml │ │ │ ├── ic_arrow_drop_up.xml │ │ │ ├── ic_art_track.xml │ │ │ ├── ic_asterisk.xml │ │ │ ├── ic_attach_money.xml │ │ │ ├── ic_backup.xml │ │ │ ├── ic_bookmark.xml │ │ │ ├── ic_bookmark_white.xml │ │ │ ├── ic_brightness_high.xml │ │ │ ├── ic_brightness_low.xml │ │ │ ├── ic_brightness_medium.xml │ │ │ ├── ic_bug_report.xml │ │ │ ├── ic_campaign.xml │ │ │ ├── ic_cast.xml │ │ │ ├── ic_checklist.xml │ │ │ ├── ic_child_care.xml │ │ │ ├── ic_circle.xml │ │ │ ├── ic_close.xml │ │ │ ├── ic_cloud.xml │ │ │ ├── ic_cloud_download.xml │ │ │ ├── ic_comment.xml │ │ │ ├── ic_computer.xml │ │ │ ├── ic_crop_portrait.xml │ │ │ ├── ic_delete.xml │ │ │ ├── ic_description.xml │ │ │ ├── ic_directions_bike.xml │ │ │ ├── ic_directions_car.xml │ │ │ ├── ic_done.xml │ │ │ ├── ic_drag_handle.xml │ │ │ ├── ic_expand_more.xml │ │ │ ├── ic_explore.xml │ │ │ ├── ic_fastfood.xml │ │ │ ├── ic_favorite.xml │ │ │ ├── ic_file_download.xml │ │ │ ├── ic_filter_list.xml │ │ │ ├── ic_fitness_center.xml │ │ │ ├── ic_fullscreen.xml │ │ │ ├── ic_fullscreen_exit.xml │ │ │ ├── ic_headset.xml │ │ │ ├── ic_headset_shadow.xml │ │ │ ├── ic_heart.xml │ │ │ ├── ic_help.xml │ │ │ ├── ic_history.xml │ │ │ ├── ic_history_white.xml │ │ │ ├── ic_home.xml │ │ │ ├── ic_hourglass_top.xml │ │ │ ├── ic_info_outline.xml │ │ │ ├── ic_insert_emoticon.xml │ │ │ ├── ic_language.xml │ │ │ ├── ic_list.xml │ │ │ ├── ic_live_tv.xml │ │ │ ├── ic_menu_book.xml │ │ │ ├── ic_mic.xml │ │ │ ├── ic_more_vert.xml │ │ │ ├── ic_motorcycle.xml │ │ │ ├── ic_movie.xml │ │ │ ├── ic_music_note.xml │ │ │ ├── ic_next.xml │ │ │ ├── ic_notifications.xml │ │ │ ├── ic_palette.xml │ │ │ ├── ic_pause.xml │ │ │ ├── ic_people.xml │ │ │ ├── ic_person.xml │ │ │ ├── ic_pets.xml │ │ │ ├── ic_picture_in_picture.xml │ │ │ ├── ic_pin.xml │ │ │ ├── ic_placeholder_bandcamp.xml │ │ │ ├── ic_placeholder_media_ccc.xml │ │ │ ├── ic_placeholder_peertube.xml │ │ │ ├── ic_play_arrow.xml │ │ │ ├── ic_play_arrow_shadow.xml │ │ │ ├── ic_play_seek_triangle.xml │ │ │ ├── ic_playlist_add.xml │ │ │ ├── ic_playlist_add_check.xml │ │ │ ├── ic_playlist_play.xml │ │ │ ├── ic_podcasts.xml │ │ │ ├── ic_previous.xml │ │ │ ├── ic_public.xml │ │ │ ├── ic_radio.xml │ │ │ ├── ic_refresh.xml │ │ │ ├── ic_repeat.xml │ │ │ ├── ic_replay.xml │ │ │ ├── ic_restaurant.xml │ │ │ ├── ic_rss_feed.xml │ │ │ ├── ic_save.xml │ │ │ ├── ic_school.xml │ │ │ ├── ic_search.xml │ │ │ ├── ic_search_add.xml │ │ │ ├── ic_select_all.xml │ │ │ ├── ic_settings.xml │ │ │ ├── ic_settings_backup_restore.xml │ │ │ ├── ic_share.xml │ │ │ ├── ic_shopping_cart.xml │ │ │ ├── ic_shuffle.xml │ │ │ ├── ic_smart_display.xml │ │ │ ├── ic_sort.xml │ │ │ ├── ic_stars.xml │ │ │ ├── ic_subscriptions.xml │ │ │ ├── ic_subtitles.xml │ │ │ ├── ic_telescope.xml │ │ │ ├── ic_thumb_down.xml │ │ │ ├── ic_thumb_up.xml │ │ │ ├── ic_trending_up.xml │ │ │ ├── ic_tv.xml │ │ │ ├── ic_videogame_asset.xml │ │ │ ├── ic_visibility_on.xml │ │ │ ├── ic_volume_down.xml │ │ │ ├── ic_volume_mute.xml │ │ │ ├── ic_volume_off.xml │ │ │ ├── ic_volume_up.xml │ │ │ ├── ic_watch_later.xml │ │ │ ├── ic_wb_sunny.xml │ │ │ ├── ic_whatshot.xml │ │ │ ├── ic_work.xml │ │ │ ├── not_available_monkey.xml │ │ │ ├── placeholder_person.xml │ │ │ ├── placeholder_thumbnail_playlist.xml │ │ │ ├── placeholder_thumbnail_video.xml │ │ │ ├── player_controls_background.xml │ │ │ ├── player_controls_top_background.xml │ │ │ ├── progress_circular_white.xml │ │ │ ├── progress_soundcloud_horizontal_dark.xml │ │ │ ├── progress_soundcloud_horizontal_light.xml │ │ │ ├── progress_youtube_horizontal_dark.xml │ │ │ ├── progress_youtube_horizontal_light.xml │ │ │ ├── selector_checked_dark.xml │ │ │ ├── selector_checked_light.xml │ │ │ ├── selector_dark.xml │ │ │ ├── selector_focused_dark.xml │ │ │ ├── selector_focused_light.xml │ │ │ ├── selector_light.xml │ │ │ ├── splash_background.xml │ │ │ ├── splash_foreground.xml │ │ │ ├── toolbar_shadow_dark.xml │ │ │ └── toolbar_shadow_light.xml │ │ ├── drawable-mdpi/ │ │ │ └── volunteer_activism_ic.xml │ │ ├── drawable-night/ │ │ │ ├── ic_heart.xml │ │ │ └── splash_background.xml │ │ ├── drawable-night-v23/ │ │ │ └── splash_background.xml │ │ ├── drawable-v23/ │ │ │ └── splash_background.xml │ │ ├── layout/ │ │ │ ├── activity_about.xml │ │ │ ├── activity_downloader.xml │ │ │ ├── activity_error.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_player_queue_control.xml │ │ │ ├── activity_recaptcha.xml │ │ │ ├── chip.xml │ │ │ ├── comment_replies_header.xml │ │ │ ├── dialog_edit_text.xml │ │ │ ├── dialog_feed_group_create.xml │ │ │ ├── dialog_feed_group_reorder.xml │ │ │ ├── dialog_playback_parameter.xml │ │ │ ├── dialog_playlists.xml │ │ │ ├── dialog_title.xml │ │ │ ├── download_dialog.xml │ │ │ ├── download_loading_dialog.xml │ │ │ ├── drawer_header.xml │ │ │ ├── drawer_layout.xml │ │ │ ├── error_panel.xml │ │ │ ├── feed_group_add_new_grid_item.xml │ │ │ ├── feed_group_add_new_item.xml │ │ │ ├── feed_group_card_grid_item.xml │ │ │ ├── feed_group_card_item.xml │ │ │ ├── feed_group_reorder_item.xml │ │ │ ├── feed_item_carousel.xml │ │ │ ├── fragment_about.xml │ │ │ ├── fragment_blank.xml │ │ │ ├── fragment_bookmarks.xml │ │ │ ├── fragment_channel.xml │ │ │ ├── fragment_channel_tab.xml │ │ │ ├── fragment_channel_videos.xml │ │ │ ├── fragment_channels_notifications.xml │ │ │ ├── fragment_choose_tabs.xml │ │ │ ├── fragment_comments.xml │ │ │ ├── fragment_description.xml │ │ │ ├── fragment_empty.xml │ │ │ ├── fragment_feed.xml │ │ │ ├── fragment_import.xml │ │ │ ├── fragment_instance_list.xml │ │ │ ├── fragment_kiosk.xml │ │ │ ├── fragment_licenses.xml │ │ │ ├── fragment_main.xml │ │ │ ├── fragment_playlist.xml │ │ │ ├── fragment_related_items.xml │ │ │ ├── fragment_search.xml │ │ │ ├── fragment_subscription.xml │ │ │ ├── fragment_video_detail.xml │ │ │ ├── instance_spinner_item.xml │ │ │ ├── instance_spinner_layout.xml │ │ │ ├── item_instance.xml │ │ │ ├── item_metadata.xml │ │ │ ├── item_metadata_tags.xml │ │ │ ├── item_notification_config.xml │ │ │ ├── item_search_suggestion.xml │ │ │ ├── item_software_component.xml │ │ │ ├── item_stream_segment.xml │ │ │ ├── list_channel_card_item.xml │ │ │ ├── list_channel_grid_item.xml │ │ │ ├── list_channel_item.xml │ │ │ ├── list_channel_mini_item.xml │ │ │ ├── list_choose_tabs.xml │ │ │ ├── list_choose_tabs_dialog.xml │ │ │ ├── list_comment_item.xml │ │ │ ├── list_empty_view.xml │ │ │ ├── list_empty_view_subscriptions.xml │ │ │ ├── list_playlist_bookmark_item.xml │ │ │ ├── list_playlist_card_item.xml │ │ │ ├── list_playlist_grid_item.xml │ │ │ ├── list_playlist_item.xml │ │ │ ├── list_playlist_mini_item.xml │ │ │ ├── list_radio_icon_item.xml │ │ │ ├── list_stream_card_item.xml │ │ │ ├── list_stream_grid_item.xml │ │ │ ├── list_stream_item.xml │ │ │ ├── list_stream_mini_item.xml │ │ │ ├── list_stream_playlist_card_item.xml │ │ │ ├── list_stream_playlist_grid_item.xml │ │ │ ├── list_stream_playlist_item.xml │ │ │ ├── local_playlist_header.xml │ │ │ ├── main_bg.xml │ │ │ ├── mission_item.xml │ │ │ ├── mission_item_linear.xml │ │ │ ├── missions.xml │ │ │ ├── missions_header.xml │ │ │ ├── picker_icon_item.xml │ │ │ ├── picker_subscription_item.xml │ │ │ ├── pignate_footer.xml │ │ │ ├── play_queue_item.xml │ │ │ ├── player.xml │ │ │ ├── player_fast_seek_overlay.xml │ │ │ ├── player_fast_seek_seconds_view.xml │ │ │ ├── player_popup_close_overlay.xml │ │ │ ├── playlist_control.xml │ │ │ ├── playlist_header.xml │ │ │ ├── related_items_header.xml │ │ │ ├── select_channel_fragment.xml │ │ │ ├── select_channel_item.xml │ │ │ ├── select_feed_group_fragment.xml │ │ │ ├── select_feed_group_item.xml │ │ │ ├── select_kiosk_fragment.xml │ │ │ ├── select_kiosk_item.xml │ │ │ ├── select_playlist_fragment.xml │ │ │ ├── settings_category_header_layout.xml │ │ │ ├── settings_category_header_title.xml │ │ │ ├── settings_layout.xml │ │ │ ├── settings_notification.xml │ │ │ ├── settings_notification_action.xml │ │ │ ├── settings_preferencesearch_fragment.xml │ │ │ ├── settings_preferencesearch_list_item_result.xml │ │ │ ├── single_choice_dialog_view.xml │ │ │ ├── statistic_playlist_control.xml │ │ │ ├── stream_quality_item.xml │ │ │ ├── subscription_groups_header.xml │ │ │ ├── subscription_header.xml │ │ │ ├── toolbar_layout.xml │ │ │ └── toolbar_search_layout.xml │ │ ├── layout-land/ │ │ │ ├── activity_player_queue_control.xml │ │ │ └── list_stream_card_item.xml │ │ ├── layout-large-land/ │ │ │ └── fragment_video_detail.xml │ │ ├── menu/ │ │ │ ├── dialog_url.xml │ │ │ ├── download_menu.xml │ │ │ ├── drawer_items.xml │ │ │ ├── error_menu.xml │ │ │ ├── menu_channel.xml │ │ │ ├── menu_chooser_fragment.xml │ │ │ ├── menu_feed_fragment.xml │ │ │ ├── menu_feed_group_dialog.xml │ │ │ ├── menu_history.xml │ │ │ ├── menu_local_playlist.xml │ │ │ ├── menu_main_fragment.xml │ │ │ ├── menu_notifications_channels.xml │ │ │ ├── menu_play_queue.xml │ │ │ ├── menu_play_queue_bg.xml │ │ │ ├── menu_play_queue_item.xml │ │ │ ├── menu_playlist.xml │ │ │ ├── menu_recaptcha.xml │ │ │ ├── menu_settings_main_fragment.xml │ │ │ └── mission.xml │ │ ├── mipmap-anydpi-v26/ │ │ │ └── ic_launcher.xml │ │ ├── resources.properties │ │ ├── values/ │ │ │ ├── attrs.xml │ │ │ ├── bools.xml │ │ │ ├── colors.xml │ │ │ ├── colors_services.xml │ │ │ ├── dimens.xml │ │ │ ├── donottranslate.xml │ │ │ ├── settings_keys.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ ├── styles_misc.xml │ │ │ └── styles_services.xml │ │ ├── values-ace/ │ │ │ └── strings.xml │ │ ├── values-aeb/ │ │ │ └── strings.xml │ │ ├── values-af/ │ │ │ └── strings.xml │ │ ├── values-ang/ │ │ │ └── strings.xml │ │ ├── values-ar/ │ │ │ └── strings.xml │ │ ├── values-ar-rLY/ │ │ │ └── strings.xml │ │ ├── values-ars/ │ │ │ └── strings.xml │ │ ├── values-as/ │ │ │ └── strings.xml │ │ ├── values-ay/ │ │ │ └── strings.xml │ │ ├── values-ayc/ │ │ │ └── strings.xml │ │ ├── values-az/ │ │ │ └── strings.xml │ │ ├── values-azb/ │ │ │ └── strings.xml │ │ ├── values-b+ast/ │ │ │ └── strings.xml │ │ ├── values-b+uz+Latn/ │ │ │ └── strings.xml │ │ ├── values-bar/ │ │ │ └── strings.xml │ │ ├── values-be/ │ │ │ └── strings.xml │ │ ├── values-ber/ │ │ │ └── strings.xml │ │ ├── values-bg/ │ │ │ └── strings.xml │ │ ├── values-bm/ │ │ │ └── strings.xml │ │ ├── values-bn/ │ │ │ └── strings.xml │ │ ├── values-bn-rBD/ │ │ │ └── strings.xml │ │ ├── values-bn-rIN/ │ │ │ └── strings.xml │ │ ├── values-bqi/ │ │ │ └── strings.xml │ │ ├── values-br/ │ │ │ └── strings.xml │ │ ├── values-bs/ │ │ │ └── strings.xml │ │ ├── values-ca/ │ │ │ └── strings.xml │ │ ├── values-ckb/ │ │ │ └── strings.xml │ │ ├── values-cs/ │ │ │ └── strings.xml │ │ ├── values-cy/ │ │ │ └── strings.xml │ │ ├── values-da/ │ │ │ └── strings.xml │ │ ├── values-de/ │ │ │ └── strings.xml │ │ ├── values-dum/ │ │ │ └── strings.xml │ │ ├── values-el/ │ │ │ └── strings.xml │ │ ├── values-en-rGB/ │ │ │ └── strings.xml │ │ ├── values-enm/ │ │ │ └── strings.xml │ │ ├── values-eo/ │ │ │ └── strings.xml │ │ ├── values-es/ │ │ │ └── strings.xml │ │ ├── values-et/ │ │ │ └── strings.xml │ │ ├── values-eu/ │ │ │ └── strings.xml │ │ ├── values-fa/ │ │ │ └── strings.xml │ │ ├── values-fi/ │ │ │ └── strings.xml │ │ ├── values-fil/ │ │ │ └── strings.xml │ │ ├── values-fr/ │ │ │ └── strings.xml │ │ ├── values-frc/ │ │ │ └── strings.xml │ │ ├── values-gd/ │ │ │ └── strings.xml │ │ ├── values-gl/ │ │ │ └── strings.xml │ │ ├── values-gu/ │ │ │ └── strings.xml │ │ ├── values-he/ │ │ │ └── strings.xml │ │ ├── values-hi/ │ │ │ └── strings.xml │ │ ├── values-hr/ │ │ │ └── strings.xml │ │ ├── values-hu/ │ │ │ └── strings.xml │ │ ├── values-hy/ │ │ │ └── strings.xml │ │ ├── values-ia/ │ │ │ └── strings.xml │ │ ├── values-in/ │ │ │ └── strings.xml │ │ ├── values-is/ │ │ │ └── strings.xml │ │ ├── values-it/ │ │ │ └── strings.xml │ │ ├── values-ja/ │ │ │ └── strings.xml │ │ ├── values-ji/ │ │ │ └── strings.xml │ │ ├── values-jv/ │ │ │ └── strings.xml │ │ ├── values-ka/ │ │ │ └── strings.xml │ │ ├── values-kab/ │ │ │ └── strings.xml │ │ ├── values-kk/ │ │ │ └── strings.xml │ │ ├── values-kmr/ │ │ │ └── strings.xml │ │ ├── values-kn/ │ │ │ └── strings.xml │ │ ├── values-ko/ │ │ │ └── strings.xml │ │ ├── values-ks/ │ │ │ └── strings.xml │ │ ├── values-ku/ │ │ │ └── strings.xml │ │ ├── values-la/ │ │ │ └── strings.xml │ │ ├── values-land/ │ │ │ └── dimens.xml │ │ ├── values-lmo/ │ │ │ └── strings.xml │ │ ├── values-lt/ │ │ │ └── strings.xml │ │ ├── values-lv/ │ │ │ └── strings.xml │ │ ├── values-mk/ │ │ │ └── strings.xml │ │ ├── values-ml/ │ │ │ └── strings.xml │ │ ├── values-mn/ │ │ │ └── strings.xml │ │ ├── values-mr/ │ │ │ └── strings.xml │ │ ├── values-ms/ │ │ │ └── strings.xml │ │ ├── values-my/ │ │ │ └── strings.xml │ │ ├── values-nap/ │ │ │ └── strings.xml │ │ ├── values-nb-rNO/ │ │ │ └── strings.xml │ │ ├── values-nds/ │ │ │ └── strings.xml │ │ ├── values-ne/ │ │ │ └── strings.xml │ │ ├── values-night/ │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ ├── values-nl/ │ │ │ └── strings.xml │ │ ├── values-nl-rBE/ │ │ │ └── strings.xml │ │ ├── values-nn/ │ │ │ └── strings.xml │ │ ├── values-nqo/ │ │ │ └── strings.xml │ │ ├── values-oc/ │ │ │ └── strings.xml │ │ ├── values-or/ │ │ │ └── strings.xml │ │ ├── values-pa/ │ │ │ └── strings.xml │ │ ├── values-pa-rPK/ │ │ │ └── strings.xml │ │ ├── values-pl/ │ │ │ └── strings.xml │ │ ├── values-pt/ │ │ │ └── strings.xml │ │ ├── values-pt-rBR/ │ │ │ └── strings.xml │ │ ├── values-pt-rPT/ │ │ │ └── strings.xml │ │ ├── values-ro/ │ │ │ └── strings.xml │ │ ├── values-rom/ │ │ │ └── strings.xml │ │ ├── values-ru/ │ │ │ └── strings.xml │ │ ├── values-ryu/ │ │ │ └── strings.xml │ │ ├── values-sat/ │ │ │ └── strings.xml │ │ ├── values-sc/ │ │ │ └── strings.xml │ │ ├── values-scn/ │ │ │ └── strings.xml │ │ ├── values-si/ │ │ │ └── strings.xml │ │ ├── values-sk/ │ │ │ └── strings.xml │ │ ├── values-sl/ │ │ │ └── strings.xml │ │ ├── values-so/ │ │ │ └── strings.xml │ │ ├── values-sq/ │ │ │ └── strings.xml │ │ ├── values-sr/ │ │ │ └── strings.xml │ │ ├── values-sv/ │ │ │ └── strings.xml │ │ ├── values-sw/ │ │ │ └── strings.xml │ │ ├── values-sw600dp/ │ │ │ └── dimens.xml │ │ ├── values-sw600dp-land/ │ │ │ └── dimens.xml │ │ ├── values-ta/ │ │ │ └── strings.xml │ │ ├── values-te/ │ │ │ └── strings.xml │ │ ├── values-th/ │ │ │ └── strings.xml │ │ ├── values-ti/ │ │ │ └── strings.xml │ │ ├── values-tl/ │ │ │ └── strings.xml │ │ ├── values-tok/ │ │ │ └── strings.xml │ │ ├── values-tr/ │ │ │ └── strings.xml │ │ ├── values-tt/ │ │ │ └── strings.xml │ │ ├── values-tzm/ │ │ │ └── strings.xml │ │ ├── values-uk/ │ │ │ └── strings.xml │ │ ├── values-und/ │ │ │ └── strings.xml │ │ ├── values-ur/ │ │ │ └── strings.xml │ │ ├── values-v27/ │ │ │ └── styles.xml │ │ ├── values-v29/ │ │ │ └── styles.xml │ │ ├── values-v35/ │ │ │ └── styles.xml │ │ ├── values-vi/ │ │ │ └── strings.xml │ │ ├── values-vmf/ │ │ │ └── strings.xml │ │ ├── values-w820dp/ │ │ │ └── dimens.xml │ │ ├── values-zh-rCN/ │ │ │ └── strings.xml │ │ ├── values-zh-rHK/ │ │ │ └── strings.xml │ │ ├── values-zh-rTW/ │ │ │ └── strings.xml │ │ └── xml/ │ │ ├── appearance_settings.xml │ │ ├── automotive_app_desc.xml │ │ ├── backup_restore_settings.xml │ │ ├── content_settings.xml │ │ ├── debug_settings.xml │ │ ├── download_settings.xml │ │ ├── exoplayer_settings.xml │ │ ├── history_settings.xml │ │ ├── main_settings.xml │ │ ├── notifications_settings.xml │ │ ├── player_notification_settings.xml │ │ ├── update_settings.xml │ │ └── video_audio_settings.xml │ └── test/ │ ├── java/ │ │ └── org/ │ │ └── schabi/ │ │ └── newpipe/ │ │ ├── NewVersionManagerTest.kt │ │ ├── database/ │ │ │ └── playlist/ │ │ │ └── PlaylistLocalItemTest.kt │ │ ├── error/ │ │ │ └── ReCaptchaActivityTest.kt │ │ ├── ktx/ │ │ │ └── ThrowableExtensionsTest.kt │ │ ├── local/ │ │ │ ├── playlist/ │ │ │ │ └── ExportPlaylistTest.kt │ │ │ └── subscription/ │ │ │ ├── FeedGroupIconTest.kt │ │ │ └── services/ │ │ │ └── ImportExportJsonHelperTest.java │ │ ├── player/ │ │ │ └── playqueue/ │ │ │ ├── PlayQueueItemTest.java │ │ │ └── PlayQueueTest.java │ │ ├── settings/ │ │ │ ├── ImportAllCombinationsTest.kt │ │ │ ├── ImportExportManagerTest.kt │ │ │ └── tabs/ │ │ │ ├── TabTest.java │ │ │ └── TabsJsonHelperTest.java │ │ ├── streams/ │ │ │ └── SrtFromTtmlWriterTest.java │ │ └── util/ │ │ ├── ListHelperTest.java │ │ ├── LocalizationTest.kt │ │ ├── QuadraticSliderStrategyTest.java │ │ ├── external_communication/ │ │ │ └── TimestampExtractorTest.java │ │ ├── image/ │ │ │ └── ImageStrategyTest.java │ │ └── urlfinder/ │ │ └── UrlFinderTest.kt │ └── resources/ │ ├── import_export_test.json │ └── settings/ │ └── README.md ├── build.gradle.kts ├── buildSrc/ │ ├── build.gradle.kts │ └── src/ │ └── main/ │ └── kotlin/ │ └── CheckDependenciesOrder.kt ├── checkstyle/ │ ├── checkstyle.xml │ └── suppressions.xml ├── doc/ │ ├── README.ar.md │ ├── README.asm.md │ ├── README.de.md │ ├── README.es.md │ ├── README.fr.md │ ├── README.hi.md │ ├── README.it.md │ ├── README.ja.md │ ├── README.ko.md │ ├── README.pa.md │ ├── README.pl.md │ ├── README.pt_BR.md │ ├── README.ro.md │ ├── README.ru.md │ ├── README.ryu.md │ ├── README.so.md │ ├── README.sr.md │ ├── README.tr.md │ ├── README.zh_TW.md │ └── gradle.md ├── fastlane/ │ └── metadata/ │ └── android/ │ ├── ar/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── ar_LY/ │ │ ├── changelogs/ │ │ │ ├── 63.txt │ │ │ └── 64.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── ast/ │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── az/ │ │ ├── changelogs/ │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 991.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── azb/ │ │ └── short_description.txt │ ├── bar/ │ │ └── short_description.txt │ ├── be/ │ │ ├── changelogs/ │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ └── 992.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── bg/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ └── 64.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── bm/ │ │ └── short_description.txt │ ├── bn/ │ │ ├── changelogs/ │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 730.txt │ │ │ ├── 770.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 850.txt │ │ │ ├── 953.txt │ │ │ ├── 956.txt │ │ │ ├── 962.txt │ │ │ └── 963.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── bn_BD/ │ │ ├── changelogs/ │ │ │ ├── 63.txt │ │ │ └── 64.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── bs/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── ca/ │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── ckb/ │ │ ├── changelogs/ │ │ │ └── 960.txt │ │ └── short_description.txt │ ├── cs/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 1008.txt │ │ │ ├── 1009.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── cy/ │ │ ├── changelogs/ │ │ │ └── 63.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── da/ │ │ ├── changelogs/ │ │ │ └── 63.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── de/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 1008.txt │ │ │ ├── 1009.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── el/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 770.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 850.txt │ │ │ ├── 910.txt │ │ │ ├── 950.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 996.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── en-US/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 1008.txt │ │ │ ├── 1009.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── en_GB/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 63.txt │ │ │ └── 64.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── eo/ │ │ ├── changelogs/ │ │ │ └── 63.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── es/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── et/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1005.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 962.txt │ │ │ ├── 967.txt │ │ │ ├── 969.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── eu/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── fa/ │ │ ├── changelogs/ │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 730.txt │ │ │ ├── 770.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 850.txt │ │ │ ├── 870.txt │ │ │ ├── 910.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 985.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── fi/ │ │ ├── changelogs/ │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 830.txt │ │ │ ├── 957.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ └── 975.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── fil/ │ │ ├── changelogs/ │ │ │ ├── 63.txt │ │ │ └── 64.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── fr/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 1008.txt │ │ │ ├── 1009.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── gl/ │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── he/ │ │ ├── changelogs/ │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 973.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 988.txt │ │ │ ├── 995.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── hi/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── hr/ │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── hu/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── ia/ │ │ └── short_description.txt │ ├── id/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── is/ │ │ ├── changelogs/ │ │ │ └── 997.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── it/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── ja/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ └── 960.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── jv/ │ │ ├── changelogs/ │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 850.txt │ │ │ └── 860.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── ka/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 1008.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 996.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── kab/ │ │ └── short_description.txt │ ├── kk/ │ │ ├── changelogs/ │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ └── 65.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── kn-IN/ │ │ ├── changelogs/ │ │ │ ├── 830.txt │ │ │ └── 850.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── ko/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── ku/ │ │ └── short_description.txt │ ├── lmo/ │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── lt/ │ │ ├── changelogs/ │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 820.txt │ │ │ └── 830.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── lv/ │ │ ├── changelogs/ │ │ │ ├── 1001.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 730.txt │ │ │ ├── 770.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 950.txt │ │ │ ├── 956.txt │ │ │ ├── 963.txt │ │ │ ├── 982.txt │ │ │ ├── 985.txt │ │ │ ├── 989.txt │ │ │ ├── 996.txt │ │ │ └── 998.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── mk/ │ │ ├── changelogs/ │ │ │ ├── 1001.txt │ │ │ ├── 850.txt │ │ │ └── 982.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── ml/ │ │ ├── changelogs/ │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ └── 968.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── ms/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 790.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ └── 954.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── nb-NO/ │ │ ├── changelogs/ │ │ │ ├── 954.txt │ │ │ ├── 956.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 962.txt │ │ │ ├── 964.txt │ │ │ ├── 986.txt │ │ │ └── 992.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── ne/ │ │ └── short_description.txt │ ├── nl/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 770.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 950.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 985.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── nl-BE/ │ │ ├── changelogs/ │ │ │ ├── 63.txt │ │ │ ├── 730.txt │ │ │ ├── 770.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 850.txt │ │ │ ├── 910.txt │ │ │ ├── 950.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ └── 957.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── nqo/ │ │ ├── changelogs/ │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ └── 68.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── or/ │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── pa/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── pa-PK/ │ │ └── short_description.txt │ ├── pl/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1009.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 730.txt │ │ │ ├── 770.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 950.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ └── 997.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── pt/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── pt-BR/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 1008.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 971.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 976.txt │ │ │ ├── 978.txt │ │ │ ├── 982.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 989.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── pt-PT/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── ro/ │ │ ├── changelogs/ │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 770.txt │ │ │ └── 953.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── ru/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── sat/ │ │ └── short_description.txt │ ├── sc/ │ │ ├── changelogs/ │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 959.txt │ │ │ └── 960.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── si/ │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── sk/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 1008.txt │ │ │ ├── 1009.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── sl/ │ │ ├── changelogs/ │ │ │ └── 991.txt │ │ └── short_description.txt │ ├── so/ │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── sq/ │ │ ├── changelogs/ │ │ │ └── 1000.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── sr/ │ │ ├── changelogs/ │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 956.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ └── 996.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── sv/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 1008.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── ta/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 1008.txt │ │ │ ├── 1009.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── te/ │ │ ├── changelogs/ │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ └── 65.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── th/ │ │ ├── changelogs/ │ │ │ └── 1000.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── ti/ │ │ ├── changelogs/ │ │ │ └── 850.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── tl/ │ │ └── short_description.txt │ ├── tok/ │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── tr/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 910.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 982.txt │ │ │ ├── 985.txt │ │ │ ├── 987.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── uk/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── und/ │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── ur/ │ │ ├── changelogs/ │ │ │ ├── 63.txt │ │ │ └── 956.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── uz-Latn/ │ │ ├── changelogs/ │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 730.txt │ │ │ ├── 770.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ └── 957.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── vi/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 1008.txt │ │ │ ├── 1009.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 950.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── zh-Hans/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1005.txt │ │ │ ├── 1006.txt │ │ │ ├── 1007.txt │ │ │ ├── 1008.txt │ │ │ ├── 1009.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 66.txt │ │ │ ├── 68.txt │ │ │ ├── 69.txt │ │ │ ├── 70.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 740.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 963.txt │ │ │ ├── 964.txt │ │ │ ├── 965.txt │ │ │ ├── 966.txt │ │ │ ├── 967.txt │ │ │ ├── 968.txt │ │ │ ├── 969.txt │ │ │ ├── 970.txt │ │ │ ├── 971.txt │ │ │ ├── 972.txt │ │ │ ├── 973.txt │ │ │ ├── 974.txt │ │ │ ├── 975.txt │ │ │ ├── 976.txt │ │ │ ├── 977.txt │ │ │ ├── 978.txt │ │ │ ├── 979.txt │ │ │ ├── 980.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 983.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 994.txt │ │ │ ├── 995.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ ├── zh-Hant/ │ │ ├── changelogs/ │ │ │ ├── 1000.txt │ │ │ ├── 1001.txt │ │ │ ├── 1002.txt │ │ │ ├── 1003.txt │ │ │ ├── 1004.txt │ │ │ ├── 1007.txt │ │ │ ├── 63.txt │ │ │ ├── 64.txt │ │ │ ├── 65.txt │ │ │ ├── 71.txt │ │ │ ├── 730.txt │ │ │ ├── 750.txt │ │ │ ├── 760.txt │ │ │ ├── 770.txt │ │ │ ├── 780.txt │ │ │ ├── 790.txt │ │ │ ├── 800.txt │ │ │ ├── 810.txt │ │ │ ├── 820.txt │ │ │ ├── 830.txt │ │ │ ├── 840.txt │ │ │ ├── 850.txt │ │ │ ├── 860.txt │ │ │ ├── 870.txt │ │ │ ├── 900.txt │ │ │ ├── 910.txt │ │ │ ├── 920.txt │ │ │ ├── 930.txt │ │ │ ├── 940.txt │ │ │ ├── 950.txt │ │ │ ├── 951.txt │ │ │ ├── 952.txt │ │ │ ├── 953.txt │ │ │ ├── 954.txt │ │ │ ├── 955.txt │ │ │ ├── 956.txt │ │ │ ├── 957.txt │ │ │ ├── 958.txt │ │ │ ├── 959.txt │ │ │ ├── 960.txt │ │ │ ├── 961.txt │ │ │ ├── 962.txt │ │ │ ├── 964.txt │ │ │ ├── 981.txt │ │ │ ├── 982.txt │ │ │ ├── 984.txt │ │ │ ├── 985.txt │ │ │ ├── 986.txt │ │ │ ├── 987.txt │ │ │ ├── 988.txt │ │ │ ├── 989.txt │ │ │ ├── 990.txt │ │ │ ├── 991.txt │ │ │ ├── 992.txt │ │ │ ├── 993.txt │ │ │ ├── 996.txt │ │ │ ├── 997.txt │ │ │ ├── 998.txt │ │ │ └── 999.txt │ │ ├── full_description.txt │ │ └── short_description.txt │ └── zh_Hant_HK/ │ ├── changelogs/ │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 1005.txt │ │ ├── 1007.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 981.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt ├── gradle/ │ ├── libs.versions.toml │ └── wrapper/ │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradle.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts