├── .clang-format ├── .clang-format-ignore ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ └── rssguard.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yaml ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── aqt └── settings.ini ├── crowdin.yml ├── docs ├── Makefile ├── make.bat └── source │ ├── 5-vs-4.md │ ├── _static │ └── style.css │ ├── conf.py │ ├── contrib │ ├── bugs.md │ ├── compile.md │ ├── localization.md │ ├── migrate.md │ └── papi.md │ ├── donations.md │ ├── downloads.md │ ├── features │ ├── cli.md │ ├── db.md │ ├── dbcleaning.md │ ├── filters.md │ ├── gui-concepts.md │ ├── images │ │ ├── about-skins.png │ │ ├── account-menu.png │ │ ├── accounts.png │ │ ├── discover-feeds.png │ │ ├── feed-details.png │ │ ├── filters-dialog.png │ │ ├── gui-dark.png │ │ ├── label-assign.png │ │ ├── label-dialog.png │ │ ├── label-menu.png │ │ ├── notif.png │ │ ├── opm-import-windows.png │ │ ├── opml-import-menu.png │ │ ├── query-dialog.png │ │ ├── rssguard-window.png │ │ ├── scrape-post.png │ │ └── scrape-source-type.png │ ├── labels.md │ ├── mediaplayer.md │ ├── notifications.md │ ├── opmlimport.md │ ├── queries.md │ ├── scraping.md │ ├── skins.md │ └── userdata.md │ ├── index.rst │ ├── requirements.txt │ ├── supported-os.md │ ├── supported-readers.md │ └── what.md ├── localization ├── CMakeLists.txt ├── qtbase_cs.ts ├── qtbase_da.ts ├── qtbase_de.ts ├── qtbase_es.ts ├── qtbase_fi.ts ├── qtbase_fr.ts ├── qtbase_he.ts ├── qtbase_it.ts ├── qtbase_ja.ts ├── qtbase_lt.ts ├── qtbase_nl.ts ├── qtbase_pl.ts ├── qtbase_pt_BR.ts ├── qtbase_pt_PT.ts ├── qtbase_ru.ts ├── qtbase_sv.ts ├── qtbase_tr.ts ├── qtbase_uk.ts ├── qtbase_zh_CN.ts ├── qtbase_zh_TW.ts ├── rssguard_ar.ts ├── rssguard_cs.ts ├── rssguard_da.ts ├── rssguard_de.ts ├── rssguard_en.ts ├── rssguard_en_GB.ts ├── rssguard_en_US.ts ├── rssguard_es.ts ├── rssguard_fi.ts ├── rssguard_fr.ts ├── rssguard_gl.ts ├── rssguard_he.ts ├── rssguard_hi.ts ├── rssguard_hu.ts ├── rssguard_id.ts ├── rssguard_it.ts ├── rssguard_ja.ts ├── rssguard_ko.ts ├── rssguard_lt.ts ├── rssguard_lv.ts ├── rssguard_nl.ts ├── rssguard_no.ts ├── rssguard_pl.ts ├── rssguard_pt.ts ├── rssguard_pt_BR.ts ├── rssguard_ro.ts ├── rssguard_ru.ts ├── rssguard_sk.ts ├── rssguard_sr_Latn.ts ├── rssguard_sv.ts ├── rssguard_tr.ts ├── rssguard_uk.ts ├── rssguard_vi.ts ├── rssguard_zh_CN.ts └── rssguard_zh_TW.ts ├── resources ├── desktop │ ├── CMakeLists.txt │ ├── rssguard.desktop.in │ └── rssguard.metainfo.xml.in ├── graphics │ ├── Breeze Dark │ │ ├── actions │ │ │ ├── 22 │ │ │ │ ├── CVnamespace.svg │ │ │ │ ├── Info-amarok.svg │ │ │ │ ├── PrePostCondition.svg │ │ │ │ ├── accept_signal.svg │ │ │ │ ├── accept_time_event.svg │ │ │ │ ├── acrobat.svg │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ ├── action-rss_tag.svg │ │ │ │ ├── activities.svg │ │ │ │ ├── activity-fork.svg │ │ │ │ ├── actor.svg │ │ │ │ ├── add-placemark.svg │ │ │ │ ├── add-subtitle.svg │ │ │ │ ├── address-book-new.svg │ │ │ │ ├── addressbook-details.svg │ │ │ │ ├── adjustcurves.svg │ │ │ │ ├── adjusthsl.svg │ │ │ │ ├── adjustlevels.svg │ │ │ │ ├── adjustrgb.svg │ │ │ │ ├── aggregation.svg │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ ├── akonadiconsole.svg │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ ├── albumfolder-new.svg │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ ├── align-horizontal-node.svg │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ ├── align-vertical-center.svg │ │ │ │ ├── align-vertical-node.svg │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ ├── align-vertical-top.svg │ │ │ │ ├── amarok_artist.svg │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ ├── amarok_change_language.svg │ │ │ │ ├── amarok_clock.svg │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ ├── amarok_playcount.svg │ │ │ │ ├── amarok_playlist.svg │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ ├── amarok_scripts.svg │ │ │ │ ├── anchor.svg │ │ │ │ ├── animal.svg │ │ │ │ ├── animation-stage.svg │ │ │ │ ├── answer-correct.svg │ │ │ │ ├── answer.svg │ │ │ │ ├── antivignetting.svg │ │ │ │ ├── application-exit.svg │ │ │ │ ├── application-menu.svg │ │ │ │ ├── appointment-new.svg │ │ │ │ ├── approved.svg │ │ │ │ ├── archive-extract.svg │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ ├── archive-insert.svg │ │ │ │ ├── archive-remove.svg │ │ │ │ ├── arrow-down-double.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left-double.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right-double.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up-double.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrow.svg │ │ │ │ ├── artifact.svg │ │ │ │ ├── artistictext-tool.svg │ │ │ │ ├── association.svg │ │ │ │ ├── atmosphere.svg │ │ │ │ ├── auto-scale-all.svg │ │ │ │ ├── auto-scale-x.svg │ │ │ │ ├── auto-scale-y.svg │ │ │ │ ├── auto-transition.svg │ │ │ │ ├── auto-type.svg │ │ │ │ ├── autocorrection.svg │ │ │ │ ├── backgroundtool.svg │ │ │ │ ├── backup.svg │ │ │ │ ├── bboxnext.svg │ │ │ │ ├── bboxprev.svg │ │ │ │ ├── beamerblock.svg │ │ │ │ ├── beamerframe.svg │ │ │ │ ├── bibtex.svg │ │ │ │ ├── bigskip.svg │ │ │ │ ├── black_sum.svg │ │ │ │ ├── blurfx.svg │ │ │ │ ├── blurimage.svg │ │ │ │ ├── bookmark-add-folder.svg │ │ │ │ ├── bookmark-edit.svg │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ ├── bookmark-new.svg │ │ │ │ ├── bookmark-remove.svg │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ ├── bookmarks.svg │ │ │ │ ├── borderpainter.svg │ │ │ │ ├── bordertool.svg │ │ │ │ ├── box.svg │ │ │ │ ├── bqm-diff.svg │ │ │ │ ├── bqm-remove.svg │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ ├── branch.svg │ │ │ │ ├── bwtonal.svg │ │ │ │ ├── call-start.svg │ │ │ │ ├── call-stop.svg │ │ │ │ ├── call-voicemail.svg │ │ │ │ ├── calligraphy.svg │ │ │ │ ├── callout-shape.svg │ │ │ │ ├── cards-block.svg │ │ │ │ ├── category.svg │ │ │ │ ├── category2parent.svg │ │ │ │ ├── cell_edit.svg │ │ │ │ ├── cell_layout.svg │ │ │ │ ├── channelmixer.svg │ │ │ │ ├── character-set.svg │ │ │ │ ├── charcoaltool.svg │ │ │ │ ├── check_constraint.svg │ │ │ │ ├── checkbox.svg │ │ │ │ ├── checkmark.svg │ │ │ │ ├── child2category.svg │ │ │ │ ├── choice-rhomb.svg │ │ │ │ ├── choice-round.svg │ │ │ │ ├── chronometer-lap.svg │ │ │ │ ├── chronometer-pause.svg │ │ │ │ ├── chronometer-reset.svg │ │ │ │ ├── chronometer-start.svg │ │ │ │ ├── chronometer.svg │ │ │ │ ├── circular-arrow-shape.svg │ │ │ │ ├── class-or-package.svg │ │ │ │ ├── class.svg │ │ │ │ ├── clock-large.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── cloud-download.svg │ │ │ │ ├── cloud-upload.svg │ │ │ │ ├── code-block.svg │ │ │ │ ├── code-class.svg │ │ │ │ ├── code-context.svg │ │ │ │ ├── code-function.svg │ │ │ │ ├── code-typedef.svg │ │ │ │ ├── code-variable.svg │ │ │ │ ├── collapse-all.svg │ │ │ │ ├── collapse.svg │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ ├── color-fill.svg │ │ │ │ ├── color-gradient.svg │ │ │ │ ├── color-management.svg │ │ │ │ ├── color-mode-black-white.svg │ │ │ │ ├── color-mode-hue-shift-negative.svg │ │ │ │ ├── color-mode-hue-shift-positive.svg │ │ │ │ ├── color-mode-invert-image.svg │ │ │ │ ├── color-mode-invert-text.svg │ │ │ │ ├── color-picker-black.svg │ │ │ │ ├── color-picker-grey.svg │ │ │ │ ├── color-picker-white.svg │ │ │ │ ├── color-picker.svg │ │ │ │ ├── colorfx.svg │ │ │ │ ├── colormanagement.svg │ │ │ │ ├── colorneg.svg │ │ │ │ ├── colors-chromablue.svg │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ ├── colors-chromared.svg │ │ │ │ ├── colors-luma.svg │ │ │ │ ├── combined_fragment.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── component.svg │ │ │ │ ├── composite-track-off.svg │ │ │ │ ├── composite-track-on.svg │ │ │ │ ├── composite-track-preview.svg │ │ │ │ ├── composition.svg │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ ├── configure-toolbars.svg │ │ │ │ ├── configure.svg │ │ │ │ ├── configure_kile.svg │ │ │ │ ├── configure_project.svg │ │ │ │ ├── contact-new.svg │ │ │ │ ├── containment.svg │ │ │ │ ├── contents.svg │ │ │ │ ├── contrast.svg │ │ │ │ ├── convert.svg │ │ │ │ ├── coordinate.svg │ │ │ │ ├── copy-coordinates.svg │ │ │ │ ├── createpath.svg │ │ │ │ ├── cross-shape.svg │ │ │ │ ├── crosshairs.svg │ │ │ │ ├── cursor-arrow.svg │ │ │ │ ├── curve-connector.svg │ │ │ │ ├── dashboard-show.svg │ │ │ │ ├── database-change-key.svg │ │ │ │ ├── database-index.svg │ │ │ │ ├── datatype.svg │ │ │ │ ├── dblatex.svg │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ ├── debug-run.svg │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ ├── debug-step-into.svg │ │ │ │ ├── debug-step-out.svg │ │ │ │ ├── debug-step-over.svg │ │ │ │ ├── deep-history.svg │ │ │ │ ├── delete-comment.svg │ │ │ │ ├── delete-table-row.svg │ │ │ │ ├── delete.svg │ │ │ │ ├── dependency.svg │ │ │ │ ├── depth16to8.svg │ │ │ │ ├── depth8to16.svg │ │ │ │ ├── description.svg │ │ │ │ ├── dfrac.svg │ │ │ │ ├── diag_activity.svg │ │ │ │ ├── diag_class.svg │ │ │ │ ├── diag_component.svg │ │ │ │ ├── dialog-cancel.svg │ │ │ │ ├── dialog-close.svg │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ ├── dialog-messages.svg │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ ├── dialog-ok.svg │ │ │ │ ├── dialog-scripts.svg │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ ├── dirsync.svg │ │ │ │ ├── discrete.svg │ │ │ │ ├── displaymathmode.svg │ │ │ │ ├── distortionfx.svg │ │ │ │ ├── distribute-graph-directed.svg │ │ │ │ ├── distribute-graph.svg │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ ├── distribute-horizontal-node.svg │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ ├── distribute-randomize.svg │ │ │ │ ├── distribute-remove-overlaps.svg │ │ │ │ ├── distribute-unclump.svg │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ ├── distribute-vertical-node.svg │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ ├── distribute-vertical.svg │ │ │ │ ├── document-close.svg │ │ │ │ ├── document-decrypt.svg │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ ├── document-edit-sign.svg │ │ │ │ ├── document-edit-verify.svg │ │ │ │ ├── document-edit.svg │ │ │ │ ├── document-encrypt.svg │ │ │ │ ├── document-encrypted.svg │ │ │ │ ├── document-export-ocal.svg │ │ │ │ ├── document-export-table.svg │ │ │ │ ├── document-export.svg │ │ │ │ ├── document-import-ocal.svg │ │ │ │ ├── document-import.svg │ │ │ │ ├── document-multiple.svg │ │ │ │ ├── document-new-from-template.svg │ │ │ │ ├── document-new.svg │ │ │ │ ├── document-open-data.svg │ │ │ │ ├── document-open-folder.svg │ │ │ │ ├── document-open-recent.svg │ │ │ │ ├── document-open-remote.svg │ │ │ │ ├── document-open.svg │ │ │ │ ├── document-preview-archive.svg │ │ │ │ ├── document-preview.svg │ │ │ │ ├── document-print-direct.svg │ │ │ │ ├── document-print-frame.svg │ │ │ │ ├── document-print-preview.svg │ │ │ │ ├── document-print.svg │ │ │ │ ├── document-properties.svg │ │ │ │ ├── document-replace.svg │ │ │ │ ├── document-revert.svg │ │ │ │ ├── document-save-all.svg │ │ │ │ ├── document-save-as-template.svg │ │ │ │ ├── document-save-as.svg │ │ │ │ ├── document-save.svg │ │ │ │ ├── document-scan.svg │ │ │ │ ├── document-send.svg │ │ │ │ ├── document-share.svg │ │ │ │ ├── document-sign.svg │ │ │ │ ├── document-swap.svg │ │ │ │ ├── documentation.svg │ │ │ │ ├── documentinfo.svg │ │ │ │ ├── donate.svg │ │ │ │ ├── dontknow.svg │ │ │ │ ├── download-amarok.svg │ │ │ │ ├── download-later.svg │ │ │ │ ├── download.svg │ │ │ │ ├── drag-surface.svg │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ ├── draw-arrow.svg │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ ├── draw-brush.svg │ │ │ │ ├── draw-calligraphic.svg │ │ │ │ ├── draw-circle.svg │ │ │ │ ├── draw-connector.svg │ │ │ │ ├── draw-cross.svg │ │ │ │ ├── draw-cuboid.svg │ │ │ │ ├── draw-donut.svg │ │ │ │ ├── draw-ellipse.svg │ │ │ │ ├── draw-eraser.svg │ │ │ │ ├── draw-freehand.svg │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ ├── draw-highlight.svg │ │ │ │ ├── draw-line.svg │ │ │ │ ├── draw-path.svg │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── draw-polyline.svg │ │ │ │ ├── draw-rectangle-rounded.svg │ │ │ │ ├── draw-rectangle.svg │ │ │ │ ├── draw-spiral.svg │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ ├── draw-star.svg │ │ │ │ ├── draw-text.svg │ │ │ │ ├── draw-triangle.svg │ │ │ │ ├── draw-triangle1.svg │ │ │ │ ├── draw-triangle2.svg │ │ │ │ ├── draw-triangle3.svg │ │ │ │ ├── draw-triangle4.svg │ │ │ │ ├── draw-watercolor.svg │ │ │ │ ├── dvipdf.svg │ │ │ │ ├── dvipng.svg │ │ │ │ ├── dvips.svg │ │ │ │ ├── dvisearch.svg │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ ├── earthquake.svg │ │ │ │ ├── edit-bomb.svg │ │ │ │ ├── edit-clear-all.svg │ │ │ │ ├── edit-clear-history.svg │ │ │ │ ├── edit-clear-list.svg │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ ├── edit-clear.svg │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ ├── edit-clone.svg │ │ │ │ ├── edit-comment.svg │ │ │ │ ├── edit-copy.svg │ │ │ │ ├── edit-cut.svg │ │ │ │ ├── edit-delete-remove.svg │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ ├── edit-delete.svg │ │ │ │ ├── edit-download.svg │ │ │ │ ├── edit-entry.svg │ │ │ │ ├── edit-find-mail.svg │ │ │ │ ├── edit-find-project.svg │ │ │ │ ├── edit-find-replace.svg │ │ │ │ ├── edit-find-user.svg │ │ │ │ ├── edit-find.svg │ │ │ │ ├── edit-group.svg │ │ │ │ ├── edit-guides.svg │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ ├── edit-line-width.svg │ │ │ │ ├── edit-link.svg │ │ │ │ ├── edit-map.svg │ │ │ │ ├── edit-move.svg │ │ │ │ ├── edit-node.svg │ │ │ │ ├── edit-none.svg │ │ │ │ ├── edit-opacity.svg │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ ├── edit-paste.svg │ │ │ │ ├── edit-redo.svg │ │ │ │ ├── edit-rename.svg │ │ │ │ ├── edit-reset.svg │ │ │ │ ├── edit-select-all.svg │ │ │ │ ├── edit-select-invert.svg │ │ │ │ ├── edit-select-lasso.svg │ │ │ │ ├── edit-select-none.svg │ │ │ │ ├── edit-select-text.svg │ │ │ │ ├── edit-select.svg │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ ├── edit-undo.svg │ │ │ │ ├── edit_animation.svg │ │ │ │ ├── editimage.svg │ │ │ │ ├── editor.svg │ │ │ │ ├── editpath.svg │ │ │ │ ├── edittext.svg │ │ │ │ ├── ellipse-shape.svg │ │ │ │ ├── embosstool.svg │ │ │ │ ├── emph.svg │ │ │ │ ├── end_of_life.svg │ │ │ │ ├── end_state.svg │ │ │ │ ├── entity.svg │ │ │ │ ├── entrance_animations.svg │ │ │ │ ├── entry-clone.svg │ │ │ │ ├── entry-delete.svg │ │ │ │ ├── entry-edit.svg │ │ │ │ ├── entry-new.svg │ │ │ │ ├── enum.svg │ │ │ │ ├── enumerate.svg │ │ │ │ ├── error.svg │ │ │ │ ├── errornext.svg │ │ │ │ ├── errorprev.svg │ │ │ │ ├── escape-direction-all.svg │ │ │ │ ├── escape-direction-down.svg │ │ │ │ ├── escape-direction-horizontal.svg │ │ │ │ ├── escape-direction-left.svg │ │ │ │ ├── escape-direction-right.svg │ │ │ │ ├── escape-direction-up.svg │ │ │ │ ├── escape-direction-vertical.svg │ │ │ │ ├── exception.svg │ │ │ │ ├── exchange-positions-clockwise.svg │ │ │ │ ├── exchange-positions-zorder.svg │ │ │ │ ├── exchange-positions.svg │ │ │ │ ├── exifinfo.svg │ │ │ │ ├── exit_animations.svg │ │ │ │ ├── expand-all.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ ├── favorite.svg │ │ │ │ ├── feed-subscribe.svg │ │ │ │ ├── file-zoom-in.svg │ │ │ │ ├── file-zoom-out.svg │ │ │ │ ├── filegrep.svg │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ ├── filename-divider.svg │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ ├── filename-group-length.svg │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ ├── filename-last-played.svg │ │ │ │ ├── filename-moodbar.svg │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ ├── fileview-preview.svg │ │ │ │ ├── fill-color.svg │ │ │ │ ├── filmgrain.svg │ │ │ │ ├── final_activity.svg │ │ │ │ ├── find-location.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── flag-black.svg │ │ │ │ ├── flag-blue.svg │ │ │ │ ├── flag-green.svg │ │ │ │ ├── flag-red.svg │ │ │ │ ├── flag-yellow.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flash.svg │ │ │ │ ├── flashlight-off.svg │ │ │ │ ├── flashlight-on.svg │ │ │ │ ├── flower-shape.svg │ │ │ │ ├── folder-new.svg │ │ │ │ ├── folder-open-recent.svg │ │ │ │ ├── folder-stash.svg │ │ │ │ ├── folder-sync.svg │ │ │ │ ├── followmouse.svg │ │ │ │ ├── font-disable.svg │ │ │ │ ├── font-enable.svg │ │ │ │ ├── font.svg │ │ │ │ ├── food.svg │ │ │ │ ├── foreignkey_constraint.svg │ │ │ │ ├── fork.svg │ │ │ │ ├── format-add-node.svg │ │ │ │ ├── format-align-vertical-bottom.svg │ │ │ │ ├── format-align-vertical-center.svg │ │ │ │ ├── format-align-vertical-top.svg │ │ │ │ ├── format-border-set-all.svg │ │ │ │ ├── format-border-set-bottom.svg │ │ │ │ ├── format-border-set-diagonal-bl-tr.svg │ │ │ │ ├── format-border-set-diagonal-tl-br.svg │ │ │ │ ├── format-border-set-external.svg │ │ │ │ ├── format-border-set-internal-horizontal.svg │ │ │ │ ├── format-border-set-internal-vertical.svg │ │ │ │ ├── format-border-set-internal.svg │ │ │ │ ├── format-border-set-left.svg │ │ │ │ ├── format-border-set-none.svg │ │ │ │ ├── format-border-set-right.svg │ │ │ │ ├── format-border-set-top.svg │ │ │ │ ├── format-border-style.svg │ │ │ │ ├── format-break-node.svg │ │ │ │ ├── format-connect-node.svg │ │ │ │ ├── format-convert-to-path.svg │ │ │ │ ├── format-currency.svg │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ ├── format-fill-color.svg │ │ │ │ ├── format-font-size-less.svg │ │ │ │ ├── format-font-size-more.svg │ │ │ │ ├── format-indent-less.svg │ │ │ │ ├── format-indent-more.svg │ │ │ │ ├── format-insert-node.svg │ │ │ │ ├── format-join-node.svg │ │ │ │ ├── format-justify-center.svg │ │ │ │ ├── format-justify-fill.svg │ │ │ │ ├── format-justify-left.svg │ │ │ │ ├── format-justify-right.svg │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ ├── format-list-ordered.svg │ │ │ │ ├── format-list-unordered.svg │ │ │ │ ├── format-node-corner.svg │ │ │ │ ├── format-node-curve.svg │ │ │ │ ├── format-node-line.svg │ │ │ │ ├── format-node-smooth.svg │ │ │ │ ├── format-node-symmetric.svg │ │ │ │ ├── format-number-percent.svg │ │ │ │ ├── format-precision-less.svg │ │ │ │ ├── format-precision-more.svg │ │ │ │ ├── format-remove-node.svg │ │ │ │ ├── format-segment-curve.svg │ │ │ │ ├── format-segment-line.svg │ │ │ │ ├── format-stroke-color.svg │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ ├── format-text-bold.svg │ │ │ │ ├── format-text-capitalize.svg │ │ │ │ ├── format-text-code.svg │ │ │ │ ├── format-text-color.svg │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ ├── format-text-italic.svg │ │ │ │ ├── format-text-lowercase.svg │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ ├── format-text-subscript.svg │ │ │ │ ├── format-text-superscript.svg │ │ │ │ ├── format-text-symbol.svg │ │ │ │ ├── format-text-underline-squiggle.svg │ │ │ │ ├── format-text-underline.svg │ │ │ │ ├── format-text-uppercase.svg │ │ │ │ ├── formula.svg │ │ │ │ ├── freerotation.svg │ │ │ │ ├── games-achievements.svg │ │ │ │ ├── games-config-background.svg │ │ │ │ ├── games-config-board.svg │ │ │ │ ├── games-config-custom.svg │ │ │ │ ├── games-config-options.svg │ │ │ │ ├── games-config-theme.svg │ │ │ │ ├── games-config-tiles.svg │ │ │ │ ├── games-difficult.svg │ │ │ │ ├── games-endturn.svg │ │ │ │ ├── games-highscores.svg │ │ │ │ ├── games-hint.svg │ │ │ │ ├── games-solve.svg │ │ │ │ ├── geany-build.svg │ │ │ │ ├── geany-close-all.svg │ │ │ │ ├── geany-save-all.svg │ │ │ │ ├── gearhead-shape.svg │ │ │ │ ├── generalisation.svg │ │ │ │ ├── generalise.svg │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── gnumeric-autofilter-delete.svg │ │ │ │ ├── gnumeric-autofilter.svg │ │ │ │ ├── gnumeric-autosum.svg │ │ │ │ ├── gnumeric-brush.svg │ │ │ │ ├── gnumeric-bucket.svg │ │ │ │ ├── gnumeric-cells-merge.svg │ │ │ │ ├── gnumeric-cells-split.svg │ │ │ │ ├── gnumeric-column-add.svg │ │ │ │ ├── gnumeric-column-delete.svg │ │ │ │ ├── gnumeric-column-hide.svg │ │ │ │ ├── gnumeric-column-size.svg │ │ │ │ ├── gnumeric-column-unhide.svg │ │ │ │ ├── gnumeric-comment-add.svg │ │ │ │ ├── gnumeric-comment-delete.svg │ │ │ │ ├── gnumeric-comment-edit.svg │ │ │ │ ├── gnumeric-component-insert-shaped.svg │ │ │ │ ├── gnumeric-data-slicer.svg │ │ │ │ ├── gnumeric-font.svg │ │ │ │ ├── gnumeric-format-accounting.svg │ │ │ │ ├── gnumeric-format-border-all.svg │ │ │ │ ├── gnumeric-format-border-bottom.svg │ │ │ │ ├── gnumeric-format-border-diag.svg │ │ │ │ ├── gnumeric-format-border-double-bottom.svg │ │ │ │ ├── gnumeric-format-border-inside-horiz.svg │ │ │ │ ├── gnumeric-format-border-left.svg │ │ │ │ ├── gnumeric-format-border-none.svg │ │ │ │ ├── gnumeric-format-border-outside.svg │ │ │ │ ├── gnumeric-format-border-rev-diag.svg │ │ │ │ ├── gnumeric-format-border-right.svg │ │ │ │ ├── gnumeric-format-border-thick-bottom.svg │ │ │ │ ├── gnumeric-format-border-thick-outside.svg │ │ │ │ ├── gnumeric-format-border-top-n-bottom.svg │ │ │ │ ├── gnumeric-format-border-top-n-double-bottom.svg │ │ │ │ ├── gnumeric-format-border-top-n-thick-bottom.svg │ │ │ │ ├── gnumeric-format-border-top.svg │ │ │ │ ├── gnumeric-format-percentage.svg │ │ │ │ ├── gnumeric-format-precision-decrease.svg │ │ │ │ ├── gnumeric-format-precision-increase.svg │ │ │ │ ├── gnumeric-format-thousand-separator.svg │ │ │ │ ├── gnumeric-formulaguru.svg │ │ │ │ ├── gnumeric-graphguru.svg │ │ │ │ ├── gnumeric-group.svg │ │ │ │ ├── gnumeric-link-add.svg │ │ │ │ ├── gnumeric-link-delete.svg │ │ │ │ ├── gnumeric-link-edit.svg │ │ │ │ ├── gnumeric-link-email.svg │ │ │ │ ├── gnumeric-link-external.svg │ │ │ │ ├── gnumeric-link-internal.svg │ │ │ │ ├── gnumeric-link-url.svg │ │ │ │ ├── gnumeric-object-arrow.svg │ │ │ │ ├── gnumeric-object-button.svg │ │ │ │ ├── gnumeric-object-checkbox.svg │ │ │ │ ├── gnumeric-object-combo.svg │ │ │ │ ├── gnumeric-object-ellipse.svg │ │ │ │ ├── gnumeric-object-label.svg │ │ │ │ ├── gnumeric-object-line.svg │ │ │ │ ├── gnumeric-object-list.svg │ │ │ │ ├── gnumeric-object-rectangle.svg │ │ │ │ ├── gnumeric-object-scrollbar.svg │ │ │ │ ├── gnumeric-object-spinbutton.svg │ │ │ │ ├── gnumeric-pagesetup-hf-cell.svg │ │ │ │ ├── gnumeric-pagesetup-hf-page.svg │ │ │ │ ├── gnumeric-pagesetup-hf-pages.svg │ │ │ │ ├── gnumeric-pagesetup-hf-time.svg │ │ │ │ ├── gnumeric-protection-no.svg │ │ │ │ ├── gnumeric-protection-yes.svg │ │ │ │ ├── gnumeric-row-add.svg │ │ │ │ ├── gnumeric-row-delete.svg │ │ │ │ ├── gnumeric-row-hide.svg │ │ │ │ ├── gnumeric-row-size.svg │ │ │ │ ├── gnumeric-row-unhide.svg │ │ │ │ ├── gnumeric-subscript.svg │ │ │ │ ├── gnumeric-superscript.svg │ │ │ │ ├── gnumeric-ungroup.svg │ │ │ │ ├── gnumeric-visible.svg │ │ │ │ ├── go-bottom.svg │ │ │ │ ├── go-down-search.svg │ │ │ │ ├── go-down-skip.svg │ │ │ │ ├── go-down.svg │ │ │ │ ├── go-first-view-page.svg │ │ │ │ ├── go-first-view.svg │ │ │ │ ├── go-first.svg │ │ │ │ ├── go-home-large.svg │ │ │ │ ├── go-home.svg │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ ├── go-jump-definition.svg │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ ├── go-jump-today.svg │ │ │ │ ├── go-jump.svg │ │ │ │ ├── go-last-view-page.svg │ │ │ │ ├── go-last-view.svg │ │ │ │ ├── go-last.svg │ │ │ │ ├── go-next-context.svg │ │ │ │ ├── go-next-skip.svg │ │ │ │ ├── go-next-use.svg │ │ │ │ ├── go-next-view-page.svg │ │ │ │ ├── go-next-view.svg │ │ │ │ ├── go-next.svg │ │ │ │ ├── go-parent-folder.svg │ │ │ │ ├── go-previous-context.svg │ │ │ │ ├── go-previous-skip.svg │ │ │ │ ├── go-previous-use.svg │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ ├── go-previous-view.svg │ │ │ │ ├── go-previous.svg │ │ │ │ ├── go-top.svg │ │ │ │ ├── go-up-search.svg │ │ │ │ ├── go-up-skip.svg │ │ │ │ ├── go-up.svg │ │ │ │ ├── gpg.svg │ │ │ │ ├── gpgsm.svg │ │ │ │ ├── gps.svg │ │ │ │ ├── gradient.svg │ │ │ │ ├── graphics.svg │ │ │ │ ├── grid-rectangular.svg │ │ │ │ ├── group-delete.svg │ │ │ │ ├── group-edit.svg │ │ │ │ ├── group-new.svg │ │ │ │ ├── group.svg │ │ │ │ ├── gtk-add.svg │ │ │ │ ├── gtk-apply.svg │ │ │ │ ├── gtk-authentication.svg │ │ │ │ ├── gtk-bold.svg │ │ │ │ ├── gtk-cancel.svg │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ ├── gtk-clear.svg │ │ │ │ ├── gtk-close.svg │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ ├── gtk-connect.svg │ │ │ │ ├── gtk-convert.svg │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ ├── gtk-edit.svg │ │ │ │ ├── gtk-execute.svg │ │ │ │ ├── gtk-floppy.svg │ │ │ │ ├── gtk-index.svg │ │ │ │ ├── gtk-no.svg │ │ │ │ ├── gtk-ok.svg │ │ │ │ ├── gtk-preferences.svg │ │ │ │ ├── gtk-properties.svg │ │ │ │ ├── gtk-quit.svg │ │ │ │ ├── gtk-select-color.svg │ │ │ │ ├── gtk-select-font.svg │ │ │ │ ├── gtk-stop.svg │ │ │ │ ├── gtk-tab-duplicate.svg │ │ │ │ ├── gtk-tab-new.svg │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ ├── gtk-yes.svg │ │ │ │ ├── guides.svg │ │ │ │ ├── hand.svg │ │ │ │ ├── handle-left.svg │ │ │ │ ├── handle-move.svg │ │ │ │ ├── handle-right.svg │ │ │ │ ├── handle-sort.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── help-about.svg │ │ │ │ ├── help-contents.svg │ │ │ │ ├── help-contextual.svg │ │ │ │ ├── help-donate.svg │ │ │ │ ├── help-feedback.svg │ │ │ │ ├── help-hint.svg │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ ├── help-latex.svg │ │ │ │ ├── help-whatsthis.svg │ │ │ │ ├── hexagon-shape.svg │ │ │ │ ├── hide_table_column.svg │ │ │ │ ├── hide_table_row.svg │ │ │ │ ├── hidemouse.svg │ │ │ │ ├── high-brightness.svg │ │ │ │ ├── hint.svg │ │ │ │ ├── hotpixels.svg │ │ │ │ ├── identity.svg │ │ │ │ ├── im-aim.svg │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ ├── im-ban-user.svg │ │ │ │ ├── im-facebook.svg │ │ │ │ ├── im-gadugadu.svg │ │ │ │ ├── im-google-talk.svg │ │ │ │ ├── im-google.svg │ │ │ │ ├── im-icq.svg │ │ │ │ ├── im-identi.ca.svg │ │ │ │ ├── im-invisible-user.svg │ │ │ │ ├── im-irc.svg │ │ │ │ ├── im-jabber.svg │ │ │ │ ├── im-kick-user.svg │ │ │ │ ├── im-msn.svg │ │ │ │ ├── im-qq.svg │ │ │ │ ├── im-skype.svg │ │ │ │ ├── im-twitter.svg │ │ │ │ ├── im-user-away.svg │ │ │ │ ├── im-user-busy.svg │ │ │ │ ├── im-user-offline.svg │ │ │ │ ├── im-user-online.svg │ │ │ │ ├── im-user.svg │ │ │ │ ├── im-yahoo.svg │ │ │ │ ├── im-youtube.svg │ │ │ │ ├── imagecomment.svg │ │ │ │ ├── initial_state.svg │ │ │ │ ├── inpainting.svg │ │ │ │ ├── input-mouse-click-left.svg │ │ │ │ ├── input-mouse-click-middle.svg │ │ │ │ ├── input-mouse-click-right.svg │ │ │ │ ├── insert-button.svg │ │ │ │ ├── insert-endnote.svg │ │ │ │ ├── insert-footnote.svg │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ ├── insert-image.svg │ │ │ │ ├── insert-link.svg │ │ │ │ ├── insert-math-expression.svg │ │ │ │ ├── insert-more-mark.svg │ │ │ │ ├── insert-page-break.svg │ │ │ │ ├── insert-table-of-contents.svg │ │ │ │ ├── insert-table-row.svg │ │ │ │ ├── insert-table.svg │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ ├── insert-text-frame.svg │ │ │ │ ├── insert-text.svg │ │ │ │ ├── insertcell.svg │ │ │ │ ├── interface.svg │ │ │ │ ├── internet-amarok.svg │ │ │ │ ├── internet-services.svg │ │ │ │ ├── invertimage.svg │ │ │ │ ├── irc-channel-active.svg │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ ├── irc-close-channel.svg │ │ │ │ ├── irc-join-channel.svg │ │ │ │ ├── irc-operator.svg │ │ │ │ ├── irc-remove-operator.svg │ │ │ │ ├── irc-unvoice.svg │ │ │ │ ├── irc-voice.svg │ │ │ │ ├── item.svg │ │ │ │ ├── itemize.svg │ │ │ │ ├── join.svg │ │ │ │ ├── journal-new.svg │ │ │ │ ├── junction.svg │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ ├── kdenlive-composite.svg │ │ │ │ ├── kdenlive-custom-effect.svg │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ ├── kdenlive-down.svg │ │ │ │ ├── kdenlive-hide-audio.svg │ │ │ │ ├── kdenlive-hide-video.svg │ │ │ │ ├── kdenlive-insert-edit.svg │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ ├── kdenlive-no-composite.svg │ │ │ │ ├── kdenlive-normal-edit.svg │ │ │ │ ├── kdenlive-object-height.svg │ │ │ │ ├── kdenlive-object-width.svg │ │ │ │ ├── kdenlive-overwrite-edit.svg │ │ │ │ ├── kdenlive-ripple.svg │ │ │ │ ├── kdenlive-rolling.svg │ │ │ │ ├── kdenlive-select-all.svg │ │ │ │ ├── kdenlive-select-images.svg │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ ├── kdenlive-select-texts.svg │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ ├── kdenlive-show-audio.svg │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ ├── kdenlive-show-markers.svg │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ ├── kdenlive-slide.svg │ │ │ │ ├── kdenlive-slip.svg │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ ├── kdenlive-split-audio.svg │ │ │ │ ├── kdenlive-track_has_effect.svg │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ ├── kdenlive-up.svg │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ ├── kdenlive-zindex-down.svg │ │ │ │ ├── kdenlive-zindex-top.svg │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ ├── kdocumentinfo.svg │ │ │ │ ├── key-enter.svg │ │ │ │ ├── keyframe-add.svg │ │ │ │ ├── keyframe-disable.svg │ │ │ │ ├── keyframe-duplicate.svg │ │ │ │ ├── keyframe-next.svg │ │ │ │ ├── keyframe-previous.svg │ │ │ │ ├── keyframe-record.svg │ │ │ │ ├── keyframe-remove.svg │ │ │ │ ├── keyframe.svg │ │ │ │ ├── kmousetool_off.svg │ │ │ │ ├── kmousetool_on.svg │ │ │ │ ├── kmouth-phrase-new.svg │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ ├── kmouth-phresebook-new.svg │ │ │ │ ├── knotes_alarm.svg │ │ │ │ ├── knotes_date.svg │ │ │ │ ├── knotes_delete.svg │ │ │ │ ├── know.svg │ │ │ │ ├── kontact-import-wizard.svg │ │ │ │ ├── kontes_close.svg │ │ │ │ ├── kr_combine.svg │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ ├── kr_diskusage.svg │ │ │ │ ├── kr_jumpback.svg │ │ │ │ ├── kr_mountman.svg │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ ├── kr_unselect.svg │ │ │ │ ├── kstars_advanced.svg │ │ │ │ ├── kstars_catalog.svg │ │ │ │ ├── kstars_cbound.svg │ │ │ │ ├── kstars_clines.svg │ │ │ │ ├── kstars_cnames.svg │ │ │ │ ├── kstars_colors.svg │ │ │ │ ├── kstars_constellationart.svg │ │ │ │ ├── kstars_deepsky.svg │ │ │ │ ├── kstars_ekos.svg │ │ │ │ ├── kstars_fitsviewer.svg │ │ │ │ ├── kstars_flag.svg │ │ │ │ ├── kstars_grid.svg │ │ │ │ ├── kstars_guides.svg │ │ │ │ ├── kstars_hgrid.svg │ │ │ │ ├── kstars_horizon.svg │ │ │ │ ├── kstars_indi.svg │ │ │ │ ├── kstars_mw.svg │ │ │ │ ├── kstars_planets.svg │ │ │ │ ├── kstars_satellites.svg │ │ │ │ ├── kstars_solarsystem.svg │ │ │ │ ├── kstars_stars.svg │ │ │ │ ├── kstars_supernovae.svg │ │ │ │ ├── kstars_xplanet.svg │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ ├── kt-add-filters.svg │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ ├── kt-check-data.svg │ │ │ │ ├── kt-chunks.svg │ │ │ │ ├── kt-encrypted.svg │ │ │ │ ├── kt-info-widget.svg │ │ │ │ ├── kt-magnet.svg │ │ │ │ ├── kt-pause.svg │ │ │ │ ├── kt-plugins.svg │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ ├── kt-remove-filters.svg │ │ │ │ ├── kt-remove.svg │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ ├── kt-start-all.svg │ │ │ │ ├── kt-start.svg │ │ │ │ ├── kt-stop-all.svg │ │ │ │ ├── kt-stop.svg │ │ │ │ ├── ktnef_extract_all_to.svg │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ ├── l2h.svg │ │ │ │ ├── label-amarok.svg │ │ │ │ ├── label.svg │ │ │ │ ├── labplot-1x-zoom.svg │ │ │ │ ├── labplot-2x-zoom.svg │ │ │ │ ├── labplot-3x-zoom.svg │ │ │ │ ├── labplot-4x-zoom.svg │ │ │ │ ├── labplot-5x-zoom.svg │ │ │ │ ├── labplot-TeX-logo.svg │ │ │ │ ├── labplot-auto-scale-all.svg │ │ │ │ ├── labplot-auto-scale-x.svg │ │ │ │ ├── labplot-auto-scale-y.svg │ │ │ │ ├── labplot-axis-horizontal.svg │ │ │ │ ├── labplot-axis-vertical.svg │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ ├── labplot-editbreaklayout.svg │ │ │ │ ├── labplot-editgrid.svg │ │ │ │ ├── labplot-edithlayout.svg │ │ │ │ ├── labplot-editvlayout.svg │ │ │ │ ├── labplot-format-text-symbol.svg │ │ │ │ ├── labplot-matrix-new.svg │ │ │ │ ├── labplot-matrix.svg │ │ │ │ ├── labplot-plot-axis-points.svg │ │ │ │ ├── labplot-shift-down-y.svg │ │ │ │ ├── labplot-shift-left-x.svg │ │ │ │ ├── labplot-shift-right-x.svg │ │ │ │ ├── labplot-shift-up-y.svg │ │ │ │ ├── labplot-spreadsheet-new.svg │ │ │ │ ├── labplot-spreadsheet.svg │ │ │ │ ├── labplot-transform-move.svg │ │ │ │ ├── labplot-workbook-new.svg │ │ │ │ ├── labplot-workbook.svg │ │ │ │ ├── labplot-worksheet-new.svg │ │ │ │ ├── labplot-worksheet.svg │ │ │ │ ├── labplot-xy-curve-points.svg │ │ │ │ ├── labplot-xy-curve-segments.svg │ │ │ │ ├── labplot-xy-curve.svg │ │ │ │ ├── labplot-xy-equation-curve.svg │ │ │ │ ├── labplot-xy-fit-curve.svg │ │ │ │ ├── labplot-xy-fourier-filter-curve.svg │ │ │ │ ├── labplot-xy-fourier-transform-curve.svg │ │ │ │ ├── labplot-xy-interpolation-curve.svg │ │ │ │ ├── labplot-xy-plot-four-axes.svg │ │ │ │ ├── labplot-xy-plot-two-axes-centered-origin.svg │ │ │ │ ├── labplot-xy-plot-two-axes-centered.svg │ │ │ │ ├── labplot-xy-plot-two-axes.svg │ │ │ │ ├── labplot-xy-smoothing-curve.svg │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ ├── language-chooser.svg │ │ │ │ ├── languages.svg │ │ │ │ ├── latex-config.svg │ │ │ │ ├── latex.svg │ │ │ │ ├── layer-visible-off.svg │ │ │ │ ├── layer-visible-on.svg │ │ │ │ ├── lensautofix.svg │ │ │ │ ├── lensdistortion.svg │ │ │ │ ├── libpeas-plugin.svg │ │ │ │ ├── license.svg │ │ │ │ ├── lighttable.svg │ │ │ │ ├── lighttableadd.svg │ │ │ │ ├── lilypond.svg │ │ │ │ ├── linear.svg │ │ │ │ ├── lines-connector.svg │ │ │ │ ├── link.svg │ │ │ │ ├── list-add-font.svg │ │ │ │ ├── list-add-user.svg │ │ │ │ ├── list-add.svg │ │ │ │ ├── list-remove-user.svg │ │ │ │ ├── list-remove.svg │ │ │ │ ├── list-resource-add.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── love-amarok.svg │ │ │ │ ├── love.svg │ │ │ │ ├── low-brightness.svg │ │ │ │ ├── mail-attachment.svg │ │ │ │ ├── mail-deleted.svg │ │ │ │ ├── mail-download-later.svg │ │ │ │ ├── mail-download-now.svg │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ ├── mail-encrypted.svg │ │ │ │ ├── mail-flag.svg │ │ │ │ ├── mail-forward.svg │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ ├── mail-forwarded.svg │ │ │ │ ├── mail-invitation.svg │ │ │ │ ├── mail-mark-important.svg │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ ├── mail-mark-read.svg │ │ │ │ ├── mail-mark-task.svg │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ ├── mail-message-new.svg │ │ │ │ ├── mail-message.svg │ │ │ │ ├── mail-queue.svg │ │ │ │ ├── mail-queued.svg │ │ │ │ ├── mail-read.svg │ │ │ │ ├── mail-receive.svg │ │ │ │ ├── mail-replied.svg │ │ │ │ ├── mail-reply-all.svg │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ ├── mail-reply-list.svg │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ ├── mail-send.svg │ │ │ │ ├── mail-sent.svg │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ ├── mail-signed-full.svg │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ ├── mail-signed-part.svg │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ ├── mail-signed.svg │ │ │ │ ├── mail-tagged.svg │ │ │ │ ├── mail-task.svg │ │ │ │ ├── mail-thread-ignored.svg │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ ├── mail-unread-new.svg │ │ │ │ ├── mail-unread.svg │ │ │ │ ├── makeidx.svg │ │ │ │ ├── map-flat.svg │ │ │ │ ├── map-globe.svg │ │ │ │ ├── map-gnomonic.svg │ │ │ │ ├── map-mercator.svg │ │ │ │ ├── markasblank.svg │ │ │ │ ├── math0.svg │ │ │ │ ├── mathmode.svg │ │ │ │ ├── measure.svg │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ ├── media-album-cover.svg │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ ├── media-album-track.svg │ │ │ │ ├── media-eject.svg │ │ │ │ ├── media-mount.svg │ │ │ │ ├── media-playback-pause.svg │ │ │ │ ├── media-playback-start.svg │ │ │ │ ├── media-playback-stop.svg │ │ │ │ ├── media-playlist-append.svg │ │ │ │ ├── media-playlist-normal.svg │ │ │ │ ├── media-playlist-play.svg │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ ├── media-record.svg │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ ├── media-repeat-all.svg │ │ │ │ ├── media-repeat-none.svg │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ ├── media-repeat-single.svg │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ ├── media-seek-backward.svg │ │ │ │ ├── media-seek-forward.svg │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ ├── media-skip-backward.svg │ │ │ │ ├── media-skip-forward.svg │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ ├── media-track-show-active.svg │ │ │ │ ├── medskip.svg │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ ├── meeting-attending.svg │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ ├── menu_new.svg │ │ │ │ ├── menu_new_sep.svg │ │ │ │ ├── merge.svg │ │ │ │ ├── messagebox_warning.svg │ │ │ │ ├── milestone.svg │ │ │ │ ├── minuet-chords.svg │ │ │ │ ├── minuet-intervals.svg │ │ │ │ ├── minuet-rhythms.svg │ │ │ │ ├── minuet-scales.svg │ │ │ │ ├── mode1.svg │ │ │ │ ├── mode2.svg │ │ │ │ ├── mode3.svg │ │ │ │ ├── mode4.svg │ │ │ │ ├── mode5.svg │ │ │ │ ├── modified.svg │ │ │ │ ├── motion_path_animations.svg │ │ │ │ ├── mpost.svg │ │ │ │ ├── msgid2msgstr.svg │ │ │ │ ├── multirow.svg │ │ │ │ ├── music-amarok.svg │ │ │ │ ├── music-note-16th.svg │ │ │ │ ├── network-connect.svg │ │ │ │ ├── network-disconnect.svg │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ ├── new-command-alarm.svg │ │ │ │ ├── newline.svg │ │ │ │ ├── news-subscribe.svg │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ ├── nextfuzzy.svg │ │ │ │ ├── nextfuzzyuntrans.svg │ │ │ │ ├── nextuntranslated.svg │ │ │ │ ├── nocover.svg │ │ │ │ ├── node-add.svg │ │ │ │ ├── node-break.svg │ │ │ │ ├── node-delete-segment.svg │ │ │ │ ├── node-delete.svg │ │ │ │ ├── node-join-segment.svg │ │ │ │ ├── node-join.svg │ │ │ │ ├── node-segment-curve.svg │ │ │ │ ├── node-segment-line.svg │ │ │ │ ├── node-transform.svg │ │ │ │ ├── node-type-auto-smooth.svg │ │ │ │ ├── node-type-cusp.svg │ │ │ │ ├── node-type-smooth.svg │ │ │ │ ├── node-type-symmetric.svg │ │ │ │ ├── node.svg │ │ │ │ ├── noisereduction.svg │ │ │ │ ├── note.svg │ │ │ │ ├── notifications-disabled.svg │ │ │ │ ├── notifications.svg │ │ │ │ ├── nroot.svg │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ ├── object-columns.svg │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ ├── object-group-calligra.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-locked.svg │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ ├── object-order-back.svg │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ ├── object-order-front.svg │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ ├── object-order-lower.svg │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ ├── object-order-raise.svg │ │ │ │ ├── object-rotate-left.svg │ │ │ │ ├── object-rotate-right.svg │ │ │ │ ├── object-rows.svg │ │ │ │ ├── object-to-path.svg │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── object-unlocked.svg │ │ │ │ ├── object.svg │ │ │ │ ├── object_node.svg │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ ├── office-chart-area.svg │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ ├── office-chart-bar.svg │ │ │ │ ├── office-chart-line-forecast.svg │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ ├── office-chart-line.svg │ │ │ │ ├── office-chart-pie.svg │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ ├── office-chart-polar.svg │ │ │ │ ├── office-chart-ring.svg │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ ├── office-report.svg │ │ │ │ ├── offline-settings.svg │ │ │ │ ├── offline.svg │ │ │ │ ├── oilpaint.svg │ │ │ │ ├── online.svg │ │ │ │ ├── open-for-editing.svg │ │ │ │ ├── output_win.svg │ │ │ │ ├── overexposure.svg │ │ │ │ ├── overflow-menu-left.svg │ │ │ │ ├── overflow-menu-right.svg │ │ │ │ ├── overflow-menu.svg │ │ │ │ ├── package.svg │ │ │ │ ├── page-2sides.svg │ │ │ │ ├── page-3sides.svg │ │ │ │ ├── page-4sides.svg │ │ │ │ ├── page-simple.svg │ │ │ │ ├── page-zoom.svg │ │ │ │ ├── paint-none.svg │ │ │ │ ├── paper-color.svg │ │ │ │ ├── password-copy.svg │ │ │ │ ├── password-generate.svg │ │ │ │ ├── password-show-off.svg │ │ │ │ ├── password-show-on.svg │ │ │ │ ├── path-clip-edit.svg │ │ │ │ ├── path-effect-parameter-next.svg │ │ │ │ ├── path-mask-edit.svg │ │ │ │ ├── path-mode-bezier.svg │ │ │ │ ├── path-mode-polyline-paraxial.svg │ │ │ │ ├── path-mode-polyline.svg │ │ │ │ ├── path-mode-spiro.svg │ │ │ │ ├── path-reverse.svg │ │ │ │ ├── path-simplify.svg │ │ │ │ ├── pathshape.svg │ │ │ │ ├── pdf-annotations.svg │ │ │ │ ├── pdflatex.svg │ │ │ │ ├── pdftex.svg │ │ │ │ ├── pentagon-shape.svg │ │ │ │ ├── perspective.svg │ │ │ │ ├── photo.svg │ │ │ │ ├── photos-amarok.svg │ │ │ │ ├── pin.svg │ │ │ │ ├── player-time.svg │ │ │ │ ├── player-volume-muted.svg │ │ │ │ ├── player-volume.svg │ │ │ │ ├── playlist-generator.svg │ │ │ │ ├── playlist-sort.svg │ │ │ │ ├── plugins.svg │ │ │ │ ├── podcast-amarok.svg │ │ │ │ ├── pointer.svg │ │ │ │ ├── polygon-add-nodes.svg │ │ │ │ ├── polygon-merge-nodes.svg │ │ │ │ ├── port.svg │ │ │ │ ├── postalcode.svg │ │ │ │ ├── practice-setup.svg │ │ │ │ ├── practice-start.svg │ │ │ │ ├── practice-stop.svg │ │ │ │ ├── precondition.svg │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ ├── preferences-other.svg │ │ │ │ ├── preferences-system-symbolic.svg │ │ │ │ ├── preflight-verifier.svg │ │ │ │ ├── presence_away.svg │ │ │ │ ├── presence_offline.svg │ │ │ │ ├── presence_online.svg │ │ │ │ ├── presence_unknown.svg │ │ │ │ ├── prevfuzzy.svg │ │ │ │ ├── prevfuzzyuntrans.svg │ │ │ │ ├── preview-add-zone.svg │ │ │ │ ├── preview-remove-all.svg │ │ │ │ ├── preview-remove-zone.svg │ │ │ │ ├── preview-render-off.svg │ │ │ │ ├── preview-render-on.svg │ │ │ │ ├── preview.svg │ │ │ │ ├── preview_math.svg │ │ │ │ ├── preview_sel.svg │ │ │ │ ├── prevuntranslated.svg │ │ │ │ ├── primarykey_constraint.svg │ │ │ │ ├── process-stop.svg │ │ │ │ ├── project-defaults.svg │ │ │ │ ├── project-development-close-all.svg │ │ │ │ ├── project-development-close.svg │ │ │ │ ├── project-development-new-template.svg │ │ │ │ ├── project-development.svg │ │ │ │ ├── project-open.svg │ │ │ │ ├── project_add.svg │ │ │ │ ├── project_archive.svg │ │ │ │ ├── project_rebuild.svg │ │ │ │ ├── project_remove.svg │ │ │ │ ├── project_show.svg │ │ │ │ ├── projectgrep.svg │ │ │ │ ├── ps2pdf.svg │ │ │ │ ├── qa.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quick.svg │ │ │ │ ├── quickopen-class.svg │ │ │ │ ├── quickopen-file.svg │ │ │ │ ├── quickopen-function.svg │ │ │ │ ├── quickopen.svg │ │ │ │ ├── quickview.svg │ │ │ │ ├── quickwizard.svg │ │ │ │ ├── raindrop.svg │ │ │ │ ├── randomize.svg │ │ │ │ ├── ratiocrop.svg │ │ │ │ ├── realization.svg │ │ │ │ ├── rectangle-shape.svg │ │ │ │ ├── redeyes.svg │ │ │ │ ├── refactor.svg │ │ │ │ ├── refreshstructure.svg │ │ │ │ ├── region.svg │ │ │ │ ├── relation.svg │ │ │ │ ├── relationship.svg │ │ │ │ ├── remove-amarok.svg │ │ │ │ ├── remove-link.svg │ │ │ │ ├── remove.svg │ │ │ │ ├── removecell.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ ├── resource-group-new.svg │ │ │ │ ├── resource-group.svg │ │ │ │ ├── restoration.svg │ │ │ │ ├── reverse.svg │ │ │ │ ├── roll.svg │ │ │ │ ├── routeplanning.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── run-build-clean.svg │ │ │ │ ├── run-build-configure.svg │ │ │ │ ├── run-build-file.svg │ │ │ │ ├── run-build-install-root.svg │ │ │ │ ├── run-build-install.svg │ │ │ │ ├── run-build-prune.svg │ │ │ │ ├── run-build.svg │ │ │ │ ├── run-clean.svg │ │ │ │ ├── run-install.svg │ │ │ │ ├── screen-rotate-auto-off.svg │ │ │ │ ├── screen-rotate-auto-on.svg │ │ │ │ ├── scriptnew.svg │ │ │ │ ├── scriptopen.svg │ │ │ │ ├── secure-card.svg │ │ │ │ ├── select-rectangular.svg │ │ │ │ ├── select.svg │ │ │ │ ├── selection.svg │ │ │ │ ├── send_signal.svg │ │ │ │ ├── services.svg │ │ │ │ ├── set-language.svg │ │ │ │ ├── settings-configure.svg │ │ │ │ ├── shallow-history.svg │ │ │ │ ├── shape-choose.svg │ │ │ │ ├── shape-cuboid.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── sharpenimage.svg │ │ │ │ ├── shear.svg │ │ │ │ ├── show-all-effects.svg │ │ │ │ ├── show-gpu-effects.svg │ │ │ │ ├── show-menu.svg │ │ │ │ ├── show-node-handles.svg │ │ │ │ ├── show-offline.svg │ │ │ │ ├── show-path-outline.svg │ │ │ │ ├── show_table_column.svg │ │ │ │ ├── show_table_row.svg │ │ │ │ ├── shuffle.svg │ │ │ │ ├── sidebar-collapse-left.svg │ │ │ │ ├── sidebar-collapse-right.svg │ │ │ │ ├── sidebar-collapse.svg │ │ │ │ ├── sidebar-expand-left.svg │ │ │ │ ├── sidebar-expand-right.svg │ │ │ │ ├── sidebar-expand.svg │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ ├── skg-chart-bubble.svg │ │ │ │ ├── skrooge_credit_card.svg │ │ │ │ ├── skrooge_less.svg │ │ │ │ ├── skrooge_more.svg │ │ │ │ ├── skrooge_much_less.svg │ │ │ │ ├── skrooge_much_more.svg │ │ │ │ ├── skrooge_type.svg │ │ │ │ ├── slanted.svg │ │ │ │ ├── smallclock.svg │ │ │ │ ├── smallfrac.svg │ │ │ │ ├── smallskip.svg │ │ │ │ ├── smartnewline.svg │ │ │ │ ├── smiley-add.svg │ │ │ │ ├── smiley-shape.svg │ │ │ │ ├── smiley.svg │ │ │ │ ├── smooth.svg │ │ │ │ ├── snap-angle.svg │ │ │ │ ├── snap-bounding-box-center.svg │ │ │ │ ├── snap-bounding-box-corners.svg │ │ │ │ ├── snap-bounding-box-edges.svg │ │ │ │ ├── snap-bounding-box-midpoints.svg │ │ │ │ ├── snap-bounding-box.svg │ │ │ │ ├── snap-extension.svg │ │ │ │ ├── snap-grid-guide-intersections.svg │ │ │ │ ├── snap-guideline.svg │ │ │ │ ├── snap-intersection.svg │ │ │ │ ├── snap-node.svg │ │ │ │ ├── snap-nodes-center.svg │ │ │ │ ├── snap-nodes-cusp.svg │ │ │ │ ├── snap-nodes-intersection.svg │ │ │ │ ├── snap-nodes-midpoint.svg │ │ │ │ ├── snap-nodes-path.svg │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ ├── snap-nodes-smooth.svg │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ ├── snap-page.svg │ │ │ │ ├── snap-text-baseline.svg │ │ │ │ ├── snap.svg │ │ │ │ ├── social.svg │ │ │ │ ├── sort-name.svg │ │ │ │ ├── sort-presence.svg │ │ │ │ ├── sort_incr.svg │ │ │ │ ├── speaker.svg │ │ │ │ ├── special_paste.svg │ │ │ │ ├── specific-setup.svg │ │ │ │ ├── speedometer.svg │ │ │ │ ├── spiral-shape.svg │ │ │ │ ├── split.svg │ │ │ │ ├── spreadsheetshape.svg │ │ │ │ ├── sqrt.svg │ │ │ │ ├── standard-connector.svg │ │ │ │ ├── star-shape.svg │ │ │ │ ├── start-over.svg │ │ │ │ ├── state-fork.svg │ │ │ │ ├── stateshape.svg │ │ │ │ ├── statetool.svg │ │ │ │ ├── step_object_Anchor.svg │ │ │ │ ├── step_object_Box.svg │ │ │ │ ├── step_object_ChargedParticle.svg │ │ │ │ ├── step_object_CircularMotor.svg │ │ │ │ ├── step_object_Controller.svg │ │ │ │ ├── step_object_CoulombForce.svg │ │ │ │ ├── step_object_Disk.svg │ │ │ │ ├── step_object_Gas.svg │ │ │ │ ├── step_object_GasParticle.svg │ │ │ │ ├── step_object_Graph.svg │ │ │ │ ├── step_object_GravitationForce.svg │ │ │ │ ├── step_object_LinearMotor.svg │ │ │ │ ├── step_object_Meter.svg │ │ │ │ ├── step_object_Note.svg │ │ │ │ ├── step_object_Particle.svg │ │ │ │ ├── step_object_Pin.svg │ │ │ │ ├── step_object_Polygon.svg │ │ │ │ ├── step_object_Rope.svg │ │ │ │ ├── step_object_SoftBody.svg │ │ │ │ ├── step_object_Spring.svg │ │ │ │ ├── step_object_Stick.svg │ │ │ │ ├── step_object_Tracer.svg │ │ │ │ ├── step_object_WeightForce.svg │ │ │ │ ├── stickers.svg │ │ │ │ ├── story-editor.svg │ │ │ │ ├── straight-connector.svg │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ ├── stroke-join-round.svg │ │ │ │ ├── stroke-to-path.svg │ │ │ │ ├── strong.svg │ │ │ │ ├── structure.svg │ │ │ │ ├── subsystem.svg │ │ │ │ ├── svn-commit.svg │ │ │ │ ├── svn-update.svg │ │ │ │ ├── swap-panels.svg │ │ │ │ ├── system-hibernate.svg │ │ │ │ ├── system-lock-screen.svg │ │ │ │ ├── system-log-out-rtl.svg │ │ │ │ ├── system-log-out.svg │ │ │ │ ├── system-reboot.svg │ │ │ │ ├── system-run.svg │ │ │ │ ├── system-save-session.svg │ │ │ │ ├── system-search.svg │ │ │ │ ├── system-shutdown.svg │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ ├── system-suspend.svg │ │ │ │ ├── system-switch-user.svg │ │ │ │ ├── system-upgrade.svg │ │ │ │ ├── system-users.svg │ │ │ │ ├── tab-close-other.svg │ │ │ │ ├── tab-close.svg │ │ │ │ ├── tab-detach.svg │ │ │ │ ├── tab-duplicate.svg │ │ │ │ ├── tab-new-background.svg │ │ │ │ ├── tab-new.svg │ │ │ │ ├── table.svg │ │ │ │ ├── tag-addressbook.svg │ │ │ │ ├── tag-assigned.svg │ │ │ │ ├── tag-delete.svg │ │ │ │ ├── tag-edit.svg │ │ │ │ ├── tag-events.svg │ │ │ │ ├── tag-folder.svg │ │ │ │ ├── tag-new.svg │ │ │ │ ├── tag-people.svg │ │ │ │ ├── tag-places.svg │ │ │ │ ├── tag-properties.svg │ │ │ │ ├── tag-recents.svg │ │ │ │ ├── tag-reset.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── task-new.svg │ │ │ │ ├── taxes-finances.svg │ │ │ │ ├── template.svg │ │ │ │ ├── texcompiler.svg │ │ │ │ ├── texlion.svg │ │ │ │ ├── text-field-framed.svg │ │ │ │ ├── text-field-frameless.svg │ │ │ │ ├── text-field.svg │ │ │ │ ├── text-flow-into-frame.svg │ │ │ │ ├── text-frame-link.svg │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ ├── text-speak.svg │ │ │ │ ├── text-unflow.svg │ │ │ │ ├── text-wrap.svg │ │ │ │ ├── text_horz_kern.svg │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ ├── text_line_spacing.svg │ │ │ │ ├── text_remove_kerns.svg │ │ │ │ ├── text_rotation.svg │ │ │ │ ├── text_subscript.svg │ │ │ │ ├── text_superscript.svg │ │ │ │ ├── text_vert_kern.svg │ │ │ │ ├── text_word_spacing.svg │ │ │ │ ├── texture.svg │ │ │ │ ├── timeline-extract.svg │ │ │ │ ├── timeline-insert.svg │ │ │ │ ├── timeline-lift.svg │ │ │ │ ├── timeline-overwrite.svg │ │ │ │ ├── timeline-use-zone-off.svg │ │ │ │ ├── timeline-use-zone-on.svg │ │ │ │ ├── tool-animator.svg │ │ │ │ ├── tool-measure.svg │ │ │ │ ├── tool-node-editor.svg │ │ │ │ ├── tool-pointer.svg │ │ │ │ ├── tool-spray.svg │ │ │ │ ├── tool-text.svg │ │ │ │ ├── tool-tweak.svg │ │ │ │ ├── tool_brush.svg │ │ │ │ ├── tool_cellformatting.svg │ │ │ │ ├── tool_color_eraser.svg │ │ │ │ ├── tool_color_picker.svg │ │ │ │ ├── tool_curve.svg │ │ │ │ ├── tool_ellipse.svg │ │ │ │ ├── tool_elliptical_selection.svg │ │ │ │ ├── tool_eraser.svg │ │ │ │ ├── tool_flood_fill.svg │ │ │ │ ├── tool_free_form_selection.svg │ │ │ │ ├── tool_imageeffects.svg │ │ │ │ ├── tool_line.svg │ │ │ │ ├── tool_pagelayout.svg │ │ │ │ ├── tool_pen.svg │ │ │ │ ├── tool_polygon.svg │ │ │ │ ├── tool_polyline.svg │ │ │ │ ├── tool_rect_selection.svg │ │ │ │ ├── tool_rectangle.svg │ │ │ │ ├── tool_references.svg │ │ │ │ ├── tool_review.svg │ │ │ │ ├── tool_rounded_rectangle.svg │ │ │ │ ├── tool_spraycan.svg │ │ │ │ ├── tool_text.svg │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ ├── tools-report-bug.svg │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ ├── tools-wizard.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── torrents.svg │ │ │ │ ├── transform-browse.svg │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ ├── transform-crop.svg │ │ │ │ ├── transform-move-horizontal.svg │ │ │ │ ├── transform-move-vertical.svg │ │ │ │ ├── transform-move.svg │ │ │ │ ├── transform-rotate.svg │ │ │ │ ├── transform-scale-horizontal.svg │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ ├── transform-scale-vertical.svg │ │ │ │ ├── transform-scale.svg │ │ │ │ ├── transform-shear-down.svg │ │ │ │ ├── transform-shear-left.svg │ │ │ │ ├── transform-shear-right.svg │ │ │ │ ├── transform-shear-up.svg │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ ├── transsearch.svg │ │ │ │ ├── trash-empty.svg │ │ │ │ ├── trim-margins.svg │ │ │ │ ├── trim-to-selection.svg │ │ │ │ ├── typewriter.svg │ │ │ │ ├── umbr-coll-message-asynchronous.svg │ │ │ │ ├── umbr-coll-message-synchronous.svg │ │ │ │ ├── umbr-message-asynchronous.svg │ │ │ │ ├── umbr-message-found.svg │ │ │ │ ├── umbr-message-lost.svg │ │ │ │ ├── umbr-message-synchronous.svg │ │ │ │ ├── umbrello_diagram_activity.svg │ │ │ │ ├── umbrello_diagram_class.svg │ │ │ │ ├── umbrello_diagram_collaboration.svg │ │ │ │ ├── umbrello_diagram_component.svg │ │ │ │ ├── umbrello_diagram_deployment.svg │ │ │ │ ├── umbrello_diagram_entityrelationship.svg │ │ │ │ ├── umbrello_diagram_sequence.svg │ │ │ │ ├── umbrello_diagram_state.svg │ │ │ │ ├── umbrello_diagram_usecase.svg │ │ │ │ ├── underexposure.svg │ │ │ │ ├── uniassociation.svg │ │ │ │ ├── unique_constraint.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── unmarkasblank.svg │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ ├── upindicator.svg │ │ │ │ ├── upload-media.svg │ │ │ │ ├── usecase.svg │ │ │ │ ├── user-group-delete.svg │ │ │ │ ├── user-group-new.svg │ │ │ │ ├── user-group-properties.svg │ │ │ │ ├── user-identity.svg │ │ │ │ ├── user-others.svg │ │ │ │ ├── user-properties.svg │ │ │ │ ├── user.svg │ │ │ │ ├── username-copy.svg │ │ │ │ ├── vcs-branch-delete.svg │ │ │ │ ├── vcs-branch.svg │ │ │ │ ├── vcs-commit-cvs-cervisia.svg │ │ │ │ ├── vcs-commit.svg │ │ │ │ ├── vcs-diff-cvs-cervisia.svg │ │ │ │ ├── vcs-diff.svg │ │ │ │ ├── vcs-merge-request.svg │ │ │ │ ├── vcs-merge.svg │ │ │ │ ├── vcs-pull.svg │ │ │ │ ├── vcs-push.svg │ │ │ │ ├── vcs-remove-cvs-cervisia.svg │ │ │ │ ├── vcs-stash-pop.svg │ │ │ │ ├── vcs-stash.svg │ │ │ │ ├── vcs-status-cvs-cervisia.svg │ │ │ │ ├── vcs-update-cvs-cervisia.svg │ │ │ │ ├── verb.svg │ │ │ │ ├── verbatim.svg │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ ├── view-bank-add.svg │ │ │ │ ├── view-bank-delete.svg │ │ │ │ ├── view-bank-edit.svg │ │ │ │ ├── view-bank.svg │ │ │ │ ├── view-barcode-add.svg │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ ├── view-barcode.svg │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ ├── view-calendar-day.svg │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ ├── view-calendar-list.svg │ │ │ │ ├── view-calendar-month.svg │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ ├── view-calendar-week.svg │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ ├── view-calendar.svg │ │ │ │ ├── view-catalog.svg │ │ │ │ ├── view-categories-expenditures.svg │ │ │ │ ├── view-categories-incomes.svg │ │ │ │ ├── view-certificate-add.svg │ │ │ │ ├── view-certificate-export-secret.svg │ │ │ │ ├── view-certificate-export-server.svg │ │ │ │ ├── view-certificate-export.svg │ │ │ │ ├── view-certificate-import.svg │ │ │ │ ├── view-certificate-server-configure.svg │ │ │ │ ├── view-certificate-sign.svg │ │ │ │ ├── view-certificate.svg │ │ │ │ ├── view-close.svg │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ ├── view-currency-list.svg │ │ │ │ ├── view-file-columns.svg │ │ │ │ ├── view-filter.svg │ │ │ │ ├── view-financial-account-add.svg │ │ │ │ ├── view-financial-account-asset-closed.svg │ │ │ │ ├── view-financial-account-asset.svg │ │ │ │ ├── view-financial-account-cash-closed.svg │ │ │ │ ├── view-financial-account-cash.svg │ │ │ │ ├── view-financial-account-checking-closed.svg │ │ │ │ ├── view-financial-account-checking.svg │ │ │ │ ├── view-financial-account-close.svg │ │ │ │ ├── view-financial-account-closed.svg │ │ │ │ ├── view-financial-account-credit-card-closed.svg │ │ │ │ ├── view-financial-account-credit-card.svg │ │ │ │ ├── view-financial-account-delete.svg │ │ │ │ ├── view-financial-account-edit.svg │ │ │ │ ├── view-financial-account-investment-closed.svg │ │ │ │ ├── view-financial-account-investment-security-closed.svg │ │ │ │ ├── view-financial-account-investment-security.svg │ │ │ │ ├── view-financial-account-investment.svg │ │ │ │ ├── view-financial-account-liability-closed.svg │ │ │ │ ├── view-financial-account-liability.svg │ │ │ │ ├── view-financial-account-loan-closed.svg │ │ │ │ ├── view-financial-account-loan.svg │ │ │ │ ├── view-financial-account-reopen.svg │ │ │ │ ├── view-financial-account-savings-closed.svg │ │ │ │ ├── view-financial-account-savings.svg │ │ │ │ ├── view-financial-account.svg │ │ │ │ ├── view-financial-budget.svg │ │ │ │ ├── view-financial-category-add.svg │ │ │ │ ├── view-financial-category-delete.svg │ │ │ │ ├── view-financial-category-edit.svg │ │ │ │ ├── view-financial-category-expense.svg │ │ │ │ ├── view-financial-category-income.svg │ │ │ │ ├── view-financial-category.svg │ │ │ │ ├── view-financial-list.svg │ │ │ │ ├── view-financial-transfer-reconcile.svg │ │ │ │ ├── view-financial-transfer-reconciled.svg │ │ │ │ ├── view-financial-transfer-unreconciled.svg │ │ │ │ ├── view-form-action.svg │ │ │ │ ├── view-form.svg │ │ │ │ ├── view-fullscreen.svg │ │ │ │ ├── view-grid.svg │ │ │ │ ├── view-group.svg │ │ │ │ ├── view-hidden.svg │ │ │ │ ├── view-history.svg │ │ │ │ ├── view-institution-add.svg │ │ │ │ ├── view-institution-delete.svg │ │ │ │ ├── view-institution-edit.svg │ │ │ │ ├── view-institution.svg │ │ │ │ ├── view-left-close.svg │ │ │ │ ├── view-list-details.svg │ │ │ │ ├── view-list-icons.svg │ │ │ │ ├── view-list-text.svg │ │ │ │ ├── view-list-tree.svg │ │ │ │ ├── view-media-album-cover.svg │ │ │ │ ├── view-media-artist.svg │ │ │ │ ├── view-media-chart.svg │ │ │ │ ├── view-media-config.svg │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ ├── view-media-favorite.svg │ │ │ │ ├── view-media-genre.svg │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ ├── view-media-playcount.svg │ │ │ │ ├── view-media-playlist.svg │ │ │ │ ├── view-media-publisher.svg │ │ │ │ ├── view-media-recent.svg │ │ │ │ ├── view-media-similarartists.svg │ │ │ │ ├── view-media-title.svg │ │ │ │ ├── view-media-track.svg │ │ │ │ ├── view-media-visualization.svg │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ ├── view-pages-continuous.svg │ │ │ │ ├── view-pages-facing-first-centered.svg │ │ │ │ ├── view-pages-facing.svg │ │ │ │ ├── view-pages-overview.svg │ │ │ │ ├── view-pages-single.svg │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ ├── view-pim-journal.svg │ │ │ │ ├── view-pim-mail.svg │ │ │ │ ├── view-pim-news.svg │ │ │ │ ├── view-pim-notes.svg │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ ├── view-presentation.svg │ │ │ │ ├── view-preview.svg │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ ├── view-process-all.svg │ │ │ │ ├── view-process-own.svg │ │ │ │ ├── view-process-system.svg │ │ │ │ ├── view-process-tree.svg │ │ │ │ ├── view-process-users.svg │ │ │ │ ├── view-refresh.svg │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ ├── view-restore.svg │ │ │ │ ├── view-right-close.svg │ │ │ │ ├── view-right-new.svg │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ ├── view-sidetree.svg │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ ├── view-sort-descending.svg │ │ │ │ ├── view-sort.svg │ │ │ │ ├── view-split-effect.svg │ │ │ │ ├── view-split-left-right.svg │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ ├── view-statistics.svg │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ ├── view-task-add.svg │ │ │ │ ├── view-task-child-add.svg │ │ │ │ ├── view-task-child.svg │ │ │ │ ├── view-task.svg │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ ├── view-time-schedule.svg │ │ │ │ ├── view-unsplit-effect.svg │ │ │ │ ├── view-visible.svg │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ ├── view_fit_to_page.svg │ │ │ │ ├── viewbib.svg │ │ │ │ ├── viewdvi.svg │ │ │ │ ├── viewhtml.svg │ │ │ │ ├── viewimage.svg │ │ │ │ ├── viewlog.svg │ │ │ │ ├── viewpdf.svg │ │ │ │ ├── viewps.svg │ │ │ │ ├── virtual-desktops.svg │ │ │ │ ├── visibility.svg │ │ │ │ ├── wallet-closed.svg │ │ │ │ ├── wallet-open.svg │ │ │ │ ├── warnnext.svg │ │ │ │ ├── warnprev.svg │ │ │ │ ├── whitebalance.svg │ │ │ │ ├── widget-alternatives.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-duplicate.svg │ │ │ │ ├── window-keep-above.svg │ │ │ │ ├── window-keep-below.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-new.svg │ │ │ │ ├── window-pin.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── window-shade.svg │ │ │ │ ├── window-unpin.svg │ │ │ │ ├── window-unshade.svg │ │ │ │ ├── window.svg │ │ │ │ ├── wizard_math.svg │ │ │ │ ├── wizard_pdftools.svg │ │ │ │ ├── wizard_pstools.svg │ │ │ │ ├── wizard_tabular.svg │ │ │ │ ├── x-clementine-album.svg │ │ │ │ ├── x-clementine-albums.svg │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ ├── x-shape-connection.svg │ │ │ │ ├── x-shape-formula.svg │ │ │ │ ├── x-shape-image.svg │ │ │ │ ├── x-shape-text.svg │ │ │ │ ├── xfsm-hibernate.svg │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ ├── xml-element-new.svg │ │ │ │ ├── xml-node-delete.svg │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ ├── xml-text-new.svg │ │ │ │ ├── y-zoom-in.svg │ │ │ │ ├── zone-in.svg │ │ │ │ ├── zone-out.svg │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ ├── zoom-draw.svg │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ ├── zoom-fit-page.svg │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ ├── zoom-in-large.svg │ │ │ │ ├── zoom-in-x.svg │ │ │ │ ├── zoom-in.svg │ │ │ │ ├── zoom-next.svg │ │ │ │ ├── zoom-original.svg │ │ │ │ ├── zoom-out-large.svg │ │ │ │ ├── zoom-out-x.svg │ │ │ │ ├── zoom-out-y.svg │ │ │ │ ├── zoom-out.svg │ │ │ │ ├── zoom-pixels.svg │ │ │ │ ├── zoom-previous.svg │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ ├── zoom-select-x.svg │ │ │ │ ├── zoom-select-y.svg │ │ │ │ ├── zoom-select.svg │ │ │ │ └── zoom.svg │ │ │ ├── 32 │ │ │ │ ├── acrobat.svg │ │ │ │ ├── address-book-new.svg │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ ├── align-vertical-center.svg │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ ├── align-vertical-top.svg │ │ │ │ ├── application-exit.svg │ │ │ │ ├── application-menu.svg │ │ │ │ ├── appointment-new.svg │ │ │ │ ├── archive-extract.svg │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ ├── archive-insert.svg │ │ │ │ ├── archive-remove.svg │ │ │ │ ├── arrow-down-double.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left-double.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right-double.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up-double.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrow.svg │ │ │ │ ├── autocorrection.svg │ │ │ │ ├── blurimage.svg │ │ │ │ ├── bookmark-new.svg │ │ │ │ ├── bookmark-remove.svg │ │ │ │ ├── bookmarks.svg │ │ │ │ ├── bordertool.svg │ │ │ │ ├── call-start.svg │ │ │ │ ├── call-stop.svg │ │ │ │ ├── collapse-all.svg │ │ │ │ ├── collapse.svg │ │ │ │ ├── color-management.svg │ │ │ │ ├── color-picker-black.svg │ │ │ │ ├── color-picker-grey.svg │ │ │ │ ├── color-picker-white.svg │ │ │ │ ├── color-picker.svg │ │ │ │ ├── colormanagement.svg │ │ │ │ ├── colors-chromablue.svg │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ ├── colors-chromared.svg │ │ │ │ ├── colors-luma.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ ├── configure.svg │ │ │ │ ├── cursor-arrow.svg │ │ │ │ ├── cursor-cross.svg │ │ │ │ ├── dialog-cancel.svg │ │ │ │ ├── dialog-messages.svg │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ ├── dialog-ok.svg │ │ │ │ ├── document-close.svg │ │ │ │ ├── document-decrypt.svg │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ ├── document-edit-sign.svg │ │ │ │ ├── document-edit.svg │ │ │ │ ├── document-encrypted.svg │ │ │ │ ├── document-export.svg │ │ │ │ ├── document-import.svg │ │ │ │ ├── document-new-from-template.svg │ │ │ │ ├── document-new.svg │ │ │ │ ├── document-open-folder.svg │ │ │ │ ├── document-open-remote.svg │ │ │ │ ├── document-open.svg │ │ │ │ ├── document-preview-archive.svg │ │ │ │ ├── document-preview.svg │ │ │ │ ├── document-print-direct.svg │ │ │ │ ├── document-print.svg │ │ │ │ ├── document-properties.svg │ │ │ │ ├── document-replace.svg │ │ │ │ ├── document-revert.svg │ │ │ │ ├── document-save-all.svg │ │ │ │ ├── document-save-as.svg │ │ │ │ ├── document-save.svg │ │ │ │ ├── document-share.svg │ │ │ │ ├── donate.svg │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ ├── edit-delete.svg │ │ │ │ ├── edit-redo.svg │ │ │ │ ├── edit-reset.svg │ │ │ │ ├── edit-select.svg │ │ │ │ ├── edit-undo.svg │ │ │ │ ├── editor.svg │ │ │ │ ├── expand-all.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── file-zoom-in.svg │ │ │ │ ├── file-zoom-out.svg │ │ │ │ ├── financial-account.svg │ │ │ │ ├── financial-budget.svg │ │ │ │ ├── financial-list.svg │ │ │ │ ├── financial-payees.svg │ │ │ │ ├── flash.svg │ │ │ │ ├── flashlight-off.svg │ │ │ │ ├── flashlight-on.svg │ │ │ │ ├── folder-new.svg │ │ │ │ ├── folder-sync.svg │ │ │ │ ├── format-stroke-color.svg │ │ │ │ ├── games-config-custom.svg │ │ │ │ ├── games-config-options.svg │ │ │ │ ├── gnumeric-format-halign-distributed.svg │ │ │ │ ├── gnumeric-format-valign-bottom.svg │ │ │ │ ├── gnumeric-format-valign-center.svg │ │ │ │ ├── gnumeric-format-valign-distributed.svg │ │ │ │ ├── gnumeric-format-valign-justify.svg │ │ │ │ ├── gnumeric-format-valign-top.svg │ │ │ │ ├── go-bottom.svg │ │ │ │ ├── go-down-skip.svg │ │ │ │ ├── go-down.svg │ │ │ │ ├── go-first.svg │ │ │ │ ├── go-jump.svg │ │ │ │ ├── go-last.svg │ │ │ │ ├── go-next-skip.svg │ │ │ │ ├── go-next.svg │ │ │ │ ├── go-parent-folder.svg │ │ │ │ ├── go-previous-skip.svg │ │ │ │ ├── go-previous.svg │ │ │ │ ├── go-top.svg │ │ │ │ ├── go-up-skip.svg │ │ │ │ ├── go-up.svg │ │ │ │ ├── gtk-ok.svg │ │ │ │ ├── gtk-preferences.svg │ │ │ │ ├── help-about.svg │ │ │ │ ├── help-donate.svg │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ ├── help-whatsthis.svg │ │ │ │ ├── home.svg │ │ │ │ ├── institution.svg │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ ├── mail-attachment.svg │ │ │ │ ├── mail-deleted.svg │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ ├── mail-encrypted.svg │ │ │ │ ├── mail-flag.svg │ │ │ │ ├── mail-forward.svg │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ ├── mail-forwarded.svg │ │ │ │ ├── mail-invitation.svg │ │ │ │ ├── mail-mark-important.svg │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ ├── mail-mark-read.svg │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ ├── mail-message-new.svg │ │ │ │ ├── mail-message.svg │ │ │ │ ├── mail-queue.svg │ │ │ │ ├── mail-queued.svg │ │ │ │ ├── mail-read.svg │ │ │ │ ├── mail-replied.svg │ │ │ │ ├── mail-reply-all.svg │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ ├── mail-reply-list.svg │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ ├── mail-send.svg │ │ │ │ ├── mail-sent.svg │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ ├── mail-signed-full.svg │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ ├── mail-signed-part.svg │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ ├── mail-signed.svg │ │ │ │ ├── mail-tagged.svg │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ ├── mail-unread-new.svg │ │ │ │ ├── mail-unread.svg │ │ │ │ ├── media-eject.svg │ │ │ │ ├── media-playback-pause.svg │ │ │ │ ├── media-playback-start.svg │ │ │ │ ├── media-playback-stop.svg │ │ │ │ ├── media-playlist-normal.svg │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ ├── media-record.svg │ │ │ │ ├── media-repeat-all.svg │ │ │ │ ├── media-repeat-none.svg │ │ │ │ ├── media-repeat-single.svg │ │ │ │ ├── media-seek-backward.svg │ │ │ │ ├── media-seek-forward.svg │ │ │ │ ├── media-skip-backward.svg │ │ │ │ ├── media-skip-forward.svg │ │ │ │ ├── multiple.svg │ │ │ │ ├── object-order-back.svg │ │ │ │ ├── object-order-front.svg │ │ │ │ ├── object-order-lower.svg │ │ │ │ ├── object-order-raise.svg │ │ │ │ ├── office-chart-pie.svg │ │ │ │ ├── output_win.svg │ │ │ │ ├── overflow-menu.svg │ │ │ │ ├── page-zoom.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── preferences-system-symbolic.svg │ │ │ │ ├── preview.svg │ │ │ │ ├── qa.svg │ │ │ │ ├── screen-rotate-auto-off.svg │ │ │ │ ├── screen-rotate-auto-on.svg │ │ │ │ ├── select.svg │ │ │ │ ├── settings-configure.svg │ │ │ │ ├── step_object_Controller.svg │ │ │ │ ├── system-hibernate.svg │ │ │ │ ├── system-lock-screen.svg │ │ │ │ ├── system-log-out-rtl.svg │ │ │ │ ├── system-log-out.svg │ │ │ │ ├── system-reboot.svg │ │ │ │ ├── system-save-session.svg │ │ │ │ ├── system-shutdown.svg │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ ├── system-suspend.svg │ │ │ │ ├── system-switch-user.svg │ │ │ │ ├── system-users.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── taxes-finances.svg │ │ │ │ ├── tool-pointer.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── trim-margins.svg │ │ │ │ ├── trim-to-selection.svg │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ ├── view-filter.svg │ │ │ │ ├── view-group.svg │ │ │ │ ├── view-left-close.svg │ │ │ │ ├── view-list-details.svg │ │ │ │ ├── view-list-icons.svg │ │ │ │ ├── view-list-text.svg │ │ │ │ ├── view-list-tree.svg │ │ │ │ ├── view-preview.svg │ │ │ │ ├── view-refresh.svg │ │ │ │ ├── view-right-close.svg │ │ │ │ ├── view-right-new.svg │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ ├── view-sort-descending.svg │ │ │ │ ├── view-sort.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── xfsm-hibernate.svg │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ ├── zoom-draw.svg │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ ├── zoom-fit-page.svg │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ ├── zoom-in-large.svg │ │ │ │ ├── zoom-in.svg │ │ │ │ ├── zoom-next.svg │ │ │ │ ├── zoom-original.svg │ │ │ │ ├── zoom-out-large.svg │ │ │ │ ├── zoom-out.svg │ │ │ │ ├── zoom-previous.svg │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ ├── zoom-select-x.svg │ │ │ │ ├── zoom-select-y.svg │ │ │ │ ├── zoom-select.svg │ │ │ │ └── zoom.svg │ │ │ ├── 48 │ │ │ │ ├── draw-freehand.svg │ │ │ │ ├── financial-account.svg │ │ │ │ ├── financial-categories.svg │ │ │ │ ├── financial-forecast.svg │ │ │ │ ├── financial-investments.svg │ │ │ │ ├── financial-list.svg │ │ │ │ ├── financial-report.svg │ │ │ │ ├── home.svg │ │ │ │ ├── institution.svg │ │ │ │ ├── view-history.svg │ │ │ │ └── view-presentation.svg │ │ │ ├── 64 │ │ │ │ ├── go-home.svg │ │ │ │ ├── media-default-album.svg │ │ │ │ ├── media-default-track.svg │ │ │ │ └── view-institution.svg │ │ │ └── symbolic │ │ │ │ ├── action-unavailable-symbolic.svg │ │ │ │ ├── address-book-new-symbolic.svg │ │ │ │ ├── application-exit-symbolic.svg │ │ │ │ ├── appointment-new-symbolic.svg │ │ │ │ ├── bookmark-add-symbolic.svg │ │ │ │ ├── bookmark-new-symbolic.svg │ │ │ │ ├── builder-view-left-pane-symbolic.svg │ │ │ │ ├── call-end-symbolic.svg │ │ │ │ ├── call-start-symbolic.svg │ │ │ │ ├── call-stop-symbolic.svg │ │ │ │ ├── call-voicemail-symbolic.svg │ │ │ │ ├── change-date-symbolic.svg │ │ │ │ ├── collapse-all-symbolic.svg │ │ │ │ ├── color-profile.svg │ │ │ │ ├── color-select-symbolic.svg │ │ │ │ ├── comment-symbolic.svg │ │ │ │ ├── contact-new-symbolic.svg │ │ │ │ ├── content-loading-symbolic.svg │ │ │ │ ├── document-edit-symbolic.svg │ │ │ │ ├── document-new-symbolic.svg │ │ │ │ ├── document-open-recent-symbolic.svg │ │ │ │ ├── document-open-symbolic.svg │ │ │ │ ├── document-page-setup-symbolic.svg │ │ │ │ ├── document-print-preview-symbolic.svg │ │ │ │ ├── document-print-symbolic.svg │ │ │ │ ├── document-properties-symbolic.svg │ │ │ │ ├── document-revert-symbolic-rtl.svg │ │ │ │ ├── document-revert-symbolic.svg │ │ │ │ ├── document-save-as-symbolic.svg │ │ │ │ ├── document-save-symbolic.svg │ │ │ │ ├── document-send-symbolic.svg │ │ │ │ ├── drag-handle-symbolic.svg │ │ │ │ ├── edit-clear-all-symbolic.svg │ │ │ │ ├── edit-clear-rtl-symbolic.svg │ │ │ │ ├── edit-clear-symbolic-rtl.svg │ │ │ │ ├── edit-clear-symbolic.svg │ │ │ │ ├── edit-copy-symbolic.svg │ │ │ │ ├── edit-cut-symbolic.svg │ │ │ │ ├── edit-delete-symbolic.svg │ │ │ │ ├── edit-find-replace-symbolic.svg │ │ │ │ ├── edit-find-symbolic.svg │ │ │ │ ├── edit-move-symbolic.svg │ │ │ │ ├── edit-paste-symbolic.svg │ │ │ │ ├── edit-redo-rtl-symbolic.svg │ │ │ │ ├── edit-redo-symbolic-rtl.svg │ │ │ │ ├── edit-redo-symbolic.svg │ │ │ │ ├── edit-select-all-symbolic.svg │ │ │ │ ├── edit-select-symbolic.svg │ │ │ │ ├── edit-symbolic.svg │ │ │ │ ├── edit-undo-rtl-symbolic.svg │ │ │ │ ├── edit-undo-symbolic-rtl.svg │ │ │ │ ├── edit-undo-symbolic.svg │ │ │ │ ├── expand-all-symbolic.svg │ │ │ │ ├── export-symbolic.svg │ │ │ │ ├── extension-symbolic.svg │ │ │ │ ├── file-catalog-symbolic.svg │ │ │ │ ├── file-library-symbolic.svg │ │ │ │ ├── file-search-symbolic.svg │ │ │ │ ├── filter-symbolic.svg │ │ │ │ ├── find-location-symbolic.svg │ │ │ │ ├── folder-new-symbolic.svg │ │ │ │ ├── font-select-symbolic.svg │ │ │ │ ├── format-indent-less-rtl-symbolic.svg │ │ │ │ ├── format-indent-less-symbolic-rtl.svg │ │ │ │ ├── format-indent-less-symbolic.svg │ │ │ │ ├── format-indent-more-rtl-symbolic.svg │ │ │ │ ├── format-indent-more-symbolic-rtl.svg │ │ │ │ ├── format-indent-more-symbolic.svg │ │ │ │ ├── format-justify-center-symbolic.svg │ │ │ │ ├── format-justify-fill-symbolic.svg │ │ │ │ ├── format-justify-left-symbolic.svg │ │ │ │ ├── format-justify-right-symbolic.svg │ │ │ │ ├── format-text-bold-symbolic.svg │ │ │ │ ├── format-text-direction-ltr-symbolic.svg │ │ │ │ ├── format-text-direction-rtl-symbolic.svg │ │ │ │ ├── format-text-direction-symbolic-rtl.svg │ │ │ │ ├── format-text-direction-symbolic.svg │ │ │ │ ├── format-text-italic-symbolic.svg │ │ │ │ ├── format-text-strikethrough-symbolic.svg │ │ │ │ ├── format-text-underline-symbolic.svg │ │ │ │ ├── go-bottom-symbolic.svg │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ ├── go-first-rtl-symbolic.svg │ │ │ │ ├── go-first-symbolic-rtl.svg │ │ │ │ ├── go-first-symbolic.svg │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ ├── go-jump-rtl-symbolic.svg │ │ │ │ ├── go-jump-symbolic.svg │ │ │ │ ├── go-last-rtl-symbolic.svg │ │ │ │ ├── go-last-symbolic-rtl.svg │ │ │ │ ├── go-last-symbolic.svg │ │ │ │ ├── go-next-rtl-symbolic.svg │ │ │ │ ├── go-next-symbolic-rtl.svg │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ ├── go-previous-rtl-symbolic.svg │ │ │ │ ├── go-previous-symbolic-rtl.svg │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ ├── go-top-symbolic.svg │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ ├── help-about-symbolic.svg │ │ │ │ ├── histogram-symbolic.svg │ │ │ │ ├── image-crop-symbolic.svg │ │ │ │ ├── image-flip-horizontal-symbolic.svg │ │ │ │ ├── image-flip-vertical-symbolic.svg │ │ │ │ ├── image-invert-symbolic.svg │ │ │ │ ├── image-navigator-symbolic.svg │ │ │ │ ├── image-red-eye-symbolic.svg │ │ │ │ ├── image-resize-symbolic.svg │ │ │ │ ├── image-rotate-left-symbolic.svg │ │ │ │ ├── image-rotate-right-symbolic.svg │ │ │ │ ├── image-rotate-symbolic.svg │ │ │ │ ├── insert-image-symbolic.svg │ │ │ │ ├── insert-link-symbolic.svg │ │ │ │ ├── insert-text-symbolic.svg │ │ │ │ ├── list-add-symbolic.svg │ │ │ │ ├── list-remove-all-symbolic.svg │ │ │ │ ├── list-remove-symbolic.svg │ │ │ │ ├── mail-inbox-symbolic.svg │ │ │ │ ├── mail-mark-important-symbolic.svg │ │ │ │ ├── mail-send-receive-symbolic.svg │ │ │ │ ├── mail-send-symbolic.svg │ │ │ │ ├── map-symbolic.svg │ │ │ │ ├── mark-location-symbolic.svg │ │ │ │ ├── media-eject-symbolic.svg │ │ │ │ ├── media-playback-pause-symbolic.svg │ │ │ │ ├── media-playback-start-rtl-symbolic.svg │ │ │ │ ├── media-playback-start-symbolic-rtl.svg │ │ │ │ ├── media-playback-start-symbolic.svg │ │ │ │ ├── media-playback-stop-symbolic.svg │ │ │ │ ├── media-record-symbolic.svg │ │ │ │ ├── media-seek-backward-rtl-symbolic.svg │ │ │ │ ├── media-seek-backward-symbolic-rtl.svg │ │ │ │ ├── media-seek-backward-symbolic.svg │ │ │ │ ├── media-seek-forward-rtl-symbolic.svg │ │ │ │ ├── media-seek-forward-symbolic-rtl.svg │ │ │ │ ├── media-seek-forward-symbolic.svg │ │ │ │ ├── media-skip-backward-rtl-symbolic.svg │ │ │ │ ├── media-skip-backward-symbolic-rtl.svg │ │ │ │ ├── media-skip-backward-symbolic.svg │ │ │ │ ├── media-skip-forward-rtl-symbolic.svg │ │ │ │ ├── media-skip-forward-symbolic-rtl.svg │ │ │ │ ├── media-skip-forward-symbolic.svg │ │ │ │ ├── media-view-subtitles-symbolic.svg │ │ │ │ ├── object-flip-horizontal-symbolic.svg │ │ │ │ ├── object-flip-vertical-symbolic.svg │ │ │ │ ├── object-rotate-left-symbolic.svg │ │ │ │ ├── object-rotate-right-symbolic.svg │ │ │ │ ├── object-select-symbolic.svg │ │ │ │ ├── open-menu-symbolic.svg │ │ │ │ ├── palette-symbolic.svg │ │ │ │ ├── pan-down-symbolic.svg │ │ │ │ ├── pan-end-symbolic-rtl.svg │ │ │ │ ├── pan-end-symbolic.svg │ │ │ │ ├── pan-start-symbolic-rtl.svg │ │ │ │ ├── pan-start-symbolic.svg │ │ │ │ ├── pan-up-symbolic.svg │ │ │ │ ├── process-stop-symbolic.svg │ │ │ │ ├── screen-rotate-auto-off-symbolic.svg │ │ │ │ ├── screen-rotate-auto-on-symbolic.svg │ │ │ │ ├── selection-end-symbolic-rtl.svg │ │ │ │ ├── selection-end-symbolic.svg │ │ │ │ ├── selection-start-symbolic-rtl.svg │ │ │ │ ├── selection-start-symbolic.svg │ │ │ │ ├── send-to-symbolic.svg │ │ │ │ ├── special-effects-symbolic.svg │ │ │ │ ├── star-new-symbolic.svg │ │ │ │ ├── system-run-symbolic.svg │ │ │ │ ├── system-search-symbolic.svg │ │ │ │ ├── system-shutdown-symbolic.svg │ │ │ │ ├── tab-new-symbolic.svg │ │ │ │ ├── tag-symbolic.svg │ │ │ │ ├── tools-check-spelling-symbolic.svg │ │ │ │ ├── tools-symbolic.svg │ │ │ │ ├── view-app-grid-symbolic.svg │ │ │ │ ├── view-continuous-symbolic.svg │ │ │ │ ├── view-dual-symbolic.svg │ │ │ │ ├── view-fullscreen-symbolic.svg │ │ │ │ ├── view-grid-symbolic.svg │ │ │ │ ├── view-list-symbolic.svg │ │ │ │ ├── view-more-horizontal-symbolic.svg │ │ │ │ ├── view-more-symbolic.svg │ │ │ │ ├── view-presentation-symbolic.svg │ │ │ │ ├── view-private-symbolic.svg │ │ │ │ ├── view-refresh-symbolic.svg │ │ │ │ ├── view-restore-symbolic.svg │ │ │ │ ├── view-sort-ascending-symbolic.svg │ │ │ │ ├── view-sort-descending-symbolic.svg │ │ │ │ ├── view-tasks-all-symbolic.svg │ │ │ │ ├── view-tasks-today-symbolic.svg │ │ │ │ ├── view-tasks-unscheduled-symbolic.svg │ │ │ │ ├── view-tasks-week-symbolic.svg │ │ │ │ ├── view-zoom-fit-height-symbolic.svg │ │ │ │ ├── view-zoom-fit-symbolic.svg │ │ │ │ ├── view-zoom-fit-width-symbolic.svg │ │ │ │ ├── view-zoom-in-symbolic.svg │ │ │ │ ├── view-zoom-original-symbolic.svg │ │ │ │ ├── view-zoom-out-symbolic.svg │ │ │ │ ├── window-close-symbolic.svg │ │ │ │ ├── window-keep-above-symbolic.svg │ │ │ │ ├── window-keep-below-symbolic.svg │ │ │ │ ├── window-maximize-symbolic.svg │ │ │ │ ├── window-minimize-symbolic.svg │ │ │ │ ├── window-pin-symbolic.svg │ │ │ │ ├── window-restore-symbolic.svg │ │ │ │ ├── window-shade-symbolic.svg │ │ │ │ ├── window-unpin-symbolic.svg │ │ │ │ ├── window-unshade-symbolic.svg │ │ │ │ ├── zoom-fit-best-symbolic.svg │ │ │ │ ├── zoom-in-symbolic.svg │ │ │ │ ├── zoom-original-symbolic.svg │ │ │ │ └── zoom-out-symbolic.svg │ │ ├── animations │ │ │ └── 22 │ │ │ │ └── process-working.svg │ │ ├── applets │ │ │ ├── 22 │ │ │ │ ├── car.svg │ │ │ │ ├── hands-free.svg │ │ │ │ ├── handset.svg │ │ │ │ ├── headphone.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── hifi.svg │ │ │ │ ├── internal.svg │ │ │ │ ├── microphone.svg │ │ │ │ ├── portable.svg │ │ │ │ ├── speaker.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── user-identity.svg │ │ │ │ └── webcam.svg │ │ │ ├── 48 │ │ │ │ ├── weather-clear-night.svg │ │ │ │ ├── weather-clear-wind-night.svg │ │ │ │ ├── weather-clear-wind.svg │ │ │ │ ├── weather-clear.svg │ │ │ │ ├── weather-clouds-night.svg │ │ │ │ ├── weather-clouds-wind-night.svg │ │ │ │ ├── weather-clouds-wind.svg │ │ │ │ ├── weather-clouds.svg │ │ │ │ ├── weather-few-clouds-night.svg │ │ │ │ ├── weather-few-clouds-wind-night.svg │ │ │ │ ├── weather-few-clouds-wind.svg │ │ │ │ ├── weather-few-clouds.svg │ │ │ │ ├── weather-fog.svg │ │ │ │ ├── weather-freezing-rain.svg │ │ │ │ ├── weather-hail.svg │ │ │ │ ├── weather-many-clouds-wind.svg │ │ │ │ ├── weather-many-clouds.svg │ │ │ │ ├── weather-mist.svg │ │ │ │ ├── weather-none-available.svg │ │ │ │ ├── weather-overcast-wind.svg │ │ │ │ ├── weather-overcast.svg │ │ │ │ ├── weather-showers-day.svg │ │ │ │ ├── weather-showers-night.svg │ │ │ │ ├── weather-showers-scattered-day.svg │ │ │ │ ├── weather-showers-scattered-night.svg │ │ │ │ ├── weather-showers-scattered.svg │ │ │ │ ├── weather-showers.svg │ │ │ │ ├── weather-snow-rain.svg │ │ │ │ ├── weather-snow-scattered-day.svg │ │ │ │ ├── weather-snow-scattered-night.svg │ │ │ │ ├── weather-snow-scattered.svg │ │ │ │ ├── weather-snow.svg │ │ │ │ ├── weather-storm-day.svg │ │ │ │ ├── weather-storm-night.svg │ │ │ │ └── weather-storm.svg │ │ │ ├── 64 │ │ │ │ ├── osd-duplicate.svg │ │ │ │ ├── osd-rotate-ccw.svg │ │ │ │ ├── osd-rotate-cw.svg │ │ │ │ ├── osd-rotate-flip.svg │ │ │ │ ├── osd-rotate-normal.svg │ │ │ │ ├── osd-sbs-left.svg │ │ │ │ ├── osd-sbs-sright.svg │ │ │ │ ├── osd-shutd-laptop.svg │ │ │ │ ├── osd-shutd-screen.svg │ │ │ │ ├── preferences-system-tabbox.svg │ │ │ │ ├── preferences-system-windows-effect-blur.svg │ │ │ │ ├── preferences-system-windows-effect-contrast.svg │ │ │ │ ├── preferences-system-windows-effect-coverswitch.svg │ │ │ │ ├── preferences-system-windows-effect-cubeslide.svg │ │ │ │ ├── preferences-system-windows-effect-desktopgrid.svg │ │ │ │ ├── preferences-system-windows-effect-dialog-parent.svg │ │ │ │ ├── preferences-system-windows-effect-diminactive.svg │ │ │ │ ├── preferences-system-windows-effect-dimscreen.svg │ │ │ │ ├── preferences-system-windows-effect-fade.svg │ │ │ │ ├── preferences-system-windows-effect-fadedesktop.svg │ │ │ │ ├── preferences-system-windows-effect-fallapart.svg │ │ │ │ ├── preferences-system-windows-effect-flipswitch.svg │ │ │ │ ├── preferences-system-windows-effect-glide.svg │ │ │ │ ├── preferences-system-windows-effect-highlightwindow.svg │ │ │ │ ├── preferences-system-windows-effect-invert.svg │ │ │ │ ├── preferences-system-windows-effect-kscreen.svg │ │ │ │ ├── preferences-system-windows-effect-login.svg │ │ │ │ ├── preferences-system-windows-effect-logout.svg │ │ │ │ ├── preferences-system-windows-effect-magiclamp.svg │ │ │ │ ├── preferences-system-windows-effect-magnifier.svg │ │ │ │ ├── preferences-system-windows-effect-maximize.svg │ │ │ │ ├── preferences-system-windows-effect-minimize.svg │ │ │ │ ├── preferences-system-windows-effect-mouseclick.svg │ │ │ │ ├── preferences-system-windows-effect-mousemark.svg │ │ │ │ ├── preferences-system-windows-effect-presentwindows.svg │ │ │ │ ├── preferences-system-windows-effect-resize.svg │ │ │ │ ├── preferences-system-windows-effect-scale-in.svg │ │ │ │ ├── preferences-system-windows-effect-screenedge.svg │ │ │ │ ├── preferences-system-windows-effect-screenshot.svg │ │ │ │ ├── preferences-system-windows-effect-showfps.svg │ │ │ │ ├── preferences-system-windows-effect-showpaint.svg │ │ │ │ ├── preferences-system-windows-effect-slide.svg │ │ │ │ ├── preferences-system-windows-effect-slideback.svg │ │ │ │ ├── preferences-system-windows-effect-slidingpopups.svg │ │ │ │ ├── preferences-system-windows-effect-startupfeedback.svg │ │ │ │ ├── preferences-system-windows-effect-thumbnailaside.svg │ │ │ │ ├── preferences-system-windows-effect-trackmouse.svg │ │ │ │ ├── preferences-system-windows-effect-translucency.svg │ │ │ │ ├── preferences-system-windows-effect-windowaperture.svg │ │ │ │ ├── preferences-system-windows-effect-wobblywindows.svg │ │ │ │ └── preferences-system-windows-effect-zoom.svg │ │ │ ├── 128 │ │ │ │ ├── user-ada-lovelace.svg │ │ │ │ ├── user-alice-in-wonderland.svg │ │ │ │ ├── user-grace-hopper.svg │ │ │ │ ├── user-leonardo-da-vinci.svg │ │ │ │ ├── user-mahatma-gandhi.svg │ │ │ │ ├── user-man.svg │ │ │ │ ├── user-mowgli.svg │ │ │ │ └── user-none.svg │ │ │ └── 256 │ │ │ │ ├── applets-template.svg │ │ │ │ ├── empty.svg │ │ │ │ ├── org.kde.ktpcontactlist.svg │ │ │ │ ├── org.kde.muonnotifier.svg │ │ │ │ ├── org.kde.plasma.activitybar.svg │ │ │ │ ├── org.kde.plasma.analogclock.svg │ │ │ │ ├── org.kde.plasma.battery.svg │ │ │ │ ├── org.kde.plasma.binaryclock.svg │ │ │ │ ├── org.kde.plasma.calculator.svg │ │ │ │ ├── org.kde.plasma.calendar.svg │ │ │ │ ├── org.kde.plasma.clipboard.svg │ │ │ │ ├── org.kde.plasma.colorpicker.svg │ │ │ │ ├── org.kde.plasma.comic.svg │ │ │ │ ├── org.kde.plasma.date.svg │ │ │ │ ├── org.kde.plasma.devicenotifier.svg │ │ │ │ ├── org.kde.plasma.digitalclock.svg │ │ │ │ ├── org.kde.plasma.diskquota.svg │ │ │ │ ├── org.kde.plasma.fifteenpuzzle.svg │ │ │ │ ├── org.kde.plasma.folder.svg │ │ │ │ ├── org.kde.plasma.frame.svg │ │ │ │ ├── org.kde.plasma.fuzzyclock.svg │ │ │ │ ├── org.kde.plasma.icontasks.svg │ │ │ │ ├── org.kde.plasma.kicker.svg │ │ │ │ ├── org.kde.plasma.kickerdash.svg │ │ │ │ ├── org.kde.plasma.kickoff.svg │ │ │ │ ├── org.kde.plasma.kickofflegacy.svg │ │ │ │ ├── org.kde.plasma.mediacontroller.svg │ │ │ │ ├── org.kde.plasma.networkmanagement.svg │ │ │ │ ├── org.kde.plasma.notes.svg │ │ │ │ ├── org.kde.plasma.pager.svg │ │ │ │ ├── org.kde.plasma.quicklaunch.svg │ │ │ │ ├── org.kde.plasma.showActivityManager.svg │ │ │ │ ├── org.kde.plasma.systemloadviewer.svg │ │ │ │ ├── org.kde.plasma.systemmonitor.cpu.svg │ │ │ │ ├── org.kde.plasma.systemmonitor.diskactivity.svg │ │ │ │ ├── org.kde.plasma.systemmonitor.diskusage.svg │ │ │ │ ├── org.kde.plasma.systemmonitor.memory.svg │ │ │ │ ├── org.kde.plasma.systemmonitor.net.svg │ │ │ │ ├── org.kde.plasma.systemtray.svg │ │ │ │ ├── org.kde.plasma.taskmanager.svg │ │ │ │ ├── org.kde.plasma.timer.svg │ │ │ │ ├── org.kde.plasma.vault.svg │ │ │ │ ├── org.kde.plasma.volume.svg │ │ │ │ └── org.kde.plasma.windowlist.svg │ │ ├── apps │ │ │ ├── 22 │ │ │ │ ├── accessories-text-editor.svg │ │ │ │ ├── akregator.svg │ │ │ │ ├── anydesk.svg │ │ │ │ ├── elisa.svg │ │ │ │ ├── help-browser.svg │ │ │ │ ├── homerun.svg │ │ │ │ ├── hotspot.svg │ │ │ │ ├── kde.svg │ │ │ │ ├── kdeconnect.svg │ │ │ │ ├── korg-todo.svg │ │ │ │ ├── ktimetracker.svg │ │ │ │ ├── kwrite.svg │ │ │ │ ├── plasma-browser-integration.svg │ │ │ │ ├── plasma.svg │ │ │ │ ├── plasmavault.svg │ │ │ │ ├── preferences-other.svg │ │ │ │ ├── preferences-plugin.svg │ │ │ │ ├── system-file-manager.svg │ │ │ │ ├── system-help.svg │ │ │ │ ├── umbrello.svg │ │ │ │ ├── utilities-terminal.svg │ │ │ │ └── virt-manager.svg │ │ │ ├── 32 │ │ │ │ ├── accessories-text-editor.svg │ │ │ │ ├── anydesk.svg │ │ │ │ ├── hotspot.svg │ │ │ │ ├── hwinfo.svg │ │ │ │ ├── ktimetracker.svg │ │ │ │ ├── kup.svg │ │ │ │ ├── kwrite.svg │ │ │ │ ├── plasmavault.svg │ │ │ │ ├── preferences-system.svg │ │ │ │ ├── system-file-manager.svg │ │ │ │ ├── system-help.svg │ │ │ │ ├── systemsettings.svg │ │ │ │ ├── umbrello.svg │ │ │ │ ├── utilities-log-viewer.svg │ │ │ │ ├── utilities-terminal.svg │ │ │ │ ├── yast-sw_single.svg │ │ │ │ └── yast.svg │ │ │ ├── 48 │ │ │ │ ├── CMakeSetup.svg │ │ │ │ ├── QOwnNotes.svg │ │ │ │ ├── QtProject-designer.svg │ │ │ │ ├── VBox.svg │ │ │ │ ├── accessories-calculator.svg │ │ │ │ ├── accessories-character-map.svg │ │ │ │ ├── accessories-text-editor.svg │ │ │ │ ├── acroread.svg │ │ │ │ ├── akregator.svg │ │ │ │ ├── alienarena.svg │ │ │ │ ├── alligator.svg │ │ │ │ ├── amarok.svg │ │ │ │ ├── android-file-transfer.svg │ │ │ │ ├── android-studio.svg │ │ │ │ ├── anjuta.svg │ │ │ │ ├── anydesk.svg │ │ │ │ ├── apper.svg │ │ │ │ ├── application-x-clementine.svg │ │ │ │ ├── aptana.svg │ │ │ │ ├── ardour.svg │ │ │ │ ├── ark.svg │ │ │ │ ├── artikulate.svg │ │ │ │ ├── assistant.svg │ │ │ │ ├── atom.svg │ │ │ │ ├── audacity.svg │ │ │ │ ├── author.svg │ │ │ │ ├── babe.svg │ │ │ │ ├── baloo.svg │ │ │ │ ├── bitcoin128.svg │ │ │ │ ├── bittorrent-sync.svg │ │ │ │ ├── bleachbit.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blinken.svg │ │ │ │ ├── blogilo.svg │ │ │ │ ├── bluefish.svg │ │ │ │ ├── bluegriffon.svg │ │ │ │ ├── bomber.svg │ │ │ │ ├── bomi.svg │ │ │ │ ├── bovo.svg │ │ │ │ ├── brackets.svg │ │ │ │ ├── braindump.svg │ │ │ │ ├── breeze-settings.svg │ │ │ │ ├── btsync-gui.svg │ │ │ │ ├── buho.svg │ │ │ │ ├── calamares.svg │ │ │ │ ├── calibre-ebook-edit.svg │ │ │ │ ├── calibre-viewer.svg │ │ │ │ ├── calindori.svg │ │ │ │ ├── calligraauthor.svg │ │ │ │ ├── calligraflow.svg │ │ │ │ ├── calligrakarbon.svg │ │ │ │ ├── calligrakexi.svg │ │ │ │ ├── calligraplan.svg │ │ │ │ ├── calligraplanwork.svg │ │ │ │ ├── calligrasheets.svg │ │ │ │ ├── calligrastage.svg │ │ │ │ ├── calligrawords.svg │ │ │ │ ├── cantata.svg │ │ │ │ ├── cantor.svg │ │ │ │ ├── cervisia.svg │ │ │ │ ├── choqok.svg │ │ │ │ ├── claws-mail.svg │ │ │ │ ├── clementine.svg │ │ │ │ ├── cmake.svg │ │ │ │ ├── codeblocks.svg │ │ │ │ ├── com.github.ztefn.haguichi.svg │ │ │ │ ├── com.visualstudio.code.oss.svg │ │ │ │ ├── com.visualstudio.code.svg │ │ │ │ ├── converseen.svg │ │ │ │ ├── crow-translate.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── darktable.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── diffuse.svg │ │ │ │ ├── digikam.svg │ │ │ │ ├── dragonplayer.svg │ │ │ │ ├── elisa.svg │ │ │ │ ├── emacs.svg │ │ │ │ ├── falkon.svg │ │ │ │ ├── ffmulticonverter.svg │ │ │ │ ├── filelight.svg │ │ │ │ ├── filezilla.svg │ │ │ │ ├── fingerprint-gui.svg │ │ │ │ ├── firewall-config.svg │ │ │ │ ├── flow.svg │ │ │ │ ├── fluid.svg │ │ │ │ ├── fontforge.svg │ │ │ │ ├── freemind.svg │ │ │ │ ├── frostwire.svg │ │ │ │ ├── gcompris-qt.svg │ │ │ │ ├── gimp.svg │ │ │ │ ├── git-cola.svg │ │ │ │ ├── git-gui.svg │ │ │ │ ├── goodvibes.svg │ │ │ │ ├── gparted.svg │ │ │ │ ├── gpick.svg │ │ │ │ ├── gpodder.svg │ │ │ │ ├── granatier.svg │ │ │ │ ├── graphics-viewer-document.svg │ │ │ │ ├── grub-customizer.svg │ │ │ │ ├── gtkhash.svg │ │ │ │ ├── gwenview.svg │ │ │ │ ├── haguichi.svg │ │ │ │ ├── handbrake.svg │ │ │ │ ├── help-browser.svg │ │ │ │ ├── homebank.svg │ │ │ │ ├── homerun.svg │ │ │ │ ├── hotspot.svg │ │ │ │ ├── htop.svg │ │ │ │ ├── hwinfo.svg │ │ │ │ ├── im.vector.svg │ │ │ │ ├── imagewriter.svg │ │ │ │ ├── inkscape-logo.svg │ │ │ │ ├── inkscape.svg │ │ │ │ ├── internet-mail.svg │ │ │ │ ├── internet-telephony.svg │ │ │ │ ├── internet-web-browser.svg │ │ │ │ ├── io.gitlab.Goodvibes.svg │ │ │ │ ├── jdownloader.svg │ │ │ │ ├── joplin.svg │ │ │ │ ├── juk.svg │ │ │ │ ├── juliabackend.svg │ │ │ │ ├── k3b.svg │ │ │ │ ├── kaddressbook.svg │ │ │ │ ├── kaffeine.svg │ │ │ │ ├── kajongg.svg │ │ │ │ ├── kalarm.svg │ │ │ │ ├── kalgebra.svg │ │ │ │ ├── kalgebrabackend.svg │ │ │ │ ├── kalzium.svg │ │ │ │ ├── kamoso.svg │ │ │ │ ├── kanagram.svg │ │ │ │ ├── kapman.svg │ │ │ │ ├── kapptemplate.svg │ │ │ │ ├── karbon.svg │ │ │ │ ├── kate.svg │ │ │ │ ├── katomic.svg │ │ │ │ ├── kblackbox.svg │ │ │ │ ├── kblocks.svg │ │ │ │ ├── kblogger.svg │ │ │ │ ├── kbreakout.svg │ │ │ │ ├── kbruch.svg │ │ │ │ ├── kcachegrind.svg │ │ │ │ ├── kcalc.svg │ │ │ │ ├── kchart.svg │ │ │ │ ├── kcolorchooser.svg │ │ │ │ ├── kde-frameworks.svg │ │ │ │ ├── kde-im-log-viewer.svg │ │ │ │ ├── kde.svg │ │ │ │ ├── kdeapp.svg │ │ │ │ ├── kdenlive.svg │ │ │ │ ├── kdesvn.svg │ │ │ │ ├── kdevelop.svg │ │ │ │ ├── kdiamond.svg │ │ │ │ ├── kdiff3.svg │ │ │ │ ├── kdots.svg │ │ │ │ ├── keepass.svg │ │ │ │ ├── keepass2.svg │ │ │ │ ├── keepassx.svg │ │ │ │ ├── keepassx2.svg │ │ │ │ ├── kexi.svg │ │ │ │ ├── kfind.svg │ │ │ │ ├── kfloppy.svg │ │ │ │ ├── kfontview.svg │ │ │ │ ├── kfourinline.svg │ │ │ │ ├── kgeography.svg │ │ │ │ ├── kget.svg │ │ │ │ ├── khangman.svg │ │ │ │ ├── kig.svg │ │ │ │ ├── kile.svg │ │ │ │ ├── kimagemapeditor.svg │ │ │ │ ├── kipi-dngconverter.svg │ │ │ │ ├── kipi-expoblending.svg │ │ │ │ ├── kipi-panorama.svg │ │ │ │ ├── kirigami-gallery.svg │ │ │ │ ├── kiriki.svg │ │ │ │ ├── kirogi.svg │ │ │ │ ├── kiten.svg │ │ │ │ ├── kjumpingcube.svg │ │ │ │ ├── kleopatra.svg │ │ │ │ ├── klines.svg │ │ │ │ ├── klipper.svg │ │ │ │ ├── kmag.svg │ │ │ │ ├── kmahjongg.svg │ │ │ │ ├── kmail.svg │ │ │ │ ├── kmenuedit.svg │ │ │ │ ├── kmix.svg │ │ │ │ ├── kmousetool.svg │ │ │ │ ├── kmouth.svg │ │ │ │ ├── kmplayer.svg │ │ │ │ ├── kmplot.svg │ │ │ │ ├── kmymoney.svg │ │ │ │ ├── knetattach.svg │ │ │ │ ├── knights.svg │ │ │ │ ├── knotes.svg │ │ │ │ ├── kolf.svg │ │ │ │ ├── kolourpaint.svg │ │ │ │ ├── kompare.svg │ │ │ │ ├── konqueror.svg │ │ │ │ ├── kontact.svg │ │ │ │ ├── konversation.svg │ │ │ │ ├── kopete.svg │ │ │ │ ├── korg-todo.svg │ │ │ │ ├── korgac.svg │ │ │ │ ├── korganizer.svg │ │ │ │ ├── kpat.svg │ │ │ │ ├── kphotoalbum.svg │ │ │ │ ├── kplato.svg │ │ │ │ ├── kpresenter.svg │ │ │ │ ├── krdc.svg │ │ │ │ ├── krename.svg │ │ │ │ ├── krfb.svg │ │ │ │ ├── kronometer.svg │ │ │ │ ├── kruler.svg │ │ │ │ ├── krusader_root.svg │ │ │ │ ├── krusader_user.svg │ │ │ │ ├── kshisen.svg │ │ │ │ ├── ksirk.svg │ │ │ │ ├── ksnapshot.svg │ │ │ │ ├── kspread.svg │ │ │ │ ├── kstars.svg │ │ │ │ ├── ksysguardd.svg │ │ │ │ ├── kteatime.svg │ │ │ │ ├── ktimer.svg │ │ │ │ ├── ktimetracker.svg │ │ │ │ ├── ktip.svg │ │ │ │ ├── ktnef.svg │ │ │ │ ├── ktorrent.svg │ │ │ │ ├── ktouch.svg │ │ │ │ ├── ktrip.svg │ │ │ │ ├── kube-mail.svg │ │ │ │ ├── kuiviewer.svg │ │ │ │ ├── kup.svg │ │ │ │ ├── kuser.svg │ │ │ │ ├── kwalletmanager.svg │ │ │ │ ├── kwalletmanager2.svg │ │ │ │ ├── kwave.svg │ │ │ │ ├── kwikdisk.svg │ │ │ │ ├── kwin.svg │ │ │ │ ├── kword.svg │ │ │ │ ├── kwrite.svg │ │ │ │ ├── kxstitch.svg │ │ │ │ ├── labplot.svg │ │ │ │ ├── labplot2.svg │ │ │ │ ├── lastpass.svg │ │ │ │ ├── latte-dock.svg │ │ │ │ ├── leocad.svg │ │ │ │ ├── libreoffice-base.svg │ │ │ │ ├── libreoffice-calc.svg │ │ │ │ ├── libreoffice-draw.svg │ │ │ │ ├── libreoffice-impress.svg │ │ │ │ ├── libreoffice-main.svg │ │ │ │ ├── libreoffice-math.svg │ │ │ │ ├── libreoffice-startcenter.svg │ │ │ │ ├── libreoffice-writer.svg │ │ │ │ ├── linguist.svg │ │ │ │ ├── logisim.svg │ │ │ │ ├── lokalize.svg │ │ │ │ ├── luabackend.svg │ │ │ │ ├── mail-client.svg │ │ │ │ ├── massif-visualizer.svg │ │ │ │ ├── masterpdfeditor.svg │ │ │ │ ├── mathematica.svg │ │ │ │ ├── matlab.svg │ │ │ │ ├── maximabackend.svg │ │ │ │ ├── mendeleydesktop.svg │ │ │ │ ├── minitube.svg │ │ │ │ ├── minuet.svg │ │ │ │ ├── mixxx.svg │ │ │ │ ├── mpv.svg │ │ │ │ ├── multimedia-volume-control.svg │ │ │ │ ├── muon.svg │ │ │ │ ├── muondiscover.svg │ │ │ │ ├── network-manager.svg │ │ │ │ ├── nota.svg │ │ │ │ ├── ntfs-config.svg │ │ │ │ ├── nylas.svg │ │ │ │ ├── octave.svg │ │ │ │ ├── octavebackend.svg │ │ │ │ ├── octopi.svg │ │ │ │ ├── office-address-book.svg │ │ │ │ ├── office-calendar.svg │ │ │ │ ├── okteta.svg │ │ │ │ ├── okular.svg │ │ │ │ ├── openbravo-erp.svg │ │ │ │ ├── org.fedoraproject.AnacondaInstaller.svg │ │ │ │ ├── org.gajim.Gajim.svg │ │ │ │ ├── org.inkscape.Inkscape.svg │ │ │ │ ├── org.kde.Ikona.svg │ │ │ │ ├── org.kde.kongress.svg │ │ │ │ ├── org.kde.kontrast.svg │ │ │ │ ├── org.kde.neochat.svg │ │ │ │ ├── org.kde.skanlite.svg │ │ │ │ ├── org.telegram.desktop.svg │ │ │ │ ├── parley.svg │ │ │ │ ├── partitionmanager.svg │ │ │ │ ├── phonon-gstreamer.svg │ │ │ │ ├── photolayoutseditor.svg │ │ │ │ ├── picmi.svg │ │ │ │ ├── plan.svg │ │ │ │ ├── planetkde.svg │ │ │ │ ├── plank.svg │ │ │ │ ├── planner.svg │ │ │ │ ├── planwork.svg │ │ │ │ ├── plasma-browser-integration.svg │ │ │ │ ├── plasma-media-center.svg │ │ │ │ ├── plasma-mobile-phone.svg │ │ │ │ ├── plasma-nano.svg │ │ │ │ ├── plasmadiscover.svg │ │ │ │ ├── plasmavault.svg │ │ │ │ ├── preferences-desktop-font-installer.svg │ │ │ │ ├── preferences-system.svg │ │ │ │ ├── puremaps.svg │ │ │ │ ├── pythonbackend.svg │ │ │ │ ├── q4wine.svg │ │ │ │ ├── qalculate.svg │ │ │ │ ├── qbittorrent.svg │ │ │ │ ├── qdbusviewer.svg │ │ │ │ ├── qelectrotech.svg │ │ │ │ ├── qtcreator.svg │ │ │ │ ├── quassel.svg │ │ │ │ ├── quiterss.svg │ │ │ │ ├── qupzilla.svg │ │ │ │ ├── r.svg │ │ │ │ ├── rbackend.svg │ │ │ │ ├── rekonq.svg │ │ │ │ ├── ring-kde.svg │ │ │ │ ├── ring.svg │ │ │ │ ├── rocs.svg │ │ │ │ ├── rosegarden.svg │ │ │ │ ├── sage-notebook.svg │ │ │ │ ├── sagebackend.svg │ │ │ │ ├── scanner.svg │ │ │ │ ├── scribus.svg │ │ │ │ ├── sheets.svg │ │ │ │ ├── showfoto.svg │ │ │ │ ├── skanlite.svg │ │ │ │ ├── skanpage.svg │ │ │ │ ├── skrooge-black.svg │ │ │ │ ├── skrooge-initial.svg │ │ │ │ ├── skrooge.svg │ │ │ │ ├── smartgit.svg │ │ │ │ ├── smb4k.svg │ │ │ │ ├── smplayer.svg │ │ │ │ ├── smtube.svg │ │ │ │ ├── spectacle.svg │ │ │ │ ├── stage.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── step.svg │ │ │ │ ├── sublime-merge.svg │ │ │ │ ├── sublime-text.svg │ │ │ │ ├── subtitlecomposer.svg │ │ │ │ ├── sweeper.svg │ │ │ │ ├── symboleditor.svg │ │ │ │ ├── synaptic.svg │ │ │ │ ├── syncthing.svg │ │ │ │ ├── synfig_icon.svg │ │ │ │ ├── system-file-manager.svg │ │ │ │ ├── system-help.svg │ │ │ │ ├── system-run.svg │ │ │ │ ├── system-software-install.svg │ │ │ │ ├── system-software-update.svg │ │ │ │ ├── systemsettings.svg │ │ │ │ ├── teamviewer.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── telepathy-kde.svg │ │ │ │ ├── truecrypt.svg │ │ │ │ ├── ubiquity-kde.svg │ │ │ │ ├── ubiquity.svg │ │ │ │ ├── umbrello.svg │ │ │ │ ├── unetbootin.svg │ │ │ │ ├── usb-creator-kde.svg │ │ │ │ ├── utilities-energy-monitor.svg │ │ │ │ ├── utilities-file-archiver.svg │ │ │ │ ├── utilities-log-viewer.svg │ │ │ │ ├── utilities-system-monitor.svg │ │ │ │ ├── utilities-terminal.svg │ │ │ │ ├── viber.svg │ │ │ │ ├── virt-manager.svg │ │ │ │ ├── virtualbox.svg │ │ │ │ ├── vlc.svg │ │ │ │ ├── vokoscreen.svg │ │ │ │ ├── vvave.svg │ │ │ │ ├── wayland.svg │ │ │ │ ├── wine.svg │ │ │ │ ├── words.svg │ │ │ │ ├── xchat.svg │ │ │ │ ├── xine.svg │ │ │ │ ├── xmind.svg │ │ │ │ ├── xorg.svg │ │ │ │ ├── xterm-color.svg │ │ │ │ ├── xterm.svg │ │ │ │ ├── yakuake.svg │ │ │ │ ├── yandex-browser.svg │ │ │ │ ├── yast-control-center.svg │ │ │ │ ├── yast-installation.svg │ │ │ │ ├── yast-sw_single.svg │ │ │ │ ├── yast-upgrade.svg │ │ │ │ ├── yast.svg │ │ │ │ └── zanshin.svg │ │ │ └── 64 │ │ │ │ ├── accessories-text-editor.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── hotspot.svg │ │ │ │ ├── kwrite.svg │ │ │ │ ├── plasma-browser-integration.svg │ │ │ │ ├── plasmavault.svg │ │ │ │ ├── sharedlib.svg │ │ │ │ ├── system-file-manager.svg │ │ │ │ ├── umbrello.svg │ │ │ │ └── utilities-terminal.svg │ │ ├── categories │ │ │ └── 32 │ │ │ │ ├── applications-all.svg │ │ │ │ ├── applications-development.svg │ │ │ │ ├── applications-education-language.svg │ │ │ │ ├── applications-education-mathematics.svg │ │ │ │ ├── applications-education-science.svg │ │ │ │ ├── applications-education.svg │ │ │ │ ├── applications-engineering.svg │ │ │ │ ├── applications-games.svg │ │ │ │ ├── applications-graphics.svg │ │ │ │ ├── applications-internet.svg │ │ │ │ ├── applications-multimedia.svg │ │ │ │ ├── applications-network.svg │ │ │ │ ├── applications-office.svg │ │ │ │ ├── applications-other.svg │ │ │ │ ├── applications-science.svg │ │ │ │ ├── applications-system.svg │ │ │ │ └── applications-utilities.svg │ │ ├── devices │ │ │ ├── 22 │ │ │ │ ├── audio-card.svg │ │ │ │ ├── audio-headphones.svg │ │ │ │ ├── audio-headset.svg │ │ │ │ ├── audio-input-microphone.svg │ │ │ │ ├── audio-radio.svg │ │ │ │ ├── auth-sim.svg │ │ │ │ ├── battery-ups.svg │ │ │ │ ├── camera-photo.svg │ │ │ │ ├── camera-video.svg │ │ │ │ ├── camera-web.svg │ │ │ │ ├── computer-laptop.svg │ │ │ │ ├── computer.svg │ │ │ │ ├── cups.svg │ │ │ │ ├── cupsprinter.svg │ │ │ │ ├── drive-harddisk-encrypted.svg │ │ │ │ ├── drive-harddisk-root.svg │ │ │ │ ├── drive-harddisk.svg │ │ │ │ ├── drive-multidisk.svg │ │ │ │ ├── drive-multipartition.svg │ │ │ │ ├── drive-optical.svg │ │ │ │ ├── drive-partition.svg │ │ │ │ ├── drive-removable-media-usb-pendrive.svg │ │ │ │ ├── drive-removable-media-usb.svg │ │ │ │ ├── drive-removable-media.svg │ │ │ │ ├── input-dialpad.svg │ │ │ │ ├── input-gamepad.svg │ │ │ │ ├── input-keyboard-virtual.svg │ │ │ │ ├── input-keyboard.svg │ │ │ │ ├── input-mouse.svg │ │ │ │ ├── input-tablet.svg │ │ │ │ ├── input-touchpad.svg │ │ │ │ ├── keyboard-caps-disabled.svg │ │ │ │ ├── keyboard-caps-enabled.svg │ │ │ │ ├── keyboard-caps-locked.svg │ │ │ │ ├── keyboard-enter.svg │ │ │ │ ├── keyboard-spacebar.svg │ │ │ │ ├── media-flash-memory-stick.svg │ │ │ │ ├── media-flash-sd-mmc.svg │ │ │ │ ├── media-floppy.svg │ │ │ │ ├── media-optical-audio.svg │ │ │ │ ├── media-optical-data.svg │ │ │ │ ├── media-optical-mixed-cd.svg │ │ │ │ ├── media-optical-recordable.svg │ │ │ │ ├── media-optical-video.svg │ │ │ │ ├── media-optical.svg │ │ │ │ ├── monitor.svg │ │ │ │ ├── multimedia-player-ipod-mini-blue.svg │ │ │ │ ├── network-bluetooth.svg │ │ │ │ ├── network-modem.svg │ │ │ │ ├── network-rj11-female.svg │ │ │ │ ├── network-rj45-female.svg │ │ │ │ ├── network-vpn.svg │ │ │ │ ├── network-wired.svg │ │ │ │ ├── network-wireless-hotspot.svg │ │ │ │ ├── network-wireless.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── printer.svg │ │ │ │ ├── radio.svg │ │ │ │ ├── smartphone.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── uav-quadcopter.svg │ │ │ │ ├── uav.svg │ │ │ │ └── video-television.svg │ │ │ ├── 64 │ │ │ │ ├── audio-card.svg │ │ │ │ ├── audio-headphones.svg │ │ │ │ ├── auth-sim.svg │ │ │ │ ├── battery.svg │ │ │ │ ├── camera-photo.svg │ │ │ │ ├── camera-video.svg │ │ │ │ ├── camera-web.svg │ │ │ │ ├── computer-laptop.svg │ │ │ │ ├── computer.svg │ │ │ │ ├── cpu.svg │ │ │ │ ├── cups.svg │ │ │ │ ├── cupsprinter.svg │ │ │ │ ├── drive-harddisk-encrypted.svg │ │ │ │ ├── drive-harddisk-root.svg │ │ │ │ ├── drive-harddisk.svg │ │ │ │ ├── drive-multidisk.svg │ │ │ │ ├── drive-multipartition.svg │ │ │ │ ├── drive-optical.svg │ │ │ │ ├── drive-partition.svg │ │ │ │ ├── drive-removable-media-usb-pendrive.svg │ │ │ │ ├── drive-removable-media-usb.svg │ │ │ │ ├── drive-removable-media.svg │ │ │ │ ├── input-gamepad.svg │ │ │ │ ├── input-gaming.svg │ │ │ │ ├── input-keyboard.svg │ │ │ │ ├── input-mouse.svg │ │ │ │ ├── input-tablet.svg │ │ │ │ ├── input-touchpad.svg │ │ │ │ ├── media-flash-memory-stick.svg │ │ │ │ ├── media-flash-sd-mmc.svg │ │ │ │ ├── media-flash-smart-media.svg │ │ │ │ ├── media-flash.svg │ │ │ │ ├── media-optical-audio.svg │ │ │ │ ├── media-optical-blu-ray.svg │ │ │ │ ├── media-optical-data.svg │ │ │ │ ├── media-optical-dvd.svg │ │ │ │ ├── media-optical-recordable.svg │ │ │ │ ├── media-optical-video.svg │ │ │ │ ├── media-optical.svg │ │ │ │ ├── media-write-dvd.svg │ │ │ │ ├── monitor.svg │ │ │ │ ├── multimedia-player.svg │ │ │ │ ├── network-card.svg │ │ │ │ ├── network-rj11-female.svg │ │ │ │ ├── network-rj45-female.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── printer.svg │ │ │ │ ├── scanner.svg │ │ │ │ ├── smartphone.svg │ │ │ │ ├── video-display.svg │ │ │ │ └── video-television.svg │ │ │ └── symbolic │ │ │ │ ├── audio-input-microphone-symbolic.svg │ │ │ │ ├── audio-radio-symbolic.svg │ │ │ │ ├── audio-speakers-symbolic.svg │ │ │ │ ├── auth-sim-symbolic.svg │ │ │ │ ├── camera-photo-symbolic.svg │ │ │ │ ├── camera-video-symbolic.svg │ │ │ │ ├── camera-web-symbolic.svg │ │ │ │ ├── computer-symbolic.svg │ │ │ │ ├── drive-harddisk-encrypted-symbolic.svg │ │ │ │ ├── drive-harddisk-ieee1394-symbolic.svg │ │ │ │ ├── drive-harddisk-root-symbolic.svg │ │ │ │ ├── drive-harddisk-symbolic.svg │ │ │ │ ├── drive-harddisk-system-symbolic.svg │ │ │ │ ├── drive-harddisk-usb-symbolic.svg │ │ │ │ ├── drive-multidisk-symbolic.svg │ │ │ │ ├── drive-multipartition-symbolic.svg │ │ │ │ ├── drive-partition-symbolic.svg │ │ │ │ ├── drive-removable-media-symbolic.svg │ │ │ │ ├── input-dialpad-symbolic.svg │ │ │ │ ├── input-gamepad-symbolic.svg │ │ │ │ ├── input-keyboard-symbolic.svg │ │ │ │ ├── input-keyboard-virtual-symbolic.svg │ │ │ │ ├── input-mouse-symbolic.svg │ │ │ │ ├── input-tablet-symbolic.svg │ │ │ │ ├── input-touchpad-symbolic.svg │ │ │ │ ├── media-flash-symbolic.svg │ │ │ │ ├── media-floppy-symbolic.svg │ │ │ │ ├── media-optical-bd-symbolic.svg │ │ │ │ ├── media-optical-cd-audio-symbolic.svg │ │ │ │ ├── media-optical-dvd-symbolic.svg │ │ │ │ ├── media-optical-symbolic.svg │ │ │ │ ├── media-removable-symbolic.svg │ │ │ │ ├── multimedia-player-apple-ipod-touch-symbolic.svg │ │ │ │ ├── multimedia-player-symbolic.svg │ │ │ │ ├── network-wired-symbolic.svg │ │ │ │ ├── network-wireless-symbolic.svg │ │ │ │ ├── phone-apple-iphone-symbolic.svg │ │ │ │ ├── phone-symbolic.svg │ │ │ │ ├── printer-network-symbolic.svg │ │ │ │ └── printer-symbolic.svg │ │ ├── emblems │ │ │ ├── 22 │ │ │ │ ├── checkmark.svg │ │ │ │ ├── emblem-added.svg │ │ │ │ ├── emblem-checked.svg │ │ │ │ ├── emblem-encrypted-locked.svg │ │ │ │ ├── emblem-encrypted-unlocked.svg │ │ │ │ ├── emblem-error.svg │ │ │ │ ├── emblem-favorite.svg │ │ │ │ ├── emblem-important.svg │ │ │ │ ├── emblem-information.svg │ │ │ │ ├── emblem-locked.svg │ │ │ │ ├── emblem-mounted.svg │ │ │ │ ├── emblem-pause.svg │ │ │ │ ├── emblem-question.svg │ │ │ │ ├── emblem-readonly.svg │ │ │ │ ├── emblem-remove.svg │ │ │ │ ├── emblem-shared.svg │ │ │ │ ├── emblem-success.svg │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ ├── emblem-unavailable.svg │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ ├── emblem-unmounted.svg │ │ │ │ ├── emblem-warning.svg │ │ │ │ ├── rating-half.svg │ │ │ │ ├── rating-unrated.svg │ │ │ │ ├── rating.svg │ │ │ │ ├── vcs-added.svg │ │ │ │ ├── vcs-conflicting.svg │ │ │ │ ├── vcs-locally-modified-unstaged.svg │ │ │ │ ├── vcs-locally-modified.svg │ │ │ │ ├── vcs-normal.svg │ │ │ │ ├── vcs-removed.svg │ │ │ │ └── vcs-update-required.svg │ │ │ └── symbolic │ │ │ │ ├── emblem-default-symbolic.svg │ │ │ │ ├── emblem-documents-symbolic.svg │ │ │ │ ├── emblem-favorite-symbolic.svg │ │ │ │ ├── emblem-important-symbolic.svg │ │ │ │ ├── emblem-music-symbolic.svg │ │ │ │ ├── emblem-ok-symbolic.svg │ │ │ │ ├── emblem-photos-symbolic.svg │ │ │ │ ├── emblem-shared-symbolic.svg │ │ │ │ ├── emblem-synchronizing-symbolic.svg │ │ │ │ ├── emblem-system-symbolic.svg │ │ │ │ └── emblem-videos-symbolic.svg │ │ ├── emotes │ │ │ └── 22 │ │ │ │ ├── drink-beer.svg │ │ │ │ ├── drink-martini.svg │ │ │ │ ├── face-angel.svg │ │ │ │ ├── face-angry.svg │ │ │ │ ├── face-clown.svg │ │ │ │ ├── face-confused.svg │ │ │ │ ├── face-cool.svg │ │ │ │ ├── face-crying.svg │ │ │ │ ├── face-devilish.svg │ │ │ │ ├── face-embarrassed.svg │ │ │ │ ├── face-glasses.svg │ │ │ │ ├── face-hug-left.svg │ │ │ │ ├── face-hug-right.svg │ │ │ │ ├── face-in-love.svg │ │ │ │ ├── face-kiss.svg │ │ │ │ ├── face-laughing.svg │ │ │ │ ├── face-ninja.svg │ │ │ │ ├── face-pirate.svg │ │ │ │ ├── face-plain.svg │ │ │ │ ├── face-quiet.svg │ │ │ │ ├── face-raspberry.svg │ │ │ │ ├── face-sad.svg │ │ │ │ ├── face-sick.svg │ │ │ │ ├── face-sleeping.svg │ │ │ │ ├── face-smile-big.svg │ │ │ │ ├── face-smile-grin.svg │ │ │ │ ├── face-smile.svg │ │ │ │ ├── face-smirk.svg │ │ │ │ ├── face-surprise.svg │ │ │ │ ├── face-uncertain.svg │ │ │ │ ├── face-wink.svg │ │ │ │ ├── face-worried.svg │ │ │ │ ├── face-yawn.svg │ │ │ │ └── food-cake.svg │ │ ├── index.theme │ │ ├── mimetypes │ │ │ ├── 22 │ │ │ │ ├── android-package-archive.svg │ │ │ │ ├── application-atom+xml.svg │ │ │ │ ├── application-certificate.svg │ │ │ │ ├── application-dicom.svg │ │ │ │ ├── application-epub+zip.svg │ │ │ │ ├── application-gzip.svg │ │ │ │ ├── application-illustrator.svg │ │ │ │ ├── application-javascript.svg │ │ │ │ ├── application-json.svg │ │ │ │ ├── application-mac-binhex40.svg │ │ │ │ ├── application-mathml+xml.svg │ │ │ │ ├── application-msonenote.svg │ │ │ │ ├── application-msoutlook.svg │ │ │ │ ├── application-msword-template.svg │ │ │ │ ├── application-msword.svg │ │ │ │ ├── application-octet-stream.svg │ │ │ │ ├── application-ogg.svg │ │ │ │ ├── application-pdf.svg │ │ │ │ ├── application-pgp-encrypted.svg │ │ │ │ ├── application-pgp-keys.svg │ │ │ │ ├── application-pgp-signature.svg │ │ │ │ ├── application-pgp.svg │ │ │ │ ├── application-pkcs12.svg │ │ │ │ ├── application-pkcs7-mime.svg │ │ │ │ ├── application-pkcs7-signature.svg │ │ │ │ ├── application-pkix-cerl.svg │ │ │ │ ├── application-pkix-cert.svg │ │ │ │ ├── application-postscript.svg │ │ │ │ ├── application-relaxng.svg │ │ │ │ ├── application-rss+xml.svg │ │ │ │ ├── application-rtf.svg │ │ │ │ ├── application-sql.svg │ │ │ │ ├── application-sxw.svg │ │ │ │ ├── application-vnd.android.package-archive.svg │ │ │ │ ├── application-vnd.appimage.svg │ │ │ │ ├── application-vnd.apple.pkpass.svg │ │ │ │ ├── application-vnd.debian.binary-package.svg │ │ │ │ ├── application-vnd.flatpak.ref.svg │ │ │ │ ├── application-vnd.google-earth.kml+xml.svg │ │ │ │ ├── application-vnd.iccprofile.svg │ │ │ │ ├── application-vnd.ms-access.svg │ │ │ │ ├── application-vnd.ms-excel.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.svg │ │ │ │ ├── application-vnd.ms-excel.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-infopath.svg │ │ │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.svg │ │ │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-publisher.svg │ │ │ │ ├── application-vnd.ms-word.document.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-word.svg │ │ │ │ ├── application-vnd.ms-word.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.nintendo.snes.rom.svg │ │ │ │ ├── application-vnd.nokia.xml.qt.resource.svg │ │ │ │ ├── application-vnd.oasis.opendocument.chart.svg │ │ │ │ ├── application-vnd.oasis.opendocument.database.svg │ │ │ │ ├── application-vnd.oasis.opendocument.draw.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula.svg │ │ │ │ ├── application-vnd.oasis.opendocument.graphics.svg │ │ │ │ ├── application-vnd.oasis.opendocument.image.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-master.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text.svg │ │ │ │ ├── application-vnd.oasis.opendocument.web-template.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg │ │ │ │ ├── application-vnd.rar.svg │ │ │ │ ├── application-vnd.rn-realmedia.svg │ │ │ │ ├── application-vnd.scribus.svg │ │ │ │ ├── application-vnd.sqlite3.svg │ │ │ │ ├── application-vnd.squashfs.svg │ │ │ │ ├── application-vnd.stardivision.calc.svg │ │ │ │ ├── application-vnd.stardivision.draw.svg │ │ │ │ ├── application-vnd.stardivision.mail.svg │ │ │ │ ├── application-vnd.stardivision.math.svg │ │ │ │ ├── application-vnd.sun.xml.calc.svg │ │ │ │ ├── application-vnd.sun.xml.calc.template.svg │ │ │ │ ├── application-vnd.sun.xml.draw.svg │ │ │ │ ├── application-vnd.sun.xml.draw.template.svg │ │ │ │ ├── application-vnd.sun.xml.impress.svg │ │ │ │ ├── application-vnd.sun.xml.impress.template.svg │ │ │ │ ├── application-vnd.sun.xml.math.svg │ │ │ │ ├── application-vnd.sun.xml.writer.global.svg │ │ │ │ ├── application-vnd.sun.xml.writer.svg │ │ │ │ ├── application-vnd.sun.xml.writer.template.svg │ │ │ │ ├── application-vnd.visio.svg │ │ │ │ ├── application-vnd.wordperfect.svg │ │ │ │ ├── application-wps-office.doc.svg │ │ │ │ ├── application-wps-office.docx.svg │ │ │ │ ├── application-wps-office.dot.svg │ │ │ │ ├── application-wps-office.dotx.svg │ │ │ │ ├── application-wps-office.pot.svg │ │ │ │ ├── application-wps-office.potx.svg │ │ │ │ ├── application-wps-office.ppt.svg │ │ │ │ ├── application-wps-office.pptx.svg │ │ │ │ ├── application-wps-office.xls.svg │ │ │ │ ├── application-wps-office.xlsx.svg │ │ │ │ ├── application-wps-office.xlt.svg │ │ │ │ ├── application-wps-office.xltx.svg │ │ │ │ ├── application-x-7z-compressed.svg │ │ │ │ ├── application-x-abiword.svg │ │ │ │ ├── application-x-ace.svg │ │ │ │ ├── application-x-apple-diskimage.svg │ │ │ │ ├── application-x-applix-spreadsheet.svg │ │ │ │ ├── application-x-applix-word.svg │ │ │ │ ├── application-x-ar.svg │ │ │ │ ├── application-x-arc.svg │ │ │ │ ├── application-x-archive.svg │ │ │ │ ├── application-x-arj.svg │ │ │ │ ├── application-x-audacity-project.svg │ │ │ │ ├── application-x-awk.svg │ │ │ │ ├── application-x-bittorrent.svg │ │ │ │ ├── application-x-blender.svg │ │ │ │ ├── application-x-bzdvi.svg │ │ │ │ ├── application-x-bzip-compressed-tar.svg │ │ │ │ ├── application-x-bzip.svg │ │ │ │ ├── application-x-cd-image.svg │ │ │ │ ├── application-x-cda.svg │ │ │ │ ├── application-x-chm.svg │ │ │ │ ├── application-x-compress.svg │ │ │ │ ├── application-x-compressed-tar.svg │ │ │ │ ├── application-x-core.svg │ │ │ │ ├── application-x-cpio.svg │ │ │ │ ├── application-x-cue.svg │ │ │ │ ├── application-x-deb.svg │ │ │ │ ├── application-x-designer.svg │ │ │ │ ├── application-x-desktop.svg │ │ │ │ ├── application-x-egon.svg │ │ │ │ ├── application-x-executable-script.svg │ │ │ │ ├── application-x-executable.svg │ │ │ │ ├── application-x-fictionbook+xml.svg │ │ │ │ ├── application-x-flash-video.svg │ │ │ │ ├── application-x-font-afm.svg │ │ │ │ ├── application-x-font-bdf.svg │ │ │ │ ├── application-x-font-otf.svg │ │ │ │ ├── application-x-font-pcf.svg │ │ │ │ ├── application-x-font-snf.svg │ │ │ │ ├── application-x-font-ttf.svg │ │ │ │ ├── application-x-font-ttx.svg │ │ │ │ ├── application-x-font-type1.svg │ │ │ │ ├── application-x-gameboy-rom.svg │ │ │ │ ├── application-x-gamecube-rom.svg │ │ │ │ ├── application-x-gba-rom.svg │ │ │ │ ├── application-x-gdscript.svg │ │ │ │ ├── application-x-gettext-translation.svg │ │ │ │ ├── application-x-gnumeric.svg │ │ │ │ ├── application-x-godot-project.svg │ │ │ │ ├── application-x-godot-resource.svg │ │ │ │ ├── application-x-godot-scene.svg │ │ │ │ ├── application-x-godot-shader.svg │ │ │ │ ├── application-x-gzdvi.svg │ │ │ │ ├── application-x-gzip.svg │ │ │ │ ├── application-x-gzpostscript.svg │ │ │ │ ├── application-x-iso.svg │ │ │ │ ├── application-x-iso9660-appimage.svg │ │ │ │ ├── application-x-it87.svg │ │ │ │ ├── application-x-jar.svg │ │ │ │ ├── application-x-java-applet.svg │ │ │ │ ├── application-x-java-archive.svg │ │ │ │ ├── application-x-java.svg │ │ │ │ ├── application-x-javascript.svg │ │ │ │ ├── application-x-k3b.svg │ │ │ │ ├── application-x-kcsrc.svg │ │ │ │ ├── application-x-kdenlivetitle.svg │ │ │ │ ├── application-x-kexi-connectiondata.svg │ │ │ │ ├── application-x-kexiproject-shortcut.svg │ │ │ │ ├── application-x-kexiproject-sqlite.svg │ │ │ │ ├── application-x-kexiproject-sqlite2.svg │ │ │ │ ├── application-x-kexiproject-sqlite3.svg │ │ │ │ ├── application-x-kformula.svg │ │ │ │ ├── application-x-kgetlist.svg │ │ │ │ ├── application-x-kmymoney.svg │ │ │ │ ├── application-x-kontour.svg │ │ │ │ ├── application-x-kplato.svg │ │ │ │ ├── application-x-krita.svg │ │ │ │ ├── application-x-kvtml.svg │ │ │ │ ├── application-x-kword.svg │ │ │ │ ├── application-x-lha.svg │ │ │ │ ├── application-x-lyx.svg │ │ │ │ ├── application-x-lzma-compressed-tar.svg │ │ │ │ ├── application-x-lzop.svg │ │ │ │ ├── application-x-m4.svg │ │ │ │ ├── application-x-macbinary.svg │ │ │ │ ├── application-x-marble.svg │ │ │ │ ├── application-x-mimearchive.svg │ │ │ │ ├── application-x-mplayer2.svg │ │ │ │ ├── application-x-ms-dos-executable.svg │ │ │ │ ├── application-x-ms-shortcut.svg │ │ │ │ ├── application-x-ms-wim.svg │ │ │ │ ├── application-x-mswinurl.svg │ │ │ │ ├── application-x-mswrite.svg │ │ │ │ ├── application-x-n64-rom.svg │ │ │ │ ├── application-x-nes-rom.svg │ │ │ │ ├── application-x-nintendo-ds-rom.svg │ │ │ │ ├── application-x-nzb.svg │ │ │ │ ├── application-x-object.svg │ │ │ │ ├── application-x-pak.svg │ │ │ │ ├── application-x-partial-download.svg │ │ │ │ ├── application-x-pem-key.svg │ │ │ │ ├── application-x-perl.svg │ │ │ │ ├── application-x-php.svg │ │ │ │ ├── application-x-pkcs12.svg │ │ │ │ ├── application-x-pkcs7-certificates.svg │ │ │ │ ├── application-x-plasma.svg │ │ │ │ ├── application-x-python-bytecode.svg │ │ │ │ ├── application-x-qemu-disk.svg │ │ │ │ ├── application-x-qet-element.svg │ │ │ │ ├── application-x-qet-project.svg │ │ │ │ ├── application-x-quattropro.svg │ │ │ │ ├── application-x-rar.svg │ │ │ │ ├── application-x-raw-disk-image.svg │ │ │ │ ├── application-x-rdata.svg │ │ │ │ ├── application-x-root.svg │ │ │ │ ├── application-x-rpm.svg │ │ │ │ ├── application-x-ruby.svg │ │ │ │ ├── application-x-sami.svg │ │ │ │ ├── application-x-sharedlib.svg │ │ │ │ ├── application-x-shellscript.svg │ │ │ │ ├── application-x-shockwave-flash.svg │ │ │ │ ├── application-x-siag.svg │ │ │ │ ├── application-x-sif.svg │ │ │ │ ├── application-x-skg.svg │ │ │ │ ├── application-x-skgc.svg │ │ │ │ ├── application-x-smb-server.svg │ │ │ │ ├── application-x-smb-workgroup.svg │ │ │ │ ├── application-x-source-rpm.svg │ │ │ │ ├── application-x-sqlite2.svg │ │ │ │ ├── application-x-sqlite3.svg │ │ │ │ ├── application-x-srt.svg │ │ │ │ ├── application-x-srtrip.svg │ │ │ │ ├── application-x-subrip.svg │ │ │ │ ├── application-x-tar.svg │ │ │ │ ├── application-x-tarz.svg │ │ │ │ ├── application-x-tgif.svg │ │ │ │ ├── application-x-theme.svg │ │ │ │ ├── application-x-trash.svg │ │ │ │ ├── application-x-troff-man.svg │ │ │ │ ├── application-x-tzo.svg │ │ │ │ ├── application-x-wmf.svg │ │ │ │ ├── application-x-x509-ca-cert.svg │ │ │ │ ├── application-x-x509-user-cert.svg │ │ │ │ ├── application-x-xliff.svg │ │ │ │ ├── application-x-xpinstall.svg │ │ │ │ ├── application-x-xz-compressed-tar.svg │ │ │ │ ├── application-x-xz-pkg.svg │ │ │ │ ├── application-x-zerosize.svg │ │ │ │ ├── application-x-zip-compressed-fb2.svg │ │ │ │ ├── application-x-zoo.svg │ │ │ │ ├── application-xhtml+xml.svg │ │ │ │ ├── application-xmind.svg │ │ │ │ ├── application-xml.svg │ │ │ │ ├── application-xsd.svg │ │ │ │ ├── application-xslt+xml.svg │ │ │ │ ├── application-zip.svg │ │ │ │ ├── audio-ac3.svg │ │ │ │ ├── audio-flac.svg │ │ │ │ ├── audio-midi.svg │ │ │ │ ├── audio-mp2.svg │ │ │ │ ├── audio-mp3.svg │ │ │ │ ├── audio-mp4.svg │ │ │ │ ├── audio-mpeg.svg │ │ │ │ ├── audio-prs.sid.svg │ │ │ │ ├── audio-vn.rn-realmedia.svg │ │ │ │ ├── audio-vnd.rn-realvideo.svg │ │ │ │ ├── audio-x-adpcm.svg │ │ │ │ ├── audio-x-aiff.svg │ │ │ │ ├── audio-x-flac+ogg.svg │ │ │ │ ├── audio-x-flac.svg │ │ │ │ ├── audio-x-generic.svg │ │ │ │ ├── audio-x-monkey.svg │ │ │ │ ├── audio-x-mp2.svg │ │ │ │ ├── audio-x-mpeg.svg │ │ │ │ ├── audio-x-speex+ogg.svg │ │ │ │ ├── audio-x-wav.svg │ │ │ │ ├── audiobook.svg │ │ │ │ ├── encrypted.svg │ │ │ │ ├── font-otf.svg │ │ │ │ ├── font-ttf.svg │ │ │ │ ├── fonts-package.svg │ │ │ │ ├── image-bmp.svg │ │ │ │ ├── image-gif.svg │ │ │ │ ├── image-ico.svg │ │ │ │ ├── image-jpeg.svg │ │ │ │ ├── image-jpeg2000.svg │ │ │ │ ├── image-png.svg │ │ │ │ ├── image-svg+xml-compressed.svg │ │ │ │ ├── image-svg+xml.svg │ │ │ │ ├── image-tiff.svg │ │ │ │ ├── image-vnd.dgn.svg │ │ │ │ ├── image-vnd.djvu.svg │ │ │ │ ├── image-vnd.dwg.svg │ │ │ │ ├── image-vnd.microsoft.icon.svg │ │ │ │ ├── image-x-adobe-dng.svg │ │ │ │ ├── image-x-compressed-xcf.svg │ │ │ │ ├── image-x-emf.svg │ │ │ │ ├── image-x-eps.svg │ │ │ │ ├── image-x-generic.svg │ │ │ │ ├── image-x-ico.svg │ │ │ │ ├── image-x-icon.svg │ │ │ │ ├── image-x-krita.svg │ │ │ │ ├── image-x-portable-bitmap.svg │ │ │ │ ├── image-x-psd.svg │ │ │ │ ├── image-x-psdimage-x-psd.svg │ │ │ │ ├── image-x-svg+xml.svg │ │ │ │ ├── image-x-tga.svg │ │ │ │ ├── image-x-vnd.trolltech.qpicture.svg │ │ │ │ ├── image-x-win-bitmap.svg │ │ │ │ ├── image-x-win-bmp.svg │ │ │ │ ├── image-x-wmf.svg │ │ │ │ ├── image-x-xcf.svg │ │ │ │ ├── image-x-xfig.svg │ │ │ │ ├── inode-directory.svg │ │ │ │ ├── libreoffice-database.svg │ │ │ │ ├── libreoffice-drawing-template.svg │ │ │ │ ├── libreoffice-drawing.svg │ │ │ │ ├── libreoffice-extension.svg │ │ │ │ ├── libreoffice-formula.svg │ │ │ │ ├── libreoffice-master-document.svg │ │ │ │ ├── libreoffice-oasis-database.svg │ │ │ │ ├── libreoffice-oasis-drawing-template.svg │ │ │ │ ├── libreoffice-oasis-drawing.svg │ │ │ │ ├── libreoffice-oasis-formula.svg │ │ │ │ ├── libreoffice-oasis-master-document.svg │ │ │ │ ├── libreoffice-oasis-presentation-template.svg │ │ │ │ ├── libreoffice-oasis-presentation.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-template.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet.svg │ │ │ │ ├── libreoffice-oasis-text-template.svg │ │ │ │ ├── libreoffice-oasis-text.svg │ │ │ │ ├── libreoffice-oasis-web-template.svg │ │ │ │ ├── libreoffice-presentation-template.svg │ │ │ │ ├── libreoffice-presentation.svg │ │ │ │ ├── libreoffice-spreadsheet-template.svg │ │ │ │ ├── libreoffice-spreadsheet.svg │ │ │ │ ├── libreoffice-text-template.svg │ │ │ │ ├── libreoffice-text.svg │ │ │ │ ├── message-news.svg │ │ │ │ ├── message-partial.svg │ │ │ │ ├── message-rfc822.svg │ │ │ │ ├── message-x-gnu-rmail.svg │ │ │ │ ├── message.svg │ │ │ │ ├── none.svg │ │ │ │ ├── odf.svg │ │ │ │ ├── package-x-generic.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── text-calendar.svg │ │ │ │ ├── text-csharp.svg │ │ │ │ ├── text-css.svg │ │ │ │ ├── text-csv.svg │ │ │ │ ├── text-directory.svg │ │ │ │ ├── text-dockerfile.svg │ │ │ │ ├── text-enriched.svg │ │ │ │ ├── text-html.svg │ │ │ │ ├── text-markdown.svg │ │ │ │ ├── text-plain.svg │ │ │ │ ├── text-rdf+xml.svg │ │ │ │ ├── text-rdf.svg │ │ │ │ ├── text-rtf.svg │ │ │ │ ├── text-rust.svg │ │ │ │ ├── text-sgml.svg │ │ │ │ ├── text-troff.svg │ │ │ │ ├── text-vcalendar.svg │ │ │ │ ├── text-vnd.abc.svg │ │ │ │ ├── text-vnd.kde.kcrash-report.svg │ │ │ │ ├── text-vnd.trolltech.linguist.svg │ │ │ │ ├── text-vnd.wap.wml.svg │ │ │ │ ├── text-vtt.svg │ │ │ │ ├── text-wiki.svg │ │ │ │ ├── text-x-adasrc.svg │ │ │ │ ├── text-x-apport.svg │ │ │ │ ├── text-x-authors.svg │ │ │ │ ├── text-x-bibtex.svg │ │ │ │ ├── text-x-c++hdr.svg │ │ │ │ ├── text-x-c++src.svg │ │ │ │ ├── text-x-changelog.svg │ │ │ │ ├── text-x-chdr.svg │ │ │ │ ├── text-x-cmake.svg │ │ │ │ ├── text-x-copying.svg │ │ │ │ ├── text-x-credits.svg │ │ │ │ ├── text-x-csharp.svg │ │ │ │ ├── text-x-csrc.svg │ │ │ │ ├── text-x-dtd.svg │ │ │ │ ├── text-x-generic.svapplication-x-awk.svg │ │ │ │ ├── text-x-generic.svg │ │ │ │ ├── text-x-gettext-translation.svg │ │ │ │ ├── text-x-go.svg │ │ │ │ ├── text-x-haskell.svg │ │ │ │ ├── text-x-hex.svg │ │ │ │ ├── text-x-install.svg │ │ │ │ ├── text-x-java-source.svg │ │ │ │ ├── text-x-java.svg │ │ │ │ ├── text-x-javascript.svg │ │ │ │ ├── text-x-katefilelist.svg │ │ │ │ ├── text-x-kotlin.svg │ │ │ │ ├── text-x-ldif.svg │ │ │ │ ├── text-x-lilypond.svg │ │ │ │ ├── text-x-log.svg │ │ │ │ ├── text-x-lua.svg │ │ │ │ ├── text-x-makefile.svg │ │ │ │ ├── text-x-markdown.svg │ │ │ │ ├── text-x-microdvd.svg │ │ │ │ ├── text-x-mpsub.svg │ │ │ │ ├── text-x-nfo.svg │ │ │ │ ├── text-x-objchdr.svg │ │ │ │ ├── text-x-objcsrc.svg │ │ │ │ ├── text-x-opml+xml.svg │ │ │ │ ├── text-x-opml.svg │ │ │ │ ├── text-x-pascal.svg │ │ │ │ ├── text-x-patch.svg │ │ │ │ ├── text-x-plain.svg │ │ │ │ ├── text-x-po.svg │ │ │ │ ├── text-x-python.svg │ │ │ │ ├── text-x-python3.svg │ │ │ │ ├── text-x-qml.svg │ │ │ │ ├── text-x-r.svg │ │ │ │ ├── text-x-readme.svg │ │ │ │ ├── text-x-rpm-spec.svg │ │ │ │ ├── text-x-rust.svg │ │ │ │ ├── text-x-scala.svg │ │ │ │ ├── text-x-script.svg │ │ │ │ ├── text-x-sql.svg │ │ │ │ ├── text-x-ssa.svg │ │ │ │ ├── text-x-subviewer.svg │ │ │ │ ├── text-x-tcl.svg │ │ │ │ ├── text-x-tex.svg │ │ │ │ ├── text-x-texinfo.svg │ │ │ │ ├── text-x-vcard.svg │ │ │ │ ├── text-x-xslfo.svg │ │ │ │ ├── text-xmcd.svg │ │ │ │ ├── text-xml.svg │ │ │ │ ├── unknown.svg │ │ │ │ ├── uri-mms.svg │ │ │ │ ├── uri-mmst.svg │ │ │ │ ├── uri-pnm.svg │ │ │ │ ├── uri-rtspt.svg │ │ │ │ ├── uri-rtspu.svg │ │ │ │ ├── video-mlt-playlist.svg │ │ │ │ ├── video-mp2t.svg │ │ │ │ ├── video-mp4.svg │ │ │ │ ├── video-vivo.svg │ │ │ │ ├── video-vnd.rn-realvideo.svg │ │ │ │ ├── video-wavelet.svg │ │ │ │ ├── video-webm.svg │ │ │ │ ├── video-x-anim.svg │ │ │ │ ├── video-x-flic.svg │ │ │ │ ├── video-x-flv.svg │ │ │ │ ├── video-x-generic.svg │ │ │ │ ├── video-x-google-vlc-plugin.svg │ │ │ │ ├── video-x-javafx.svg │ │ │ │ ├── video-x-matroska.svg │ │ │ │ ├── video-x-mng.svg │ │ │ │ ├── video-x-ms-wmp.svg │ │ │ │ ├── video-x-ms-wmv.svg │ │ │ │ ├── video-x-msvideo.svg │ │ │ │ ├── video-x-ogm+ogg.svg │ │ │ │ ├── video-x-theora+ogg.svg │ │ │ │ ├── video-x-wmv.svg │ │ │ │ ├── viewbib.svg │ │ │ │ ├── viewdvi.svg │ │ │ │ ├── viewhtml.svg │ │ │ │ ├── viewpdf.svg │ │ │ │ ├── viewps.svg │ │ │ │ ├── virtualbox-hdd.svg │ │ │ │ ├── virtualbox-ova.svg │ │ │ │ ├── virtualbox-ovf.svg │ │ │ │ ├── virtualbox-vbox-extpack.svg │ │ │ │ ├── virtualbox-vbox.svg │ │ │ │ ├── virtualbox-vdi.svg │ │ │ │ ├── virtualbox-vhd.svg │ │ │ │ ├── virtualbox-vmdk.svg │ │ │ │ ├── vnd.ms-publisher.svg │ │ │ │ ├── x-kde-nsplugin-generated.svg │ │ │ │ ├── x-mail-distribution-list.svg │ │ │ │ ├── x-media-podcast.svg │ │ │ │ ├── x-office-address-book.svg │ │ │ │ ├── x-office-calendar.svg │ │ │ │ ├── x-office-contact.svg │ │ │ │ ├── x-office-document.svg │ │ │ │ ├── x-office-drawing.svg │ │ │ │ ├── x-office-presentation.svg │ │ │ │ └── x-office-spreadsheet.svg │ │ │ ├── 32 │ │ │ │ ├── android-package-archive.svg │ │ │ │ ├── application-atom+xml.svg │ │ │ │ ├── application-certificate.svg │ │ │ │ ├── application-dicom.svg │ │ │ │ ├── application-epub+zip.svg │ │ │ │ ├── application-gzip.svg │ │ │ │ ├── application-illustrator.svg │ │ │ │ ├── application-javascript.svg │ │ │ │ ├── application-json.svg │ │ │ │ ├── application-mac-binhex40.svg │ │ │ │ ├── application-mathml+xml.svg │ │ │ │ ├── application-msonenote.svg │ │ │ │ ├── application-msoutlook.svg │ │ │ │ ├── application-msword-template.svg │ │ │ │ ├── application-msword.svg │ │ │ │ ├── application-octet-stream.svg │ │ │ │ ├── application-ogg.svg │ │ │ │ ├── application-pdf.svg │ │ │ │ ├── application-pgp-encrypted.svg │ │ │ │ ├── application-pgp-keys.svg │ │ │ │ ├── application-pgp-signature.svg │ │ │ │ ├── application-pgp.svg │ │ │ │ ├── application-pkcs12.svg │ │ │ │ ├── application-pkcs7-mime.svg │ │ │ │ ├── application-pkcs7-signature.svg │ │ │ │ ├── application-pkix-cerl.svg │ │ │ │ ├── application-pkix-cert.svg │ │ │ │ ├── application-postscript.svg │ │ │ │ ├── application-relaxng.svg │ │ │ │ ├── application-rss+xml.svg │ │ │ │ ├── application-rtf.svg │ │ │ │ ├── application-sql.svg │ │ │ │ ├── application-sxw.svg │ │ │ │ ├── application-vnd.android.package-archive.svg │ │ │ │ ├── application-vnd.appimage.svg │ │ │ │ ├── application-vnd.apple.pkpass.svg │ │ │ │ ├── application-vnd.debian.binary-package.svg │ │ │ │ ├── application-vnd.flatpak.ref.svg │ │ │ │ ├── application-vnd.google-earth.kml+xml.svg │ │ │ │ ├── application-vnd.iccprofile.svg │ │ │ │ ├── application-vnd.ms-access.svg │ │ │ │ ├── application-vnd.ms-excel.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.svg │ │ │ │ ├── application-vnd.ms-excel.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-infopath.svg │ │ │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.svg │ │ │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-publisher.svg │ │ │ │ ├── application-vnd.ms-word.document.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-word.svg │ │ │ │ ├── application-vnd.ms-word.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.nintendo.snes.rom.svg │ │ │ │ ├── application-vnd.nokia.xml.qt.resource.svg │ │ │ │ ├── application-vnd.oasis.opendocument.chart.svg │ │ │ │ ├── application-vnd.oasis.opendocument.database.svg │ │ │ │ ├── application-vnd.oasis.opendocument.draw.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula.svg │ │ │ │ ├── application-vnd.oasis.opendocument.graphics.svg │ │ │ │ ├── application-vnd.oasis.opendocument.image.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-master.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text.svg │ │ │ │ ├── application-vnd.oasis.opendocument.web-template.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg │ │ │ │ ├── application-vnd.rar.svg │ │ │ │ ├── application-vnd.rn-realmedia.svg │ │ │ │ ├── application-vnd.scribus.svg │ │ │ │ ├── application-vnd.sqlite3.svg │ │ │ │ ├── application-vnd.squashfs.svg │ │ │ │ ├── application-vnd.stardivision.calc.svg │ │ │ │ ├── application-vnd.stardivision.draw.svg │ │ │ │ ├── application-vnd.stardivision.mail.svg │ │ │ │ ├── application-vnd.stardivision.math.svg │ │ │ │ ├── application-vnd.sun.xml.calc.svg │ │ │ │ ├── application-vnd.sun.xml.calc.template.svg │ │ │ │ ├── application-vnd.sun.xml.draw.svg │ │ │ │ ├── application-vnd.sun.xml.draw.template.svg │ │ │ │ ├── application-vnd.sun.xml.impress.svg │ │ │ │ ├── application-vnd.sun.xml.impress.template.svg │ │ │ │ ├── application-vnd.sun.xml.math.svg │ │ │ │ ├── application-vnd.sun.xml.writer.global.svg │ │ │ │ ├── application-vnd.sun.xml.writer.svg │ │ │ │ ├── application-vnd.sun.xml.writer.template.svg │ │ │ │ ├── application-vnd.visio.svg │ │ │ │ ├── application-vnd.wordperfect.svg │ │ │ │ ├── application-wps-office.doc.svg │ │ │ │ ├── application-wps-office.docx.svg │ │ │ │ ├── application-wps-office.dot.svg │ │ │ │ ├── application-wps-office.dotx.svg │ │ │ │ ├── application-wps-office.pot.svg │ │ │ │ ├── application-wps-office.potx.svg │ │ │ │ ├── application-wps-office.ppt.svg │ │ │ │ ├── application-wps-office.pptx.svg │ │ │ │ ├── application-wps-office.xls.svg │ │ │ │ ├── application-wps-office.xlsx.svg │ │ │ │ ├── application-wps-office.xlt.svg │ │ │ │ ├── application-wps-office.xltx.svg │ │ │ │ ├── application-x-7z-compressed.svg │ │ │ │ ├── application-x-abiword.svg │ │ │ │ ├── application-x-ace.svg │ │ │ │ ├── application-x-apple-diskimage.svg │ │ │ │ ├── application-x-applix-spreadsheet.svg │ │ │ │ ├── application-x-applix-word.svg │ │ │ │ ├── application-x-ar.svg │ │ │ │ ├── application-x-arc.svg │ │ │ │ ├── application-x-archive.svg │ │ │ │ ├── application-x-arj.svg │ │ │ │ ├── application-x-audacity-project.svg │ │ │ │ ├── application-x-awk.svg │ │ │ │ ├── application-x-bittorrent.svg │ │ │ │ ├── application-x-blender.svg │ │ │ │ ├── application-x-bzdvi.svg │ │ │ │ ├── application-x-bzip-compressed-tar.svg │ │ │ │ ├── application-x-bzip.svg │ │ │ │ ├── application-x-cd-image.svg │ │ │ │ ├── application-x-cda.svg │ │ │ │ ├── application-x-chm.svg │ │ │ │ ├── application-x-compress.svg │ │ │ │ ├── application-x-compressed-tar.svg │ │ │ │ ├── application-x-core.svg │ │ │ │ ├── application-x-cpio.svg │ │ │ │ ├── application-x-cue.svg │ │ │ │ ├── application-x-deb.svg │ │ │ │ ├── application-x-designer.svg │ │ │ │ ├── application-x-desktop.svg │ │ │ │ ├── application-x-egon.svg │ │ │ │ ├── application-x-executable-script.svg │ │ │ │ ├── application-x-executable.svg │ │ │ │ ├── application-x-fictionbook+xml.svg │ │ │ │ ├── application-x-flash-video.svg │ │ │ │ ├── application-x-font-afm.svg │ │ │ │ ├── application-x-font-bdf.svg │ │ │ │ ├── application-x-font-otf.svg │ │ │ │ ├── application-x-font-pcf.svg │ │ │ │ ├── application-x-font-snf.svg │ │ │ │ ├── application-x-font-ttf.svg │ │ │ │ ├── application-x-font-ttx.svg │ │ │ │ ├── application-x-font-type1.svg │ │ │ │ ├── application-x-gameboy-rom.svg │ │ │ │ ├── application-x-gamecube-rom.svg │ │ │ │ ├── application-x-gba-rom.svg │ │ │ │ ├── application-x-gdscript.svg │ │ │ │ ├── application-x-gettext-translation.svg │ │ │ │ ├── application-x-gnumeric.svg │ │ │ │ ├── application-x-godot-project.svg │ │ │ │ ├── application-x-godot-resource.svg │ │ │ │ ├── application-x-godot-scene.svg │ │ │ │ ├── application-x-godot-shader.svg │ │ │ │ ├── application-x-gzdvi.svg │ │ │ │ ├── application-x-gzip.svg │ │ │ │ ├── application-x-gzpostscript.svg │ │ │ │ ├── application-x-iso.svg │ │ │ │ ├── application-x-iso9660-appimage.svg │ │ │ │ ├── application-x-it87.svg │ │ │ │ ├── application-x-jar.svg │ │ │ │ ├── application-x-java-applet.svg │ │ │ │ ├── application-x-java-archive.svg │ │ │ │ ├── application-x-java.svg │ │ │ │ ├── application-x-javascript.svg │ │ │ │ ├── application-x-k3b.svg │ │ │ │ ├── application-x-kcsrc.svg │ │ │ │ ├── application-x-kdenlivetitle.svg │ │ │ │ ├── application-x-kexi-connectiondata.svg │ │ │ │ ├── application-x-kexiproject-shortcut.svg │ │ │ │ ├── application-x-kexiproject-sqlite.svg │ │ │ │ ├── application-x-kexiproject-sqlite2.svg │ │ │ │ ├── application-x-kexiproject-sqlite3.svg │ │ │ │ ├── application-x-kformula.svg │ │ │ │ ├── application-x-kgetlist.svg │ │ │ │ ├── application-x-kmymoney.svg │ │ │ │ ├── application-x-kontour.svg │ │ │ │ ├── application-x-kplato.svg │ │ │ │ ├── application-x-krita.svg │ │ │ │ ├── application-x-kvtml.svg │ │ │ │ ├── application-x-kword.svg │ │ │ │ ├── application-x-lha.svg │ │ │ │ ├── application-x-lyx.svg │ │ │ │ ├── application-x-lzma-compressed-tar.svg │ │ │ │ ├── application-x-lzop.svg │ │ │ │ ├── application-x-m4.svg │ │ │ │ ├── application-x-macbinary.svg │ │ │ │ ├── application-x-marble.svg │ │ │ │ ├── application-x-mimearchive.svg │ │ │ │ ├── application-x-mplayer2.svg │ │ │ │ ├── application-x-ms-dos-executable.svg │ │ │ │ ├── application-x-ms-shortcut.svg │ │ │ │ ├── application-x-ms-wim.svg │ │ │ │ ├── application-x-mswinurl.svg │ │ │ │ ├── application-x-mswrite.svg │ │ │ │ ├── application-x-n64-rom.svg │ │ │ │ ├── application-x-nes-rom.svg │ │ │ │ ├── application-x-nintendo-ds-rom.svg │ │ │ │ ├── application-x-nzb.svg │ │ │ │ ├── application-x-object.svg │ │ │ │ ├── application-x-pak.svg │ │ │ │ ├── application-x-partial-download.svg │ │ │ │ ├── application-x-pem-key.svg │ │ │ │ ├── application-x-perl.svg │ │ │ │ ├── application-x-php.svg │ │ │ │ ├── application-x-pkcs12.svg │ │ │ │ ├── application-x-pkcs7-certificates.svg │ │ │ │ ├── application-x-plasma.svg │ │ │ │ ├── application-x-python-bytecode.svg │ │ │ │ ├── application-x-qemu-disk.svg │ │ │ │ ├── application-x-qet-element.svg │ │ │ │ ├── application-x-qet-project.svg │ │ │ │ ├── application-x-quattropro.svg │ │ │ │ ├── application-x-rar.svg │ │ │ │ ├── application-x-raw-disk-image.svg │ │ │ │ ├── application-x-rdata.svg │ │ │ │ ├── application-x-root.svg │ │ │ │ ├── application-x-rpm.svg │ │ │ │ ├── application-x-ruby.svg │ │ │ │ ├── application-x-sami.svg │ │ │ │ ├── application-x-sharedlib.svg │ │ │ │ ├── application-x-shellscript.svg │ │ │ │ ├── application-x-shockwave-flash.svg │ │ │ │ ├── application-x-siag.svg │ │ │ │ ├── application-x-sif.svg │ │ │ │ ├── application-x-skg.svg │ │ │ │ ├── application-x-skgc.svg │ │ │ │ ├── application-x-smb-server.svg │ │ │ │ ├── application-x-smb-workgroup.svg │ │ │ │ ├── application-x-source-rpm.svg │ │ │ │ ├── application-x-sqlite2.svg │ │ │ │ ├── application-x-sqlite3.svg │ │ │ │ ├── application-x-srt.svg │ │ │ │ ├── application-x-srtrip.svg │ │ │ │ ├── application-x-subrip.svg │ │ │ │ ├── application-x-tar.svg │ │ │ │ ├── application-x-tarz.svg │ │ │ │ ├── application-x-tgif.svg │ │ │ │ ├── application-x-theme.svg │ │ │ │ ├── application-x-trash.svg │ │ │ │ ├── application-x-troff-man.svg │ │ │ │ ├── application-x-tzo.svg │ │ │ │ ├── application-x-wmf.svg │ │ │ │ ├── application-x-x509-ca-cert.svg │ │ │ │ ├── application-x-x509-user-cert.svg │ │ │ │ ├── application-x-xliff.svg │ │ │ │ ├── application-x-xpinstall.svg │ │ │ │ ├── application-x-xz-compressed-tar.svg │ │ │ │ ├── application-x-xz-pkg.svg │ │ │ │ ├── application-x-zerosize.svg │ │ │ │ ├── application-x-zip-compressed-fb2.svg │ │ │ │ ├── application-x-zoo.svg │ │ │ │ ├── application-xhtml+xml.svg │ │ │ │ ├── application-xmind.svg │ │ │ │ ├── application-xml.svg │ │ │ │ ├── application-xsd.svg │ │ │ │ ├── application-xslt+xml.svg │ │ │ │ ├── application-zip.svg │ │ │ │ ├── audio-ac3.svg │ │ │ │ ├── audio-flac.svg │ │ │ │ ├── audio-midi.svg │ │ │ │ ├── audio-mp2.svg │ │ │ │ ├── audio-mp3.svg │ │ │ │ ├── audio-mp4.svg │ │ │ │ ├── audio-mpeg.svg │ │ │ │ ├── audio-prs.sid.svg │ │ │ │ ├── audio-vn.rn-realmedia.svg │ │ │ │ ├── audio-vnd.rn-realvideo.svg │ │ │ │ ├── audio-x-adpcm.svg │ │ │ │ ├── audio-x-aiff.svg │ │ │ │ ├── audio-x-flac+ogg.svg │ │ │ │ ├── audio-x-flac.svg │ │ │ │ ├── audio-x-generic.svg │ │ │ │ ├── audio-x-monkey.svg │ │ │ │ ├── audio-x-mp2.svg │ │ │ │ ├── audio-x-mpeg.svg │ │ │ │ ├── audio-x-speex+ogg.svg │ │ │ │ ├── audio-x-wav.svg │ │ │ │ ├── audiobook.svg │ │ │ │ ├── encrypted.svg │ │ │ │ ├── font-otf.svg │ │ │ │ ├── font-ttf.svg │ │ │ │ ├── fonts-package.svg │ │ │ │ ├── image-bmp.svg │ │ │ │ ├── image-gif.svg │ │ │ │ ├── image-ico.svg │ │ │ │ ├── image-jpeg.svg │ │ │ │ ├── image-jpeg2000.svg │ │ │ │ ├── image-png.svg │ │ │ │ ├── image-svg+xml-compressed.svg │ │ │ │ ├── image-svg+xml.svg │ │ │ │ ├── image-tiff.svg │ │ │ │ ├── image-vnd.dgn.svg │ │ │ │ ├── image-vnd.djvu.svg │ │ │ │ ├── image-vnd.dwg.svg │ │ │ │ ├── image-vnd.microsoft.icon.svg │ │ │ │ ├── image-x-adobe-dng.svg │ │ │ │ ├── image-x-compressed-xcf.svg │ │ │ │ ├── image-x-emf.svg │ │ │ │ ├── image-x-eps.svg │ │ │ │ ├── image-x-generic.svg │ │ │ │ ├── image-x-ico.svg │ │ │ │ ├── image-x-icon.svg │ │ │ │ ├── image-x-krita.svg │ │ │ │ ├── image-x-portable-bitmap.svg │ │ │ │ ├── image-x-psd.svg │ │ │ │ ├── image-x-psdimage-x-psd.svg │ │ │ │ ├── image-x-svg+xml.svg │ │ │ │ ├── image-x-tga.svg │ │ │ │ ├── image-x-vnd.trolltech.qpicture.svg │ │ │ │ ├── image-x-win-bitmap.svg │ │ │ │ ├── image-x-win-bmp.svg │ │ │ │ ├── image-x-wmf.svg │ │ │ │ ├── image-x-xcf.svg │ │ │ │ ├── image-x-xfig.svg │ │ │ │ ├── inode-directory.svg │ │ │ │ ├── libreoffice-database.svg │ │ │ │ ├── libreoffice-drawing-template.svg │ │ │ │ ├── libreoffice-drawing.svg │ │ │ │ ├── libreoffice-extension.svg │ │ │ │ ├── libreoffice-formula.svg │ │ │ │ ├── libreoffice-master-document.svg │ │ │ │ ├── libreoffice-oasis-database.svg │ │ │ │ ├── libreoffice-oasis-drawing-template.svg │ │ │ │ ├── libreoffice-oasis-drawing.svg │ │ │ │ ├── libreoffice-oasis-formula.svg │ │ │ │ ├── libreoffice-oasis-master-document.svg │ │ │ │ ├── libreoffice-oasis-presentation-template.svg │ │ │ │ ├── libreoffice-oasis-presentation.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-template.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet.svg │ │ │ │ ├── libreoffice-oasis-text-template.svg │ │ │ │ ├── libreoffice-oasis-text.svg │ │ │ │ ├── libreoffice-oasis-web-template.svg │ │ │ │ ├── libreoffice-presentation-template.svg │ │ │ │ ├── libreoffice-presentation.svg │ │ │ │ ├── libreoffice-spreadsheet-template.svg │ │ │ │ ├── libreoffice-spreadsheet.svg │ │ │ │ ├── libreoffice-text-template.svg │ │ │ │ ├── libreoffice-text.svg │ │ │ │ ├── message-news.svg │ │ │ │ ├── message-partial.svg │ │ │ │ ├── message-rfc822.svg │ │ │ │ ├── message-x-gnu-rmail.svg │ │ │ │ ├── message.svg │ │ │ │ ├── none.svg │ │ │ │ ├── odf.svg │ │ │ │ ├── package-x-generic.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── preferences-desktop-cryptography.svg │ │ │ │ ├── text-calendar.svg │ │ │ │ ├── text-csharp.svg │ │ │ │ ├── text-css.svg │ │ │ │ ├── text-csv.svg │ │ │ │ ├── text-directory.svg │ │ │ │ ├── text-dockerfile.svg │ │ │ │ ├── text-enriched.svg │ │ │ │ ├── text-html.svg │ │ │ │ ├── text-markdown.svg │ │ │ │ ├── text-plain.svg │ │ │ │ ├── text-rdf+xml.svg │ │ │ │ ├── text-rdf.svg │ │ │ │ ├── text-rtf.svg │ │ │ │ ├── text-rust.svg │ │ │ │ ├── text-sgml.svg │ │ │ │ ├── text-troff.svg │ │ │ │ ├── text-vcalendar.svg │ │ │ │ ├── text-vnd.abc.svg │ │ │ │ ├── text-vnd.kde.kcrash-report.svg │ │ │ │ ├── text-vnd.trolltech.linguist.svg │ │ │ │ ├── text-vnd.wap.wml.svg │ │ │ │ ├── text-vtt.svg │ │ │ │ ├── text-wiki.svg │ │ │ │ ├── text-x-adasrc.svg │ │ │ │ ├── text-x-apport.svg │ │ │ │ ├── text-x-authors.svg │ │ │ │ ├── text-x-bibtex.svg │ │ │ │ ├── text-x-c++hdr.svg │ │ │ │ ├── text-x-c++src.svg │ │ │ │ ├── text-x-changelog.svg │ │ │ │ ├── text-x-chdr.svg │ │ │ │ ├── text-x-cmake.svg │ │ │ │ ├── text-x-copying.svg │ │ │ │ ├── text-x-credits.svg │ │ │ │ ├── text-x-csharp.svg │ │ │ │ ├── text-x-csrc.svg │ │ │ │ ├── text-x-dtd.svg │ │ │ │ ├── text-x-generic.svapplication-x-awk.svg │ │ │ │ ├── text-x-generic.svg │ │ │ │ ├── text-x-gettext-translation.svg │ │ │ │ ├── text-x-go.svg │ │ │ │ ├── text-x-haskell.svg │ │ │ │ ├── text-x-hex.svg │ │ │ │ ├── text-x-install.svg │ │ │ │ ├── text-x-java-source.svg │ │ │ │ ├── text-x-java.svg │ │ │ │ ├── text-x-javascript.svg │ │ │ │ ├── text-x-katefilelist.svg │ │ │ │ ├── text-x-kotlin.svg │ │ │ │ ├── text-x-ldif.svg │ │ │ │ ├── text-x-lilypond.svg │ │ │ │ ├── text-x-log.svg │ │ │ │ ├── text-x-lua.svg │ │ │ │ ├── text-x-makefile.svg │ │ │ │ ├── text-x-markdown.svg │ │ │ │ ├── text-x-microdvd.svg │ │ │ │ ├── text-x-mpsub.svg │ │ │ │ ├── text-x-nfo.svg │ │ │ │ ├── text-x-objchdr.svg │ │ │ │ ├── text-x-objcsrc.svg │ │ │ │ ├── text-x-opml+xml.svg │ │ │ │ ├── text-x-opml.svg │ │ │ │ ├── text-x-pascal.svg │ │ │ │ ├── text-x-patch.svg │ │ │ │ ├── text-x-plain.svg │ │ │ │ ├── text-x-po.svg │ │ │ │ ├── text-x-python.svg │ │ │ │ ├── text-x-python3.svg │ │ │ │ ├── text-x-qml.svg │ │ │ │ ├── text-x-r.svg │ │ │ │ ├── text-x-readme.svg │ │ │ │ ├── text-x-rpm-spec.svg │ │ │ │ ├── text-x-rust.svg │ │ │ │ ├── text-x-scala.svg │ │ │ │ ├── text-x-script.svg │ │ │ │ ├── text-x-sql.svg │ │ │ │ ├── text-x-ssa.svg │ │ │ │ ├── text-x-subviewer.svg │ │ │ │ ├── text-x-tcl.svg │ │ │ │ ├── text-x-tex.svg │ │ │ │ ├── text-x-texinfo.svg │ │ │ │ ├── text-x-vcard.svg │ │ │ │ ├── text-x-xslfo.svg │ │ │ │ ├── text-xmcd.svg │ │ │ │ ├── text-xml.svg │ │ │ │ ├── unknown.svg │ │ │ │ ├── uri-mms.svg │ │ │ │ ├── uri-mmst.svg │ │ │ │ ├── uri-pnm.svg │ │ │ │ ├── uri-rtspt.svg │ │ │ │ ├── uri-rtspu.svg │ │ │ │ ├── video-mlt-playlist.svg │ │ │ │ ├── video-mp2t.svg │ │ │ │ ├── video-mp4.svg │ │ │ │ ├── video-vivo.svg │ │ │ │ ├── video-vnd.rn-realvideo.svg │ │ │ │ ├── video-wavelet.svg │ │ │ │ ├── video-webm.svg │ │ │ │ ├── video-x-anim.svg │ │ │ │ ├── video-x-flic.svg │ │ │ │ ├── video-x-flv.svg │ │ │ │ ├── video-x-generic.svg │ │ │ │ ├── video-x-google-vlc-plugin.svg │ │ │ │ ├── video-x-javafx.svg │ │ │ │ ├── video-x-matroska.svg │ │ │ │ ├── video-x-mng.svg │ │ │ │ ├── video-x-ms-wmp.svg │ │ │ │ ├── video-x-ms-wmv.svg │ │ │ │ ├── video-x-msvideo.svg │ │ │ │ ├── video-x-ogm+ogg.svg │ │ │ │ ├── video-x-theora+ogg.svg │ │ │ │ ├── video-x-wmv.svg │ │ │ │ ├── viewbib.svg │ │ │ │ ├── viewdvi.svg │ │ │ │ ├── viewhtml.svg │ │ │ │ ├── viewpdf.svg │ │ │ │ ├── viewps.svg │ │ │ │ ├── virtualbox-hdd.svg │ │ │ │ ├── virtualbox-ova.svg │ │ │ │ ├── virtualbox-ovf.svg │ │ │ │ ├── virtualbox-vbox-extpack.svg │ │ │ │ ├── virtualbox-vbox.svg │ │ │ │ ├── virtualbox-vdi.svg │ │ │ │ ├── virtualbox-vhd.svg │ │ │ │ ├── virtualbox-vmdk.svg │ │ │ │ ├── vnd.ms-publisher.svg │ │ │ │ ├── x-kde-nsplugin-generated.svg │ │ │ │ ├── x-mail-distribution-list.svg │ │ │ │ ├── x-media-podcast.svg │ │ │ │ ├── x-office-address-book.svg │ │ │ │ ├── x-office-calendar.svg │ │ │ │ ├── x-office-contact.svg │ │ │ │ ├── x-office-document.svg │ │ │ │ ├── x-office-drawing.svg │ │ │ │ ├── x-office-presentation.svg │ │ │ │ └── x-office-spreadsheet.svg │ │ │ └── 64 │ │ │ │ ├── android-package-archive.svg │ │ │ │ ├── application-atom+xml.svg │ │ │ │ ├── application-certificate.svg │ │ │ │ ├── application-dicom.svg │ │ │ │ ├── application-epub+zip.svg │ │ │ │ ├── application-gzip.svg │ │ │ │ ├── application-illustrator.svg │ │ │ │ ├── application-javascript.svg │ │ │ │ ├── application-json.svg │ │ │ │ ├── application-mac-binhex40.svg │ │ │ │ ├── application-mathml+xml.svg │ │ │ │ ├── application-msonenote.svg │ │ │ │ ├── application-msoutlook.svg │ │ │ │ ├── application-msword-template.svg │ │ │ │ ├── application-msword.svg │ │ │ │ ├── application-octet-stream.svg │ │ │ │ ├── application-ogg.svg │ │ │ │ ├── application-pdf.svg │ │ │ │ ├── application-pgp-encrypted.svg │ │ │ │ ├── application-pgp-keys.svg │ │ │ │ ├── application-pgp-signature.svg │ │ │ │ ├── application-pgp.svg │ │ │ │ ├── application-pkcs12.svg │ │ │ │ ├── application-pkcs7-mime.svg │ │ │ │ ├── application-pkcs7-signature.svg │ │ │ │ ├── application-pkix-cerl.svg │ │ │ │ ├── application-pkix-cert.svg │ │ │ │ ├── application-postscript.svg │ │ │ │ ├── application-relaxng.svg │ │ │ │ ├── application-rss+xml.svg │ │ │ │ ├── application-rtf.svg │ │ │ │ ├── application-sql.svg │ │ │ │ ├── application-sxw.svg │ │ │ │ ├── application-vnd.android.package-archive.svg │ │ │ │ ├── application-vnd.appimage.svg │ │ │ │ ├── application-vnd.apple.pkpass.svg │ │ │ │ ├── application-vnd.debian.binary-package.svg │ │ │ │ ├── application-vnd.flatpak.ref.svg │ │ │ │ ├── application-vnd.google-earth.kml+xml.svg │ │ │ │ ├── application-vnd.iccprofile.svg │ │ │ │ ├── application-vnd.ms-access.svg │ │ │ │ ├── application-vnd.ms-excel.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.svg │ │ │ │ ├── application-vnd.ms-excel.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-infopath.svg │ │ │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.svg │ │ │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-publisher.svg │ │ │ │ ├── application-vnd.ms-word.document.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-word.svg │ │ │ │ ├── application-vnd.ms-word.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.nintendo.snes.rom.svg │ │ │ │ ├── application-vnd.nokia.xml.qt.resource.svg │ │ │ │ ├── application-vnd.oasis.opendocument.chart.svg │ │ │ │ ├── application-vnd.oasis.opendocument.database.svg │ │ │ │ ├── application-vnd.oasis.opendocument.draw.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula.svg │ │ │ │ ├── application-vnd.oasis.opendocument.graphics.svg │ │ │ │ ├── application-vnd.oasis.opendocument.image.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-master.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text.svg │ │ │ │ ├── application-vnd.oasis.opendocument.web-template.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg │ │ │ │ ├── application-vnd.rar.svg │ │ │ │ ├── application-vnd.rn-realmedia.svg │ │ │ │ ├── application-vnd.scribus.svg │ │ │ │ ├── application-vnd.sqlite3.svg │ │ │ │ ├── application-vnd.squashfs.svg │ │ │ │ ├── application-vnd.stardivision.calc.svg │ │ │ │ ├── application-vnd.stardivision.draw.svg │ │ │ │ ├── application-vnd.stardivision.mail.svg │ │ │ │ ├── application-vnd.stardivision.math.svg │ │ │ │ ├── application-vnd.sun.xml.calc.svg │ │ │ │ ├── application-vnd.sun.xml.calc.template.svg │ │ │ │ ├── application-vnd.sun.xml.draw.svg │ │ │ │ ├── application-vnd.sun.xml.draw.template.svg │ │ │ │ ├── application-vnd.sun.xml.impress.svg │ │ │ │ ├── application-vnd.sun.xml.impress.template.svg │ │ │ │ ├── application-vnd.sun.xml.math.svg │ │ │ │ ├── application-vnd.sun.xml.writer.global.svg │ │ │ │ ├── application-vnd.sun.xml.writer.svg │ │ │ │ ├── application-vnd.sun.xml.writer.template.svg │ │ │ │ ├── application-vnd.visio.svg │ │ │ │ ├── application-vnd.wordperfect.svg │ │ │ │ ├── application-wps-office.doc.svg │ │ │ │ ├── application-wps-office.docx.svg │ │ │ │ ├── application-wps-office.dot.svg │ │ │ │ ├── application-wps-office.dotx.svg │ │ │ │ ├── application-wps-office.pot.svg │ │ │ │ ├── application-wps-office.potx.svg │ │ │ │ ├── application-wps-office.ppt.svg │ │ │ │ ├── application-wps-office.pptx.svg │ │ │ │ ├── application-wps-office.xls.svg │ │ │ │ ├── application-wps-office.xlsx.svg │ │ │ │ ├── application-wps-office.xlt.svg │ │ │ │ ├── application-wps-office.xltx.svg │ │ │ │ ├── application-x-7z-compressed.svg │ │ │ │ ├── application-x-abiword.svg │ │ │ │ ├── application-x-ace.svg │ │ │ │ ├── application-x-apple-diskimage.svg │ │ │ │ ├── application-x-applix-spreadsheet.svg │ │ │ │ ├── application-x-applix-word.svg │ │ │ │ ├── application-x-ar.svg │ │ │ │ ├── application-x-arc.svg │ │ │ │ ├── application-x-archive.svg │ │ │ │ ├── application-x-arj.svg │ │ │ │ ├── application-x-audacity-project.svg │ │ │ │ ├── application-x-awk.svg │ │ │ │ ├── application-x-bittorrent.svg │ │ │ │ ├── application-x-blender.svg │ │ │ │ ├── application-x-bzdvi.svg │ │ │ │ ├── application-x-bzip-compressed-tar.svg │ │ │ │ ├── application-x-bzip.svg │ │ │ │ ├── application-x-cd-image.svg │ │ │ │ ├── application-x-cda.svg │ │ │ │ ├── application-x-chm.svg │ │ │ │ ├── application-x-compress.svg │ │ │ │ ├── application-x-compressed-tar.svg │ │ │ │ ├── application-x-core.svg │ │ │ │ ├── application-x-cpio.svg │ │ │ │ ├── application-x-cue.svg │ │ │ │ ├── application-x-deb.svg │ │ │ │ ├── application-x-designer.svg │ │ │ │ ├── application-x-desktop.svg │ │ │ │ ├── application-x-egon.svg │ │ │ │ ├── application-x-executable-script.svg │ │ │ │ ├── application-x-executable.svg │ │ │ │ ├── application-x-fictionbook+xml.svg │ │ │ │ ├── application-x-flash-video.svg │ │ │ │ ├── application-x-font-afm.svg │ │ │ │ ├── application-x-font-bdf.svg │ │ │ │ ├── application-x-font-otf.svg │ │ │ │ ├── application-x-font-pcf.svg │ │ │ │ ├── application-x-font-snf.svg │ │ │ │ ├── application-x-font-ttf.svg │ │ │ │ ├── application-x-font-ttx.svg │ │ │ │ ├── application-x-font-type1.svg │ │ │ │ ├── application-x-gameboy-rom.svg │ │ │ │ ├── application-x-gamecube-rom.svg │ │ │ │ ├── application-x-gba-rom.svg │ │ │ │ ├── application-x-gdscript.svg │ │ │ │ ├── application-x-gettext-translation.svg │ │ │ │ ├── application-x-gnumeric.svg │ │ │ │ ├── application-x-godot-project.svg │ │ │ │ ├── application-x-godot-resource.svg │ │ │ │ ├── application-x-godot-scene.svg │ │ │ │ ├── application-x-godot-shader.svg │ │ │ │ ├── application-x-gzdvi.svg │ │ │ │ ├── application-x-gzip.svg │ │ │ │ ├── application-x-gzpostscript.svg │ │ │ │ ├── application-x-iso.svg │ │ │ │ ├── application-x-iso9660-appimage.svg │ │ │ │ ├── application-x-it87.svg │ │ │ │ ├── application-x-jar.svg │ │ │ │ ├── application-x-java-applet.svg │ │ │ │ ├── application-x-java-archive.svg │ │ │ │ ├── application-x-java.svg │ │ │ │ ├── application-x-javascript.svg │ │ │ │ ├── application-x-k3b.svg │ │ │ │ ├── application-x-kcsrc.svg │ │ │ │ ├── application-x-kdenlivetitle.svg │ │ │ │ ├── application-x-kexi-connectiondata.svg │ │ │ │ ├── application-x-kexiproject-shortcut.svg │ │ │ │ ├── application-x-kexiproject-sqlite.svg │ │ │ │ ├── application-x-kexiproject-sqlite2.svg │ │ │ │ ├── application-x-kexiproject-sqlite3.svg │ │ │ │ ├── application-x-kformula.svg │ │ │ │ ├── application-x-kgetlist.svg │ │ │ │ ├── application-x-kmymoney.svg │ │ │ │ ├── application-x-kontour.svg │ │ │ │ ├── application-x-kplato.svg │ │ │ │ ├── application-x-krita.svg │ │ │ │ ├── application-x-kvtml.svg │ │ │ │ ├── application-x-kword.svg │ │ │ │ ├── application-x-labplot2.svg │ │ │ │ ├── application-x-lha.svg │ │ │ │ ├── application-x-lyx.svg │ │ │ │ ├── application-x-lzma-compressed-tar.svg │ │ │ │ ├── application-x-lzop.svg │ │ │ │ ├── application-x-m4.svg │ │ │ │ ├── application-x-macbinary.svg │ │ │ │ ├── application-x-marble.svg │ │ │ │ ├── application-x-mimearchive.svg │ │ │ │ ├── application-x-mplayer2.svg │ │ │ │ ├── application-x-ms-dos-executable.svg │ │ │ │ ├── application-x-ms-shortcut.svg │ │ │ │ ├── application-x-ms-wim.svg │ │ │ │ ├── application-x-mswinurl.svg │ │ │ │ ├── application-x-mswrite.svg │ │ │ │ ├── application-x-n64-rom.svg │ │ │ │ ├── application-x-nes-rom.svg │ │ │ │ ├── application-x-nintendo-ds-rom.svg │ │ │ │ ├── application-x-nzb.svg │ │ │ │ ├── application-x-object.svg │ │ │ │ ├── application-x-pak.svg │ │ │ │ ├── application-x-partial-download.svg │ │ │ │ ├── application-x-pem-key.svg │ │ │ │ ├── application-x-perl.svg │ │ │ │ ├── application-x-php.svg │ │ │ │ ├── application-x-pkcs12.svg │ │ │ │ ├── application-x-pkcs7-certificates.svg │ │ │ │ ├── application-x-plasma.svg │ │ │ │ ├── application-x-python-bytecode.svg │ │ │ │ ├── application-x-qemu-disk.svg │ │ │ │ ├── application-x-qet-element.svg │ │ │ │ ├── application-x-qet-project.svg │ │ │ │ ├── application-x-quattropro.svg │ │ │ │ ├── application-x-rar.svg │ │ │ │ ├── application-x-raw-disk-image.svg │ │ │ │ ├── application-x-rdata.svg │ │ │ │ ├── application-x-root.svg │ │ │ │ ├── application-x-rpm.svg │ │ │ │ ├── application-x-ruby.svg │ │ │ │ ├── application-x-sami.svg │ │ │ │ ├── application-x-sharedlib.svg │ │ │ │ ├── application-x-shellscript.svg │ │ │ │ ├── application-x-shockwave-flash.svg │ │ │ │ ├── application-x-siag.svg │ │ │ │ ├── application-x-sif.svg │ │ │ │ ├── application-x-skg.svg │ │ │ │ ├── application-x-skgc.svg │ │ │ │ ├── application-x-smb-server.svg │ │ │ │ ├── application-x-smb-workgroup.svg │ │ │ │ ├── application-x-source-rpm.svg │ │ │ │ ├── application-x-sqlite2.svg │ │ │ │ ├── application-x-sqlite3.svg │ │ │ │ ├── application-x-srt.svg │ │ │ │ ├── application-x-srtrip.svg │ │ │ │ ├── application-x-subrip.svg │ │ │ │ ├── application-x-tar.svg │ │ │ │ ├── application-x-tarz.svg │ │ │ │ ├── application-x-tgif.svg │ │ │ │ ├── application-x-theme.svg │ │ │ │ ├── application-x-trash.svg │ │ │ │ ├── application-x-troff-man.svg │ │ │ │ ├── application-x-tzo.svg │ │ │ │ ├── application-x-wmf.svg │ │ │ │ ├── application-x-x509-ca-cert.svg │ │ │ │ ├── application-x-x509-user-cert.svg │ │ │ │ ├── application-x-xliff.svg │ │ │ │ ├── application-x-xpinstall.svg │ │ │ │ ├── application-x-xz-compressed-tar.svg │ │ │ │ ├── application-x-xz-pkg.svg │ │ │ │ ├── application-x-zerosize.svg │ │ │ │ ├── application-x-zip-compressed-fb2.svg │ │ │ │ ├── application-x-zoo.svg │ │ │ │ ├── application-xhtml+xml.svg │ │ │ │ ├── application-xmind.svg │ │ │ │ ├── application-xml.svg │ │ │ │ ├── application-xsd.svg │ │ │ │ ├── application-xslt+xml.svg │ │ │ │ ├── application-zip.svg │ │ │ │ ├── audio-ac3.svg │ │ │ │ ├── audio-flac.svg │ │ │ │ ├── audio-midi.svg │ │ │ │ ├── audio-mp2.svg │ │ │ │ ├── audio-mp3.svg │ │ │ │ ├── audio-mp4.svg │ │ │ │ ├── audio-mpeg.svg │ │ │ │ ├── audio-prs.sid.svg │ │ │ │ ├── audio-vn.rn-realmedia.svg │ │ │ │ ├── audio-vnd.rn-realvideo.svg │ │ │ │ ├── audio-x-adpcm.svg │ │ │ │ ├── audio-x-aiff.svg │ │ │ │ ├── audio-x-flac+ogg.svg │ │ │ │ ├── audio-x-flac.svg │ │ │ │ ├── audio-x-generic.svg │ │ │ │ ├── audio-x-monkey.svg │ │ │ │ ├── audio-x-mp2.svg │ │ │ │ ├── audio-x-mpeg.svg │ │ │ │ ├── audio-x-speex+ogg.svg │ │ │ │ ├── audio-x-wav.svg │ │ │ │ ├── audiobook.svg │ │ │ │ ├── encrypted.svg │ │ │ │ ├── font-otf.svg │ │ │ │ ├── font-ttf.svg │ │ │ │ ├── fonts-package.svg │ │ │ │ ├── image-bmp.svg │ │ │ │ ├── image-gif.svg │ │ │ │ ├── image-ico.svg │ │ │ │ ├── image-jpeg.svg │ │ │ │ ├── image-jpeg2000.svg │ │ │ │ ├── image-png.svg │ │ │ │ ├── image-svg+xml-compressed.svg │ │ │ │ ├── image-svg+xml.svg │ │ │ │ ├── image-tiff.svg │ │ │ │ ├── image-vnd.dgn.svg │ │ │ │ ├── image-vnd.djvu.svg │ │ │ │ ├── image-vnd.dwg.svg │ │ │ │ ├── image-vnd.microsoft.icon.svg │ │ │ │ ├── image-x-adobe-dng.svg │ │ │ │ ├── image-x-compressed-xcf.svg │ │ │ │ ├── image-x-emf.svg │ │ │ │ ├── image-x-eps.svg │ │ │ │ ├── image-x-generic.svg │ │ │ │ ├── image-x-ico.svg │ │ │ │ ├── image-x-icon.svg │ │ │ │ ├── image-x-krita.svg │ │ │ │ ├── image-x-portable-bitmap.svg │ │ │ │ ├── image-x-psd.svg │ │ │ │ ├── image-x-psdimage-x-psd.svg │ │ │ │ ├── image-x-svg+xml.svg │ │ │ │ ├── image-x-tga.svg │ │ │ │ ├── image-x-vnd.trolltech.qpicture.svg │ │ │ │ ├── image-x-win-bitmap.svg │ │ │ │ ├── image-x-win-bmp.svg │ │ │ │ ├── image-x-wmf.svg │ │ │ │ ├── image-x-xcf.svg │ │ │ │ ├── image-x-xfig.svg │ │ │ │ ├── inode-directory.svg │ │ │ │ ├── libreoffice-database.svg │ │ │ │ ├── libreoffice-drawing-template.svg │ │ │ │ ├── libreoffice-drawing.svg │ │ │ │ ├── libreoffice-extension.svg │ │ │ │ ├── libreoffice-formula.svg │ │ │ │ ├── libreoffice-master-document.svg │ │ │ │ ├── libreoffice-oasis-database.svg │ │ │ │ ├── libreoffice-oasis-drawing-template.svg │ │ │ │ ├── libreoffice-oasis-drawing.svg │ │ │ │ ├── libreoffice-oasis-formula.svg │ │ │ │ ├── libreoffice-oasis-master-document.svg │ │ │ │ ├── libreoffice-oasis-presentation-template.svg │ │ │ │ ├── libreoffice-oasis-presentation.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-template.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet.svg │ │ │ │ ├── libreoffice-oasis-text-template.svg │ │ │ │ ├── libreoffice-oasis-text.svg │ │ │ │ ├── libreoffice-oasis-web-template.svg │ │ │ │ ├── libreoffice-presentation-template.svg │ │ │ │ ├── libreoffice-presentation.svg │ │ │ │ ├── libreoffice-spreadsheet-template.svg │ │ │ │ ├── libreoffice-spreadsheet.svg │ │ │ │ ├── libreoffice-text-template.svg │ │ │ │ ├── libreoffice-text.svg │ │ │ │ ├── message-news.svg │ │ │ │ ├── message-partial.svg │ │ │ │ ├── message-rfc822.svg │ │ │ │ ├── message-x-gnu-rmail.svg │ │ │ │ ├── message.svg │ │ │ │ ├── none.svg │ │ │ │ ├── odf.svg │ │ │ │ ├── package-x-generic.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── text-calendar.svg │ │ │ │ ├── text-csharp.svg │ │ │ │ ├── text-css.svg │ │ │ │ ├── text-csv.svg │ │ │ │ ├── text-directory.svg │ │ │ │ ├── text-dockerfile.svg │ │ │ │ ├── text-enriched.svg │ │ │ │ ├── text-html.svg │ │ │ │ ├── text-markdown.svg │ │ │ │ ├── text-plain.svg │ │ │ │ ├── text-rdf+xml.svg │ │ │ │ ├── text-rdf.svg │ │ │ │ ├── text-rtf.svg │ │ │ │ ├── text-rust.svg │ │ │ │ ├── text-sgml.svg │ │ │ │ ├── text-troff.svg │ │ │ │ ├── text-vcalendar.svg │ │ │ │ ├── text-vnd.abc.svg │ │ │ │ ├── text-vnd.kde.kcrash-report.svg │ │ │ │ ├── text-vnd.trolltech.linguist.svg │ │ │ │ ├── text-vnd.wap.wml.svg │ │ │ │ ├── text-vtt.svg │ │ │ │ ├── text-wiki.svg │ │ │ │ ├── text-x-adasrc.svg │ │ │ │ ├── text-x-apport.svg │ │ │ │ ├── text-x-authors.svg │ │ │ │ ├── text-x-bibtex.svg │ │ │ │ ├── text-x-c++hdr.svg │ │ │ │ ├── text-x-c++src.svg │ │ │ │ ├── text-x-changelog.svg │ │ │ │ ├── text-x-chdr.svg │ │ │ │ ├── text-x-cmake.svg │ │ │ │ ├── text-x-copying.svg │ │ │ │ ├── text-x-credits.svg │ │ │ │ ├── text-x-csharp.svg │ │ │ │ ├── text-x-csrc.svg │ │ │ │ ├── text-x-dtd.svg │ │ │ │ ├── text-x-generic.svapplication-x-awk.svg │ │ │ │ ├── text-x-generic.svg │ │ │ │ ├── text-x-gettext-translation.svg │ │ │ │ ├── text-x-go.svg │ │ │ │ ├── text-x-haskell.svg │ │ │ │ ├── text-x-hex.svg │ │ │ │ ├── text-x-install.svg │ │ │ │ ├── text-x-java-source.svg │ │ │ │ ├── text-x-java.svg │ │ │ │ ├── text-x-javascript.svg │ │ │ │ ├── text-x-katefilelist.svg │ │ │ │ ├── text-x-kotlin.svg │ │ │ │ ├── text-x-ldif.svg │ │ │ │ ├── text-x-lilypond.svg │ │ │ │ ├── text-x-log.svg │ │ │ │ ├── text-x-lua.svg │ │ │ │ ├── text-x-makefile.svg │ │ │ │ ├── text-x-markdown.svg │ │ │ │ ├── text-x-microdvd.svg │ │ │ │ ├── text-x-mpsub.svg │ │ │ │ ├── text-x-nfo.svg │ │ │ │ ├── text-x-objchdr.svg │ │ │ │ ├── text-x-objcsrc.svg │ │ │ │ ├── text-x-opml+xml.svg │ │ │ │ ├── text-x-opml.svg │ │ │ │ ├── text-x-pascal.svg │ │ │ │ ├── text-x-patch.svg │ │ │ │ ├── text-x-plain.svg │ │ │ │ ├── text-x-po.svg │ │ │ │ ├── text-x-python.svg │ │ │ │ ├── text-x-python3.svg │ │ │ │ ├── text-x-qml.svg │ │ │ │ ├── text-x-r.svg │ │ │ │ ├── text-x-readme.svg │ │ │ │ ├── text-x-rpm-spec.svg │ │ │ │ ├── text-x-rust.svg │ │ │ │ ├── text-x-sass.svg │ │ │ │ ├── text-x-scala.svg │ │ │ │ ├── text-x-script.svg │ │ │ │ ├── text-x-scss.svg │ │ │ │ ├── text-x-sql.svg │ │ │ │ ├── text-x-ssa.svg │ │ │ │ ├── text-x-subviewer.svg │ │ │ │ ├── text-x-tcl.svg │ │ │ │ ├── text-x-tex.svg │ │ │ │ ├── text-x-texinfo.svg │ │ │ │ ├── text-x-vcard.svg │ │ │ │ ├── text-x-xslfo.svg │ │ │ │ ├── text-xmcd.svg │ │ │ │ ├── text-xml.svg │ │ │ │ ├── unknown.svg │ │ │ │ ├── uri-mms.svg │ │ │ │ ├── uri-mmst.svg │ │ │ │ ├── uri-pnm.svg │ │ │ │ ├── uri-rtspt.svg │ │ │ │ ├── uri-rtspu.svg │ │ │ │ ├── video-mlt-playlist.svg │ │ │ │ ├── video-mp2t.svg │ │ │ │ ├── video-mp4.svg │ │ │ │ ├── video-vivo.svg │ │ │ │ ├── video-vnd.rn-realvideo.svg │ │ │ │ ├── video-wavelet.svg │ │ │ │ ├── video-webm.svg │ │ │ │ ├── video-x-anim.svg │ │ │ │ ├── video-x-flic.svg │ │ │ │ ├── video-x-flv.svg │ │ │ │ ├── video-x-generic.svg │ │ │ │ ├── video-x-google-vlc-plugin.svg │ │ │ │ ├── video-x-javafx.svg │ │ │ │ ├── video-x-matroska.svg │ │ │ │ ├── video-x-mng.svg │ │ │ │ ├── video-x-ms-wmp.svg │ │ │ │ ├── video-x-ms-wmv.svg │ │ │ │ ├── video-x-msvideo.svg │ │ │ │ ├── video-x-ogm+ogg.svg │ │ │ │ ├── video-x-theora+ogg.svg │ │ │ │ ├── video-x-wmv.svg │ │ │ │ ├── viewbib.svg │ │ │ │ ├── viewdvi.svg │ │ │ │ ├── viewhtml.svg │ │ │ │ ├── viewpdf.svg │ │ │ │ ├── viewps.svg │ │ │ │ ├── virtualbox-hdd.svg │ │ │ │ ├── virtualbox-ova.svg │ │ │ │ ├── virtualbox-ovf.svg │ │ │ │ ├── virtualbox-vbox-extpack.svg │ │ │ │ ├── virtualbox-vbox.svg │ │ │ │ ├── virtualbox-vdi.svg │ │ │ │ ├── virtualbox-vhd.svg │ │ │ │ ├── virtualbox-vmdk.svg │ │ │ │ ├── vnd.ms-publisher.svg │ │ │ │ ├── x-kde-nsplugin-generated.svg │ │ │ │ ├── x-mail-distribution-list.svg │ │ │ │ ├── x-media-podcast.svg │ │ │ │ ├── x-office-address-book.svg │ │ │ │ ├── x-office-calendar.svg │ │ │ │ ├── x-office-contact.svg │ │ │ │ ├── x-office-document.svg │ │ │ │ ├── x-office-drawing.svg │ │ │ │ ├── x-office-presentation.svg │ │ │ │ └── x-office-spreadsheet.svg │ │ ├── places │ │ │ ├── 22 │ │ │ │ ├── certificate-server.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── document-multiple.svg │ │ │ │ ├── favorites.svg │ │ │ │ ├── folder-activities.svg │ │ │ │ ├── folder-add.svg │ │ │ │ ├── folder-android.svg │ │ │ │ ├── folder-appimage.svg │ │ │ │ ├── folder-black.svg │ │ │ │ ├── folder-blender.svg │ │ │ │ ├── folder-blue.svg │ │ │ │ ├── folder-bookmark.svg │ │ │ │ ├── folder-brown.svg │ │ │ │ ├── folder-build.svg │ │ │ │ ├── folder-calculate.svg │ │ │ │ ├── folder-chart.svg │ │ │ │ ├── folder-cloud.svg │ │ │ │ ├── folder-crash.svg │ │ │ │ ├── folder-cyan.svg │ │ │ │ ├── folder-database.svg │ │ │ │ ├── folder-deb.svg │ │ │ │ ├── folder-design.svg │ │ │ │ ├── folder-desktop.svg │ │ │ │ ├── folder-development.svg │ │ │ │ ├── folder-docker.svg │ │ │ │ ├── folder-documents.svg │ │ │ │ ├── folder-download.svg │ │ │ │ ├── folder-downloads.svg │ │ │ │ ├── folder-drawing.svg │ │ │ │ ├── folder-dropbox.svg │ │ │ │ ├── folder-extension.svg │ │ │ │ ├── folder-favorites.svg │ │ │ │ ├── folder-flatpak.svg │ │ │ │ ├── folder-games.svg │ │ │ │ ├── folder-gdrive.svg │ │ │ │ ├── folder-git.svg │ │ │ │ ├── folder-godot.svg │ │ │ │ ├── folder-green.svg │ │ │ │ ├── folder-grey.svg │ │ │ │ ├── folder-html.svg │ │ │ │ ├── folder-image-people.svg │ │ │ │ ├── folder-image.svg │ │ │ │ ├── folder-images.svg │ │ │ │ ├── folder-important.svg │ │ │ │ ├── folder-java.svg │ │ │ │ ├── folder-language.svg │ │ │ │ ├── folder-locked.svg │ │ │ │ ├── folder-log.svg │ │ │ │ ├── folder-mac.svg │ │ │ │ ├── folder-magenta.svg │ │ │ │ ├── folder-mail.svg │ │ │ │ ├── folder-music.svg │ │ │ │ ├── folder-network.svg │ │ │ │ ├── folder-notes.svg │ │ │ │ ├── folder-onedrive.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-orange.svg │ │ │ │ ├── folder-owncloud.svg │ │ │ │ ├── folder-paint.svg │ │ │ │ ├── folder-picture.svg │ │ │ │ ├── folder-pictures.svg │ │ │ │ ├── folder-podcast.svg │ │ │ │ ├── folder-presentation.svg │ │ │ │ ├── folder-print.svg │ │ │ │ ├── folder-public.svg │ │ │ │ ├── folder-publicshare.svg │ │ │ │ ├── folder-recent.svg │ │ │ │ ├── folder-red.svg │ │ │ │ ├── folder-remote.svg │ │ │ │ ├── folder-root.svg │ │ │ │ ├── folder-rpm.svg │ │ │ │ ├── folder-script.svg │ │ │ │ ├── folder-sign.svg │ │ │ │ ├── folder-snap.svg │ │ │ │ ├── folder-sound.svg │ │ │ │ ├── folder-table.svg │ │ │ │ ├── folder-tar.svg │ │ │ │ ├── folder-temp.svg │ │ │ │ ├── folder-templates.svg │ │ │ │ ├── folder-text.svg │ │ │ │ ├── folder-trash.svg │ │ │ │ ├── folder-txt.svg │ │ │ │ ├── folder-unlocked.svg │ │ │ │ ├── folder-video.svg │ │ │ │ ├── folder-videos.svg │ │ │ │ ├── folder-violet.svg │ │ │ │ ├── folder-windows.svg │ │ │ │ ├── folder-yellow.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── folder_html.svg │ │ │ │ ├── mail-folder-inbox.svg │ │ │ │ ├── mail-folder-outbox.svg │ │ │ │ ├── mail-folder-sent.svg │ │ │ │ ├── mail-message.svg │ │ │ │ ├── network-server-database.svg │ │ │ │ ├── network-server.svg │ │ │ │ ├── network-workgroup.svg │ │ │ │ ├── org.xfce.gigolo.svg │ │ │ │ ├── repository.svg │ │ │ │ ├── server-database.svg │ │ │ │ ├── start-here-kde-plasma.svg │ │ │ │ ├── start-here-kde.svg │ │ │ │ ├── stock_folder.svg │ │ │ │ ├── user-desktop.svg │ │ │ │ ├── user-home.svg │ │ │ │ ├── user-identity.svg │ │ │ │ ├── user-trash-full.svg │ │ │ │ └── user-trash.svg │ │ │ ├── 32 │ │ │ │ ├── certificate-server.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── favorites.svg │ │ │ │ ├── folder-activities.svg │ │ │ │ ├── folder-android.svg │ │ │ │ ├── folder-appimage.svg │ │ │ │ ├── folder-black.svg │ │ │ │ ├── folder-blender.svg │ │ │ │ ├── folder-blue.svg │ │ │ │ ├── folder-bookmark.svg │ │ │ │ ├── folder-brown.svg │ │ │ │ ├── folder-build.svg │ │ │ │ ├── folder-calculate.svg │ │ │ │ ├── folder-chart.svg │ │ │ │ ├── folder-cloud.svg │ │ │ │ ├── folder-crash.svg │ │ │ │ ├── folder-cyan.svg │ │ │ │ ├── folder-database.svg │ │ │ │ ├── folder-deb.svg │ │ │ │ ├── folder-decrypted.svg │ │ │ │ ├── folder-design.svg │ │ │ │ ├── folder-desktop.svg │ │ │ │ ├── folder-development.svg │ │ │ │ ├── folder-docker.svg │ │ │ │ ├── folder-documents.svg │ │ │ │ ├── folder-download.svg │ │ │ │ ├── folder-downloads.svg │ │ │ │ ├── folder-drawing.svg │ │ │ │ ├── folder-dropbox.svg │ │ │ │ ├── folder-encrypted.svg │ │ │ │ ├── folder-extension.svg │ │ │ │ ├── folder-favorites.svg │ │ │ │ ├── folder-flatpak.svg │ │ │ │ ├── folder-games.svg │ │ │ │ ├── folder-gdrive.svg │ │ │ │ ├── folder-git.svg │ │ │ │ ├── folder-godot.svg │ │ │ │ ├── folder-green.svg │ │ │ │ ├── folder-grey.svg │ │ │ │ ├── folder-html.svg │ │ │ │ ├── folder-image-people.svg │ │ │ │ ├── folder-image.svg │ │ │ │ ├── folder-images.svg │ │ │ │ ├── folder-important.svg │ │ │ │ ├── folder-java.svg │ │ │ │ ├── folder-language.svg │ │ │ │ ├── folder-locked.svg │ │ │ │ ├── folder-log.svg │ │ │ │ ├── folder-mac.svg │ │ │ │ ├── folder-magenta.svg │ │ │ │ ├── folder-mail.svg │ │ │ │ ├── folder-music.svg │ │ │ │ ├── folder-network.svg │ │ │ │ ├── folder-notes.svg │ │ │ │ ├── folder-onedrive.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-orange.svg │ │ │ │ ├── folder-owncloud.svg │ │ │ │ ├── folder-paint.svg │ │ │ │ ├── folder-picture.svg │ │ │ │ ├── folder-pictures.svg │ │ │ │ ├── folder-podcast.svg │ │ │ │ ├── folder-presentation.svg │ │ │ │ ├── folder-print.svg │ │ │ │ ├── folder-public.svg │ │ │ │ ├── folder-publicshare.svg │ │ │ │ ├── folder-recent.svg │ │ │ │ ├── folder-red.svg │ │ │ │ ├── folder-remote.svg │ │ │ │ ├── folder-root.svg │ │ │ │ ├── folder-rpm.svg │ │ │ │ ├── folder-script.svg │ │ │ │ ├── folder-sign.svg │ │ │ │ ├── folder-snap.svg │ │ │ │ ├── folder-sound.svg │ │ │ │ ├── folder-table.svg │ │ │ │ ├── folder-tar.svg │ │ │ │ ├── folder-temp.svg │ │ │ │ ├── folder-templates.svg │ │ │ │ ├── folder-text.svg │ │ │ │ ├── folder-trash.svg │ │ │ │ ├── folder-txt.svg │ │ │ │ ├── folder-unlocked.svg │ │ │ │ ├── folder-video.svg │ │ │ │ ├── folder-videos.svg │ │ │ │ ├── folder-violet.svg │ │ │ │ ├── folder-windows.svg │ │ │ │ ├── folder-yellow.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── folder_html.svg │ │ │ │ ├── library-music.svg │ │ │ │ ├── network-server.svg │ │ │ │ ├── network-workgroup.svg │ │ │ │ ├── stock_folder.svg │ │ │ │ ├── user-desktop.svg │ │ │ │ ├── user-home.svg │ │ │ │ ├── user-trash-full.svg │ │ │ │ └── user-trash.svg │ │ │ ├── 48 │ │ │ │ ├── certificate-server.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── favorites.svg │ │ │ │ ├── folder-activities.svg │ │ │ │ ├── folder-black.svg │ │ │ │ ├── folder-blue.svg │ │ │ │ ├── folder-bookmark.svg │ │ │ │ ├── folder-brown.svg │ │ │ │ ├── folder-cloud.svg │ │ │ │ ├── folder-cyan.svg │ │ │ │ ├── folder-decrypted.svg │ │ │ │ ├── folder-development.svg │ │ │ │ ├── folder-documents.svg │ │ │ │ ├── folder-download.svg │ │ │ │ ├── folder-downloads.svg │ │ │ │ ├── folder-dropbox.svg │ │ │ │ ├── folder-encrypted.svg │ │ │ │ ├── folder-favorites.svg │ │ │ │ ├── folder-games.svg │ │ │ │ ├── folder-gdrive.svg │ │ │ │ ├── folder-green.svg │ │ │ │ ├── folder-grey.svg │ │ │ │ ├── folder-html.svg │ │ │ │ ├── folder-image-people.svg │ │ │ │ ├── folder-image.svg │ │ │ │ ├── folder-images.svg │ │ │ │ ├── folder-important.svg │ │ │ │ ├── folder-locked.svg │ │ │ │ ├── folder-magenta.svg │ │ │ │ ├── folder-mail.svg │ │ │ │ ├── folder-music.svg │ │ │ │ ├── folder-network.svg │ │ │ │ ├── folder-onedrive.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-orange.svg │ │ │ │ ├── folder-owncloud.svg │ │ │ │ ├── folder-picture.svg │ │ │ │ ├── folder-pictures.svg │ │ │ │ ├── folder-print.svg │ │ │ │ ├── folder-public.svg │ │ │ │ ├── folder-publicshare.svg │ │ │ │ ├── folder-recent.svg │ │ │ │ ├── folder-red.svg │ │ │ │ ├── folder-remote.svg │ │ │ │ ├── folder-root.svg │ │ │ │ ├── folder-script.svg │ │ │ │ ├── folder-sound.svg │ │ │ │ ├── folder-tar.svg │ │ │ │ ├── folder-temp.svg │ │ │ │ ├── folder-templates.svg │ │ │ │ ├── folder-text.svg │ │ │ │ ├── folder-txt.svg │ │ │ │ ├── folder-unlocked.svg │ │ │ │ ├── folder-video.svg │ │ │ │ ├── folder-videos.svg │ │ │ │ ├── folder-violet.svg │ │ │ │ ├── folder-yellow.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── folder_html.svg │ │ │ │ ├── library-music.svg │ │ │ │ ├── network-server.svg │ │ │ │ ├── network-workgroup.svg │ │ │ │ ├── stock_folder.svg │ │ │ │ ├── user-desktop.svg │ │ │ │ ├── user-home.svg │ │ │ │ ├── user-trash-full.svg │ │ │ │ └── user-trash.svg │ │ │ ├── 64 │ │ │ │ ├── certificate-server.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── favorites.svg │ │ │ │ ├── folder-activities.svg │ │ │ │ ├── folder-android.svg │ │ │ │ ├── folder-appimage.svg │ │ │ │ ├── folder-black.svg │ │ │ │ ├── folder-blender.svg │ │ │ │ ├── folder-blue.svg │ │ │ │ ├── folder-bookmark.svg │ │ │ │ ├── folder-brown.svg │ │ │ │ ├── folder-build.svg │ │ │ │ ├── folder-calculate.svg │ │ │ │ ├── folder-chart.svg │ │ │ │ ├── folder-cloud.svg │ │ │ │ ├── folder-crash.svg │ │ │ │ ├── folder-cyan.svg │ │ │ │ ├── folder-database.svg │ │ │ │ ├── folder-deb.svg │ │ │ │ ├── folder-decrypted.svg │ │ │ │ ├── folder-design.svg │ │ │ │ ├── folder-desktop.svg │ │ │ │ ├── folder-development.svg │ │ │ │ ├── folder-docker.svg │ │ │ │ ├── folder-documents.svg │ │ │ │ ├── folder-download.svg │ │ │ │ ├── folder-downloads.svg │ │ │ │ ├── folder-drawing.svg │ │ │ │ ├── folder-dropbox.svg │ │ │ │ ├── folder-encrypted.svg │ │ │ │ ├── folder-extension.svg │ │ │ │ ├── folder-favorites.svg │ │ │ │ ├── folder-flatpak.svg │ │ │ │ ├── folder-games.svg │ │ │ │ ├── folder-gdrive.svg │ │ │ │ ├── folder-git.svg │ │ │ │ ├── folder-godot.svg │ │ │ │ ├── folder-green.svg │ │ │ │ ├── folder-grey.svg │ │ │ │ ├── folder-html.svg │ │ │ │ ├── folder-image-people.svg │ │ │ │ ├── folder-image.svg │ │ │ │ ├── folder-images.svg │ │ │ │ ├── folder-important.svg │ │ │ │ ├── folder-java.svg │ │ │ │ ├── folder-language.svg │ │ │ │ ├── folder-locked.svg │ │ │ │ ├── folder-log.svg │ │ │ │ ├── folder-mac.svg │ │ │ │ ├── folder-magenta.svg │ │ │ │ ├── folder-mail.svg │ │ │ │ ├── folder-music.svg │ │ │ │ ├── folder-network.svg │ │ │ │ ├── folder-notes.svg │ │ │ │ ├── folder-onedrive.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-orange.svg │ │ │ │ ├── folder-owncloud.svg │ │ │ │ ├── folder-paint.svg │ │ │ │ ├── folder-picture.svg │ │ │ │ ├── folder-pictures.svg │ │ │ │ ├── folder-podcast.svg │ │ │ │ ├── folder-presentation.svg │ │ │ │ ├── folder-print.svg │ │ │ │ ├── folder-public.svg │ │ │ │ ├── folder-publicshare.svg │ │ │ │ ├── folder-recent.svg │ │ │ │ ├── folder-red.svg │ │ │ │ ├── folder-remote.svg │ │ │ │ ├── folder-root.svg │ │ │ │ ├── folder-rpm.svg │ │ │ │ ├── folder-script.svg │ │ │ │ ├── folder-sign.svg │ │ │ │ ├── folder-snap.svg │ │ │ │ ├── folder-sound.svg │ │ │ │ ├── folder-table.svg │ │ │ │ ├── folder-tar.svg │ │ │ │ ├── folder-temp.svg │ │ │ │ ├── folder-templates.svg │ │ │ │ ├── folder-text.svg │ │ │ │ ├── folder-trash.svg │ │ │ │ ├── folder-txt.svg │ │ │ │ ├── folder-unlocked.svg │ │ │ │ ├── folder-video.svg │ │ │ │ ├── folder-videos.svg │ │ │ │ ├── folder-violet.svg │ │ │ │ ├── folder-windows.svg │ │ │ │ ├── folder-yellow.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── folder_html.svg │ │ │ │ ├── library-music.svg │ │ │ │ ├── network-server.svg │ │ │ │ ├── network-workgroup.svg │ │ │ │ ├── start-here-kde-plasma.svg │ │ │ │ ├── start-here-kde.svg │ │ │ │ ├── stock_folder.svg │ │ │ │ ├── user-desktop.svg │ │ │ │ ├── user-home.svg │ │ │ │ ├── user-trash-full.svg │ │ │ │ └── user-trash.svg │ │ │ ├── 96 │ │ │ │ ├── certificate-server.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── favorites.svg │ │ │ │ ├── folder-activities.svg │ │ │ │ ├── folder-black.svg │ │ │ │ ├── folder-blue.svg │ │ │ │ ├── folder-bookmark.svg │ │ │ │ ├── folder-brown.svg │ │ │ │ ├── folder-cloud.svg │ │ │ │ ├── folder-cyan.svg │ │ │ │ ├── folder-decrypted.svg │ │ │ │ ├── folder-development.svg │ │ │ │ ├── folder-documents.svg │ │ │ │ ├── folder-download.svg │ │ │ │ ├── folder-downloads.svg │ │ │ │ ├── folder-dropbox.svg │ │ │ │ ├── folder-encrypted.svg │ │ │ │ ├── folder-favorites.svg │ │ │ │ ├── folder-games.svg │ │ │ │ ├── folder-gdrive.svg │ │ │ │ ├── folder-green.svg │ │ │ │ ├── folder-grey.svg │ │ │ │ ├── folder-html.svg │ │ │ │ ├── folder-image-people.svg │ │ │ │ ├── folder-image.svg │ │ │ │ ├── folder-images.svg │ │ │ │ ├── folder-important.svg │ │ │ │ ├── folder-locked.svg │ │ │ │ ├── folder-magenta.svg │ │ │ │ ├── folder-mail.svg │ │ │ │ ├── folder-music.svg │ │ │ │ ├── folder-network.svg │ │ │ │ ├── folder-onedrive.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-orange.svg │ │ │ │ ├── folder-owncloud.svg │ │ │ │ ├── folder-picture.svg │ │ │ │ ├── folder-pictures.svg │ │ │ │ ├── folder-print.svg │ │ │ │ ├── folder-public.svg │ │ │ │ ├── folder-publicshare.svg │ │ │ │ ├── folder-recent.svg │ │ │ │ ├── folder-red.svg │ │ │ │ ├── folder-remote.svg │ │ │ │ ├── folder-root.svg │ │ │ │ ├── folder-script.svg │ │ │ │ ├── folder-sound.svg │ │ │ │ ├── folder-tar.svg │ │ │ │ ├── folder-temp.svg │ │ │ │ ├── folder-templates.svg │ │ │ │ ├── folder-text.svg │ │ │ │ ├── folder-txt.svg │ │ │ │ ├── folder-unlocked.svg │ │ │ │ ├── folder-video.svg │ │ │ │ ├── folder-videos.svg │ │ │ │ ├── folder-violet.svg │ │ │ │ ├── folder-yellow.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── folder_html.svg │ │ │ │ ├── library-music.svg │ │ │ │ ├── network-server.svg │ │ │ │ ├── network-workgroup.svg │ │ │ │ ├── start-here-kde-plasma.svg │ │ │ │ ├── start-here-kde.svg │ │ │ │ ├── stock_folder.svg │ │ │ │ ├── user-desktop.svg │ │ │ │ ├── user-home.svg │ │ │ │ ├── user-trash-full.svg │ │ │ │ └── user-trash.svg │ │ │ └── symbolic │ │ │ │ ├── folder-documents-symbolic.svg │ │ │ │ ├── folder-download-symbolic.svg │ │ │ │ ├── folder-games-symbolic.svg │ │ │ │ ├── folder-music-symbolic.svg │ │ │ │ ├── folder-pictures-symbolic.svg │ │ │ │ ├── folder-publicshare-symbolic.svg │ │ │ │ ├── folder-remote-symbolic.svg │ │ │ │ ├── folder-root-symbolic.svg │ │ │ │ ├── folder-saved-search-symbolic.svg │ │ │ │ ├── folder-symbolic.svg │ │ │ │ ├── folder-templates-symbolic.svg │ │ │ │ ├── folder-videos-symbolic.svg │ │ │ │ ├── network-server-symbolic.svg │ │ │ │ ├── network-workgroup-symbolic.svg │ │ │ │ ├── start-here-symbolic.svg │ │ │ │ ├── user-bookmarks-symbolic.svg │ │ │ │ ├── user-desktop-symbolic.svg │ │ │ │ ├── user-home-symbolic.svg │ │ │ │ └── user-trash-symbolic.svg │ │ ├── preferences │ │ │ ├── 22 │ │ │ │ ├── device-notifier.svg │ │ │ │ ├── drive-removable-media.svg │ │ │ │ ├── plasma-search.svg │ │ │ │ ├── podcast-amarok.svg │ │ │ │ ├── preferences-desktop-accessibility.svg │ │ │ │ ├── preferences-desktop-activities.svg │ │ │ │ ├── preferences-desktop-baloo.svg │ │ │ │ ├── preferences-desktop-color.svg │ │ │ │ ├── preferences-desktop-cryptography.svg │ │ │ │ ├── preferences-desktop-cursors.svg │ │ │ │ ├── preferences-desktop-default-applications.svg │ │ │ │ ├── preferences-desktop-display-color.svg │ │ │ │ ├── preferences-desktop-display.svg │ │ │ │ ├── preferences-desktop-effects.svg │ │ │ │ ├── preferences-desktop-emoticons.svg │ │ │ │ ├── preferences-desktop-filetype-association.svg │ │ │ │ ├── preferences-desktop-filter.svg │ │ │ │ ├── preferences-desktop-font.svg │ │ │ │ ├── preferences-desktop-gestures-screenedges.svg │ │ │ │ ├── preferences-desktop-gestures-touch.svg │ │ │ │ ├── preferences-desktop-icons.svg │ │ │ │ ├── preferences-desktop-keyboard.svg │ │ │ │ ├── preferences-desktop-launch-feedback.svg │ │ │ │ ├── preferences-desktop-locale.svg │ │ │ │ ├── preferences-desktop-multimedia.svg │ │ │ │ ├── preferences-desktop-navigation.svg │ │ │ │ ├── preferences-desktop-notification-bell.svg │ │ │ │ ├── preferences-desktop-plasma-theme.svg │ │ │ │ ├── preferences-desktop-plasma.svg │ │ │ │ ├── preferences-desktop-screensaver.svg │ │ │ │ ├── preferences-desktop-search.svg │ │ │ │ ├── preferences-desktop-sound.svg │ │ │ │ ├── preferences-desktop-tablet.svg │ │ │ │ ├── preferences-desktop-text-to-speech.svg │ │ │ │ ├── preferences-desktop-theme-applications.svg │ │ │ │ ├── preferences-desktop-theme-global.svg │ │ │ │ ├── preferences-desktop-theme-windowdecorations.svg │ │ │ │ ├── preferences-desktop-thunderbolt.svg │ │ │ │ ├── preferences-desktop-touchpad.svg │ │ │ │ ├── preferences-desktop-user-password.svg │ │ │ │ ├── preferences-desktop-user.svg │ │ │ │ ├── preferences-desktop-virtual.svg │ │ │ │ ├── preferences-desktop-wallpaper.svg │ │ │ │ ├── preferences-desktop.svg │ │ │ │ ├── preferences-devices-cpu.svg │ │ │ │ ├── preferences-devices-drive-optical-check.svg │ │ │ │ ├── preferences-devices-printer.svg │ │ │ │ ├── preferences-devices-scanner.svg │ │ │ │ ├── preferences-devices-tree.svg │ │ │ │ ├── preferences-gtk-config.svg │ │ │ │ ├── preferences-kde-connect.svg │ │ │ │ ├── preferences-other.svg │ │ │ │ ├── preferences-plugin.svg │ │ │ │ ├── preferences-security-kerberos.svg │ │ │ │ ├── preferences-security.svg │ │ │ │ ├── preferences-smart-status.svg │ │ │ │ ├── preferences-system-bluetooth.svg │ │ │ │ ├── preferences-system-linux.svg │ │ │ │ ├── preferences-system-login.svg │ │ │ │ ├── preferences-system-network-dsl.svg │ │ │ │ ├── preferences-system-network-ethernet.svg │ │ │ │ ├── preferences-system-network-ldap.svg │ │ │ │ ├── preferences-system-network-nis.svg │ │ │ │ ├── preferences-system-network-proxy.svg │ │ │ │ ├── preferences-system-network-share-windows.svg │ │ │ │ ├── preferences-system-network-sharing.svg │ │ │ │ ├── preferences-system-network-vpn.svg │ │ │ │ ├── preferences-system-network-wakeonlan.svg │ │ │ │ ├── preferences-system-power-management.svg │ │ │ │ ├── preferences-system-services.svg │ │ │ │ ├── preferences-system-session-services.svg │ │ │ │ ├── preferences-system-splash.svg │ │ │ │ ├── preferences-system-startup.svg │ │ │ │ ├── preferences-system-time.svg │ │ │ │ ├── preferences-system-user-sudo.svg │ │ │ │ ├── preferences-system-windows-actions.svg │ │ │ │ ├── preferences-system-windows-behavior.svg │ │ │ │ ├── preferences-system-windows-move.svg │ │ │ │ ├── preferences-system-windows.svg │ │ │ │ ├── preferences-virtualization-container.svg │ │ │ │ ├── preferences-web-browser-cache.svg │ │ │ │ ├── preferences-web-browser-cookies.svg │ │ │ │ ├── preferences-web-browser-identification.svg │ │ │ │ ├── preferences-web-browser-shortcuts.svg │ │ │ │ ├── preferences-web-browser-ssl.svg │ │ │ │ ├── preferences-web-browser-stylesheets.svg │ │ │ │ ├── system-users.svg │ │ │ │ ├── window-duplicate.svg │ │ │ │ └── yast-disk.svg │ │ │ └── 32 │ │ │ │ ├── amarok_change_language.svg │ │ │ │ ├── device-notifier.svg │ │ │ │ ├── drive-removable-media.svg │ │ │ │ ├── face-smile.svg │ │ │ │ ├── financial-schedule.svg │ │ │ │ ├── gtkconfig.svg │ │ │ │ ├── kaccess.svg │ │ │ │ ├── kde-gtk-config.svg │ │ │ │ ├── kdeconnect.svg │ │ │ │ ├── kded5.svg │ │ │ │ ├── krunner.svg │ │ │ │ ├── ksmserver.svg │ │ │ │ ├── mediacontrol.svg │ │ │ │ ├── plasma-search.svg │ │ │ │ ├── plasma.svg │ │ │ │ ├── plasmagik.svg │ │ │ │ ├── plasmashell.svg │ │ │ │ ├── podcast-amarok.svg │ │ │ │ ├── preferences-desktop-accessibility.svg │ │ │ │ ├── preferences-desktop-activities.svg │ │ │ │ ├── preferences-desktop-baloo.svg │ │ │ │ ├── preferences-desktop-color.svg │ │ │ │ ├── preferences-desktop-cryptography.svg │ │ │ │ ├── preferences-desktop-cursors.svg │ │ │ │ ├── preferences-desktop-default-applications.svg │ │ │ │ ├── preferences-desktop-display-color.svg │ │ │ │ ├── preferences-desktop-display.svg │ │ │ │ ├── preferences-desktop-effects.svg │ │ │ │ ├── preferences-desktop-emoticons.svg │ │ │ │ ├── preferences-desktop-filetype-association.svg │ │ │ │ ├── preferences-desktop-filter.svg │ │ │ │ ├── preferences-desktop-font.svg │ │ │ │ ├── preferences-desktop-gaming.svg │ │ │ │ ├── preferences-desktop-gestures-screenedges.svg │ │ │ │ ├── preferences-desktop-gestures-touch.svg │ │ │ │ ├── preferences-desktop-icons.svg │ │ │ │ ├── preferences-desktop-keyboard.svg │ │ │ │ ├── preferences-desktop-launch-feedback.svg │ │ │ │ ├── preferences-desktop-locale.svg │ │ │ │ ├── preferences-desktop-menu-edit.svg │ │ │ │ ├── preferences-desktop-mouse.svg │ │ │ │ ├── preferences-desktop-multimedia.svg │ │ │ │ ├── preferences-desktop-navigation.svg │ │ │ │ ├── preferences-desktop-notification-bell.svg │ │ │ │ ├── preferences-desktop-notification.svg │ │ │ │ ├── preferences-desktop-peripherals.svg │ │ │ │ ├── preferences-desktop-plasma-theme.svg │ │ │ │ ├── preferences-desktop-plasma.svg │ │ │ │ ├── preferences-desktop-screensaver.svg │ │ │ │ ├── preferences-desktop-search.svg │ │ │ │ ├── preferences-desktop-sound.svg │ │ │ │ ├── preferences-desktop-tablet.svg │ │ │ │ ├── preferences-desktop-text-to-speech.svg │ │ │ │ ├── preferences-desktop-theme-applications.svg │ │ │ │ ├── preferences-desktop-theme-global.svg │ │ │ │ ├── preferences-desktop-theme-windowdecorations.svg │ │ │ │ ├── preferences-desktop-theme.svg │ │ │ │ ├── preferences-desktop-thunderbolt.svg │ │ │ │ ├── preferences-desktop-touchpad.svg │ │ │ │ ├── preferences-desktop-user-password.svg │ │ │ │ ├── preferences-desktop-user.svg │ │ │ │ ├── preferences-desktop-virtual.svg │ │ │ │ ├── preferences-desktop-wallpaper.svg │ │ │ │ ├── preferences-desktop.svg │ │ │ │ ├── preferences-devices-cpu.svg │ │ │ │ ├── preferences-devices-drive-optical-check.svg │ │ │ │ ├── preferences-devices-printer.svg │ │ │ │ ├── preferences-devices-scanner.svg │ │ │ │ ├── preferences-devices-tree.svg │ │ │ │ ├── preferences-gtk-config.svg │ │ │ │ ├── preferences-kde-connect.svg │ │ │ │ ├── preferences-log.svg │ │ │ │ ├── preferences-other.svg │ │ │ │ ├── preferences-plugin.svg │ │ │ │ ├── preferences-releasenotes.svg │ │ │ │ ├── preferences-security-apparmor.svg │ │ │ │ ├── preferences-security-firewall.svg │ │ │ │ ├── preferences-security-kerberos.svg │ │ │ │ ├── preferences-security.svg │ │ │ │ ├── preferences-smart-status.svg │ │ │ │ ├── preferences-system-backup.svg │ │ │ │ ├── preferences-system-bluetooth.svg │ │ │ │ ├── preferences-system-linux.svg │ │ │ │ ├── preferences-system-login.svg │ │ │ │ ├── preferences-system-network-dsl.svg │ │ │ │ ├── preferences-system-network-ethernet.svg │ │ │ │ ├── preferences-system-network-iscsi.svg │ │ │ │ ├── preferences-system-network-ldap.svg │ │ │ │ ├── preferences-system-network-nis.svg │ │ │ │ ├── preferences-system-network-ntp.svg │ │ │ │ ├── preferences-system-network-proxy.svg │ │ │ │ ├── preferences-system-network-remote.svg │ │ │ │ ├── preferences-system-network-server-boot.svg │ │ │ │ ├── preferences-system-network-server-dhcp.svg │ │ │ │ ├── preferences-system-network-server-dns.svg │ │ │ │ ├── preferences-system-network-server-ftp.svg │ │ │ │ ├── preferences-system-network-server-installation.svg │ │ │ │ ├── preferences-system-network-server-iscsi.svg │ │ │ │ ├── preferences-system-network-server-kerberos.svg │ │ │ │ ├── preferences-system-network-server-ldap.svg │ │ │ │ ├── preferences-system-network-server-mail.svg │ │ │ │ ├── preferences-system-network-server-nis.svg │ │ │ │ ├── preferences-system-network-server-share-windows.svg │ │ │ │ ├── preferences-system-network-server-share.svg │ │ │ │ ├── preferences-system-network-server-slp.svg │ │ │ │ ├── preferences-system-network-server-web.svg │ │ │ │ ├── preferences-system-network-server.svg │ │ │ │ ├── preferences-system-network-share-windows.svg │ │ │ │ ├── preferences-system-network-share.svg │ │ │ │ ├── preferences-system-network-sharing.svg │ │ │ │ ├── preferences-system-network-vpn.svg │ │ │ │ ├── preferences-system-network-wakeonlan.svg │ │ │ │ ├── preferences-system-network.svg │ │ │ │ ├── preferences-system-performance.svg │ │ │ │ ├── preferences-system-power-management.svg │ │ │ │ ├── preferences-system-services.svg │ │ │ │ ├── preferences-system-session-services.svg │ │ │ │ ├── preferences-system-splash.svg │ │ │ │ ├── preferences-system-startup.svg │ │ │ │ ├── preferences-system-time.svg │ │ │ │ ├── preferences-system-user-sudo.svg │ │ │ │ ├── preferences-system-users.svg │ │ │ │ ├── preferences-system-windows-actions.svg │ │ │ │ ├── preferences-system-windows-behavior.svg │ │ │ │ ├── preferences-system-windows-move.svg │ │ │ │ ├── preferences-system-windows.svg │ │ │ │ ├── preferences-virtualization-container.svg │ │ │ │ ├── preferences-virtualization-vm-install.svg │ │ │ │ ├── preferences-virtualization-vm-migrate.svg │ │ │ │ ├── preferences-virtualization-vm-new.svg │ │ │ │ ├── preferences-virtualization-vm.svg │ │ │ │ ├── preferences-web-browser-adblock.svg │ │ │ │ ├── preferences-web-browser-cache.svg │ │ │ │ ├── preferences-web-browser-cookies.svg │ │ │ │ ├── preferences-web-browser-identification.svg │ │ │ │ ├── preferences-web-browser-shortcuts.svg │ │ │ │ ├── preferences-web-browser-ssl.svg │ │ │ │ ├── preferences-web-browser-stylesheets.svg │ │ │ │ ├── preferences.svg │ │ │ │ ├── system-lock-screen.svg │ │ │ │ ├── system-users.svg │ │ │ │ ├── window-duplicate.svg │ │ │ │ ├── yast-addon-extension.svg │ │ │ │ ├── yast-addon.svg │ │ │ │ ├── yast-alternatives.svg │ │ │ │ ├── yast-apparmor.svg │ │ │ │ ├── yast-auth-client.svg │ │ │ │ ├── yast-autoyast.svg │ │ │ │ ├── yast-bootloader.svg │ │ │ │ ├── yast-checkmedia.svg │ │ │ │ ├── yast-create-new-vm.svg │ │ │ │ ├── yast-device-tree.svg │ │ │ │ ├── yast-dhcp-server.svg │ │ │ │ ├── yast-disk.svg │ │ │ │ ├── yast-dns-server.svg │ │ │ │ ├── yast-docker.svg │ │ │ │ ├── yast-dsl.svg │ │ │ │ ├── yast-fcoe.svg │ │ │ │ ├── yast-firewall.svg │ │ │ │ ├── yast-fonts.svg │ │ │ │ ├── yast-ftp-server.svg │ │ │ │ ├── yast-hardware-group.svg │ │ │ │ ├── yast-host.svg │ │ │ │ ├── yast-http-server.svg │ │ │ │ ├── yast-hwinfo.svg │ │ │ │ ├── yast-instserver.svg │ │ │ │ ├── yast-iscsi-client.svg │ │ │ │ ├── yast-iscsi-server.svg │ │ │ │ ├── yast-journal.svg │ │ │ │ ├── yast-kerberos-server.svg │ │ │ │ ├── yast-kernel.svg │ │ │ │ ├── yast-keyboard.svg │ │ │ │ ├── yast-lan.svg │ │ │ │ ├── yast-language.svg │ │ │ │ ├── yast-ldap-kerberos.svg │ │ │ │ ├── yast-ldap-server.svg │ │ │ │ ├── yast-mail.svg │ │ │ │ ├── yast-messages.svg │ │ │ │ ├── yast-misc-group.svg │ │ │ │ ├── yast-network-group.svg │ │ │ │ ├── yast-nfs-server.svg │ │ │ │ ├── yast-nfs.svg │ │ │ │ ├── yast-nis-server.svg │ │ │ │ ├── yast-nis.svg │ │ │ │ ├── yast-ntp-client.svg │ │ │ │ ├── yast-printer.svg │ │ │ │ ├── yast-proxy.svg │ │ │ │ ├── yast-release-notes.svg │ │ │ │ ├── yast-remote.svg │ │ │ │ ├── yast-samba-client.svg │ │ │ │ ├── yast-samba-server.svg │ │ │ │ ├── yast-scanner.svg │ │ │ │ ├── yast-security-group.svg │ │ │ │ ├── yast-security.svg │ │ │ │ ├── yast-services-manager.svg │ │ │ │ ├── yast-slp-server.svg │ │ │ │ ├── yast-snapper.svg │ │ │ │ ├── yast-software-group.svg │ │ │ │ ├── yast-sound.svg │ │ │ │ ├── yast-sudo.svg │ │ │ │ ├── yast-support-group.svg │ │ │ │ ├── yast-support.svg │ │ │ │ ├── yast-sw_source.svg │ │ │ │ ├── yast-sysconfig.svg │ │ │ │ ├── yast-system-group.svg │ │ │ │ ├── yast-tftp-server.svg │ │ │ │ ├── yast-timezone.svg │ │ │ │ ├── yast-update-online-configuration.svg │ │ │ │ ├── yast-update-online.svg │ │ │ │ ├── yast-update.svg │ │ │ │ ├── yast-users.svg │ │ │ │ ├── yast-vm-group.svg │ │ │ │ ├── yast-vm-install.svg │ │ │ │ ├── yast-vm-migrate.svg │ │ │ │ ├── yast-vpn.svg │ │ │ │ └── yast-wol.svg │ │ └── status │ │ │ ├── 22 │ │ │ ├── TeamViewer.svg │ │ │ ├── appointment-recurring.svg │ │ │ ├── appointment-reminder.svg │ │ │ ├── audio-off.svg │ │ │ ├── audio-on.svg │ │ │ ├── audio-ready.svg │ │ │ ├── audio-volume-high.svg │ │ │ ├── audio-volume-low.svg │ │ │ ├── audio-volume-medium.svg │ │ │ ├── audio-volume-muted.svg │ │ │ ├── auth-sim-locked.svg │ │ │ ├── auth-sim-missing.svg │ │ │ ├── battery-000-charging.svg │ │ │ ├── battery-000.svg │ │ │ ├── battery-010-charging.svg │ │ │ ├── battery-010.svg │ │ │ ├── battery-020-charging.svg │ │ │ ├── battery-020.svg │ │ │ ├── battery-030-charging.svg │ │ │ ├── battery-030.svg │ │ │ ├── battery-040-charging.svg │ │ │ ├── battery-040.svg │ │ │ ├── battery-050-charging.svg │ │ │ ├── battery-050.svg │ │ │ ├── battery-060-charging.svg │ │ │ ├── battery-060.svg │ │ │ ├── battery-070-charging.svg │ │ │ ├── battery-070.svg │ │ │ ├── battery-080-charging.svg │ │ │ ├── battery-080.svg │ │ │ ├── battery-090-charging.svg │ │ │ ├── battery-090.svg │ │ │ ├── battery-100-charging.svg │ │ │ ├── battery-100.svg │ │ │ ├── battery-caution-charging.svg │ │ │ ├── battery-caution.svg │ │ │ ├── battery-empty-charging.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full-charging.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-good-charging.svg │ │ │ ├── battery-good.svg │ │ │ ├── battery-low-charging.svg │ │ │ ├── battery-low.svg │ │ │ ├── battery-missing.svg │ │ │ ├── call-incoming.svg │ │ │ ├── call-missed.svg │ │ │ ├── call-outgoing.svg │ │ │ ├── camera-off.svg │ │ │ ├── camera-on.svg │ │ │ ├── camera-ready.svg │ │ │ ├── cloudstatus.svg │ │ │ ├── com.github.ztefn.haguichi-connected.svg │ │ │ ├── com.github.ztefn.haguichi-connecting-1.svg │ │ │ ├── com.github.ztefn.haguichi-connecting-2.svg │ │ │ ├── com.github.ztefn.haguichi-connecting-3.svg │ │ │ ├── com.github.ztefn.haguichi-disconnected.svg │ │ │ ├── data-error.svg │ │ │ ├── data-information.svg │ │ │ ├── data-warning.svg │ │ │ ├── dialog-error.svg │ │ │ ├── dialog-information.svg │ │ │ ├── dialog-password.svg │ │ │ ├── dialog-positive.svg │ │ │ ├── dialog-question.svg │ │ │ ├── dialog-warning.svg │ │ │ ├── disk-quota-critical.svg │ │ │ ├── disk-quota-high.svg │ │ │ ├── disk-quota-low.svg │ │ │ ├── disk-quota.svg │ │ │ ├── dropboxstatus-busy.svg │ │ │ ├── dropboxstatus-busy2.svg │ │ │ ├── dropboxstatus-idle.svg │ │ │ ├── dropboxstatus-logo.svg │ │ │ ├── dropboxstatus-x.svg │ │ │ ├── fcitx-googlepinyin.svg │ │ │ ├── fcitx-pinyin-libpinyin.svg │ │ │ ├── fcitx-pinyin.svg │ │ │ ├── fcitx-shuangpin-libpinyin.svg │ │ │ ├── fcitx-shuangpin.svg │ │ │ ├── fcitx-sunpinyin.svg │ │ │ ├── fcitx-wubi.svg │ │ │ ├── firewall-applet-error.svg │ │ │ ├── firewall-applet-panic.svg │ │ │ ├── firewall-applet-shields_up.svg │ │ │ ├── firewall-applet.svg │ │ │ ├── flameshot-tray.svg │ │ │ ├── haguichi-connected.svg │ │ │ ├── haguichi-connecting-1.svg │ │ │ ├── haguichi-connecting-2.svg │ │ │ ├── haguichi-connecting-3.svg │ │ │ ├── haguichi-disconnected.svg │ │ │ ├── image-missing.svg │ │ │ ├── input-caps-on.svg │ │ │ ├── input-keyboard-virtual-off.svg │ │ │ ├── input-keyboard-virtual-on.svg │ │ │ ├── input-touchpad-off.svg │ │ │ ├── input-touchpad-on.svg │ │ │ ├── install.svg │ │ │ ├── irc-channel-joined.svg │ │ │ ├── irc-channel-parted.svg │ │ │ ├── kdeconnect-tray.svg │ │ │ ├── media-playback-paused.svg │ │ │ ├── media-playback-playing.svg │ │ │ ├── media-playback-stopped.svg │ │ │ ├── meeting-organizer.svg │ │ │ ├── mic-off.svg │ │ │ ├── mic-on.svg │ │ │ ├── mic-ready.svg │ │ │ ├── microphone-sensitivity-high.svg │ │ │ ├── microphone-sensitivity-low.svg │ │ │ ├── microphone-sensitivity-medium.svg │ │ │ ├── microphone-sensitivity-muted.svg │ │ │ ├── network-bluetooth-activated-locked.svg │ │ │ ├── network-bluetooth-activated.svg │ │ │ ├── network-bluetooth.svg │ │ │ ├── network-flightmode-off.svg │ │ │ ├── network-flightmode-on.svg │ │ │ ├── network-limited.svg │ │ │ ├── network-mobile-0-edge-locked.svg │ │ │ ├── network-mobile-0-edge.svg │ │ │ ├── network-mobile-0-gprs-locked.svg │ │ │ ├── network-mobile-0-gprs.svg │ │ │ ├── network-mobile-0-hsdpa-locked.svg │ │ │ ├── network-mobile-0-hsdpa.svg │ │ │ ├── network-mobile-0-hspa-locked.svg │ │ │ ├── network-mobile-0-hspa.svg │ │ │ ├── network-mobile-0-hsupa-locked.svg │ │ │ ├── network-mobile-0-hsupa.svg │ │ │ ├── network-mobile-0-locked.svg │ │ │ ├── network-mobile-0-lte-locked.svg │ │ │ ├── network-mobile-0-lte.svg │ │ │ ├── network-mobile-0-umts-locked.svg │ │ │ ├── network-mobile-0-umts.svg │ │ │ ├── network-mobile-0.svg │ │ │ ├── network-mobile-100-edge-locked.svg │ │ │ ├── network-mobile-100-edge.svg │ │ │ ├── network-mobile-100-gprs-locked.svg │ │ │ ├── network-mobile-100-gprs.svg │ │ │ ├── network-mobile-100-hsdpa-locked.svg │ │ │ ├── network-mobile-100-hsdpa.svg │ │ │ ├── network-mobile-100-hspa-locked.svg │ │ │ ├── network-mobile-100-hspa.svg │ │ │ ├── network-mobile-100-hsupa-locked.svg │ │ │ ├── network-mobile-100-hsupa.svg │ │ │ ├── network-mobile-100-locked.svg │ │ │ ├── network-mobile-100-lte-locked.svg │ │ │ ├── network-mobile-100-lte.svg │ │ │ ├── network-mobile-100-umts-locked.svg │ │ │ ├── network-mobile-100-umts.svg │ │ │ ├── network-mobile-100.svg │ │ │ ├── network-mobile-20-edge-locked.svg │ │ │ ├── network-mobile-20-edge.svg │ │ │ ├── network-mobile-20-gprs-locked.svg │ │ │ ├── network-mobile-20-gprs.svg │ │ │ ├── network-mobile-20-hsdpa-locked.svg │ │ │ ├── network-mobile-20-hsdpa.svg │ │ │ ├── network-mobile-20-hspa-locked.svg │ │ │ ├── network-mobile-20-hspa.svg │ │ │ ├── network-mobile-20-hsupa-locked.svg │ │ │ ├── network-mobile-20-hsupa.svg │ │ │ ├── network-mobile-20-locked.svg │ │ │ ├── network-mobile-20-lte-locked.svg │ │ │ ├── network-mobile-20-lte.svg │ │ │ ├── network-mobile-20-umts-locked.svg │ │ │ ├── network-mobile-20-umts.svg │ │ │ ├── network-mobile-20.svg │ │ │ ├── network-mobile-40-edge-locked.svg │ │ │ ├── network-mobile-40-edge.svg │ │ │ ├── network-mobile-40-gprs-locked.svg │ │ │ ├── network-mobile-40-gprs.svg │ │ │ ├── network-mobile-40-hsdpa-locked.svg │ │ │ ├── network-mobile-40-hsdpa.svg │ │ │ ├── network-mobile-40-hspa-locked.svg │ │ │ ├── network-mobile-40-hspa.svg │ │ │ ├── network-mobile-40-hsupa-locked.svg │ │ │ ├── network-mobile-40-hsupa.svg │ │ │ ├── network-mobile-40-locked.svg │ │ │ ├── network-mobile-40-lte-locked.svg │ │ │ ├── network-mobile-40-lte.svg │ │ │ ├── network-mobile-40-umts-locked.svg │ │ │ ├── network-mobile-40-umts.svg │ │ │ ├── network-mobile-40.svg │ │ │ ├── network-mobile-60-edge-locked.svg │ │ │ ├── network-mobile-60-edge.svg │ │ │ ├── network-mobile-60-gprs-locked.svg │ │ │ ├── network-mobile-60-gprs.svg │ │ │ ├── network-mobile-60-hsdpa-locked.svg │ │ │ ├── network-mobile-60-hsdpa.svg │ │ │ ├── network-mobile-60-hspa-locked.svg │ │ │ ├── network-mobile-60-hspa.svg │ │ │ ├── network-mobile-60-hsupa-locked.svg │ │ │ ├── network-mobile-60-hsupa.svg │ │ │ ├── network-mobile-60-locked.svg │ │ │ ├── network-mobile-60-lte-locked.svg │ │ │ ├── network-mobile-60-lte.svg │ │ │ ├── network-mobile-60-umts-locked.svg │ │ │ ├── network-mobile-60-umts.svg │ │ │ ├── network-mobile-60.svg │ │ │ ├── network-mobile-80-edge-locked.svg │ │ │ ├── network-mobile-80-edge.svg │ │ │ ├── network-mobile-80-gprs-locked.svg │ │ │ ├── network-mobile-80-gprs.svg │ │ │ ├── network-mobile-80-hsdpa-locked.svg │ │ │ ├── network-mobile-80-hsdpa.svg │ │ │ ├── network-mobile-80-hspa-locked.svg │ │ │ ├── network-mobile-80-hspa.svg │ │ │ ├── network-mobile-80-hsupa-locked.svg │ │ │ ├── network-mobile-80-hsupa.svg │ │ │ ├── network-mobile-80-locked.svg │ │ │ ├── network-mobile-80-lte-locked.svg │ │ │ ├── network-mobile-80-lte.svg │ │ │ ├── network-mobile-80-umts-locked.svg │ │ │ ├── network-mobile-80-umts.svg │ │ │ ├── network-mobile-80.svg │ │ │ ├── network-mobile-available.svg │ │ │ ├── network-mobile-off.svg │ │ │ ├── network-mobile-on.svg │ │ │ ├── network-offline.svg │ │ │ ├── network-wired-activated.svg │ │ │ ├── network-wired-disconnected.svg │ │ │ ├── network-wired-unavailable.svg │ │ │ ├── network-wireless-acquiring.svg │ │ │ ├── network-wireless-connected-00.svg │ │ │ ├── network-wireless-connected-100.svg │ │ │ ├── network-wireless-connected-25.svg │ │ │ ├── network-wireless-connected-50.svg │ │ │ ├── network-wireless-connected-75.svg │ │ │ ├── network-wireless-disconnected.svg │ │ │ ├── network-wireless-signal-excellent.svg │ │ │ ├── network-wireless-signal-good.svg │ │ │ ├── network-wireless-signal-none.svg │ │ │ ├── network-wireless-signal-ok.svg │ │ │ ├── network-wireless-signal-weak.svg │ │ │ ├── nm-device-wired.svg │ │ │ ├── nm-nm-signal-00.svg │ │ │ ├── nm-nm-signal-100.svg │ │ │ ├── nm-nm-signal-25.svg │ │ │ ├── nm-nm-signal-50.svg │ │ │ ├── nm-nm-signal-75.svg │ │ │ ├── nm-no-connection.svg │ │ │ ├── redshift-status-off.svg │ │ │ ├── redshift-status-on.svg │ │ │ ├── rotation-allowed.svg │ │ │ ├── rotation-locked-landscape.svg │ │ │ ├── rotation-locked-portrait.svg │ │ │ ├── script-error.svg │ │ │ ├── security-high.svg │ │ │ ├── security-low.svg │ │ │ ├── security-medium.svg │ │ │ ├── state-download.svg │ │ │ ├── state-error.svg │ │ │ ├── state-information.svg │ │ │ ├── state-offline.svg │ │ │ ├── state-ok.svg │ │ │ ├── state-pause.svg │ │ │ ├── state-sync.svg │ │ │ ├── state-warning.svg │ │ │ ├── task-complete.svg │ │ │ ├── task-process-0.svg │ │ │ ├── task-process-1.svg │ │ │ ├── task-process-2.svg │ │ │ ├── task-process-3.svg │ │ │ ├── task-process-4.svg │ │ │ ├── task-recurring.svg │ │ │ ├── task-reminder.svg │ │ │ ├── telegram-attention-panel.svg │ │ │ ├── telegram-mute-panel.svg │ │ │ ├── telegram-panel.svg │ │ │ ├── temperature-cold.svg │ │ │ ├── temperature-normal.svg │ │ │ ├── temperature-warm.svg │ │ │ ├── transmission-tray-icon.svg │ │ │ ├── uninstall.svg │ │ │ ├── update-high.svg │ │ │ ├── update-low.svg │ │ │ ├── update-medium.svg │ │ │ ├── update-none.svg │ │ │ ├── user-available.svg │ │ │ ├── user-away-extended.svg │ │ │ ├── user-away.svg │ │ │ ├── user-busy.svg │ │ │ ├── user-idle.svg │ │ │ ├── user-invisible.svg │ │ │ ├── user-offline.svg │ │ │ ├── user-online.svg │ │ │ └── video-card-inactive.svg │ │ │ ├── 32 │ │ │ ├── appointment-recurring.svg │ │ │ ├── battery-000-charging.svg │ │ │ ├── battery-000.svg │ │ │ ├── battery-010-charging.svg │ │ │ ├── battery-010.svg │ │ │ ├── battery-020-charging.svg │ │ │ ├── battery-020.svg │ │ │ ├── battery-030-charging.svg │ │ │ ├── battery-030.svg │ │ │ ├── battery-040-charging.svg │ │ │ ├── battery-040.svg │ │ │ ├── battery-050-charging.svg │ │ │ ├── battery-050.svg │ │ │ ├── battery-060-charging.svg │ │ │ ├── battery-060.svg │ │ │ ├── battery-070-charging.svg │ │ │ ├── battery-070.svg │ │ │ ├── battery-080-charging.svg │ │ │ ├── battery-080.svg │ │ │ ├── battery-090-charging.svg │ │ │ ├── battery-090.svg │ │ │ ├── battery-100-charging.svg │ │ │ ├── battery-100.svg │ │ │ ├── battery-caution-charging.svg │ │ │ ├── battery-caution.svg │ │ │ ├── battery-empty-charging.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full-charging.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-good-charging.svg │ │ │ ├── battery-good.svg │ │ │ ├── battery-low-charging.svg │ │ │ ├── battery-low.svg │ │ │ ├── battery-missing.svg │ │ │ ├── call-incoming.svg │ │ │ ├── call-missed.svg │ │ │ ├── call-outgoing.svg │ │ │ ├── dialog-warning.svg │ │ │ ├── rotation-allowed.svg │ │ │ ├── rotation-locked-landscape.svg │ │ │ ├── rotation-locked-portrait.svg │ │ │ └── task-recurring.svg │ │ │ ├── 48 │ │ │ └── dialog-warning.svg │ │ │ ├── 64 │ │ │ ├── dialog-error.svg │ │ │ ├── dialog-information.svg │ │ │ ├── dialog-password.svg │ │ │ ├── dialog-positive.svg │ │ │ ├── dialog-question.svg │ │ │ ├── dialog-warning.svg │ │ │ ├── image-missing.svg │ │ │ ├── security-high.svg │ │ │ ├── security-low.svg │ │ │ └── security-medium.svg │ │ │ └── symbolic │ │ │ ├── alarm-symbolic.svg │ │ │ ├── appointment-missed-symbolic.svg │ │ │ ├── appointment-soon-symbolic.svg │ │ │ ├── audio-volume-high-symbolic.svg │ │ │ ├── audio-volume-low-symbolic.svg │ │ │ ├── audio-volume-medium-symbolic.svg │ │ │ ├── audio-volume-muted-symbolic.svg │ │ │ ├── auth-sim-locked-symbolic.svg │ │ │ ├── auth-sim-missing-symbolic.svg │ │ │ ├── avatar-default-symbolic.svg │ │ │ ├── battery-caution-charging-symbolic.svg │ │ │ ├── battery-caution-symbolic.svg │ │ │ ├── battery-empty-charging-symbolic.svg │ │ │ ├── battery-empty-symbolic.svg │ │ │ ├── battery-full-charged-symbolic.svg │ │ │ ├── battery-full-charging-symbolic.svg │ │ │ ├── battery-full-symbolic.svg │ │ │ ├── battery-good-charging-symbolic.svg │ │ │ ├── battery-good-symbolic.svg │ │ │ ├── battery-low-charging-symbolic.svg │ │ │ ├── battery-low-symbolic.svg │ │ │ ├── battery-missing-symbolic.svg │ │ │ ├── call-incoming-symbolic.svg │ │ │ ├── call-missed-symbolic.svg │ │ │ ├── call-outgoing-symbolic.svg │ │ │ ├── changes-allow-symbolic.svg │ │ │ ├── changes-prevent-symbolic.svg │ │ │ ├── channel-insecure-symbolic.svg │ │ │ ├── channel-secure-symbolic.svg │ │ │ ├── computer-fail-symbolic.svg │ │ │ ├── content-loading-symbolic.svg │ │ │ ├── dialog-error-symbolic.svg │ │ │ ├── dialog-warning-symbolic.svg │ │ │ ├── folder-open-symbolic.svg │ │ │ ├── image-loading-symbolic.svg │ │ │ ├── mail-attachment-symbolic.svg │ │ │ ├── mail-read-symbolic.svg │ │ │ ├── mail-replied-symbolic.svg │ │ │ ├── mail-unread-symbolic.svg │ │ │ ├── media-playlist-consecutive-symbolic-rtl.svg │ │ │ ├── media-playlist-consecutive-symbolic.svg │ │ │ ├── media-playlist-repeat-song-symbolic-rtl.svg │ │ │ ├── media-playlist-repeat-song-symbolic.svg │ │ │ ├── media-playlist-repeat-symbolic-rtl.svg │ │ │ ├── media-playlist-repeat-symbolic.svg │ │ │ ├── media-playlist-shuffle-symbolic-rtl.svg │ │ │ ├── media-playlist-shuffle-symbolic.svg │ │ │ ├── microphone-sensitivity-high-symbolic.svg │ │ │ ├── microphone-sensitivity-low-symbolic.svg │ │ │ ├── microphone-sensitivity-medium-symbolic.svg │ │ │ ├── microphone-sensitivity-muted-symbolic.svg │ │ │ ├── non-starred-symbolic.svg │ │ │ ├── printer-error-symbolic.svg │ │ │ ├── printer-printing-symbolic.svg │ │ │ ├── printer-warning-symbolic.svg │ │ │ ├── process-working-symbolic.svg │ │ │ ├── rating-unrated.svg │ │ │ ├── rotation-allowed-symbolic.svg │ │ │ ├── rotation-locked-landscape-symbolic.svg │ │ │ ├── rotation-locked-portrait-symbolic.svg │ │ │ ├── rotation-locked-symbolic.svg │ │ │ ├── security-high-symbolic.svg │ │ │ ├── security-low-symbolic.svg │ │ │ ├── security-medium-symbolic.svg │ │ │ ├── semi-starred-symbolic-rtl.svg │ │ │ ├── semi-starred-symbolic.svg │ │ │ ├── starred-symbolic.svg │ │ │ ├── system-lock-screen-symbolic.svg │ │ │ ├── user-available-symbolic.svg │ │ │ ├── user-away-symbolic.svg │ │ │ ├── user-busy-symbolic.svg │ │ │ ├── user-idle-symbolic.svg │ │ │ ├── user-invisible-symbolic.svg │ │ │ ├── user-not-tracked-symbolic.svg │ │ │ ├── user-offline-symbolic.svg │ │ │ ├── user-status-pending-symbolic.svg │ │ │ ├── user-trash-full-symbolic.svg │ │ │ ├── view-wrapped-symbolic-rtl.svg │ │ │ └── view-wrapped-symbolic.svg │ ├── Breeze │ │ ├── actions │ │ │ ├── 22 │ │ │ │ ├── CVnamespace.svg │ │ │ │ ├── Info-amarok.svg │ │ │ │ ├── PrePostCondition.svg │ │ │ │ ├── accept_signal.svg │ │ │ │ ├── accept_time_event.svg │ │ │ │ ├── acrobat.svg │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ ├── action-rss_tag.svg │ │ │ │ ├── activities.svg │ │ │ │ ├── activity-fork.svg │ │ │ │ ├── actor.svg │ │ │ │ ├── add-placemark.svg │ │ │ │ ├── add-subtitle.svg │ │ │ │ ├── address-book-new.svg │ │ │ │ ├── addressbook-details.svg │ │ │ │ ├── adjustcurves.svg │ │ │ │ ├── adjusthsl.svg │ │ │ │ ├── adjustlevels.svg │ │ │ │ ├── adjustrgb.svg │ │ │ │ ├── aggregation.svg │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ ├── akonadiconsole.svg │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ ├── albumfolder-new.svg │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ ├── align-horizontal-node.svg │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ ├── align-vertical-center.svg │ │ │ │ ├── align-vertical-node.svg │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ ├── align-vertical-top.svg │ │ │ │ ├── amarok_artist.svg │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ ├── amarok_change_language.svg │ │ │ │ ├── amarok_clock.svg │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ ├── amarok_playcount.svg │ │ │ │ ├── amarok_playlist.svg │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ ├── amarok_scripts.svg │ │ │ │ ├── anchor.svg │ │ │ │ ├── animal.svg │ │ │ │ ├── animation-stage.svg │ │ │ │ ├── answer-correct.svg │ │ │ │ ├── answer.svg │ │ │ │ ├── antivignetting.svg │ │ │ │ ├── application-exit.svg │ │ │ │ ├── application-menu.svg │ │ │ │ ├── appointment-new.svg │ │ │ │ ├── approved.svg │ │ │ │ ├── archive-extract.svg │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ ├── archive-insert.svg │ │ │ │ ├── archive-remove.svg │ │ │ │ ├── arrow-down-double.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left-double.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right-double.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up-double.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrow.svg │ │ │ │ ├── artifact.svg │ │ │ │ ├── artistictext-tool.svg │ │ │ │ ├── association.svg │ │ │ │ ├── atmosphere.svg │ │ │ │ ├── auto-scale-all.svg │ │ │ │ ├── auto-scale-x.svg │ │ │ │ ├── auto-scale-y.svg │ │ │ │ ├── auto-transition.svg │ │ │ │ ├── auto-type.svg │ │ │ │ ├── autocorrection.svg │ │ │ │ ├── backgroundtool.svg │ │ │ │ ├── backup.svg │ │ │ │ ├── bboxnext.svg │ │ │ │ ├── bboxprev.svg │ │ │ │ ├── beamerblock.svg │ │ │ │ ├── beamerframe.svg │ │ │ │ ├── bibtex.svg │ │ │ │ ├── bigskip.svg │ │ │ │ ├── black_sum.svg │ │ │ │ ├── blurfx.svg │ │ │ │ ├── blurimage.svg │ │ │ │ ├── bookmark-add-folder.svg │ │ │ │ ├── bookmark-edit.svg │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ ├── bookmark-new.svg │ │ │ │ ├── bookmark-remove.svg │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ ├── bookmarks.svg │ │ │ │ ├── borderpainter.svg │ │ │ │ ├── bordertool.svg │ │ │ │ ├── box.svg │ │ │ │ ├── bqm-diff.svg │ │ │ │ ├── bqm-remove.svg │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ ├── branch.svg │ │ │ │ ├── bwtonal.svg │ │ │ │ ├── call-start.svg │ │ │ │ ├── call-stop.svg │ │ │ │ ├── call-voicemail.svg │ │ │ │ ├── calligraphy.svg │ │ │ │ ├── callout-shape.svg │ │ │ │ ├── cards-block.svg │ │ │ │ ├── category.svg │ │ │ │ ├── category2parent.svg │ │ │ │ ├── cell_edit.svg │ │ │ │ ├── cell_layout.svg │ │ │ │ ├── channelmixer.svg │ │ │ │ ├── character-set.svg │ │ │ │ ├── charcoaltool.svg │ │ │ │ ├── check_constraint.svg │ │ │ │ ├── checkbox.svg │ │ │ │ ├── checkmark.svg │ │ │ │ ├── child2category.svg │ │ │ │ ├── choice-rhomb.svg │ │ │ │ ├── choice-round.svg │ │ │ │ ├── chronometer-lap.svg │ │ │ │ ├── chronometer-pause.svg │ │ │ │ ├── chronometer-reset.svg │ │ │ │ ├── chronometer-start.svg │ │ │ │ ├── chronometer.svg │ │ │ │ ├── circular-arrow-shape.svg │ │ │ │ ├── class-or-package.svg │ │ │ │ ├── class.svg │ │ │ │ ├── clock-large.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── cloud-download.svg │ │ │ │ ├── cloud-upload.svg │ │ │ │ ├── code-block.svg │ │ │ │ ├── code-class.svg │ │ │ │ ├── code-context.svg │ │ │ │ ├── code-function.svg │ │ │ │ ├── code-typedef.svg │ │ │ │ ├── code-variable.svg │ │ │ │ ├── collapse-all.svg │ │ │ │ ├── collapse.svg │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ ├── color-fill.svg │ │ │ │ ├── color-gradient.svg │ │ │ │ ├── color-management.svg │ │ │ │ ├── color-mode-black-white.svg │ │ │ │ ├── color-mode-hue-shift-negative.svg │ │ │ │ ├── color-mode-hue-shift-positive.svg │ │ │ │ ├── color-mode-invert-image.svg │ │ │ │ ├── color-mode-invert-text.svg │ │ │ │ ├── color-picker-black.svg │ │ │ │ ├── color-picker-grey.svg │ │ │ │ ├── color-picker-white.svg │ │ │ │ ├── color-picker.svg │ │ │ │ ├── colorfx.svg │ │ │ │ ├── colormanagement.svg │ │ │ │ ├── colorneg.svg │ │ │ │ ├── colors-chromablue.svg │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ ├── colors-chromared.svg │ │ │ │ ├── colors-luma.svg │ │ │ │ ├── combined_fragment.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── component.svg │ │ │ │ ├── composite-track-off.svg │ │ │ │ ├── composite-track-on.svg │ │ │ │ ├── composite-track-preview.svg │ │ │ │ ├── composition.svg │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ ├── configure-toolbars.svg │ │ │ │ ├── configure.svg │ │ │ │ ├── configure_kile.svg │ │ │ │ ├── configure_project.svg │ │ │ │ ├── contact-new.svg │ │ │ │ ├── containment.svg │ │ │ │ ├── contents.svg │ │ │ │ ├── contrast.svg │ │ │ │ ├── convert.svg │ │ │ │ ├── coordinate.svg │ │ │ │ ├── copy-coordinates.svg │ │ │ │ ├── createpath.svg │ │ │ │ ├── cross-shape.svg │ │ │ │ ├── crosshairs.svg │ │ │ │ ├── cursor-arrow.svg │ │ │ │ ├── curve-connector.svg │ │ │ │ ├── dashboard-show.svg │ │ │ │ ├── database-change-key.svg │ │ │ │ ├── database-index.svg │ │ │ │ ├── datatype.svg │ │ │ │ ├── dblatex.svg │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ ├── debug-run.svg │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ ├── debug-step-into.svg │ │ │ │ ├── debug-step-out.svg │ │ │ │ ├── debug-step-over.svg │ │ │ │ ├── deep-history.svg │ │ │ │ ├── delete-comment.svg │ │ │ │ ├── delete-table-row.svg │ │ │ │ ├── delete.svg │ │ │ │ ├── dependency.svg │ │ │ │ ├── depth16to8.svg │ │ │ │ ├── depth8to16.svg │ │ │ │ ├── description.svg │ │ │ │ ├── dfrac.svg │ │ │ │ ├── diag_activity.svg │ │ │ │ ├── diag_class.svg │ │ │ │ ├── diag_component.svg │ │ │ │ ├── dialog-cancel.svg │ │ │ │ ├── dialog-close.svg │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ ├── dialog-messages.svg │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ ├── dialog-ok.svg │ │ │ │ ├── dialog-scripts.svg │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ ├── dirsync.svg │ │ │ │ ├── discrete.svg │ │ │ │ ├── displaymathmode.svg │ │ │ │ ├── distortionfx.svg │ │ │ │ ├── distribute-graph-directed.svg │ │ │ │ ├── distribute-graph.svg │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ ├── distribute-horizontal-node.svg │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ ├── distribute-randomize.svg │ │ │ │ ├── distribute-remove-overlaps.svg │ │ │ │ ├── distribute-unclump.svg │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ ├── distribute-vertical-node.svg │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ ├── distribute-vertical.svg │ │ │ │ ├── document-close.svg │ │ │ │ ├── document-decrypt.svg │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ ├── document-edit-sign.svg │ │ │ │ ├── document-edit-verify.svg │ │ │ │ ├── document-edit.svg │ │ │ │ ├── document-encrypt.svg │ │ │ │ ├── document-encrypted.svg │ │ │ │ ├── document-export-ocal.svg │ │ │ │ ├── document-export-table.svg │ │ │ │ ├── document-export.svg │ │ │ │ ├── document-import-ocal.svg │ │ │ │ ├── document-import.svg │ │ │ │ ├── document-multiple.svg │ │ │ │ ├── document-new-from-template.svg │ │ │ │ ├── document-new.svg │ │ │ │ ├── document-open-data.svg │ │ │ │ ├── document-open-folder.svg │ │ │ │ ├── document-open-recent.svg │ │ │ │ ├── document-open-remote.svg │ │ │ │ ├── document-open.svg │ │ │ │ ├── document-preview-archive.svg │ │ │ │ ├── document-preview.svg │ │ │ │ ├── document-print-direct.svg │ │ │ │ ├── document-print-frame.svg │ │ │ │ ├── document-print-preview.svg │ │ │ │ ├── document-print.svg │ │ │ │ ├── document-properties.svg │ │ │ │ ├── document-replace.svg │ │ │ │ ├── document-revert.svg │ │ │ │ ├── document-save-all.svg │ │ │ │ ├── document-save-as-template.svg │ │ │ │ ├── document-save-as.svg │ │ │ │ ├── document-save.svg │ │ │ │ ├── document-scan.svg │ │ │ │ ├── document-send.svg │ │ │ │ ├── document-share.svg │ │ │ │ ├── document-sign.svg │ │ │ │ ├── document-swap.svg │ │ │ │ ├── documentation.svg │ │ │ │ ├── documentinfo.svg │ │ │ │ ├── donate.svg │ │ │ │ ├── dontknow.svg │ │ │ │ ├── download-amarok.svg │ │ │ │ ├── download-later.svg │ │ │ │ ├── download.svg │ │ │ │ ├── drag-surface.svg │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ ├── draw-arrow.svg │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ ├── draw-brush.svg │ │ │ │ ├── draw-calligraphic.svg │ │ │ │ ├── draw-circle.svg │ │ │ │ ├── draw-connector.svg │ │ │ │ ├── draw-cross.svg │ │ │ │ ├── draw-cuboid.svg │ │ │ │ ├── draw-donut.svg │ │ │ │ ├── draw-ellipse.svg │ │ │ │ ├── draw-eraser.svg │ │ │ │ ├── draw-freehand.svg │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ ├── draw-highlight.svg │ │ │ │ ├── draw-line.svg │ │ │ │ ├── draw-path.svg │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── draw-polyline.svg │ │ │ │ ├── draw-rectangle-rounded.svg │ │ │ │ ├── draw-rectangle.svg │ │ │ │ ├── draw-spiral.svg │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ ├── draw-star.svg │ │ │ │ ├── draw-text.svg │ │ │ │ ├── draw-triangle.svg │ │ │ │ ├── draw-triangle1.svg │ │ │ │ ├── draw-triangle2.svg │ │ │ │ ├── draw-triangle3.svg │ │ │ │ ├── draw-triangle4.svg │ │ │ │ ├── draw-watercolor.svg │ │ │ │ ├── dvipdf.svg │ │ │ │ ├── dvipng.svg │ │ │ │ ├── dvips.svg │ │ │ │ ├── dvisearch.svg │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ ├── earthquake.svg │ │ │ │ ├── edit-bomb.svg │ │ │ │ ├── edit-clear-all.svg │ │ │ │ ├── edit-clear-history.svg │ │ │ │ ├── edit-clear-list.svg │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ ├── edit-clear.svg │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ ├── edit-clone.svg │ │ │ │ ├── edit-comment.svg │ │ │ │ ├── edit-copy.svg │ │ │ │ ├── edit-cut.svg │ │ │ │ ├── edit-delete-remove.svg │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ ├── edit-delete.svg │ │ │ │ ├── edit-download.svg │ │ │ │ ├── edit-entry.svg │ │ │ │ ├── edit-find-mail.svg │ │ │ │ ├── edit-find-project.svg │ │ │ │ ├── edit-find-replace.svg │ │ │ │ ├── edit-find-user.svg │ │ │ │ ├── edit-find.svg │ │ │ │ ├── edit-group.svg │ │ │ │ ├── edit-guides.svg │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ ├── edit-line-width.svg │ │ │ │ ├── edit-link.svg │ │ │ │ ├── edit-map.svg │ │ │ │ ├── edit-move.svg │ │ │ │ ├── edit-node.svg │ │ │ │ ├── edit-none.svg │ │ │ │ ├── edit-opacity.svg │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ ├── edit-paste.svg │ │ │ │ ├── edit-redo.svg │ │ │ │ ├── edit-rename.svg │ │ │ │ ├── edit-reset.svg │ │ │ │ ├── edit-select-all.svg │ │ │ │ ├── edit-select-invert.svg │ │ │ │ ├── edit-select-lasso.svg │ │ │ │ ├── edit-select-none.svg │ │ │ │ ├── edit-select-text.svg │ │ │ │ ├── edit-select.svg │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ ├── edit-undo.svg │ │ │ │ ├── edit_animation.svg │ │ │ │ ├── editimage.svg │ │ │ │ ├── editor.svg │ │ │ │ ├── editpath.svg │ │ │ │ ├── edittext.svg │ │ │ │ ├── ellipse-shape.svg │ │ │ │ ├── embosstool.svg │ │ │ │ ├── emph.svg │ │ │ │ ├── end_of_life.svg │ │ │ │ ├── end_state.svg │ │ │ │ ├── entity.svg │ │ │ │ ├── entrance_animations.svg │ │ │ │ ├── entry-clone.svg │ │ │ │ ├── entry-delete.svg │ │ │ │ ├── entry-edit.svg │ │ │ │ ├── entry-new.svg │ │ │ │ ├── enum.svg │ │ │ │ ├── enumerate.svg │ │ │ │ ├── error.svg │ │ │ │ ├── errornext.svg │ │ │ │ ├── errorprev.svg │ │ │ │ ├── escape-direction-all.svg │ │ │ │ ├── escape-direction-down.svg │ │ │ │ ├── escape-direction-horizontal.svg │ │ │ │ ├── escape-direction-left.svg │ │ │ │ ├── escape-direction-right.svg │ │ │ │ ├── escape-direction-up.svg │ │ │ │ ├── escape-direction-vertical.svg │ │ │ │ ├── exception.svg │ │ │ │ ├── exchange-positions-clockwise.svg │ │ │ │ ├── exchange-positions-zorder.svg │ │ │ │ ├── exchange-positions.svg │ │ │ │ ├── exifinfo.svg │ │ │ │ ├── exit_animations.svg │ │ │ │ ├── expand-all.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ ├── favorite.svg │ │ │ │ ├── feed-subscribe.svg │ │ │ │ ├── file-zoom-in.svg │ │ │ │ ├── file-zoom-out.svg │ │ │ │ ├── filegrep.svg │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ ├── filename-divider.svg │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ ├── filename-group-length.svg │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ ├── filename-last-played.svg │ │ │ │ ├── filename-moodbar.svg │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ ├── fileview-preview.svg │ │ │ │ ├── fill-color.svg │ │ │ │ ├── filmgrain.svg │ │ │ │ ├── final_activity.svg │ │ │ │ ├── find-location.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── flag-black.svg │ │ │ │ ├── flag-blue.svg │ │ │ │ ├── flag-green.svg │ │ │ │ ├── flag-red.svg │ │ │ │ ├── flag-yellow.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flash.svg │ │ │ │ ├── flashlight-off.svg │ │ │ │ ├── flashlight-on.svg │ │ │ │ ├── flower-shape.svg │ │ │ │ ├── folder-new.svg │ │ │ │ ├── folder-open-recent.svg │ │ │ │ ├── folder-stash.svg │ │ │ │ ├── folder-sync.svg │ │ │ │ ├── followmouse.svg │ │ │ │ ├── font-disable.svg │ │ │ │ ├── font-enable.svg │ │ │ │ ├── font.svg │ │ │ │ ├── food.svg │ │ │ │ ├── foreignkey_constraint.svg │ │ │ │ ├── fork.svg │ │ │ │ ├── format-add-node.svg │ │ │ │ ├── format-align-vertical-bottom.svg │ │ │ │ ├── format-align-vertical-center.svg │ │ │ │ ├── format-align-vertical-top.svg │ │ │ │ ├── format-border-set-all.svg │ │ │ │ ├── format-border-set-bottom.svg │ │ │ │ ├── format-border-set-diagonal-bl-tr.svg │ │ │ │ ├── format-border-set-diagonal-tl-br.svg │ │ │ │ ├── format-border-set-external.svg │ │ │ │ ├── format-border-set-internal-horizontal.svg │ │ │ │ ├── format-border-set-internal-vertical.svg │ │ │ │ ├── format-border-set-internal.svg │ │ │ │ ├── format-border-set-left.svg │ │ │ │ ├── format-border-set-none.svg │ │ │ │ ├── format-border-set-right.svg │ │ │ │ ├── format-border-set-top.svg │ │ │ │ ├── format-border-style.svg │ │ │ │ ├── format-break-node.svg │ │ │ │ ├── format-connect-node.svg │ │ │ │ ├── format-convert-to-path.svg │ │ │ │ ├── format-currency.svg │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ ├── format-fill-color.svg │ │ │ │ ├── format-font-size-less.svg │ │ │ │ ├── format-font-size-more.svg │ │ │ │ ├── format-indent-less.svg │ │ │ │ ├── format-indent-more.svg │ │ │ │ ├── format-insert-node.svg │ │ │ │ ├── format-join-node.svg │ │ │ │ ├── format-justify-center.svg │ │ │ │ ├── format-justify-fill.svg │ │ │ │ ├── format-justify-left.svg │ │ │ │ ├── format-justify-right.svg │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ ├── format-list-ordered.svg │ │ │ │ ├── format-list-unordered.svg │ │ │ │ ├── format-node-corner.svg │ │ │ │ ├── format-node-curve.svg │ │ │ │ ├── format-node-line.svg │ │ │ │ ├── format-node-smooth.svg │ │ │ │ ├── format-node-symmetric.svg │ │ │ │ ├── format-number-percent.svg │ │ │ │ ├── format-precision-less.svg │ │ │ │ ├── format-precision-more.svg │ │ │ │ ├── format-remove-node.svg │ │ │ │ ├── format-segment-curve.svg │ │ │ │ ├── format-segment-line.svg │ │ │ │ ├── format-stroke-color.svg │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ ├── format-text-bold.svg │ │ │ │ ├── format-text-capitalize.svg │ │ │ │ ├── format-text-code.svg │ │ │ │ ├── format-text-color.svg │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ ├── format-text-italic.svg │ │ │ │ ├── format-text-lowercase.svg │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ ├── format-text-subscript.svg │ │ │ │ ├── format-text-superscript.svg │ │ │ │ ├── format-text-symbol.svg │ │ │ │ ├── format-text-underline-squiggle.svg │ │ │ │ ├── format-text-underline.svg │ │ │ │ ├── format-text-uppercase.svg │ │ │ │ ├── formula.svg │ │ │ │ ├── freerotation.svg │ │ │ │ ├── games-achievements.svg │ │ │ │ ├── games-config-background.svg │ │ │ │ ├── games-config-board.svg │ │ │ │ ├── games-config-custom.svg │ │ │ │ ├── games-config-options.svg │ │ │ │ ├── games-config-theme.svg │ │ │ │ ├── games-config-tiles.svg │ │ │ │ ├── games-difficult.svg │ │ │ │ ├── games-endturn.svg │ │ │ │ ├── games-highscores.svg │ │ │ │ ├── games-hint.svg │ │ │ │ ├── games-solve.svg │ │ │ │ ├── geany-build.svg │ │ │ │ ├── geany-close-all.svg │ │ │ │ ├── geany-save-all.svg │ │ │ │ ├── gearhead-shape.svg │ │ │ │ ├── generalisation.svg │ │ │ │ ├── generalise.svg │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── gnumeric-autofilter-delete.svg │ │ │ │ ├── gnumeric-autofilter.svg │ │ │ │ ├── gnumeric-autosum.svg │ │ │ │ ├── gnumeric-brush.svg │ │ │ │ ├── gnumeric-bucket.svg │ │ │ │ ├── gnumeric-cells-merge.svg │ │ │ │ ├── gnumeric-cells-split.svg │ │ │ │ ├── gnumeric-column-add.svg │ │ │ │ ├── gnumeric-column-delete.svg │ │ │ │ ├── gnumeric-column-hide.svg │ │ │ │ ├── gnumeric-column-size.svg │ │ │ │ ├── gnumeric-column-unhide.svg │ │ │ │ ├── gnumeric-comment-add.svg │ │ │ │ ├── gnumeric-comment-delete.svg │ │ │ │ ├── gnumeric-comment-edit.svg │ │ │ │ ├── gnumeric-component-insert-shaped.svg │ │ │ │ ├── gnumeric-data-slicer.svg │ │ │ │ ├── gnumeric-font.svg │ │ │ │ ├── gnumeric-format-accounting.svg │ │ │ │ ├── gnumeric-format-border-all.svg │ │ │ │ ├── gnumeric-format-border-bottom.svg │ │ │ │ ├── gnumeric-format-border-diag.svg │ │ │ │ ├── gnumeric-format-border-double-bottom.svg │ │ │ │ ├── gnumeric-format-border-inside-horiz.svg │ │ │ │ ├── gnumeric-format-border-left.svg │ │ │ │ ├── gnumeric-format-border-none.svg │ │ │ │ ├── gnumeric-format-border-outside.svg │ │ │ │ ├── gnumeric-format-border-rev-diag.svg │ │ │ │ ├── gnumeric-format-border-right.svg │ │ │ │ ├── gnumeric-format-border-thick-bottom.svg │ │ │ │ ├── gnumeric-format-border-thick-outside.svg │ │ │ │ ├── gnumeric-format-border-top-n-bottom.svg │ │ │ │ ├── gnumeric-format-border-top-n-double-bottom.svg │ │ │ │ ├── gnumeric-format-border-top-n-thick-bottom.svg │ │ │ │ ├── gnumeric-format-border-top.svg │ │ │ │ ├── gnumeric-format-percentage.svg │ │ │ │ ├── gnumeric-format-precision-decrease.svg │ │ │ │ ├── gnumeric-format-precision-increase.svg │ │ │ │ ├── gnumeric-format-thousand-separator.svg │ │ │ │ ├── gnumeric-formulaguru.svg │ │ │ │ ├── gnumeric-graphguru.svg │ │ │ │ ├── gnumeric-group.svg │ │ │ │ ├── gnumeric-link-add.svg │ │ │ │ ├── gnumeric-link-delete.svg │ │ │ │ ├── gnumeric-link-edit.svg │ │ │ │ ├── gnumeric-link-email.svg │ │ │ │ ├── gnumeric-link-external.svg │ │ │ │ ├── gnumeric-link-internal.svg │ │ │ │ ├── gnumeric-link-url.svg │ │ │ │ ├── gnumeric-object-arrow.svg │ │ │ │ ├── gnumeric-object-button.svg │ │ │ │ ├── gnumeric-object-checkbox.svg │ │ │ │ ├── gnumeric-object-combo.svg │ │ │ │ ├── gnumeric-object-ellipse.svg │ │ │ │ ├── gnumeric-object-label.svg │ │ │ │ ├── gnumeric-object-line.svg │ │ │ │ ├── gnumeric-object-list.svg │ │ │ │ ├── gnumeric-object-rectangle.svg │ │ │ │ ├── gnumeric-object-scrollbar.svg │ │ │ │ ├── gnumeric-object-spinbutton.svg │ │ │ │ ├── gnumeric-pagesetup-hf-cell.svg │ │ │ │ ├── gnumeric-pagesetup-hf-page.svg │ │ │ │ ├── gnumeric-pagesetup-hf-pages.svg │ │ │ │ ├── gnumeric-pagesetup-hf-time.svg │ │ │ │ ├── gnumeric-protection-no.svg │ │ │ │ ├── gnumeric-protection-yes.svg │ │ │ │ ├── gnumeric-row-add.svg │ │ │ │ ├── gnumeric-row-delete.svg │ │ │ │ ├── gnumeric-row-hide.svg │ │ │ │ ├── gnumeric-row-size.svg │ │ │ │ ├── gnumeric-row-unhide.svg │ │ │ │ ├── gnumeric-subscript.svg │ │ │ │ ├── gnumeric-superscript.svg │ │ │ │ ├── gnumeric-ungroup.svg │ │ │ │ ├── gnumeric-visible.svg │ │ │ │ ├── go-bottom.svg │ │ │ │ ├── go-down-search.svg │ │ │ │ ├── go-down-skip.svg │ │ │ │ ├── go-down.svg │ │ │ │ ├── go-first-view-page.svg │ │ │ │ ├── go-first-view.svg │ │ │ │ ├── go-first.svg │ │ │ │ ├── go-home-large.svg │ │ │ │ ├── go-home.svg │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ ├── go-jump-definition.svg │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ ├── go-jump-today.svg │ │ │ │ ├── go-jump.svg │ │ │ │ ├── go-last-view-page.svg │ │ │ │ ├── go-last-view.svg │ │ │ │ ├── go-last.svg │ │ │ │ ├── go-next-context.svg │ │ │ │ ├── go-next-skip.svg │ │ │ │ ├── go-next-use.svg │ │ │ │ ├── go-next-view-page.svg │ │ │ │ ├── go-next-view.svg │ │ │ │ ├── go-next.svg │ │ │ │ ├── go-parent-folder.svg │ │ │ │ ├── go-previous-context.svg │ │ │ │ ├── go-previous-skip.svg │ │ │ │ ├── go-previous-use.svg │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ ├── go-previous-view.svg │ │ │ │ ├── go-previous.svg │ │ │ │ ├── go-top.svg │ │ │ │ ├── go-up-search.svg │ │ │ │ ├── go-up-skip.svg │ │ │ │ ├── go-up.svg │ │ │ │ ├── gpg.svg │ │ │ │ ├── gpgsm.svg │ │ │ │ ├── gps.svg │ │ │ │ ├── gradient.svg │ │ │ │ ├── graphics.svg │ │ │ │ ├── grid-rectangular.svg │ │ │ │ ├── group-delete.svg │ │ │ │ ├── group-edit.svg │ │ │ │ ├── group-new.svg │ │ │ │ ├── group.svg │ │ │ │ ├── gtk-add.svg │ │ │ │ ├── gtk-apply.svg │ │ │ │ ├── gtk-authentication.svg │ │ │ │ ├── gtk-bold.svg │ │ │ │ ├── gtk-cancel.svg │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ ├── gtk-clear.svg │ │ │ │ ├── gtk-close.svg │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ ├── gtk-connect.svg │ │ │ │ ├── gtk-convert.svg │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ ├── gtk-edit.svg │ │ │ │ ├── gtk-execute.svg │ │ │ │ ├── gtk-floppy.svg │ │ │ │ ├── gtk-index.svg │ │ │ │ ├── gtk-no.svg │ │ │ │ ├── gtk-ok.svg │ │ │ │ ├── gtk-preferences.svg │ │ │ │ ├── gtk-properties.svg │ │ │ │ ├── gtk-quit.svg │ │ │ │ ├── gtk-select-color.svg │ │ │ │ ├── gtk-select-font.svg │ │ │ │ ├── gtk-stop.svg │ │ │ │ ├── gtk-tab-duplicate.svg │ │ │ │ ├── gtk-tab-new.svg │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ ├── gtk-yes.svg │ │ │ │ ├── guides.svg │ │ │ │ ├── hand.svg │ │ │ │ ├── handle-left.svg │ │ │ │ ├── handle-move.svg │ │ │ │ ├── handle-right.svg │ │ │ │ ├── handle-sort.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── help-about.svg │ │ │ │ ├── help-contents.svg │ │ │ │ ├── help-contextual.svg │ │ │ │ ├── help-donate.svg │ │ │ │ ├── help-feedback.svg │ │ │ │ ├── help-hint.svg │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ ├── help-latex.svg │ │ │ │ ├── help-whatsthis.svg │ │ │ │ ├── hexagon-shape.svg │ │ │ │ ├── hide_table_column.svg │ │ │ │ ├── hide_table_row.svg │ │ │ │ ├── hidemouse.svg │ │ │ │ ├── high-brightness.svg │ │ │ │ ├── hint.svg │ │ │ │ ├── hotpixels.svg │ │ │ │ ├── identity.svg │ │ │ │ ├── im-aim.svg │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ ├── im-ban-user.svg │ │ │ │ ├── im-facebook.svg │ │ │ │ ├── im-gadugadu.svg │ │ │ │ ├── im-google-talk.svg │ │ │ │ ├── im-google.svg │ │ │ │ ├── im-icq.svg │ │ │ │ ├── im-identi.ca.svg │ │ │ │ ├── im-invisible-user.svg │ │ │ │ ├── im-irc.svg │ │ │ │ ├── im-jabber.svg │ │ │ │ ├── im-kick-user.svg │ │ │ │ ├── im-msn.svg │ │ │ │ ├── im-qq.svg │ │ │ │ ├── im-skype.svg │ │ │ │ ├── im-twitter.svg │ │ │ │ ├── im-user-away.svg │ │ │ │ ├── im-user-busy.svg │ │ │ │ ├── im-user-offline.svg │ │ │ │ ├── im-user-online.svg │ │ │ │ ├── im-user.svg │ │ │ │ ├── im-yahoo.svg │ │ │ │ ├── im-youtube.svg │ │ │ │ ├── imagecomment.svg │ │ │ │ ├── initial_state.svg │ │ │ │ ├── inpainting.svg │ │ │ │ ├── input-mouse-click-left.svg │ │ │ │ ├── input-mouse-click-middle.svg │ │ │ │ ├── input-mouse-click-right.svg │ │ │ │ ├── insert-button.svg │ │ │ │ ├── insert-endnote.svg │ │ │ │ ├── insert-footnote.svg │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ ├── insert-image.svg │ │ │ │ ├── insert-link.svg │ │ │ │ ├── insert-math-expression.svg │ │ │ │ ├── insert-more-mark.svg │ │ │ │ ├── insert-page-break.svg │ │ │ │ ├── insert-table-of-contents.svg │ │ │ │ ├── insert-table-row.svg │ │ │ │ ├── insert-table.svg │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ ├── insert-text-frame.svg │ │ │ │ ├── insert-text.svg │ │ │ │ ├── insertcell.svg │ │ │ │ ├── interface.svg │ │ │ │ ├── internet-amarok.svg │ │ │ │ ├── internet-services.svg │ │ │ │ ├── invertimage.svg │ │ │ │ ├── irc-channel-active.svg │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ ├── irc-close-channel.svg │ │ │ │ ├── irc-join-channel.svg │ │ │ │ ├── irc-operator.svg │ │ │ │ ├── irc-remove-operator.svg │ │ │ │ ├── irc-unvoice.svg │ │ │ │ ├── irc-voice.svg │ │ │ │ ├── item.svg │ │ │ │ ├── itemize.svg │ │ │ │ ├── join.svg │ │ │ │ ├── journal-new.svg │ │ │ │ ├── junction.svg │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ ├── kdenlive-composite.svg │ │ │ │ ├── kdenlive-custom-effect.svg │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ ├── kdenlive-down.svg │ │ │ │ ├── kdenlive-hide-audio.svg │ │ │ │ ├── kdenlive-hide-video.svg │ │ │ │ ├── kdenlive-insert-edit.svg │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ ├── kdenlive-no-composite.svg │ │ │ │ ├── kdenlive-normal-edit.svg │ │ │ │ ├── kdenlive-object-height.svg │ │ │ │ ├── kdenlive-object-width.svg │ │ │ │ ├── kdenlive-overwrite-edit.svg │ │ │ │ ├── kdenlive-ripple.svg │ │ │ │ ├── kdenlive-rolling.svg │ │ │ │ ├── kdenlive-select-all.svg │ │ │ │ ├── kdenlive-select-images.svg │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ ├── kdenlive-select-texts.svg │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ ├── kdenlive-show-audio.svg │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ ├── kdenlive-show-markers.svg │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ ├── kdenlive-slide.svg │ │ │ │ ├── kdenlive-slip.svg │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ ├── kdenlive-split-audio.svg │ │ │ │ ├── kdenlive-track_has_effect.svg │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ ├── kdenlive-up.svg │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ ├── kdenlive-zindex-down.svg │ │ │ │ ├── kdenlive-zindex-top.svg │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ ├── kdocumentinfo.svg │ │ │ │ ├── key-enter.svg │ │ │ │ ├── keyframe-add.svg │ │ │ │ ├── keyframe-disable.svg │ │ │ │ ├── keyframe-duplicate.svg │ │ │ │ ├── keyframe-next.svg │ │ │ │ ├── keyframe-previous.svg │ │ │ │ ├── keyframe-record.svg │ │ │ │ ├── keyframe-remove.svg │ │ │ │ ├── keyframe.svg │ │ │ │ ├── kmousetool_off.svg │ │ │ │ ├── kmousetool_on.svg │ │ │ │ ├── kmouth-phrase-new.svg │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ ├── kmouth-phresebook-new.svg │ │ │ │ ├── knotes_alarm.svg │ │ │ │ ├── knotes_date.svg │ │ │ │ ├── knotes_delete.svg │ │ │ │ ├── know.svg │ │ │ │ ├── kontact-import-wizard.svg │ │ │ │ ├── kontes_close.svg │ │ │ │ ├── kr_combine.svg │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ ├── kr_diskusage.svg │ │ │ │ ├── kr_jumpback.svg │ │ │ │ ├── kr_mountman.svg │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ ├── kr_unselect.svg │ │ │ │ ├── kstars_advanced.svg │ │ │ │ ├── kstars_catalog.svg │ │ │ │ ├── kstars_cbound.svg │ │ │ │ ├── kstars_clines.svg │ │ │ │ ├── kstars_cnames.svg │ │ │ │ ├── kstars_colors.svg │ │ │ │ ├── kstars_constellationart.svg │ │ │ │ ├── kstars_deepsky.svg │ │ │ │ ├── kstars_ekos.svg │ │ │ │ ├── kstars_fitsviewer.svg │ │ │ │ ├── kstars_flag.svg │ │ │ │ ├── kstars_grid.svg │ │ │ │ ├── kstars_guides.svg │ │ │ │ ├── kstars_hgrid.svg │ │ │ │ ├── kstars_horizon.svg │ │ │ │ ├── kstars_indi.svg │ │ │ │ ├── kstars_mw.svg │ │ │ │ ├── kstars_planets.svg │ │ │ │ ├── kstars_satellites.svg │ │ │ │ ├── kstars_solarsystem.svg │ │ │ │ ├── kstars_stars.svg │ │ │ │ ├── kstars_supernovae.svg │ │ │ │ ├── kstars_xplanet.svg │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ ├── kt-add-filters.svg │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ ├── kt-check-data.svg │ │ │ │ ├── kt-chunks.svg │ │ │ │ ├── kt-encrypted.svg │ │ │ │ ├── kt-info-widget.svg │ │ │ │ ├── kt-magnet.svg │ │ │ │ ├── kt-pause.svg │ │ │ │ ├── kt-plugins.svg │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ ├── kt-remove-filters.svg │ │ │ │ ├── kt-remove.svg │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ ├── kt-start-all.svg │ │ │ │ ├── kt-start.svg │ │ │ │ ├── kt-stop-all.svg │ │ │ │ ├── kt-stop.svg │ │ │ │ ├── ktnef_extract_all_to.svg │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ ├── l2h.svg │ │ │ │ ├── label-amarok.svg │ │ │ │ ├── label.svg │ │ │ │ ├── labplot-1x-zoom.svg │ │ │ │ ├── labplot-2x-zoom.svg │ │ │ │ ├── labplot-3x-zoom.svg │ │ │ │ ├── labplot-4x-zoom.svg │ │ │ │ ├── labplot-5x-zoom.svg │ │ │ │ ├── labplot-TeX-logo.svg │ │ │ │ ├── labplot-auto-scale-all.svg │ │ │ │ ├── labplot-auto-scale-x.svg │ │ │ │ ├── labplot-auto-scale-y.svg │ │ │ │ ├── labplot-axis-horizontal.svg │ │ │ │ ├── labplot-axis-vertical.svg │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ ├── labplot-editbreaklayout.svg │ │ │ │ ├── labplot-editgrid.svg │ │ │ │ ├── labplot-edithlayout.svg │ │ │ │ ├── labplot-editvlayout.svg │ │ │ │ ├── labplot-format-text-symbol.svg │ │ │ │ ├── labplot-matrix-new.svg │ │ │ │ ├── labplot-matrix.svg │ │ │ │ ├── labplot-plot-axis-points.svg │ │ │ │ ├── labplot-shift-down-y.svg │ │ │ │ ├── labplot-shift-left-x.svg │ │ │ │ ├── labplot-shift-right-x.svg │ │ │ │ ├── labplot-shift-up-y.svg │ │ │ │ ├── labplot-spreadsheet-new.svg │ │ │ │ ├── labplot-spreadsheet.svg │ │ │ │ ├── labplot-transform-move.svg │ │ │ │ ├── labplot-workbook-new.svg │ │ │ │ ├── labplot-workbook.svg │ │ │ │ ├── labplot-worksheet-new.svg │ │ │ │ ├── labplot-worksheet.svg │ │ │ │ ├── labplot-xy-curve-points.svg │ │ │ │ ├── labplot-xy-curve-segments.svg │ │ │ │ ├── labplot-xy-curve.svg │ │ │ │ ├── labplot-xy-equation-curve.svg │ │ │ │ ├── labplot-xy-fit-curve.svg │ │ │ │ ├── labplot-xy-fourier-filter-curve.svg │ │ │ │ ├── labplot-xy-fourier-transform-curve.svg │ │ │ │ ├── labplot-xy-interpolation-curve.svg │ │ │ │ ├── labplot-xy-plot-four-axes.svg │ │ │ │ ├── labplot-xy-plot-two-axes-centered-origin.svg │ │ │ │ ├── labplot-xy-plot-two-axes-centered.svg │ │ │ │ ├── labplot-xy-plot-two-axes.svg │ │ │ │ ├── labplot-xy-smoothing-curve.svg │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ ├── language-chooser.svg │ │ │ │ ├── languages.svg │ │ │ │ ├── latex-config.svg │ │ │ │ ├── latex.svg │ │ │ │ ├── layer-visible-off.svg │ │ │ │ ├── layer-visible-on.svg │ │ │ │ ├── lensautofix.svg │ │ │ │ ├── lensdistortion.svg │ │ │ │ ├── libpeas-plugin.svg │ │ │ │ ├── license.svg │ │ │ │ ├── lighttable.svg │ │ │ │ ├── lighttableadd.svg │ │ │ │ ├── lilypond.svg │ │ │ │ ├── linear.svg │ │ │ │ ├── lines-connector.svg │ │ │ │ ├── link.svg │ │ │ │ ├── list-add-font.svg │ │ │ │ ├── list-add-user.svg │ │ │ │ ├── list-add.svg │ │ │ │ ├── list-remove-user.svg │ │ │ │ ├── list-remove.svg │ │ │ │ ├── list-resource-add.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── love-amarok.svg │ │ │ │ ├── love.svg │ │ │ │ ├── low-brightness.svg │ │ │ │ ├── mail-attachment.svg │ │ │ │ ├── mail-deleted.svg │ │ │ │ ├── mail-download-later.svg │ │ │ │ ├── mail-download-now.svg │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ ├── mail-encrypted.svg │ │ │ │ ├── mail-flag.svg │ │ │ │ ├── mail-forward.svg │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ ├── mail-forwarded.svg │ │ │ │ ├── mail-invitation.svg │ │ │ │ ├── mail-mark-important.svg │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ ├── mail-mark-read.svg │ │ │ │ ├── mail-mark-task.svg │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ ├── mail-message-new.svg │ │ │ │ ├── mail-message.svg │ │ │ │ ├── mail-queue.svg │ │ │ │ ├── mail-queued.svg │ │ │ │ ├── mail-read.svg │ │ │ │ ├── mail-receive.svg │ │ │ │ ├── mail-replied.svg │ │ │ │ ├── mail-reply-all.svg │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ ├── mail-reply-list.svg │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ ├── mail-send.svg │ │ │ │ ├── mail-sent.svg │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ ├── mail-signed-full.svg │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ ├── mail-signed-part.svg │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ ├── mail-signed.svg │ │ │ │ ├── mail-tagged.svg │ │ │ │ ├── mail-task.svg │ │ │ │ ├── mail-thread-ignored.svg │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ ├── mail-unread-new.svg │ │ │ │ ├── mail-unread.svg │ │ │ │ ├── makeidx.svg │ │ │ │ ├── map-flat.svg │ │ │ │ ├── map-globe.svg │ │ │ │ ├── map-gnomonic.svg │ │ │ │ ├── map-mercator.svg │ │ │ │ ├── markasblank.svg │ │ │ │ ├── math0.svg │ │ │ │ ├── mathmode.svg │ │ │ │ ├── measure.svg │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ ├── media-album-cover.svg │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ ├── media-album-track.svg │ │ │ │ ├── media-eject.svg │ │ │ │ ├── media-mount.svg │ │ │ │ ├── media-playback-pause.svg │ │ │ │ ├── media-playback-start.svg │ │ │ │ ├── media-playback-stop.svg │ │ │ │ ├── media-playlist-append.svg │ │ │ │ ├── media-playlist-normal.svg │ │ │ │ ├── media-playlist-play.svg │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ ├── media-record.svg │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ ├── media-repeat-all.svg │ │ │ │ ├── media-repeat-none.svg │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ ├── media-repeat-single.svg │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ ├── media-seek-backward.svg │ │ │ │ ├── media-seek-forward.svg │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ ├── media-skip-backward.svg │ │ │ │ ├── media-skip-forward.svg │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ ├── media-track-show-active.svg │ │ │ │ ├── medskip.svg │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ ├── meeting-attending.svg │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ ├── menu_new.svg │ │ │ │ ├── menu_new_sep.svg │ │ │ │ ├── merge.svg │ │ │ │ ├── messagebox_warning.svg │ │ │ │ ├── milestone.svg │ │ │ │ ├── minuet-chords.svg │ │ │ │ ├── minuet-intervals.svg │ │ │ │ ├── minuet-rhythms.svg │ │ │ │ ├── minuet-scales.svg │ │ │ │ ├── mode1.svg │ │ │ │ ├── mode2.svg │ │ │ │ ├── mode3.svg │ │ │ │ ├── mode4.svg │ │ │ │ ├── mode5.svg │ │ │ │ ├── modified.svg │ │ │ │ ├── motion_path_animations.svg │ │ │ │ ├── mpost.svg │ │ │ │ ├── msgid2msgstr.svg │ │ │ │ ├── multirow.svg │ │ │ │ ├── music-amarok.svg │ │ │ │ ├── music-note-16th.svg │ │ │ │ ├── network-connect.svg │ │ │ │ ├── network-disconnect.svg │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ ├── new-command-alarm.svg │ │ │ │ ├── newline.svg │ │ │ │ ├── news-subscribe.svg │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ ├── nextfuzzy.svg │ │ │ │ ├── nextfuzzyuntrans.svg │ │ │ │ ├── nextuntranslated.svg │ │ │ │ ├── nocover.svg │ │ │ │ ├── node-add.svg │ │ │ │ ├── node-break.svg │ │ │ │ ├── node-delete-segment.svg │ │ │ │ ├── node-delete.svg │ │ │ │ ├── node-join-segment.svg │ │ │ │ ├── node-join.svg │ │ │ │ ├── node-segment-curve.svg │ │ │ │ ├── node-segment-line.svg │ │ │ │ ├── node-transform.svg │ │ │ │ ├── node-type-auto-smooth.svg │ │ │ │ ├── node-type-cusp.svg │ │ │ │ ├── node-type-smooth.svg │ │ │ │ ├── node-type-symmetric.svg │ │ │ │ ├── node.svg │ │ │ │ ├── noisereduction.svg │ │ │ │ ├── note.svg │ │ │ │ ├── notifications-disabled.svg │ │ │ │ ├── notifications.svg │ │ │ │ ├── nroot.svg │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ ├── object-columns.svg │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ ├── object-group-calligra.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-locked.svg │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ ├── object-order-back.svg │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ ├── object-order-front.svg │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ ├── object-order-lower.svg │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ ├── object-order-raise.svg │ │ │ │ ├── object-rotate-left.svg │ │ │ │ ├── object-rotate-right.svg │ │ │ │ ├── object-rows.svg │ │ │ │ ├── object-to-path.svg │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── object-unlocked.svg │ │ │ │ ├── object.svg │ │ │ │ ├── object_node.svg │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ ├── office-chart-area.svg │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ ├── office-chart-bar.svg │ │ │ │ ├── office-chart-line-forecast.svg │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ ├── office-chart-line.svg │ │ │ │ ├── office-chart-pie.svg │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ ├── office-chart-polar.svg │ │ │ │ ├── office-chart-ring.svg │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ ├── office-report.svg │ │ │ │ ├── offline-settings.svg │ │ │ │ ├── offline.svg │ │ │ │ ├── oilpaint.svg │ │ │ │ ├── online.svg │ │ │ │ ├── open-for-editing.svg │ │ │ │ ├── output_win.svg │ │ │ │ ├── overexposure.svg │ │ │ │ ├── overflow-menu-left.svg │ │ │ │ ├── overflow-menu-right.svg │ │ │ │ ├── overflow-menu.svg │ │ │ │ ├── package.svg │ │ │ │ ├── page-2sides.svg │ │ │ │ ├── page-3sides.svg │ │ │ │ ├── page-4sides.svg │ │ │ │ ├── page-simple.svg │ │ │ │ ├── page-zoom.svg │ │ │ │ ├── paint-none.svg │ │ │ │ ├── paper-color.svg │ │ │ │ ├── password-copy.svg │ │ │ │ ├── password-generate.svg │ │ │ │ ├── password-show-off.svg │ │ │ │ ├── password-show-on.svg │ │ │ │ ├── path-clip-edit.svg │ │ │ │ ├── path-effect-parameter-next.svg │ │ │ │ ├── path-mask-edit.svg │ │ │ │ ├── path-mode-bezier.svg │ │ │ │ ├── path-mode-polyline-paraxial.svg │ │ │ │ ├── path-mode-polyline.svg │ │ │ │ ├── path-mode-spiro.svg │ │ │ │ ├── path-reverse.svg │ │ │ │ ├── path-simplify.svg │ │ │ │ ├── pathshape.svg │ │ │ │ ├── pdf-annotations.svg │ │ │ │ ├── pdflatex.svg │ │ │ │ ├── pdftex.svg │ │ │ │ ├── pentagon-shape.svg │ │ │ │ ├── perspective.svg │ │ │ │ ├── photo.svg │ │ │ │ ├── photos-amarok.svg │ │ │ │ ├── pin.svg │ │ │ │ ├── player-time.svg │ │ │ │ ├── player-volume-muted.svg │ │ │ │ ├── player-volume.svg │ │ │ │ ├── playlist-generator.svg │ │ │ │ ├── playlist-sort.svg │ │ │ │ ├── plugins.svg │ │ │ │ ├── podcast-amarok.svg │ │ │ │ ├── pointer.svg │ │ │ │ ├── polygon-add-nodes.svg │ │ │ │ ├── polygon-merge-nodes.svg │ │ │ │ ├── port.svg │ │ │ │ ├── postalcode.svg │ │ │ │ ├── practice-setup.svg │ │ │ │ ├── practice-start.svg │ │ │ │ ├── practice-stop.svg │ │ │ │ ├── precondition.svg │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ ├── preferences-other.svg │ │ │ │ ├── preferences-system-symbolic.svg │ │ │ │ ├── preflight-verifier.svg │ │ │ │ ├── presence_away.svg │ │ │ │ ├── presence_offline.svg │ │ │ │ ├── presence_online.svg │ │ │ │ ├── presence_unknown.svg │ │ │ │ ├── prevfuzzy.svg │ │ │ │ ├── prevfuzzyuntrans.svg │ │ │ │ ├── preview-add-zone.svg │ │ │ │ ├── preview-remove-all.svg │ │ │ │ ├── preview-remove-zone.svg │ │ │ │ ├── preview-render-off.svg │ │ │ │ ├── preview-render-on.svg │ │ │ │ ├── preview.svg │ │ │ │ ├── preview_math.svg │ │ │ │ ├── preview_sel.svg │ │ │ │ ├── prevuntranslated.svg │ │ │ │ ├── primarykey_constraint.svg │ │ │ │ ├── process-stop.svg │ │ │ │ ├── project-defaults.svg │ │ │ │ ├── project-development-close-all.svg │ │ │ │ ├── project-development-close.svg │ │ │ │ ├── project-development-new-template.svg │ │ │ │ ├── project-development.svg │ │ │ │ ├── project-open.svg │ │ │ │ ├── project_add.svg │ │ │ │ ├── project_archive.svg │ │ │ │ ├── project_rebuild.svg │ │ │ │ ├── project_remove.svg │ │ │ │ ├── project_show.svg │ │ │ │ ├── projectgrep.svg │ │ │ │ ├── ps2pdf.svg │ │ │ │ ├── qa.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quick.svg │ │ │ │ ├── quickopen-class.svg │ │ │ │ ├── quickopen-file.svg │ │ │ │ ├── quickopen-function.svg │ │ │ │ ├── quickopen.svg │ │ │ │ ├── quickview.svg │ │ │ │ ├── quickwizard.svg │ │ │ │ ├── raindrop.svg │ │ │ │ ├── randomize.svg │ │ │ │ ├── ratiocrop.svg │ │ │ │ ├── realization.svg │ │ │ │ ├── rectangle-shape.svg │ │ │ │ ├── redeyes.svg │ │ │ │ ├── refactor.svg │ │ │ │ ├── refreshstructure.svg │ │ │ │ ├── region.svg │ │ │ │ ├── relation.svg │ │ │ │ ├── relationship.svg │ │ │ │ ├── remove-amarok.svg │ │ │ │ ├── remove-link.svg │ │ │ │ ├── remove.svg │ │ │ │ ├── removecell.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ ├── resource-group-new.svg │ │ │ │ ├── resource-group.svg │ │ │ │ ├── restoration.svg │ │ │ │ ├── reverse.svg │ │ │ │ ├── roll.svg │ │ │ │ ├── routeplanning.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── run-build-clean.svg │ │ │ │ ├── run-build-configure.svg │ │ │ │ ├── run-build-file.svg │ │ │ │ ├── run-build-install-root.svg │ │ │ │ ├── run-build-install.svg │ │ │ │ ├── run-build-prune.svg │ │ │ │ ├── run-build.svg │ │ │ │ ├── run-clean.svg │ │ │ │ ├── run-install.svg │ │ │ │ ├── scriptnew.svg │ │ │ │ ├── scriptopen.svg │ │ │ │ ├── secure-card.svg │ │ │ │ ├── select-rectangular.svg │ │ │ │ ├── select.svg │ │ │ │ ├── selection.svg │ │ │ │ ├── send_signal.svg │ │ │ │ ├── services.svg │ │ │ │ ├── set-language.svg │ │ │ │ ├── settings-configure.svg │ │ │ │ ├── shallow-history.svg │ │ │ │ ├── shape-choose.svg │ │ │ │ ├── shape-cuboid.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── sharpenimage.svg │ │ │ │ ├── shear.svg │ │ │ │ ├── show-all-effects.svg │ │ │ │ ├── show-gpu-effects.svg │ │ │ │ ├── show-menu.svg │ │ │ │ ├── show-node-handles.svg │ │ │ │ ├── show-offline.svg │ │ │ │ ├── show-path-outline.svg │ │ │ │ ├── show_table_column.svg │ │ │ │ ├── show_table_row.svg │ │ │ │ ├── shuffle.svg │ │ │ │ ├── sidebar-collapse-left.svg │ │ │ │ ├── sidebar-collapse-right.svg │ │ │ │ ├── sidebar-collapse.svg │ │ │ │ ├── sidebar-expand-left.svg │ │ │ │ ├── sidebar-expand-right.svg │ │ │ │ ├── sidebar-expand.svg │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ ├── skg-chart-bubble.svg │ │ │ │ ├── skrooge_credit_card.svg │ │ │ │ ├── skrooge_less.svg │ │ │ │ ├── skrooge_more.svg │ │ │ │ ├── skrooge_much_less.svg │ │ │ │ ├── skrooge_much_more.svg │ │ │ │ ├── skrooge_type.svg │ │ │ │ ├── slanted.svg │ │ │ │ ├── smallclock.svg │ │ │ │ ├── smallfrac.svg │ │ │ │ ├── smallskip.svg │ │ │ │ ├── smartnewline.svg │ │ │ │ ├── smiley-add.svg │ │ │ │ ├── smiley-shape.svg │ │ │ │ ├── smiley.svg │ │ │ │ ├── smooth.svg │ │ │ │ ├── snap-angle.svg │ │ │ │ ├── snap-bounding-box-center.svg │ │ │ │ ├── snap-bounding-box-corners.svg │ │ │ │ ├── snap-bounding-box-edges.svg │ │ │ │ ├── snap-bounding-box-midpoints.svg │ │ │ │ ├── snap-bounding-box.svg │ │ │ │ ├── snap-extension.svg │ │ │ │ ├── snap-grid-guide-intersections.svg │ │ │ │ ├── snap-guideline.svg │ │ │ │ ├── snap-intersection.svg │ │ │ │ ├── snap-node.svg │ │ │ │ ├── snap-nodes-center.svg │ │ │ │ ├── snap-nodes-cusp.svg │ │ │ │ ├── snap-nodes-intersection.svg │ │ │ │ ├── snap-nodes-midpoint.svg │ │ │ │ ├── snap-nodes-path.svg │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ ├── snap-nodes-smooth.svg │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ ├── snap-page.svg │ │ │ │ ├── snap-text-baseline.svg │ │ │ │ ├── snap.svg │ │ │ │ ├── social.svg │ │ │ │ ├── sort-name.svg │ │ │ │ ├── sort-presence.svg │ │ │ │ ├── sort_incr.svg │ │ │ │ ├── speaker.svg │ │ │ │ ├── special_paste.svg │ │ │ │ ├── specific-setup.svg │ │ │ │ ├── speedometer.svg │ │ │ │ ├── spiral-shape.svg │ │ │ │ ├── split.svg │ │ │ │ ├── spreadsheetshape.svg │ │ │ │ ├── sqrt.svg │ │ │ │ ├── standard-connector.svg │ │ │ │ ├── star-shape.svg │ │ │ │ ├── start-over.svg │ │ │ │ ├── state-fork.svg │ │ │ │ ├── stateshape.svg │ │ │ │ ├── statetool.svg │ │ │ │ ├── step_object_Anchor.svg │ │ │ │ ├── step_object_Box.svg │ │ │ │ ├── step_object_ChargedParticle.svg │ │ │ │ ├── step_object_CircularMotor.svg │ │ │ │ ├── step_object_Controller.svg │ │ │ │ ├── step_object_CoulombForce.svg │ │ │ │ ├── step_object_Disk.svg │ │ │ │ ├── step_object_Gas.svg │ │ │ │ ├── step_object_GasParticle.svg │ │ │ │ ├── step_object_Graph.svg │ │ │ │ ├── step_object_GravitationForce.svg │ │ │ │ ├── step_object_LinearMotor.svg │ │ │ │ ├── step_object_Meter.svg │ │ │ │ ├── step_object_Note.svg │ │ │ │ ├── step_object_Particle.svg │ │ │ │ ├── step_object_Pin.svg │ │ │ │ ├── step_object_Polygon.svg │ │ │ │ ├── step_object_Rope.svg │ │ │ │ ├── step_object_SoftBody.svg │ │ │ │ ├── step_object_Spring.svg │ │ │ │ ├── step_object_Stick.svg │ │ │ │ ├── step_object_Tracer.svg │ │ │ │ ├── step_object_WeightForce.svg │ │ │ │ ├── stickers.svg │ │ │ │ ├── story-editor.svg │ │ │ │ ├── straight-connector.svg │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ ├── stroke-join-round.svg │ │ │ │ ├── stroke-to-path.svg │ │ │ │ ├── strong.svg │ │ │ │ ├── structure.svg │ │ │ │ ├── subsystem.svg │ │ │ │ ├── svn-commit.svg │ │ │ │ ├── svn-update.svg │ │ │ │ ├── swap-panels.svg │ │ │ │ ├── system-hibernate.svg │ │ │ │ ├── system-lock-screen.svg │ │ │ │ ├── system-log-out-rtl.svg │ │ │ │ ├── system-log-out.svg │ │ │ │ ├── system-reboot.svg │ │ │ │ ├── system-run.svg │ │ │ │ ├── system-save-session.svg │ │ │ │ ├── system-search.svg │ │ │ │ ├── system-shutdown.svg │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ ├── system-suspend.svg │ │ │ │ ├── system-switch-user.svg │ │ │ │ ├── system-upgrade.svg │ │ │ │ ├── system-users.svg │ │ │ │ ├── tab-close-other.svg │ │ │ │ ├── tab-close.svg │ │ │ │ ├── tab-detach.svg │ │ │ │ ├── tab-duplicate.svg │ │ │ │ ├── tab-new-background.svg │ │ │ │ ├── tab-new.svg │ │ │ │ ├── table.svg │ │ │ │ ├── tag-addressbook.svg │ │ │ │ ├── tag-assigned.svg │ │ │ │ ├── tag-delete.svg │ │ │ │ ├── tag-edit.svg │ │ │ │ ├── tag-events.svg │ │ │ │ ├── tag-folder.svg │ │ │ │ ├── tag-new.svg │ │ │ │ ├── tag-people.svg │ │ │ │ ├── tag-places.svg │ │ │ │ ├── tag-properties.svg │ │ │ │ ├── tag-recents.svg │ │ │ │ ├── tag-reset.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── task-new.svg │ │ │ │ ├── taxes-finances.svg │ │ │ │ ├── template.svg │ │ │ │ ├── texcompiler.svg │ │ │ │ ├── texlion.svg │ │ │ │ ├── text-field-framed.svg │ │ │ │ ├── text-field-frameless.svg │ │ │ │ ├── text-field.svg │ │ │ │ ├── text-flow-into-frame.svg │ │ │ │ ├── text-frame-link.svg │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ ├── text-speak.svg │ │ │ │ ├── text-unflow.svg │ │ │ │ ├── text-wrap.svg │ │ │ │ ├── text_horz_kern.svg │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ ├── text_line_spacing.svg │ │ │ │ ├── text_remove_kerns.svg │ │ │ │ ├── text_rotation.svg │ │ │ │ ├── text_subscript.svg │ │ │ │ ├── text_superscript.svg │ │ │ │ ├── text_vert_kern.svg │ │ │ │ ├── text_word_spacing.svg │ │ │ │ ├── texture.svg │ │ │ │ ├── timeline-extract.svg │ │ │ │ ├── timeline-insert.svg │ │ │ │ ├── timeline-lift.svg │ │ │ │ ├── timeline-overwrite.svg │ │ │ │ ├── timeline-use-zone-off.svg │ │ │ │ ├── timeline-use-zone-on.svg │ │ │ │ ├── tool-animator.svg │ │ │ │ ├── tool-measure.svg │ │ │ │ ├── tool-node-editor.svg │ │ │ │ ├── tool-pointer.svg │ │ │ │ ├── tool-spray.svg │ │ │ │ ├── tool-text.svg │ │ │ │ ├── tool-tweak.svg │ │ │ │ ├── tool_brush.svg │ │ │ │ ├── tool_cellformatting.svg │ │ │ │ ├── tool_color_eraser.svg │ │ │ │ ├── tool_color_picker.svg │ │ │ │ ├── tool_curve.svg │ │ │ │ ├── tool_ellipse.svg │ │ │ │ ├── tool_elliptical_selection.svg │ │ │ │ ├── tool_eraser.svg │ │ │ │ ├── tool_flood_fill.svg │ │ │ │ ├── tool_free_form_selection.svg │ │ │ │ ├── tool_imageeffects.svg │ │ │ │ ├── tool_line.svg │ │ │ │ ├── tool_pagelayout.svg │ │ │ │ ├── tool_pen.svg │ │ │ │ ├── tool_polygon.svg │ │ │ │ ├── tool_polyline.svg │ │ │ │ ├── tool_rect_selection.svg │ │ │ │ ├── tool_rectangle.svg │ │ │ │ ├── tool_references.svg │ │ │ │ ├── tool_review.svg │ │ │ │ ├── tool_rounded_rectangle.svg │ │ │ │ ├── tool_spraycan.svg │ │ │ │ ├── tool_text.svg │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ ├── tools-report-bug.svg │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ ├── tools-wizard.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── torrents.svg │ │ │ │ ├── transform-browse.svg │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ ├── transform-crop.svg │ │ │ │ ├── transform-move-horizontal.svg │ │ │ │ ├── transform-move-vertical.svg │ │ │ │ ├── transform-move.svg │ │ │ │ ├── transform-rotate.svg │ │ │ │ ├── transform-scale-horizontal.svg │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ ├── transform-scale-vertical.svg │ │ │ │ ├── transform-scale.svg │ │ │ │ ├── transform-shear-down.svg │ │ │ │ ├── transform-shear-left.svg │ │ │ │ ├── transform-shear-right.svg │ │ │ │ ├── transform-shear-up.svg │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ ├── transsearch.svg │ │ │ │ ├── trash-empty.svg │ │ │ │ ├── trim-margins.svg │ │ │ │ ├── trim-to-selection.svg │ │ │ │ ├── typewriter.svg │ │ │ │ ├── umbr-coll-message-asynchronous.svg │ │ │ │ ├── umbr-coll-message-synchronous.svg │ │ │ │ ├── umbr-message-asynchronous.svg │ │ │ │ ├── umbr-message-found.svg │ │ │ │ ├── umbr-message-lost.svg │ │ │ │ ├── umbr-message-synchronous.svg │ │ │ │ ├── umbrello_diagram_activity.svg │ │ │ │ ├── umbrello_diagram_class.svg │ │ │ │ ├── umbrello_diagram_collaboration.svg │ │ │ │ ├── umbrello_diagram_component.svg │ │ │ │ ├── umbrello_diagram_deployment.svg │ │ │ │ ├── umbrello_diagram_entityrelationship.svg │ │ │ │ ├── umbrello_diagram_sequence.svg │ │ │ │ ├── umbrello_diagram_state.svg │ │ │ │ ├── umbrello_diagram_usecase.svg │ │ │ │ ├── underexposure.svg │ │ │ │ ├── uniassociation.svg │ │ │ │ ├── unique_constraint.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── unmarkasblank.svg │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ ├── upindicator.svg │ │ │ │ ├── upload-media.svg │ │ │ │ ├── usecase.svg │ │ │ │ ├── user-group-delete.svg │ │ │ │ ├── user-group-new.svg │ │ │ │ ├── user-group-properties.svg │ │ │ │ ├── user-identity.svg │ │ │ │ ├── user-others.svg │ │ │ │ ├── user-properties.svg │ │ │ │ ├── user.svg │ │ │ │ ├── username-copy.svg │ │ │ │ ├── vcs-branch-delete.svg │ │ │ │ ├── vcs-branch.svg │ │ │ │ ├── vcs-commit-cvs-cervisia.svg │ │ │ │ ├── vcs-commit.svg │ │ │ │ ├── vcs-diff-cvs-cervisia.svg │ │ │ │ ├── vcs-diff.svg │ │ │ │ ├── vcs-merge-request.svg │ │ │ │ ├── vcs-merge.svg │ │ │ │ ├── vcs-pull.svg │ │ │ │ ├── vcs-push.svg │ │ │ │ ├── vcs-remove-cvs-cervisia.svg │ │ │ │ ├── vcs-stash-pop.svg │ │ │ │ ├── vcs-stash.svg │ │ │ │ ├── vcs-status-cvs-cervisia.svg │ │ │ │ ├── vcs-update-cvs-cervisia.svg │ │ │ │ ├── verb.svg │ │ │ │ ├── verbatim.svg │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ ├── view-bank-add.svg │ │ │ │ ├── view-bank-delete.svg │ │ │ │ ├── view-bank-edit.svg │ │ │ │ ├── view-bank.svg │ │ │ │ ├── view-barcode-add.svg │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ ├── view-barcode.svg │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ ├── view-calendar-day.svg │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ ├── view-calendar-list.svg │ │ │ │ ├── view-calendar-month.svg │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ ├── view-calendar-week.svg │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ ├── view-calendar.svg │ │ │ │ ├── view-catalog.svg │ │ │ │ ├── view-categories-expenditures.svg │ │ │ │ ├── view-categories-incomes.svg │ │ │ │ ├── view-certificate-add.svg │ │ │ │ ├── view-certificate-export-secret.svg │ │ │ │ ├── view-certificate-export-server.svg │ │ │ │ ├── view-certificate-export.svg │ │ │ │ ├── view-certificate-import.svg │ │ │ │ ├── view-certificate-server-configure.svg │ │ │ │ ├── view-certificate-sign.svg │ │ │ │ ├── view-certificate.svg │ │ │ │ ├── view-close.svg │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ ├── view-currency-list.svg │ │ │ │ ├── view-file-columns.svg │ │ │ │ ├── view-filter.svg │ │ │ │ ├── view-financial-account-add.svg │ │ │ │ ├── view-financial-account-asset-closed.svg │ │ │ │ ├── view-financial-account-asset.svg │ │ │ │ ├── view-financial-account-cash-closed.svg │ │ │ │ ├── view-financial-account-cash.svg │ │ │ │ ├── view-financial-account-checking-closed.svg │ │ │ │ ├── view-financial-account-checking.svg │ │ │ │ ├── view-financial-account-close.svg │ │ │ │ ├── view-financial-account-closed.svg │ │ │ │ ├── view-financial-account-credit-card-closed.svg │ │ │ │ ├── view-financial-account-credit-card.svg │ │ │ │ ├── view-financial-account-delete.svg │ │ │ │ ├── view-financial-account-edit.svg │ │ │ │ ├── view-financial-account-investment-closed.svg │ │ │ │ ├── view-financial-account-investment-security-closed.svg │ │ │ │ ├── view-financial-account-investment-security.svg │ │ │ │ ├── view-financial-account-investment.svg │ │ │ │ ├── view-financial-account-liability-closed.svg │ │ │ │ ├── view-financial-account-liability.svg │ │ │ │ ├── view-financial-account-loan-closed.svg │ │ │ │ ├── view-financial-account-loan.svg │ │ │ │ ├── view-financial-account-reopen.svg │ │ │ │ ├── view-financial-account-savings-closed.svg │ │ │ │ ├── view-financial-account-savings.svg │ │ │ │ ├── view-financial-account.svg │ │ │ │ ├── view-financial-budget.svg │ │ │ │ ├── view-financial-category-add.svg │ │ │ │ ├── view-financial-category-delete.svg │ │ │ │ ├── view-financial-category-edit.svg │ │ │ │ ├── view-financial-category-expense.svg │ │ │ │ ├── view-financial-category-income.svg │ │ │ │ ├── view-financial-category.svg │ │ │ │ ├── view-financial-list.svg │ │ │ │ ├── view-financial-transfer-reconcile.svg │ │ │ │ ├── view-financial-transfer-reconciled.svg │ │ │ │ ├── view-financial-transfer-unreconciled.svg │ │ │ │ ├── view-form-action.svg │ │ │ │ ├── view-form.svg │ │ │ │ ├── view-fullscreen.svg │ │ │ │ ├── view-grid.svg │ │ │ │ ├── view-group.svg │ │ │ │ ├── view-hidden.svg │ │ │ │ ├── view-history.svg │ │ │ │ ├── view-institution-add.svg │ │ │ │ ├── view-institution-delete.svg │ │ │ │ ├── view-institution-edit.svg │ │ │ │ ├── view-institution.svg │ │ │ │ ├── view-left-close.svg │ │ │ │ ├── view-list-details.svg │ │ │ │ ├── view-list-icons.svg │ │ │ │ ├── view-list-text.svg │ │ │ │ ├── view-list-tree.svg │ │ │ │ ├── view-media-album-cover.svg │ │ │ │ ├── view-media-artist.svg │ │ │ │ ├── view-media-chart.svg │ │ │ │ ├── view-media-config.svg │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ ├── view-media-favorite.svg │ │ │ │ ├── view-media-genre.svg │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ ├── view-media-playcount.svg │ │ │ │ ├── view-media-playlist.svg │ │ │ │ ├── view-media-publisher.svg │ │ │ │ ├── view-media-recent.svg │ │ │ │ ├── view-media-similarartists.svg │ │ │ │ ├── view-media-title.svg │ │ │ │ ├── view-media-track.svg │ │ │ │ ├── view-media-visualization.svg │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ ├── view-pages-continuous.svg │ │ │ │ ├── view-pages-facing-first-centered.svg │ │ │ │ ├── view-pages-facing.svg │ │ │ │ ├── view-pages-overview.svg │ │ │ │ ├── view-pages-single.svg │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ ├── view-pim-journal.svg │ │ │ │ ├── view-pim-mail.svg │ │ │ │ ├── view-pim-news.svg │ │ │ │ ├── view-pim-notes.svg │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ ├── view-presentation.svg │ │ │ │ ├── view-preview.svg │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ ├── view-process-all.svg │ │ │ │ ├── view-process-own.svg │ │ │ │ ├── view-process-system.svg │ │ │ │ ├── view-process-tree.svg │ │ │ │ ├── view-process-users.svg │ │ │ │ ├── view-refresh.svg │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ ├── view-restore.svg │ │ │ │ ├── view-right-close.svg │ │ │ │ ├── view-right-new.svg │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ ├── view-sidetree.svg │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ ├── view-sort-descending.svg │ │ │ │ ├── view-sort.svg │ │ │ │ ├── view-split-effect.svg │ │ │ │ ├── view-split-left-right.svg │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ ├── view-statistics.svg │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ ├── view-task-add.svg │ │ │ │ ├── view-task-child-add.svg │ │ │ │ ├── view-task-child.svg │ │ │ │ ├── view-task.svg │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ ├── view-time-schedule.svg │ │ │ │ ├── view-unsplit-effect.svg │ │ │ │ ├── view-visible.svg │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ ├── view_fit_to_page.svg │ │ │ │ ├── viewbib.svg │ │ │ │ ├── viewdvi.svg │ │ │ │ ├── viewhtml.svg │ │ │ │ ├── viewimage.svg │ │ │ │ ├── viewlog.svg │ │ │ │ ├── viewpdf.svg │ │ │ │ ├── viewps.svg │ │ │ │ ├── virtual-desktops.svg │ │ │ │ ├── visibility.svg │ │ │ │ ├── wallet-closed.svg │ │ │ │ ├── wallet-open.svg │ │ │ │ ├── warnnext.svg │ │ │ │ ├── warnprev.svg │ │ │ │ ├── whitebalance.svg │ │ │ │ ├── widget-alternatives.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-duplicate.svg │ │ │ │ ├── window-keep-above.svg │ │ │ │ ├── window-keep-below.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-new.svg │ │ │ │ ├── window-pin.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── window-shade.svg │ │ │ │ ├── window-unpin.svg │ │ │ │ ├── window-unshade.svg │ │ │ │ ├── window.svg │ │ │ │ ├── wizard_math.svg │ │ │ │ ├── wizard_pdftools.svg │ │ │ │ ├── wizard_pstools.svg │ │ │ │ ├── wizard_tabular.svg │ │ │ │ ├── x-clementine-album.svg │ │ │ │ ├── x-clementine-albums.svg │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ ├── x-shape-connection.svg │ │ │ │ ├── x-shape-formula.svg │ │ │ │ ├── x-shape-image.svg │ │ │ │ ├── x-shape-text.svg │ │ │ │ ├── xfsm-hibernate.svg │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ ├── xml-element-new.svg │ │ │ │ ├── xml-node-delete.svg │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ ├── xml-text-new.svg │ │ │ │ ├── y-zoom-in.svg │ │ │ │ ├── zone-in.svg │ │ │ │ ├── zone-out.svg │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ ├── zoom-draw.svg │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ ├── zoom-fit-page.svg │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ ├── zoom-in-large.svg │ │ │ │ ├── zoom-in-x.svg │ │ │ │ ├── zoom-in.svg │ │ │ │ ├── zoom-next.svg │ │ │ │ ├── zoom-original.svg │ │ │ │ ├── zoom-out-large.svg │ │ │ │ ├── zoom-out-x.svg │ │ │ │ ├── zoom-out-y.svg │ │ │ │ ├── zoom-out.svg │ │ │ │ ├── zoom-pixels.svg │ │ │ │ ├── zoom-previous.svg │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ ├── zoom-select-x.svg │ │ │ │ ├── zoom-select-y.svg │ │ │ │ ├── zoom-select.svg │ │ │ │ └── zoom.svg │ │ │ ├── 32 │ │ │ │ ├── acrobat.svg │ │ │ │ ├── address-book-new.svg │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ ├── align-vertical-center.svg │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ ├── align-vertical-top.svg │ │ │ │ ├── application-exit.svg │ │ │ │ ├── application-menu.svg │ │ │ │ ├── appointment-new.svg │ │ │ │ ├── archive-extract.svg │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ ├── archive-insert.svg │ │ │ │ ├── archive-remove.svg │ │ │ │ ├── arrow-down-double.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left-double.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right-double.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up-double.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrow.svg │ │ │ │ ├── autocorrection.svg │ │ │ │ ├── blurimage.svg │ │ │ │ ├── bookmark-new.svg │ │ │ │ ├── bookmark-remove.svg │ │ │ │ ├── bookmarks.svg │ │ │ │ ├── bordertool.svg │ │ │ │ ├── call-start.svg │ │ │ │ ├── call-stop.svg │ │ │ │ ├── collapse-all.svg │ │ │ │ ├── collapse.svg │ │ │ │ ├── color-management.svg │ │ │ │ ├── color-picker-black.svg │ │ │ │ ├── color-picker-grey.svg │ │ │ │ ├── color-picker-white.svg │ │ │ │ ├── color-picker.svg │ │ │ │ ├── colormanagement.svg │ │ │ │ ├── colors-chromablue.svg │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ ├── colors-chromared.svg │ │ │ │ ├── colors-luma.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ ├── configure.svg │ │ │ │ ├── cursor-arrow.svg │ │ │ │ ├── cursor-cross.svg │ │ │ │ ├── dialog-cancel.svg │ │ │ │ ├── dialog-messages.svg │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ ├── dialog-ok.svg │ │ │ │ ├── document-close.svg │ │ │ │ ├── document-decrypt.svg │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ ├── document-edit-sign.svg │ │ │ │ ├── document-edit.svg │ │ │ │ ├── document-encrypted.svg │ │ │ │ ├── document-export.svg │ │ │ │ ├── document-import.svg │ │ │ │ ├── document-new-from-template.svg │ │ │ │ ├── document-new.svg │ │ │ │ ├── document-open-folder.svg │ │ │ │ ├── document-open-remote.svg │ │ │ │ ├── document-open.svg │ │ │ │ ├── document-preview-archive.svg │ │ │ │ ├── document-preview.svg │ │ │ │ ├── document-print-direct.svg │ │ │ │ ├── document-print.svg │ │ │ │ ├── document-properties.svg │ │ │ │ ├── document-replace.svg │ │ │ │ ├── document-revert.svg │ │ │ │ ├── document-save-all.svg │ │ │ │ ├── document-save-as.svg │ │ │ │ ├── document-save.svg │ │ │ │ ├── document-share.svg │ │ │ │ ├── donate.svg │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ ├── edit-delete.svg │ │ │ │ ├── edit-redo.svg │ │ │ │ ├── edit-reset.svg │ │ │ │ ├── edit-select.svg │ │ │ │ ├── edit-undo.svg │ │ │ │ ├── editor.svg │ │ │ │ ├── expand-all.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── file-zoom-in.svg │ │ │ │ ├── file-zoom-out.svg │ │ │ │ ├── financial-account.svg │ │ │ │ ├── financial-budget.svg │ │ │ │ ├── financial-list.svg │ │ │ │ ├── financial-payees.svg │ │ │ │ ├── flash.svg │ │ │ │ ├── flashlight-off.svg │ │ │ │ ├── flashlight-on.svg │ │ │ │ ├── folder-new.svg │ │ │ │ ├── folder-sync.svg │ │ │ │ ├── format-stroke-color.svg │ │ │ │ ├── games-config-custom.svg │ │ │ │ ├── games-config-options.svg │ │ │ │ ├── gnumeric-format-halign-distributed.svg │ │ │ │ ├── gnumeric-format-valign-bottom.svg │ │ │ │ ├── gnumeric-format-valign-center.svg │ │ │ │ ├── gnumeric-format-valign-distributed.svg │ │ │ │ ├── gnumeric-format-valign-justify.svg │ │ │ │ ├── gnumeric-format-valign-top.svg │ │ │ │ ├── go-bottom.svg │ │ │ │ ├── go-down-skip.svg │ │ │ │ ├── go-down.svg │ │ │ │ ├── go-first.svg │ │ │ │ ├── go-jump.svg │ │ │ │ ├── go-last.svg │ │ │ │ ├── go-next-skip.svg │ │ │ │ ├── go-next.svg │ │ │ │ ├── go-parent-folder.svg │ │ │ │ ├── go-previous-skip.svg │ │ │ │ ├── go-previous.svg │ │ │ │ ├── go-top.svg │ │ │ │ ├── go-up-skip.svg │ │ │ │ ├── go-up.svg │ │ │ │ ├── gtk-ok.svg │ │ │ │ ├── gtk-preferences.svg │ │ │ │ ├── help-about.svg │ │ │ │ ├── help-donate.svg │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ ├── help-whatsthis.svg │ │ │ │ ├── home.svg │ │ │ │ ├── institution.svg │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ ├── mail-attachment.svg │ │ │ │ ├── mail-deleted.svg │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ ├── mail-encrypted.svg │ │ │ │ ├── mail-flag.svg │ │ │ │ ├── mail-forward.svg │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ ├── mail-forwarded.svg │ │ │ │ ├── mail-invitation.svg │ │ │ │ ├── mail-mark-important.svg │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ ├── mail-mark-read.svg │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ ├── mail-message-new.svg │ │ │ │ ├── mail-message.svg │ │ │ │ ├── mail-queue.svg │ │ │ │ ├── mail-queued.svg │ │ │ │ ├── mail-read.svg │ │ │ │ ├── mail-replied.svg │ │ │ │ ├── mail-reply-all.svg │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ ├── mail-reply-list.svg │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ ├── mail-send.svg │ │ │ │ ├── mail-sent.svg │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ ├── mail-signed-full.svg │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ ├── mail-signed-part.svg │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ ├── mail-signed.svg │ │ │ │ ├── mail-tagged.svg │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ ├── mail-unread-new.svg │ │ │ │ ├── mail-unread.svg │ │ │ │ ├── media-eject.svg │ │ │ │ ├── media-playback-pause.svg │ │ │ │ ├── media-playback-start.svg │ │ │ │ ├── media-playback-stop.svg │ │ │ │ ├── media-playlist-normal.svg │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ ├── media-record.svg │ │ │ │ ├── media-repeat-all.svg │ │ │ │ ├── media-repeat-none.svg │ │ │ │ ├── media-repeat-single.svg │ │ │ │ ├── media-seek-backward.svg │ │ │ │ ├── media-seek-forward.svg │ │ │ │ ├── media-skip-backward.svg │ │ │ │ ├── media-skip-forward.svg │ │ │ │ ├── multiple.svg │ │ │ │ ├── object-order-back.svg │ │ │ │ ├── object-order-front.svg │ │ │ │ ├── object-order-lower.svg │ │ │ │ ├── object-order-raise.svg │ │ │ │ ├── office-chart-pie.svg │ │ │ │ ├── output_win.svg │ │ │ │ ├── overflow-menu.svg │ │ │ │ ├── page-zoom.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── preferences-system-symbolic.svg │ │ │ │ ├── preview.svg │ │ │ │ ├── qa.svg │ │ │ │ ├── select.svg │ │ │ │ ├── settings-configure.svg │ │ │ │ ├── step_object_Controller.svg │ │ │ │ ├── system-hibernate.svg │ │ │ │ ├── system-lock-screen.svg │ │ │ │ ├── system-log-out-rtl.svg │ │ │ │ ├── system-log-out.svg │ │ │ │ ├── system-reboot.svg │ │ │ │ ├── system-save-session.svg │ │ │ │ ├── system-shutdown.svg │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ ├── system-suspend.svg │ │ │ │ ├── system-switch-user.svg │ │ │ │ ├── system-users.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── taxes-finances.svg │ │ │ │ ├── tool-pointer.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── trim-margins.svg │ │ │ │ ├── trim-to-selection.svg │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ ├── view-filter.svg │ │ │ │ ├── view-group.svg │ │ │ │ ├── view-left-close.svg │ │ │ │ ├── view-list-details.svg │ │ │ │ ├── view-list-icons.svg │ │ │ │ ├── view-list-text.svg │ │ │ │ ├── view-list-tree.svg │ │ │ │ ├── view-preview.svg │ │ │ │ ├── view-refresh.svg │ │ │ │ ├── view-right-close.svg │ │ │ │ ├── view-right-new.svg │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ ├── view-sort-descending.svg │ │ │ │ ├── view-sort.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── xfsm-hibernate.svg │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ ├── zoom-draw.svg │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ ├── zoom-fit-page.svg │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ ├── zoom-in-large.svg │ │ │ │ ├── zoom-in.svg │ │ │ │ ├── zoom-next.svg │ │ │ │ ├── zoom-original.svg │ │ │ │ ├── zoom-out-large.svg │ │ │ │ ├── zoom-out.svg │ │ │ │ ├── zoom-previous.svg │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ ├── zoom-select-x.svg │ │ │ │ ├── zoom-select-y.svg │ │ │ │ ├── zoom-select.svg │ │ │ │ └── zoom.svg │ │ │ ├── 48 │ │ │ │ ├── draw-freehand.svg │ │ │ │ ├── financial-account.svg │ │ │ │ ├── financial-categories.svg │ │ │ │ ├── financial-forecast.svg │ │ │ │ ├── financial-investments.svg │ │ │ │ ├── financial-list.svg │ │ │ │ ├── financial-report.svg │ │ │ │ ├── home.svg │ │ │ │ ├── institution.svg │ │ │ │ ├── view-history.svg │ │ │ │ └── view-presentation.svg │ │ │ ├── 64 │ │ │ │ ├── go-home.svg │ │ │ │ ├── media-default-album.svg │ │ │ │ ├── media-default-track.svg │ │ │ │ └── view-institution.svg │ │ │ └── symbolic │ │ │ │ ├── action-unavailable-symbolic.svg │ │ │ │ ├── address-book-new-symbolic.svg │ │ │ │ ├── application-exit-symbolic.svg │ │ │ │ ├── appointment-new-symbolic.svg │ │ │ │ ├── bookmark-add-symbolic.svg │ │ │ │ ├── bookmark-new-symbolic.svg │ │ │ │ ├── builder-view-left-pane-symbolic.svg │ │ │ │ ├── call-end-symbolic.svg │ │ │ │ ├── call-start-symbolic.svg │ │ │ │ ├── call-stop-symbolic.svg │ │ │ │ ├── call-voicemail-symbolic.svg │ │ │ │ ├── change-date-symbolic.svg │ │ │ │ ├── collapse-all-symbolic.svg │ │ │ │ ├── color-profile.svg │ │ │ │ ├── color-select-symbolic.svg │ │ │ │ ├── comment-symbolic.svg │ │ │ │ ├── contact-new-symbolic.svg │ │ │ │ ├── content-loading-symbolic.svg │ │ │ │ ├── document-edit-symbolic.svg │ │ │ │ ├── document-new-symbolic.svg │ │ │ │ ├── document-open-recent-symbolic.svg │ │ │ │ ├── document-open-symbolic.svg │ │ │ │ ├── document-page-setup-symbolic.svg │ │ │ │ ├── document-print-preview-symbolic.svg │ │ │ │ ├── document-print-symbolic.svg │ │ │ │ ├── document-properties-symbolic.svg │ │ │ │ ├── document-revert-symbolic-rtl.svg │ │ │ │ ├── document-revert-symbolic.svg │ │ │ │ ├── document-save-as-symbolic.svg │ │ │ │ ├── document-save-symbolic.svg │ │ │ │ ├── document-send-symbolic.svg │ │ │ │ ├── drag-handle-symbolic.svg │ │ │ │ ├── edit-clear-all-symbolic.svg │ │ │ │ ├── edit-clear-rtl-symbolic.svg │ │ │ │ ├── edit-clear-symbolic-rtl.svg │ │ │ │ ├── edit-clear-symbolic.svg │ │ │ │ ├── edit-copy-symbolic.svg │ │ │ │ ├── edit-cut-symbolic.svg │ │ │ │ ├── edit-delete-symbolic.svg │ │ │ │ ├── edit-find-replace-symbolic.svg │ │ │ │ ├── edit-find-symbolic.svg │ │ │ │ ├── edit-move-symbolic.svg │ │ │ │ ├── edit-paste-symbolic.svg │ │ │ │ ├── edit-redo-rtl-symbolic.svg │ │ │ │ ├── edit-redo-symbolic-rtl.svg │ │ │ │ ├── edit-redo-symbolic.svg │ │ │ │ ├── edit-select-all-symbolic.svg │ │ │ │ ├── edit-select-symbolic.svg │ │ │ │ ├── edit-symbolic.svg │ │ │ │ ├── edit-undo-rtl-symbolic.svg │ │ │ │ ├── edit-undo-symbolic-rtl.svg │ │ │ │ ├── edit-undo-symbolic.svg │ │ │ │ ├── expand-all-symbolic.svg │ │ │ │ ├── export-symbolic.svg │ │ │ │ ├── extension-symbolic.svg │ │ │ │ ├── file-catalog-symbolic.svg │ │ │ │ ├── file-library-symbolic.svg │ │ │ │ ├── file-search-symbolic.svg │ │ │ │ ├── filter-symbolic.svg │ │ │ │ ├── find-location-symbolic.svg │ │ │ │ ├── folder-new-symbolic.svg │ │ │ │ ├── font-select-symbolic.svg │ │ │ │ ├── format-indent-less-rtl-symbolic.svg │ │ │ │ ├── format-indent-less-symbolic-rtl.svg │ │ │ │ ├── format-indent-less-symbolic.svg │ │ │ │ ├── format-indent-more-rtl-symbolic.svg │ │ │ │ ├── format-indent-more-symbolic-rtl.svg │ │ │ │ ├── format-indent-more-symbolic.svg │ │ │ │ ├── format-justify-center-symbolic.svg │ │ │ │ ├── format-justify-fill-symbolic.svg │ │ │ │ ├── format-justify-left-symbolic.svg │ │ │ │ ├── format-justify-right-symbolic.svg │ │ │ │ ├── format-text-bold-symbolic.svg │ │ │ │ ├── format-text-direction-ltr-symbolic.svg │ │ │ │ ├── format-text-direction-rtl-symbolic.svg │ │ │ │ ├── format-text-direction-symbolic-rtl.svg │ │ │ │ ├── format-text-direction-symbolic.svg │ │ │ │ ├── format-text-italic-symbolic.svg │ │ │ │ ├── format-text-strikethrough-symbolic.svg │ │ │ │ ├── format-text-underline-symbolic.svg │ │ │ │ ├── go-bottom-symbolic.svg │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ ├── go-first-rtl-symbolic.svg │ │ │ │ ├── go-first-symbolic-rtl.svg │ │ │ │ ├── go-first-symbolic.svg │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ ├── go-jump-rtl-symbolic.svg │ │ │ │ ├── go-jump-symbolic.svg │ │ │ │ ├── go-last-rtl-symbolic.svg │ │ │ │ ├── go-last-symbolic-rtl.svg │ │ │ │ ├── go-last-symbolic.svg │ │ │ │ ├── go-next-rtl-symbolic.svg │ │ │ │ ├── go-next-symbolic-rtl.svg │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ ├── go-previous-rtl-symbolic.svg │ │ │ │ ├── go-previous-symbolic-rtl.svg │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ ├── go-top-symbolic.svg │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ ├── help-about-symbolic.svg │ │ │ │ ├── histogram-symbolic.svg │ │ │ │ ├── image-crop-symbolic.svg │ │ │ │ ├── image-flip-horizontal-symbolic.svg │ │ │ │ ├── image-flip-vertical-symbolic.svg │ │ │ │ ├── image-invert-symbolic.svg │ │ │ │ ├── image-navigator-symbolic.svg │ │ │ │ ├── image-red-eye-symbolic.svg │ │ │ │ ├── image-resize-symbolic.svg │ │ │ │ ├── image-rotate-left-symbolic.svg │ │ │ │ ├── image-rotate-right-symbolic.svg │ │ │ │ ├── image-rotate-symbolic.svg │ │ │ │ ├── insert-image-symbolic.svg │ │ │ │ ├── insert-link-symbolic.svg │ │ │ │ ├── insert-text-symbolic.svg │ │ │ │ ├── list-add-symbolic.svg │ │ │ │ ├── list-remove-all-symbolic.svg │ │ │ │ ├── list-remove-symbolic.svg │ │ │ │ ├── mail-inbox-symbolic.svg │ │ │ │ ├── mail-mark-important-symbolic.svg │ │ │ │ ├── mail-send-receive-symbolic.svg │ │ │ │ ├── mail-send-symbolic.svg │ │ │ │ ├── map-symbolic.svg │ │ │ │ ├── mark-location-symbolic.svg │ │ │ │ ├── media-eject-symbolic.svg │ │ │ │ ├── media-playback-pause-symbolic.svg │ │ │ │ ├── media-playback-start-rtl-symbolic.svg │ │ │ │ ├── media-playback-start-symbolic-rtl.svg │ │ │ │ ├── media-playback-start-symbolic.svg │ │ │ │ ├── media-playback-stop-symbolic.svg │ │ │ │ ├── media-record-symbolic.svg │ │ │ │ ├── media-seek-backward-rtl-symbolic.svg │ │ │ │ ├── media-seek-backward-symbolic-rtl.svg │ │ │ │ ├── media-seek-backward-symbolic.svg │ │ │ │ ├── media-seek-forward-rtl-symbolic.svg │ │ │ │ ├── media-seek-forward-symbolic-rtl.svg │ │ │ │ ├── media-seek-forward-symbolic.svg │ │ │ │ ├── media-skip-backward-rtl-symbolic.svg │ │ │ │ ├── media-skip-backward-symbolic-rtl.svg │ │ │ │ ├── media-skip-backward-symbolic.svg │ │ │ │ ├── media-skip-forward-rtl-symbolic.svg │ │ │ │ ├── media-skip-forward-symbolic-rtl.svg │ │ │ │ ├── media-skip-forward-symbolic.svg │ │ │ │ ├── media-view-subtitles-symbolic.svg │ │ │ │ ├── object-flip-horizontal-symbolic.svg │ │ │ │ ├── object-flip-vertical-symbolic.svg │ │ │ │ ├── object-rotate-left-symbolic.svg │ │ │ │ ├── object-rotate-right-symbolic.svg │ │ │ │ ├── object-select-symbolic.svg │ │ │ │ ├── open-menu-symbolic.svg │ │ │ │ ├── palette-symbolic.svg │ │ │ │ ├── pan-down-symbolic.svg │ │ │ │ ├── pan-end-symbolic-rtl.svg │ │ │ │ ├── pan-end-symbolic.svg │ │ │ │ ├── pan-start-symbolic-rtl.svg │ │ │ │ ├── pan-start-symbolic.svg │ │ │ │ ├── pan-up-symbolic.svg │ │ │ │ ├── process-stop-symbolic.svg │ │ │ │ ├── selection-end-symbolic-rtl.svg │ │ │ │ ├── selection-end-symbolic.svg │ │ │ │ ├── selection-start-symbolic-rtl.svg │ │ │ │ ├── selection-start-symbolic.svg │ │ │ │ ├── send-to-symbolic.svg │ │ │ │ ├── special-effects-symbolic.svg │ │ │ │ ├── star-new-symbolic.svg │ │ │ │ ├── system-run-symbolic.svg │ │ │ │ ├── system-search-symbolic.svg │ │ │ │ ├── system-shutdown-symbolic.svg │ │ │ │ ├── tab-new-symbolic.svg │ │ │ │ ├── tag-symbolic.svg │ │ │ │ ├── tools-check-spelling-symbolic.svg │ │ │ │ ├── tools-symbolic.svg │ │ │ │ ├── view-app-grid-symbolic.svg │ │ │ │ ├── view-continuous-symbolic.svg │ │ │ │ ├── view-dual-symbolic.svg │ │ │ │ ├── view-fullscreen-symbolic.svg │ │ │ │ ├── view-grid-symbolic.svg │ │ │ │ ├── view-list-symbolic.svg │ │ │ │ ├── view-more-horizontal-symbolic.svg │ │ │ │ ├── view-more-symbolic.svg │ │ │ │ ├── view-presentation-symbolic.svg │ │ │ │ ├── view-private-symbolic.svg │ │ │ │ ├── view-refresh-symbolic.svg │ │ │ │ ├── view-restore-symbolic.svg │ │ │ │ ├── view-sort-ascending-symbolic.svg │ │ │ │ ├── view-sort-descending-symbolic.svg │ │ │ │ ├── view-tasks-all-symbolic.svg │ │ │ │ ├── view-tasks-today-symbolic.svg │ │ │ │ ├── view-tasks-unscheduled-symbolic.svg │ │ │ │ ├── view-tasks-week-symbolic.svg │ │ │ │ ├── view-zoom-fit-height-symbolic.svg │ │ │ │ ├── view-zoom-fit-symbolic.svg │ │ │ │ ├── view-zoom-fit-width-symbolic.svg │ │ │ │ ├── view-zoom-in-symbolic.svg │ │ │ │ ├── view-zoom-original-symbolic.svg │ │ │ │ ├── view-zoom-out-symbolic.svg │ │ │ │ ├── window-close-symbolic.svg │ │ │ │ ├── window-keep-above-symbolic.svg │ │ │ │ ├── window-keep-below-symbolic.svg │ │ │ │ ├── window-maximize-symbolic.svg │ │ │ │ ├── window-minimize-symbolic.svg │ │ │ │ ├── window-pin-symbolic.svg │ │ │ │ ├── window-restore-symbolic.svg │ │ │ │ ├── window-shade-symbolic.svg │ │ │ │ ├── window-unpin-symbolic.svg │ │ │ │ ├── window-unshade-symbolic.svg │ │ │ │ ├── zoom-fit-best-symbolic.svg │ │ │ │ ├── zoom-in-symbolic.svg │ │ │ │ ├── zoom-original-symbolic.svg │ │ │ │ └── zoom-out-symbolic.svg │ │ ├── animations │ │ │ └── 22 │ │ │ │ └── process-working.svg │ │ ├── applets │ │ │ ├── 22 │ │ │ │ ├── car.svg │ │ │ │ ├── hands-free.svg │ │ │ │ ├── handset.svg │ │ │ │ ├── headphone.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── hifi.svg │ │ │ │ ├── internal.svg │ │ │ │ ├── microphone.svg │ │ │ │ ├── portable.svg │ │ │ │ ├── speaker.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── user-identity.svg │ │ │ │ └── webcam.svg │ │ │ ├── 48 │ │ │ │ ├── weather-clear-night.svg │ │ │ │ ├── weather-clear-wind-night.svg │ │ │ │ ├── weather-clear-wind.svg │ │ │ │ ├── weather-clear.svg │ │ │ │ ├── weather-clouds-night.svg │ │ │ │ ├── weather-clouds-wind-night.svg │ │ │ │ ├── weather-clouds-wind.svg │ │ │ │ ├── weather-clouds.svg │ │ │ │ ├── weather-few-clouds-night.svg │ │ │ │ ├── weather-few-clouds-wind-night.svg │ │ │ │ ├── weather-few-clouds-wind.svg │ │ │ │ ├── weather-few-clouds.svg │ │ │ │ ├── weather-fog.svg │ │ │ │ ├── weather-freezing-rain.svg │ │ │ │ ├── weather-hail.svg │ │ │ │ ├── weather-many-clouds-wind.svg │ │ │ │ ├── weather-many-clouds.svg │ │ │ │ ├── weather-mist.svg │ │ │ │ ├── weather-none-available.svg │ │ │ │ ├── weather-overcast-wind.svg │ │ │ │ ├── weather-overcast.svg │ │ │ │ ├── weather-showers-day.svg │ │ │ │ ├── weather-showers-night.svg │ │ │ │ ├── weather-showers-scattered-day.svg │ │ │ │ ├── weather-showers-scattered-night.svg │ │ │ │ ├── weather-showers-scattered.svg │ │ │ │ ├── weather-showers.svg │ │ │ │ ├── weather-snow-rain.svg │ │ │ │ ├── weather-snow-scattered-day.svg │ │ │ │ ├── weather-snow-scattered-night.svg │ │ │ │ ├── weather-snow-scattered.svg │ │ │ │ ├── weather-snow.svg │ │ │ │ ├── weather-storm-day.svg │ │ │ │ ├── weather-storm-night.svg │ │ │ │ └── weather-storm.svg │ │ │ ├── 64 │ │ │ │ ├── osd-duplicate.svg │ │ │ │ ├── osd-rotate-ccw.svg │ │ │ │ ├── osd-rotate-cw.svg │ │ │ │ ├── osd-rotate-flip.svg │ │ │ │ ├── osd-rotate-normal.svg │ │ │ │ ├── osd-sbs-left.svg │ │ │ │ ├── osd-sbs-sright.svg │ │ │ │ ├── osd-shutd-laptop.svg │ │ │ │ ├── osd-shutd-screen.svg │ │ │ │ ├── preferences-system-tabbox.svg │ │ │ │ ├── preferences-system-windows-effect-blur.svg │ │ │ │ ├── preferences-system-windows-effect-contrast.svg │ │ │ │ ├── preferences-system-windows-effect-coverswitch.svg │ │ │ │ ├── preferences-system-windows-effect-cubeslide.svg │ │ │ │ ├── preferences-system-windows-effect-desktopgrid.svg │ │ │ │ ├── preferences-system-windows-effect-dialog-parent.svg │ │ │ │ ├── preferences-system-windows-effect-diminactive.svg │ │ │ │ ├── preferences-system-windows-effect-dimscreen.svg │ │ │ │ ├── preferences-system-windows-effect-fade.svg │ │ │ │ ├── preferences-system-windows-effect-fadedesktop.svg │ │ │ │ ├── preferences-system-windows-effect-fallapart.svg │ │ │ │ ├── preferences-system-windows-effect-flipswitch.svg │ │ │ │ ├── preferences-system-windows-effect-glide.svg │ │ │ │ ├── preferences-system-windows-effect-highlightwindow.svg │ │ │ │ ├── preferences-system-windows-effect-invert.svg │ │ │ │ ├── preferences-system-windows-effect-kscreen.svg │ │ │ │ ├── preferences-system-windows-effect-login.svg │ │ │ │ ├── preferences-system-windows-effect-logout.svg │ │ │ │ ├── preferences-system-windows-effect-magiclamp.svg │ │ │ │ ├── preferences-system-windows-effect-magnifier.svg │ │ │ │ ├── preferences-system-windows-effect-maximize.svg │ │ │ │ ├── preferences-system-windows-effect-minimize.svg │ │ │ │ ├── preferences-system-windows-effect-mouseclick.svg │ │ │ │ ├── preferences-system-windows-effect-mousemark.svg │ │ │ │ ├── preferences-system-windows-effect-presentwindows.svg │ │ │ │ ├── preferences-system-windows-effect-resize.svg │ │ │ │ ├── preferences-system-windows-effect-scale-in.svg │ │ │ │ ├── preferences-system-windows-effect-screenedge.svg │ │ │ │ ├── preferences-system-windows-effect-screenshot.svg │ │ │ │ ├── preferences-system-windows-effect-showfps.svg │ │ │ │ ├── preferences-system-windows-effect-showpaint.svg │ │ │ │ ├── preferences-system-windows-effect-slide.svg │ │ │ │ ├── preferences-system-windows-effect-slideback.svg │ │ │ │ ├── preferences-system-windows-effect-slidingpopups.svg │ │ │ │ ├── preferences-system-windows-effect-startupfeedback.svg │ │ │ │ ├── preferences-system-windows-effect-thumbnailaside.svg │ │ │ │ ├── preferences-system-windows-effect-trackmouse.svg │ │ │ │ ├── preferences-system-windows-effect-translucency.svg │ │ │ │ ├── preferences-system-windows-effect-windowaperture.svg │ │ │ │ ├── preferences-system-windows-effect-wobblywindows.svg │ │ │ │ └── preferences-system-windows-effect-zoom.svg │ │ │ ├── 128 │ │ │ │ ├── user-ada-lovelace.svg │ │ │ │ ├── user-alice-in-wonderland.svg │ │ │ │ ├── user-grace-hopper.svg │ │ │ │ ├── user-leonardo-da-vinci.svg │ │ │ │ ├── user-mahatma-gandhi.svg │ │ │ │ ├── user-man.svg │ │ │ │ ├── user-mowgli.svg │ │ │ │ └── user-none.svg │ │ │ └── 256 │ │ │ │ ├── applets-template.svg │ │ │ │ ├── empty.svg │ │ │ │ ├── org.kde.ktpcontactlist.svg │ │ │ │ ├── org.kde.muonnotifier.svg │ │ │ │ ├── org.kde.plasma.activitybar.svg │ │ │ │ ├── org.kde.plasma.analogclock.svg │ │ │ │ ├── org.kde.plasma.battery.svg │ │ │ │ ├── org.kde.plasma.binaryclock.svg │ │ │ │ ├── org.kde.plasma.calculator.svg │ │ │ │ ├── org.kde.plasma.calendar.svg │ │ │ │ ├── org.kde.plasma.clipboard.svg │ │ │ │ ├── org.kde.plasma.colorpicker.svg │ │ │ │ ├── org.kde.plasma.comic.svg │ │ │ │ ├── org.kde.plasma.date.svg │ │ │ │ ├── org.kde.plasma.devicenotifier.svg │ │ │ │ ├── org.kde.plasma.digitalclock.svg │ │ │ │ ├── org.kde.plasma.diskquota.svg │ │ │ │ ├── org.kde.plasma.fifteenpuzzle.svg │ │ │ │ ├── org.kde.plasma.folder.svg │ │ │ │ ├── org.kde.plasma.frame.svg │ │ │ │ ├── org.kde.plasma.fuzzyclock.svg │ │ │ │ ├── org.kde.plasma.icontasks.svg │ │ │ │ ├── org.kde.plasma.kicker.svg │ │ │ │ ├── org.kde.plasma.kickerdash.svg │ │ │ │ ├── org.kde.plasma.kickoff.svg │ │ │ │ ├── org.kde.plasma.kickofflegacy.svg │ │ │ │ ├── org.kde.plasma.mediacontroller.svg │ │ │ │ ├── org.kde.plasma.networkmanagement.svg │ │ │ │ ├── org.kde.plasma.notes.svg │ │ │ │ ├── org.kde.plasma.pager.svg │ │ │ │ ├── org.kde.plasma.quicklaunch.svg │ │ │ │ ├── org.kde.plasma.showActivityManager.svg │ │ │ │ ├── org.kde.plasma.systemloadviewer.svg │ │ │ │ ├── org.kde.plasma.systemmonitor.cpu.svg │ │ │ │ ├── org.kde.plasma.systemmonitor.diskactivity.svg │ │ │ │ ├── org.kde.plasma.systemmonitor.diskusage.svg │ │ │ │ ├── org.kde.plasma.systemmonitor.memory.svg │ │ │ │ ├── org.kde.plasma.systemmonitor.net.svg │ │ │ │ ├── org.kde.plasma.systemtray.svg │ │ │ │ ├── org.kde.plasma.taskmanager.svg │ │ │ │ ├── org.kde.plasma.timer.svg │ │ │ │ ├── org.kde.plasma.vault.svg │ │ │ │ ├── org.kde.plasma.volume.svg │ │ │ │ └── org.kde.plasma.windowlist.svg │ │ ├── apps │ │ │ ├── 22 │ │ │ │ ├── accessories-text-editor.svg │ │ │ │ ├── akregator.svg │ │ │ │ ├── anydesk.svg │ │ │ │ ├── elisa.svg │ │ │ │ ├── help-browser.svg │ │ │ │ ├── homerun.svg │ │ │ │ ├── hotspot.svg │ │ │ │ ├── kde.svg │ │ │ │ ├── kdeconnect.svg │ │ │ │ ├── korg-todo.svg │ │ │ │ ├── ktimetracker.svg │ │ │ │ ├── kwrite.svg │ │ │ │ ├── plasma-browser-integration.svg │ │ │ │ ├── plasma.svg │ │ │ │ ├── plasmavault.svg │ │ │ │ ├── preferences-other.svg │ │ │ │ ├── preferences-plugin.svg │ │ │ │ ├── system-file-manager.svg │ │ │ │ ├── system-help.svg │ │ │ │ ├── umbrello.svg │ │ │ │ ├── utilities-terminal.svg │ │ │ │ └── virt-manager.svg │ │ │ ├── 32 │ │ │ │ ├── accessories-text-editor.svg │ │ │ │ ├── anydesk.svg │ │ │ │ ├── hotspot.svg │ │ │ │ ├── hwinfo.svg │ │ │ │ ├── ktimetracker.svg │ │ │ │ ├── kup.svg │ │ │ │ ├── kwrite.svg │ │ │ │ ├── plasmavault.svg │ │ │ │ ├── preferences-system.svg │ │ │ │ ├── system-file-manager.svg │ │ │ │ ├── system-help.svg │ │ │ │ ├── systemsettings.svg │ │ │ │ ├── umbrello.svg │ │ │ │ ├── utilities-log-viewer.svg │ │ │ │ ├── utilities-terminal.svg │ │ │ │ ├── yast-sw_single.svg │ │ │ │ └── yast.svg │ │ │ ├── 48 │ │ │ │ ├── CMakeSetup.svg │ │ │ │ ├── QOwnNotes.svg │ │ │ │ ├── QtProject-designer.svg │ │ │ │ ├── VBox.svg │ │ │ │ ├── accessories-calculator.svg │ │ │ │ ├── accessories-character-map.svg │ │ │ │ ├── accessories-text-editor.svg │ │ │ │ ├── acroread.svg │ │ │ │ ├── akregator.svg │ │ │ │ ├── alienarena.svg │ │ │ │ ├── alligator.svg │ │ │ │ ├── amarok.svg │ │ │ │ ├── android-file-transfer.svg │ │ │ │ ├── android-studio.svg │ │ │ │ ├── anjuta.svg │ │ │ │ ├── anydesk.svg │ │ │ │ ├── apper.svg │ │ │ │ ├── application-x-clementine.svg │ │ │ │ ├── aptana.svg │ │ │ │ ├── ardour.svg │ │ │ │ ├── ark.svg │ │ │ │ ├── artikulate.svg │ │ │ │ ├── assistant.svg │ │ │ │ ├── atom.svg │ │ │ │ ├── audacity.svg │ │ │ │ ├── author.svg │ │ │ │ ├── babe.svg │ │ │ │ ├── baloo.svg │ │ │ │ ├── bitcoin128.svg │ │ │ │ ├── bittorrent-sync.svg │ │ │ │ ├── bleachbit.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blinken.svg │ │ │ │ ├── blogilo.svg │ │ │ │ ├── bluefish.svg │ │ │ │ ├── bluegriffon.svg │ │ │ │ ├── bomber.svg │ │ │ │ ├── bomi.svg │ │ │ │ ├── bovo.svg │ │ │ │ ├── brackets.svg │ │ │ │ ├── braindump.svg │ │ │ │ ├── breeze-settings.svg │ │ │ │ ├── btsync-gui.svg │ │ │ │ ├── buho.svg │ │ │ │ ├── calamares.svg │ │ │ │ ├── calibre-ebook-edit.svg │ │ │ │ ├── calibre-viewer.svg │ │ │ │ ├── calindori.svg │ │ │ │ ├── calligraauthor.svg │ │ │ │ ├── calligraflow.svg │ │ │ │ ├── calligrakarbon.svg │ │ │ │ ├── calligrakexi.svg │ │ │ │ ├── calligraplan.svg │ │ │ │ ├── calligraplanwork.svg │ │ │ │ ├── calligrasheets.svg │ │ │ │ ├── calligrastage.svg │ │ │ │ ├── calligrawords.svg │ │ │ │ ├── cantata.svg │ │ │ │ ├── cantor.svg │ │ │ │ ├── cervisia.svg │ │ │ │ ├── choqok.svg │ │ │ │ ├── claws-mail.svg │ │ │ │ ├── clementine.svg │ │ │ │ ├── cmake.svg │ │ │ │ ├── codeblocks.svg │ │ │ │ ├── com.github.ztefn.haguichi.svg │ │ │ │ ├── com.visualstudio.code.oss.svg │ │ │ │ ├── com.visualstudio.code.svg │ │ │ │ ├── converseen.svg │ │ │ │ ├── crow-translate.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── darktable.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── diffuse.svg │ │ │ │ ├── digikam.svg │ │ │ │ ├── dragonplayer.svg │ │ │ │ ├── elisa.svg │ │ │ │ ├── emacs.svg │ │ │ │ ├── falkon.svg │ │ │ │ ├── ffmulticonverter.svg │ │ │ │ ├── filelight.svg │ │ │ │ ├── filezilla.svg │ │ │ │ ├── fingerprint-gui.svg │ │ │ │ ├── firewall-config.svg │ │ │ │ ├── flow.svg │ │ │ │ ├── fluid.svg │ │ │ │ ├── fontforge.svg │ │ │ │ ├── freemind.svg │ │ │ │ ├── frostwire.svg │ │ │ │ ├── gcompris-qt.svg │ │ │ │ ├── gimp.svg │ │ │ │ ├── git-cola.svg │ │ │ │ ├── git-gui.svg │ │ │ │ ├── goodvibes.svg │ │ │ │ ├── gparted.svg │ │ │ │ ├── gpick.svg │ │ │ │ ├── gpodder.svg │ │ │ │ ├── granatier.svg │ │ │ │ ├── graphics-viewer-document.svg │ │ │ │ ├── grub-customizer.svg │ │ │ │ ├── gtkhash.svg │ │ │ │ ├── gwenview.svg │ │ │ │ ├── haguichi.svg │ │ │ │ ├── handbrake.svg │ │ │ │ ├── help-browser.svg │ │ │ │ ├── homebank.svg │ │ │ │ ├── homerun.svg │ │ │ │ ├── hotspot.svg │ │ │ │ ├── htop.svg │ │ │ │ ├── hwinfo.svg │ │ │ │ ├── im.vector.svg │ │ │ │ ├── imagewriter.svg │ │ │ │ ├── inkscape-logo.svg │ │ │ │ ├── inkscape.svg │ │ │ │ ├── internet-mail.svg │ │ │ │ ├── internet-telephony.svg │ │ │ │ ├── internet-web-browser.svg │ │ │ │ ├── io.gitlab.Goodvibes.svg │ │ │ │ ├── jdownloader.svg │ │ │ │ ├── joplin.svg │ │ │ │ ├── juk.svg │ │ │ │ ├── juliabackend.svg │ │ │ │ ├── k3b.svg │ │ │ │ ├── kaddressbook.svg │ │ │ │ ├── kaffeine.svg │ │ │ │ ├── kajongg.svg │ │ │ │ ├── kalarm.svg │ │ │ │ ├── kalgebra.svg │ │ │ │ ├── kalgebrabackend.svg │ │ │ │ ├── kalzium.svg │ │ │ │ ├── kamoso.svg │ │ │ │ ├── kanagram.svg │ │ │ │ ├── kapman.svg │ │ │ │ ├── kapptemplate.svg │ │ │ │ ├── karbon.svg │ │ │ │ ├── kate.svg │ │ │ │ ├── katomic.svg │ │ │ │ ├── kblackbox.svg │ │ │ │ ├── kblocks.svg │ │ │ │ ├── kblogger.svg │ │ │ │ ├── kbreakout.svg │ │ │ │ ├── kbruch.svg │ │ │ │ ├── kcachegrind.svg │ │ │ │ ├── kcalc.svg │ │ │ │ ├── kchart.svg │ │ │ │ ├── kcolorchooser.svg │ │ │ │ ├── kde-frameworks.svg │ │ │ │ ├── kde-im-log-viewer.svg │ │ │ │ ├── kde.svg │ │ │ │ ├── kdeapp.svg │ │ │ │ ├── kdenlive.svg │ │ │ │ ├── kdesvn.svg │ │ │ │ ├── kdevelop.svg │ │ │ │ ├── kdiamond.svg │ │ │ │ ├── kdiff3.svg │ │ │ │ ├── kdots.svg │ │ │ │ ├── keepass.svg │ │ │ │ ├── keepass2.svg │ │ │ │ ├── keepassx.svg │ │ │ │ ├── keepassx2.svg │ │ │ │ ├── kexi.svg │ │ │ │ ├── kfind.svg │ │ │ │ ├── kfloppy.svg │ │ │ │ ├── kfontview.svg │ │ │ │ ├── kfourinline.svg │ │ │ │ ├── kgeography.svg │ │ │ │ ├── kget.svg │ │ │ │ ├── khangman.svg │ │ │ │ ├── kig.svg │ │ │ │ ├── kile.svg │ │ │ │ ├── kimagemapeditor.svg │ │ │ │ ├── kipi-dngconverter.svg │ │ │ │ ├── kipi-expoblending.svg │ │ │ │ ├── kipi-panorama.svg │ │ │ │ ├── kirigami-gallery.svg │ │ │ │ ├── kiriki.svg │ │ │ │ ├── kirogi.svg │ │ │ │ ├── kiten.svg │ │ │ │ ├── kjumpingcube.svg │ │ │ │ ├── kleopatra.svg │ │ │ │ ├── klines.svg │ │ │ │ ├── klipper.svg │ │ │ │ ├── kmag.svg │ │ │ │ ├── kmahjongg.svg │ │ │ │ ├── kmail.svg │ │ │ │ ├── kmenuedit.svg │ │ │ │ ├── kmix.svg │ │ │ │ ├── kmousetool.svg │ │ │ │ ├── kmouth.svg │ │ │ │ ├── kmplayer.svg │ │ │ │ ├── kmplot.svg │ │ │ │ ├── kmymoney.svg │ │ │ │ ├── knetattach.svg │ │ │ │ ├── knights.svg │ │ │ │ ├── knotes.svg │ │ │ │ ├── kolf.svg │ │ │ │ ├── kolourpaint.svg │ │ │ │ ├── kompare.svg │ │ │ │ ├── konqueror.svg │ │ │ │ ├── kontact.svg │ │ │ │ ├── konversation.svg │ │ │ │ ├── kopete.svg │ │ │ │ ├── korg-todo.svg │ │ │ │ ├── korgac.svg │ │ │ │ ├── korganizer.svg │ │ │ │ ├── kpat.svg │ │ │ │ ├── kphotoalbum.svg │ │ │ │ ├── kplato.svg │ │ │ │ ├── kpresenter.svg │ │ │ │ ├── krdc.svg │ │ │ │ ├── krename.svg │ │ │ │ ├── krfb.svg │ │ │ │ ├── kronometer.svg │ │ │ │ ├── kruler.svg │ │ │ │ ├── krusader_root.svg │ │ │ │ ├── krusader_user.svg │ │ │ │ ├── kshisen.svg │ │ │ │ ├── ksirk.svg │ │ │ │ ├── ksnapshot.svg │ │ │ │ ├── kspread.svg │ │ │ │ ├── kstars.svg │ │ │ │ ├── ksysguardd.svg │ │ │ │ ├── kteatime.svg │ │ │ │ ├── ktimer.svg │ │ │ │ ├── ktimetracker.svg │ │ │ │ ├── ktip.svg │ │ │ │ ├── ktnef.svg │ │ │ │ ├── ktorrent.svg │ │ │ │ ├── ktouch.svg │ │ │ │ ├── ktrip.svg │ │ │ │ ├── kube-mail.svg │ │ │ │ ├── kuiviewer.svg │ │ │ │ ├── kup.svg │ │ │ │ ├── kuser.svg │ │ │ │ ├── kwalletmanager.svg │ │ │ │ ├── kwalletmanager2.svg │ │ │ │ ├── kwave.svg │ │ │ │ ├── kwikdisk.svg │ │ │ │ ├── kwin.svg │ │ │ │ ├── kword.svg │ │ │ │ ├── kwrite.svg │ │ │ │ ├── kxstitch.svg │ │ │ │ ├── labplot.svg │ │ │ │ ├── labplot2.svg │ │ │ │ ├── lastpass.svg │ │ │ │ ├── latte-dock.svg │ │ │ │ ├── leocad.svg │ │ │ │ ├── libreoffice-base.svg │ │ │ │ ├── libreoffice-calc.svg │ │ │ │ ├── libreoffice-draw.svg │ │ │ │ ├── libreoffice-impress.svg │ │ │ │ ├── libreoffice-main.svg │ │ │ │ ├── libreoffice-math.svg │ │ │ │ ├── libreoffice-startcenter.svg │ │ │ │ ├── libreoffice-writer.svg │ │ │ │ ├── linguist.svg │ │ │ │ ├── logisim.svg │ │ │ │ ├── lokalize.svg │ │ │ │ ├── luabackend.svg │ │ │ │ ├── mail-client.svg │ │ │ │ ├── massif-visualizer.svg │ │ │ │ ├── masterpdfeditor.svg │ │ │ │ ├── mathematica.svg │ │ │ │ ├── matlab.svg │ │ │ │ ├── maximabackend.svg │ │ │ │ ├── mendeleydesktop.svg │ │ │ │ ├── minitube.svg │ │ │ │ ├── minuet.svg │ │ │ │ ├── mixxx.svg │ │ │ │ ├── mpv.svg │ │ │ │ ├── multimedia-volume-control.svg │ │ │ │ ├── muon.svg │ │ │ │ ├── muondiscover.svg │ │ │ │ ├── network-manager.svg │ │ │ │ ├── nota.svg │ │ │ │ ├── ntfs-config.svg │ │ │ │ ├── nylas.svg │ │ │ │ ├── octave.svg │ │ │ │ ├── octavebackend.svg │ │ │ │ ├── octopi.svg │ │ │ │ ├── office-address-book.svg │ │ │ │ ├── office-calendar.svg │ │ │ │ ├── okteta.svg │ │ │ │ ├── okular.svg │ │ │ │ ├── openbravo-erp.svg │ │ │ │ ├── org.fedoraproject.AnacondaInstaller.svg │ │ │ │ ├── org.gajim.Gajim.svg │ │ │ │ ├── org.inkscape.Inkscape.svg │ │ │ │ ├── org.kde.Ikona.svg │ │ │ │ ├── org.kde.kongress.svg │ │ │ │ ├── org.kde.kontrast.svg │ │ │ │ ├── org.kde.neochat.svg │ │ │ │ ├── org.kde.skanlite.svg │ │ │ │ ├── org.telegram.desktop.svg │ │ │ │ ├── parley.svg │ │ │ │ ├── partitionmanager.svg │ │ │ │ ├── phonon-gstreamer.svg │ │ │ │ ├── photolayoutseditor.svg │ │ │ │ ├── picmi.svg │ │ │ │ ├── plan.svg │ │ │ │ ├── planetkde.svg │ │ │ │ ├── plank.svg │ │ │ │ ├── planner.svg │ │ │ │ ├── planwork.svg │ │ │ │ ├── plasma-browser-integration.svg │ │ │ │ ├── plasma-media-center.svg │ │ │ │ ├── plasma-mobile-phone.svg │ │ │ │ ├── plasma-nano.svg │ │ │ │ ├── plasmadiscover.svg │ │ │ │ ├── plasmavault.svg │ │ │ │ ├── preferences-desktop-font-installer.svg │ │ │ │ ├── preferences-system.svg │ │ │ │ ├── puremaps.svg │ │ │ │ ├── pythonbackend.svg │ │ │ │ ├── q4wine.svg │ │ │ │ ├── qalculate.svg │ │ │ │ ├── qbittorrent.svg │ │ │ │ ├── qdbusviewer.svg │ │ │ │ ├── qelectrotech.svg │ │ │ │ ├── qtcreator.svg │ │ │ │ ├── quassel.svg │ │ │ │ ├── quiterss.svg │ │ │ │ ├── qupzilla.svg │ │ │ │ ├── r.svg │ │ │ │ ├── rbackend.svg │ │ │ │ ├── rekonq.svg │ │ │ │ ├── ring-kde.svg │ │ │ │ ├── ring.svg │ │ │ │ ├── rocs.svg │ │ │ │ ├── rosegarden.svg │ │ │ │ ├── sage-notebook.svg │ │ │ │ ├── sagebackend.svg │ │ │ │ ├── scanner.svg │ │ │ │ ├── scribus.svg │ │ │ │ ├── sheets.svg │ │ │ │ ├── showfoto.svg │ │ │ │ ├── skanlite.svg │ │ │ │ ├── skanpage.svg │ │ │ │ ├── skrooge-black.svg │ │ │ │ ├── skrooge-initial.svg │ │ │ │ ├── skrooge.svg │ │ │ │ ├── smartgit.svg │ │ │ │ ├── smb4k.svg │ │ │ │ ├── smplayer.svg │ │ │ │ ├── smtube.svg │ │ │ │ ├── spectacle.svg │ │ │ │ ├── stage.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── step.svg │ │ │ │ ├── sublime-merge.svg │ │ │ │ ├── sublime-text.svg │ │ │ │ ├── subtitlecomposer.svg │ │ │ │ ├── sweeper.svg │ │ │ │ ├── symboleditor.svg │ │ │ │ ├── synaptic.svg │ │ │ │ ├── syncthing.svg │ │ │ │ ├── synfig_icon.svg │ │ │ │ ├── system-file-manager.svg │ │ │ │ ├── system-help.svg │ │ │ │ ├── system-run.svg │ │ │ │ ├── system-software-install.svg │ │ │ │ ├── system-software-update.svg │ │ │ │ ├── systemsettings.svg │ │ │ │ ├── teamviewer.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── telepathy-kde.svg │ │ │ │ ├── truecrypt.svg │ │ │ │ ├── ubiquity-kde.svg │ │ │ │ ├── ubiquity.svg │ │ │ │ ├── umbrello.svg │ │ │ │ ├── unetbootin.svg │ │ │ │ ├── usb-creator-kde.svg │ │ │ │ ├── utilities-energy-monitor.svg │ │ │ │ ├── utilities-file-archiver.svg │ │ │ │ ├── utilities-log-viewer.svg │ │ │ │ ├── utilities-system-monitor.svg │ │ │ │ ├── utilities-terminal.svg │ │ │ │ ├── viber.svg │ │ │ │ ├── virt-manager.svg │ │ │ │ ├── virtualbox.svg │ │ │ │ ├── vlc.svg │ │ │ │ ├── vokoscreen.svg │ │ │ │ ├── vvave.svg │ │ │ │ ├── wayland.svg │ │ │ │ ├── wine.svg │ │ │ │ ├── words.svg │ │ │ │ ├── xchat.svg │ │ │ │ ├── xine.svg │ │ │ │ ├── xmind.svg │ │ │ │ ├── xorg.svg │ │ │ │ ├── xterm-color.svg │ │ │ │ ├── xterm.svg │ │ │ │ ├── yakuake.svg │ │ │ │ ├── yandex-browser.svg │ │ │ │ ├── yast-control-center.svg │ │ │ │ ├── yast-installation.svg │ │ │ │ ├── yast-sw_single.svg │ │ │ │ ├── yast-upgrade.svg │ │ │ │ ├── yast.svg │ │ │ │ └── zanshin.svg │ │ │ └── 64 │ │ │ │ ├── accessories-text-editor.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── hotspot.svg │ │ │ │ ├── kwrite.svg │ │ │ │ ├── plasma-browser-integration.svg │ │ │ │ ├── plasmavault.svg │ │ │ │ ├── sharedlib.svg │ │ │ │ ├── system-file-manager.svg │ │ │ │ ├── umbrello.svg │ │ │ │ └── utilities-terminal.svg │ │ ├── categories │ │ │ └── 32 │ │ │ │ ├── applications-all.svg │ │ │ │ ├── applications-development.svg │ │ │ │ ├── applications-education-language.svg │ │ │ │ ├── applications-education-mathematics.svg │ │ │ │ ├── applications-education-science.svg │ │ │ │ ├── applications-education.svg │ │ │ │ ├── applications-engineering.svg │ │ │ │ ├── applications-games.svg │ │ │ │ ├── applications-graphics.svg │ │ │ │ ├── applications-internet.svg │ │ │ │ ├── applications-multimedia.svg │ │ │ │ ├── applications-network.svg │ │ │ │ ├── applications-office.svg │ │ │ │ ├── applications-other.svg │ │ │ │ ├── applications-science.svg │ │ │ │ ├── applications-system.svg │ │ │ │ └── applications-utilities.svg │ │ ├── devices │ │ │ ├── 22 │ │ │ │ ├── audio-card.svg │ │ │ │ ├── audio-headphones.svg │ │ │ │ ├── audio-headset.svg │ │ │ │ ├── audio-input-microphone.svg │ │ │ │ ├── audio-radio.svg │ │ │ │ ├── auth-sim.svg │ │ │ │ ├── battery-ups.svg │ │ │ │ ├── camera-photo.svg │ │ │ │ ├── camera-video.svg │ │ │ │ ├── camera-web.svg │ │ │ │ ├── computer-laptop.svg │ │ │ │ ├── computer.svg │ │ │ │ ├── cups.svg │ │ │ │ ├── cupsprinter.svg │ │ │ │ ├── drive-harddisk-encrypted.svg │ │ │ │ ├── drive-harddisk-root.svg │ │ │ │ ├── drive-harddisk.svg │ │ │ │ ├── drive-multidisk.svg │ │ │ │ ├── drive-multipartition.svg │ │ │ │ ├── drive-optical.svg │ │ │ │ ├── drive-partition.svg │ │ │ │ ├── drive-removable-media-usb-pendrive.svg │ │ │ │ ├── drive-removable-media-usb.svg │ │ │ │ ├── drive-removable-media.svg │ │ │ │ ├── input-dialpad.svg │ │ │ │ ├── input-gamepad.svg │ │ │ │ ├── input-keyboard-virtual.svg │ │ │ │ ├── input-keyboard.svg │ │ │ │ ├── input-mouse.svg │ │ │ │ ├── input-tablet.svg │ │ │ │ ├── input-touchpad.svg │ │ │ │ ├── keyboard-caps-disabled.svg │ │ │ │ ├── keyboard-caps-enabled.svg │ │ │ │ ├── keyboard-caps-locked.svg │ │ │ │ ├── keyboard-enter.svg │ │ │ │ ├── keyboard-spacebar.svg │ │ │ │ ├── media-flash-memory-stick.svg │ │ │ │ ├── media-flash-sd-mmc.svg │ │ │ │ ├── media-floppy.svg │ │ │ │ ├── media-optical-audio.svg │ │ │ │ ├── media-optical-data.svg │ │ │ │ ├── media-optical-mixed-cd.svg │ │ │ │ ├── media-optical-recordable.svg │ │ │ │ ├── media-optical-video.svg │ │ │ │ ├── media-optical.svg │ │ │ │ ├── monitor.svg │ │ │ │ ├── multimedia-player-ipod-mini-blue.svg │ │ │ │ ├── network-bluetooth.svg │ │ │ │ ├── network-modem.svg │ │ │ │ ├── network-rj11-female.svg │ │ │ │ ├── network-rj45-female.svg │ │ │ │ ├── network-vpn.svg │ │ │ │ ├── network-wired.svg │ │ │ │ ├── network-wireless-hotspot.svg │ │ │ │ ├── network-wireless.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── printer.svg │ │ │ │ ├── radio.svg │ │ │ │ ├── smartphone.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── uav-quadcopter.svg │ │ │ │ ├── uav.svg │ │ │ │ └── video-television.svg │ │ │ ├── 64 │ │ │ │ ├── audio-card.svg │ │ │ │ ├── audio-headphones.svg │ │ │ │ ├── auth-sim.svg │ │ │ │ ├── battery.svg │ │ │ │ ├── camera-photo.svg │ │ │ │ ├── camera-video.svg │ │ │ │ ├── camera-web.svg │ │ │ │ ├── computer-laptop.svg │ │ │ │ ├── computer.svg │ │ │ │ ├── cpu.svg │ │ │ │ ├── cups.svg │ │ │ │ ├── cupsprinter.svg │ │ │ │ ├── drive-harddisk-encrypted.svg │ │ │ │ ├── drive-harddisk-root.svg │ │ │ │ ├── drive-harddisk.svg │ │ │ │ ├── drive-multidisk.svg │ │ │ │ ├── drive-multipartition.svg │ │ │ │ ├── drive-optical.svg │ │ │ │ ├── drive-partition.svg │ │ │ │ ├── drive-removable-media-usb-pendrive.svg │ │ │ │ ├── drive-removable-media-usb.svg │ │ │ │ ├── drive-removable-media.svg │ │ │ │ ├── input-gamepad.svg │ │ │ │ ├── input-gaming.svg │ │ │ │ ├── input-keyboard.svg │ │ │ │ ├── input-mouse.svg │ │ │ │ ├── input-tablet.svg │ │ │ │ ├── input-touchpad.svg │ │ │ │ ├── media-flash-memory-stick.svg │ │ │ │ ├── media-flash-sd-mmc.svg │ │ │ │ ├── media-flash-smart-media.svg │ │ │ │ ├── media-flash.svg │ │ │ │ ├── media-optical-audio.svg │ │ │ │ ├── media-optical-blu-ray.svg │ │ │ │ ├── media-optical-data.svg │ │ │ │ ├── media-optical-dvd.svg │ │ │ │ ├── media-optical-recordable.svg │ │ │ │ ├── media-optical-video.svg │ │ │ │ ├── media-optical.svg │ │ │ │ ├── media-write-dvd.svg │ │ │ │ ├── monitor.svg │ │ │ │ ├── multimedia-player.svg │ │ │ │ ├── network-card.svg │ │ │ │ ├── network-rj11-female.svg │ │ │ │ ├── network-rj45-female.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── printer.svg │ │ │ │ ├── scanner.svg │ │ │ │ ├── smartphone.svg │ │ │ │ ├── video-display.svg │ │ │ │ └── video-television.svg │ │ │ └── symbolic │ │ │ │ ├── audio-input-microphone-symbolic.svg │ │ │ │ ├── audio-radio-symbolic.svg │ │ │ │ ├── audio-speakers-symbolic.svg │ │ │ │ ├── auth-sim-symbolic.svg │ │ │ │ ├── camera-photo-symbolic.svg │ │ │ │ ├── camera-video-symbolic.svg │ │ │ │ ├── camera-web-symbolic.svg │ │ │ │ ├── computer-symbolic.svg │ │ │ │ ├── drive-harddisk-encrypted-symbolic.svg │ │ │ │ ├── drive-harddisk-ieee1394-symbolic.svg │ │ │ │ ├── drive-harddisk-root-symbolic.svg │ │ │ │ ├── drive-harddisk-symbolic.svg │ │ │ │ ├── drive-harddisk-system-symbolic.svg │ │ │ │ ├── drive-harddisk-usb-symbolic.svg │ │ │ │ ├── drive-multidisk-symbolic.svg │ │ │ │ ├── drive-multipartition-symbolic.svg │ │ │ │ ├── drive-partition-symbolic.svg │ │ │ │ ├── drive-removable-media-symbolic.svg │ │ │ │ ├── input-dialpad-symbolic.svg │ │ │ │ ├── input-gamepad-symbolic.svg │ │ │ │ ├── input-keyboard-symbolic.svg │ │ │ │ ├── input-keyboard-virtual-symbolic.svg │ │ │ │ ├── input-mouse-symbolic.svg │ │ │ │ ├── input-tablet-symbolic.svg │ │ │ │ ├── input-touchpad-symbolic.svg │ │ │ │ ├── media-flash-symbolic.svg │ │ │ │ ├── media-floppy-symbolic.svg │ │ │ │ ├── media-optical-bd-symbolic.svg │ │ │ │ ├── media-optical-cd-audio-symbolic.svg │ │ │ │ ├── media-optical-dvd-symbolic.svg │ │ │ │ ├── media-optical-symbolic.svg │ │ │ │ ├── media-removable-symbolic.svg │ │ │ │ ├── multimedia-player-apple-ipod-touch-symbolic.svg │ │ │ │ ├── multimedia-player-symbolic.svg │ │ │ │ ├── network-wired-symbolic.svg │ │ │ │ ├── network-wireless-symbolic.svg │ │ │ │ ├── phone-apple-iphone-symbolic.svg │ │ │ │ ├── phone-symbolic.svg │ │ │ │ ├── printer-network-symbolic.svg │ │ │ │ └── printer-symbolic.svg │ │ ├── emblems │ │ │ ├── 22 │ │ │ │ ├── checkmark.svg │ │ │ │ ├── emblem-added.svg │ │ │ │ ├── emblem-checked.svg │ │ │ │ ├── emblem-encrypted-locked.svg │ │ │ │ ├── emblem-encrypted-unlocked.svg │ │ │ │ ├── emblem-error.svg │ │ │ │ ├── emblem-favorite.svg │ │ │ │ ├── emblem-important.svg │ │ │ │ ├── emblem-information.svg │ │ │ │ ├── emblem-locked.svg │ │ │ │ ├── emblem-mounted.svg │ │ │ │ ├── emblem-pause.svg │ │ │ │ ├── emblem-question.svg │ │ │ │ ├── emblem-readonly.svg │ │ │ │ ├── emblem-remove.svg │ │ │ │ ├── emblem-shared.svg │ │ │ │ ├── emblem-success.svg │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ ├── emblem-unavailable.svg │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ ├── emblem-unmounted.svg │ │ │ │ ├── emblem-warning.svg │ │ │ │ ├── rating-half.svg │ │ │ │ ├── rating-unrated.svg │ │ │ │ ├── rating.svg │ │ │ │ ├── vcs-added.svg │ │ │ │ ├── vcs-conflicting.svg │ │ │ │ ├── vcs-locally-modified-unstaged.svg │ │ │ │ ├── vcs-locally-modified.svg │ │ │ │ ├── vcs-normal.svg │ │ │ │ ├── vcs-removed.svg │ │ │ │ └── vcs-update-required.svg │ │ │ └── symbolic │ │ │ │ ├── emblem-default-symbolic.svg │ │ │ │ ├── emblem-documents-symbolic.svg │ │ │ │ ├── emblem-favorite-symbolic.svg │ │ │ │ ├── emblem-important-symbolic.svg │ │ │ │ ├── emblem-music-symbolic.svg │ │ │ │ ├── emblem-ok-symbolic.svg │ │ │ │ ├── emblem-photos-symbolic.svg │ │ │ │ ├── emblem-shared-symbolic.svg │ │ │ │ ├── emblem-synchronizing-symbolic.svg │ │ │ │ ├── emblem-system-symbolic.svg │ │ │ │ └── emblem-videos-symbolic.svg │ │ ├── emotes │ │ │ └── 22 │ │ │ │ ├── drink-beer.svg │ │ │ │ ├── drink-martini.svg │ │ │ │ ├── face-angel.svg │ │ │ │ ├── face-angry.svg │ │ │ │ ├── face-clown.svg │ │ │ │ ├── face-confused.svg │ │ │ │ ├── face-cool.svg │ │ │ │ ├── face-crying.svg │ │ │ │ ├── face-devilish.svg │ │ │ │ ├── face-embarrassed.svg │ │ │ │ ├── face-glasses.svg │ │ │ │ ├── face-hug-left.svg │ │ │ │ ├── face-hug-right.svg │ │ │ │ ├── face-in-love.svg │ │ │ │ ├── face-kiss.svg │ │ │ │ ├── face-laughing.svg │ │ │ │ ├── face-ninja.svg │ │ │ │ ├── face-pirate.svg │ │ │ │ ├── face-plain.svg │ │ │ │ ├── face-quiet.svg │ │ │ │ ├── face-raspberry.svg │ │ │ │ ├── face-sad.svg │ │ │ │ ├── face-sick.svg │ │ │ │ ├── face-sleeping.svg │ │ │ │ ├── face-smile-big.svg │ │ │ │ ├── face-smile-grin.svg │ │ │ │ ├── face-smile.svg │ │ │ │ ├── face-smirk.svg │ │ │ │ ├── face-surprise.svg │ │ │ │ ├── face-uncertain.svg │ │ │ │ ├── face-wink.svg │ │ │ │ ├── face-worried.svg │ │ │ │ ├── face-yawn.svg │ │ │ │ └── food-cake.svg │ │ ├── index.theme │ │ ├── mimetypes │ │ │ ├── 22 │ │ │ │ ├── android-package-archive.svg │ │ │ │ ├── application-atom+xml.svg │ │ │ │ ├── application-certificate.svg │ │ │ │ ├── application-dicom.svg │ │ │ │ ├── application-epub+zip.svg │ │ │ │ ├── application-gzip.svg │ │ │ │ ├── application-illustrator.svg │ │ │ │ ├── application-javascript.svg │ │ │ │ ├── application-json.svg │ │ │ │ ├── application-mac-binhex40.svg │ │ │ │ ├── application-mathml+xml.svg │ │ │ │ ├── application-msonenote.svg │ │ │ │ ├── application-msoutlook.svg │ │ │ │ ├── application-msword-template.svg │ │ │ │ ├── application-msword.svg │ │ │ │ ├── application-octet-stream.svg │ │ │ │ ├── application-ogg.svg │ │ │ │ ├── application-pdf.svg │ │ │ │ ├── application-pgp-encrypted.svg │ │ │ │ ├── application-pgp-keys.svg │ │ │ │ ├── application-pgp-signature.svg │ │ │ │ ├── application-pgp.svg │ │ │ │ ├── application-pkcs12.svg │ │ │ │ ├── application-pkcs7-mime.svg │ │ │ │ ├── application-pkcs7-signature.svg │ │ │ │ ├── application-pkix-cerl.svg │ │ │ │ ├── application-pkix-cert.svg │ │ │ │ ├── application-postscript.svg │ │ │ │ ├── application-relaxng.svg │ │ │ │ ├── application-rss+xml.svg │ │ │ │ ├── application-rtf.svg │ │ │ │ ├── application-sql.svg │ │ │ │ ├── application-sxw.svg │ │ │ │ ├── application-vnd.android.package-archive.svg │ │ │ │ ├── application-vnd.appimage.svg │ │ │ │ ├── application-vnd.apple.pkpass.svg │ │ │ │ ├── application-vnd.debian.binary-package.svg │ │ │ │ ├── application-vnd.flatpak.ref.svg │ │ │ │ ├── application-vnd.google-earth.kml+xml.svg │ │ │ │ ├── application-vnd.iccprofile.svg │ │ │ │ ├── application-vnd.ms-access.svg │ │ │ │ ├── application-vnd.ms-excel.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.svg │ │ │ │ ├── application-vnd.ms-excel.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-infopath.svg │ │ │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.svg │ │ │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-publisher.svg │ │ │ │ ├── application-vnd.ms-word.document.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-word.svg │ │ │ │ ├── application-vnd.ms-word.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.nintendo.snes.rom.svg │ │ │ │ ├── application-vnd.nokia.xml.qt.resource.svg │ │ │ │ ├── application-vnd.oasis.opendocument.chart.svg │ │ │ │ ├── application-vnd.oasis.opendocument.database.svg │ │ │ │ ├── application-vnd.oasis.opendocument.draw.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula.svg │ │ │ │ ├── application-vnd.oasis.opendocument.graphics.svg │ │ │ │ ├── application-vnd.oasis.opendocument.image.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-master.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text.svg │ │ │ │ ├── application-vnd.oasis.opendocument.web-template.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg │ │ │ │ ├── application-vnd.rar.svg │ │ │ │ ├── application-vnd.rn-realmedia.svg │ │ │ │ ├── application-vnd.scribus.svg │ │ │ │ ├── application-vnd.sqlite3.svg │ │ │ │ ├── application-vnd.squashfs.svg │ │ │ │ ├── application-vnd.stardivision.calc.svg │ │ │ │ ├── application-vnd.stardivision.draw.svg │ │ │ │ ├── application-vnd.stardivision.mail.svg │ │ │ │ ├── application-vnd.stardivision.math.svg │ │ │ │ ├── application-vnd.sun.xml.calc.svg │ │ │ │ ├── application-vnd.sun.xml.calc.template.svg │ │ │ │ ├── application-vnd.sun.xml.draw.svg │ │ │ │ ├── application-vnd.sun.xml.draw.template.svg │ │ │ │ ├── application-vnd.sun.xml.impress.svg │ │ │ │ ├── application-vnd.sun.xml.impress.template.svg │ │ │ │ ├── application-vnd.sun.xml.math.svg │ │ │ │ ├── application-vnd.sun.xml.writer.global.svg │ │ │ │ ├── application-vnd.sun.xml.writer.svg │ │ │ │ ├── application-vnd.sun.xml.writer.template.svg │ │ │ │ ├── application-vnd.visio.svg │ │ │ │ ├── application-vnd.wordperfect.svg │ │ │ │ ├── application-wps-office.doc.svg │ │ │ │ ├── application-wps-office.docx.svg │ │ │ │ ├── application-wps-office.dot.svg │ │ │ │ ├── application-wps-office.dotx.svg │ │ │ │ ├── application-wps-office.pot.svg │ │ │ │ ├── application-wps-office.potx.svg │ │ │ │ ├── application-wps-office.ppt.svg │ │ │ │ ├── application-wps-office.pptx.svg │ │ │ │ ├── application-wps-office.xls.svg │ │ │ │ ├── application-wps-office.xlsx.svg │ │ │ │ ├── application-wps-office.xlt.svg │ │ │ │ ├── application-wps-office.xltx.svg │ │ │ │ ├── application-x-7z-compressed.svg │ │ │ │ ├── application-x-abiword.svg │ │ │ │ ├── application-x-ace.svg │ │ │ │ ├── application-x-apple-diskimage.svg │ │ │ │ ├── application-x-applix-spreadsheet.svg │ │ │ │ ├── application-x-applix-word.svg │ │ │ │ ├── application-x-ar.svg │ │ │ │ ├── application-x-arc.svg │ │ │ │ ├── application-x-archive.svg │ │ │ │ ├── application-x-arj.svg │ │ │ │ ├── application-x-audacity-project.svg │ │ │ │ ├── application-x-awk.svg │ │ │ │ ├── application-x-bittorrent.svg │ │ │ │ ├── application-x-blender.svg │ │ │ │ ├── application-x-bzdvi.svg │ │ │ │ ├── application-x-bzip-compressed-tar.svg │ │ │ │ ├── application-x-bzip.svg │ │ │ │ ├── application-x-cd-image.svg │ │ │ │ ├── application-x-cda.svg │ │ │ │ ├── application-x-chm.svg │ │ │ │ ├── application-x-compress.svg │ │ │ │ ├── application-x-compressed-tar.svg │ │ │ │ ├── application-x-core.svg │ │ │ │ ├── application-x-cpio.svg │ │ │ │ ├── application-x-cue.svg │ │ │ │ ├── application-x-deb.svg │ │ │ │ ├── application-x-designer.svg │ │ │ │ ├── application-x-desktop.svg │ │ │ │ ├── application-x-egon.svg │ │ │ │ ├── application-x-executable-script.svg │ │ │ │ ├── application-x-executable.svg │ │ │ │ ├── application-x-fictionbook+xml.svg │ │ │ │ ├── application-x-flash-video.svg │ │ │ │ ├── application-x-font-afm.svg │ │ │ │ ├── application-x-font-bdf.svg │ │ │ │ ├── application-x-font-otf.svg │ │ │ │ ├── application-x-font-pcf.svg │ │ │ │ ├── application-x-font-snf.svg │ │ │ │ ├── application-x-font-ttf.svg │ │ │ │ ├── application-x-font-ttx.svg │ │ │ │ ├── application-x-font-type1.svg │ │ │ │ ├── application-x-gameboy-rom.svg │ │ │ │ ├── application-x-gamecube-rom.svg │ │ │ │ ├── application-x-gba-rom.svg │ │ │ │ ├── application-x-gdscript.svg │ │ │ │ ├── application-x-gettext-translation.svg │ │ │ │ ├── application-x-gnumeric.svg │ │ │ │ ├── application-x-godot-project.svg │ │ │ │ ├── application-x-godot-resource.svg │ │ │ │ ├── application-x-godot-scene.svg │ │ │ │ ├── application-x-godot-shader.svg │ │ │ │ ├── application-x-gzdvi.svg │ │ │ │ ├── application-x-gzip.svg │ │ │ │ ├── application-x-gzpostscript.svg │ │ │ │ ├── application-x-iso.svg │ │ │ │ ├── application-x-iso9660-appimage.svg │ │ │ │ ├── application-x-it87.svg │ │ │ │ ├── application-x-jar.svg │ │ │ │ ├── application-x-java-applet.svg │ │ │ │ ├── application-x-java-archive.svg │ │ │ │ ├── application-x-java.svg │ │ │ │ ├── application-x-javascript.svg │ │ │ │ ├── application-x-k3b.svg │ │ │ │ ├── application-x-kcsrc.svg │ │ │ │ ├── application-x-kdenlivetitle.svg │ │ │ │ ├── application-x-kexi-connectiondata.svg │ │ │ │ ├── application-x-kexiproject-shortcut.svg │ │ │ │ ├── application-x-kexiproject-sqlite.svg │ │ │ │ ├── application-x-kexiproject-sqlite2.svg │ │ │ │ ├── application-x-kexiproject-sqlite3.svg │ │ │ │ ├── application-x-kformula.svg │ │ │ │ ├── application-x-kgetlist.svg │ │ │ │ ├── application-x-kmymoney.svg │ │ │ │ ├── application-x-kontour.svg │ │ │ │ ├── application-x-kplato.svg │ │ │ │ ├── application-x-krita.svg │ │ │ │ ├── application-x-kvtml.svg │ │ │ │ ├── application-x-kword.svg │ │ │ │ ├── application-x-lha.svg │ │ │ │ ├── application-x-lyx.svg │ │ │ │ ├── application-x-lzma-compressed-tar.svg │ │ │ │ ├── application-x-lzop.svg │ │ │ │ ├── application-x-m4.svg │ │ │ │ ├── application-x-macbinary.svg │ │ │ │ ├── application-x-marble.svg │ │ │ │ ├── application-x-mimearchive.svg │ │ │ │ ├── application-x-mplayer2.svg │ │ │ │ ├── application-x-ms-dos-executable.svg │ │ │ │ ├── application-x-ms-shortcut.svg │ │ │ │ ├── application-x-ms-wim.svg │ │ │ │ ├── application-x-mswinurl.svg │ │ │ │ ├── application-x-mswrite.svg │ │ │ │ ├── application-x-n64-rom.svg │ │ │ │ ├── application-x-nes-rom.svg │ │ │ │ ├── application-x-nintendo-ds-rom.svg │ │ │ │ ├── application-x-nzb.svg │ │ │ │ ├── application-x-object.svg │ │ │ │ ├── application-x-pak.svg │ │ │ │ ├── application-x-partial-download.svg │ │ │ │ ├── application-x-pem-key.svg │ │ │ │ ├── application-x-perl.svg │ │ │ │ ├── application-x-php.svg │ │ │ │ ├── application-x-pkcs12.svg │ │ │ │ ├── application-x-pkcs7-certificates.svg │ │ │ │ ├── application-x-plasma.svg │ │ │ │ ├── application-x-python-bytecode.svg │ │ │ │ ├── application-x-qemu-disk.svg │ │ │ │ ├── application-x-qet-element.svg │ │ │ │ ├── application-x-qet-project.svg │ │ │ │ ├── application-x-quattropro.svg │ │ │ │ ├── application-x-rar.svg │ │ │ │ ├── application-x-raw-disk-image.svg │ │ │ │ ├── application-x-rdata.svg │ │ │ │ ├── application-x-root.svg │ │ │ │ ├── application-x-rpm.svg │ │ │ │ ├── application-x-ruby.svg │ │ │ │ ├── application-x-sami.svg │ │ │ │ ├── application-x-sharedlib.svg │ │ │ │ ├── application-x-shellscript.svg │ │ │ │ ├── application-x-shockwave-flash.svg │ │ │ │ ├── application-x-siag.svg │ │ │ │ ├── application-x-sif.svg │ │ │ │ ├── application-x-skg.svg │ │ │ │ ├── application-x-skgc.svg │ │ │ │ ├── application-x-smb-server.svg │ │ │ │ ├── application-x-smb-workgroup.svg │ │ │ │ ├── application-x-source-rpm.svg │ │ │ │ ├── application-x-sqlite2.svg │ │ │ │ ├── application-x-sqlite3.svg │ │ │ │ ├── application-x-srt.svg │ │ │ │ ├── application-x-srtrip.svg │ │ │ │ ├── application-x-subrip.svg │ │ │ │ ├── application-x-tar.svg │ │ │ │ ├── application-x-tarz.svg │ │ │ │ ├── application-x-tgif.svg │ │ │ │ ├── application-x-theme.svg │ │ │ │ ├── application-x-trash.svg │ │ │ │ ├── application-x-troff-man.svg │ │ │ │ ├── application-x-tzo.svg │ │ │ │ ├── application-x-wmf.svg │ │ │ │ ├── application-x-x509-ca-cert.svg │ │ │ │ ├── application-x-x509-user-cert.svg │ │ │ │ ├── application-x-xliff.svg │ │ │ │ ├── application-x-xpinstall.svg │ │ │ │ ├── application-x-xz-compressed-tar.svg │ │ │ │ ├── application-x-xz-pkg.svg │ │ │ │ ├── application-x-zerosize.svg │ │ │ │ ├── application-x-zip-compressed-fb2.svg │ │ │ │ ├── application-x-zoo.svg │ │ │ │ ├── application-xhtml+xml.svg │ │ │ │ ├── application-xmind.svg │ │ │ │ ├── application-xml.svg │ │ │ │ ├── application-xsd.svg │ │ │ │ ├── application-xslt+xml.svg │ │ │ │ ├── application-zip.svg │ │ │ │ ├── audio-ac3.svg │ │ │ │ ├── audio-flac.svg │ │ │ │ ├── audio-midi.svg │ │ │ │ ├── audio-mp2.svg │ │ │ │ ├── audio-mp3.svg │ │ │ │ ├── audio-mp4.svg │ │ │ │ ├── audio-mpeg.svg │ │ │ │ ├── audio-prs.sid.svg │ │ │ │ ├── audio-vn.rn-realmedia.svg │ │ │ │ ├── audio-vnd.rn-realvideo.svg │ │ │ │ ├── audio-x-adpcm.svg │ │ │ │ ├── audio-x-aiff.svg │ │ │ │ ├── audio-x-flac+ogg.svg │ │ │ │ ├── audio-x-flac.svg │ │ │ │ ├── audio-x-generic.svg │ │ │ │ ├── audio-x-monkey.svg │ │ │ │ ├── audio-x-mp2.svg │ │ │ │ ├── audio-x-mpeg.svg │ │ │ │ ├── audio-x-speex+ogg.svg │ │ │ │ ├── audio-x-wav.svg │ │ │ │ ├── audiobook.svg │ │ │ │ ├── encrypted.svg │ │ │ │ ├── font-otf.svg │ │ │ │ ├── font-ttf.svg │ │ │ │ ├── fonts-package.svg │ │ │ │ ├── image-bmp.svg │ │ │ │ ├── image-gif.svg │ │ │ │ ├── image-ico.svg │ │ │ │ ├── image-jpeg.svg │ │ │ │ ├── image-jpeg2000.svg │ │ │ │ ├── image-png.svg │ │ │ │ ├── image-svg+xml-compressed.svg │ │ │ │ ├── image-svg+xml.svg │ │ │ │ ├── image-tiff.svg │ │ │ │ ├── image-vnd.dgn.svg │ │ │ │ ├── image-vnd.djvu.svg │ │ │ │ ├── image-vnd.dwg.svg │ │ │ │ ├── image-vnd.microsoft.icon.svg │ │ │ │ ├── image-x-adobe-dng.svg │ │ │ │ ├── image-x-compressed-xcf.svg │ │ │ │ ├── image-x-emf.svg │ │ │ │ ├── image-x-eps.svg │ │ │ │ ├── image-x-generic.svg │ │ │ │ ├── image-x-ico.svg │ │ │ │ ├── image-x-icon.svg │ │ │ │ ├── image-x-krita.svg │ │ │ │ ├── image-x-portable-bitmap.svg │ │ │ │ ├── image-x-psd.svg │ │ │ │ ├── image-x-psdimage-x-psd.svg │ │ │ │ ├── image-x-svg+xml.svg │ │ │ │ ├── image-x-tga.svg │ │ │ │ ├── image-x-vnd.trolltech.qpicture.svg │ │ │ │ ├── image-x-win-bitmap.svg │ │ │ │ ├── image-x-win-bmp.svg │ │ │ │ ├── image-x-wmf.svg │ │ │ │ ├── image-x-xcf.svg │ │ │ │ ├── image-x-xfig.svg │ │ │ │ ├── inode-directory.svg │ │ │ │ ├── libreoffice-database.svg │ │ │ │ ├── libreoffice-drawing-template.svg │ │ │ │ ├── libreoffice-drawing.svg │ │ │ │ ├── libreoffice-extension.svg │ │ │ │ ├── libreoffice-formula.svg │ │ │ │ ├── libreoffice-master-document.svg │ │ │ │ ├── libreoffice-oasis-database.svg │ │ │ │ ├── libreoffice-oasis-drawing-template.svg │ │ │ │ ├── libreoffice-oasis-drawing.svg │ │ │ │ ├── libreoffice-oasis-formula.svg │ │ │ │ ├── libreoffice-oasis-master-document.svg │ │ │ │ ├── libreoffice-oasis-presentation-template.svg │ │ │ │ ├── libreoffice-oasis-presentation.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-template.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet.svg │ │ │ │ ├── libreoffice-oasis-text-template.svg │ │ │ │ ├── libreoffice-oasis-text.svg │ │ │ │ ├── libreoffice-oasis-web-template.svg │ │ │ │ ├── libreoffice-presentation-template.svg │ │ │ │ ├── libreoffice-presentation.svg │ │ │ │ ├── libreoffice-spreadsheet-template.svg │ │ │ │ ├── libreoffice-spreadsheet.svg │ │ │ │ ├── libreoffice-text-template.svg │ │ │ │ ├── libreoffice-text.svg │ │ │ │ ├── message-news.svg │ │ │ │ ├── message-partial.svg │ │ │ │ ├── message-rfc822.svg │ │ │ │ ├── message-x-gnu-rmail.svg │ │ │ │ ├── message.svg │ │ │ │ ├── none.svg │ │ │ │ ├── odf.svg │ │ │ │ ├── package-x-generic.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── text-calendar.svg │ │ │ │ ├── text-csharp.svg │ │ │ │ ├── text-css.svg │ │ │ │ ├── text-csv.svg │ │ │ │ ├── text-directory.svg │ │ │ │ ├── text-dockerfile.svg │ │ │ │ ├── text-enriched.svg │ │ │ │ ├── text-html.svg │ │ │ │ ├── text-markdown.svg │ │ │ │ ├── text-plain.svg │ │ │ │ ├── text-rdf+xml.svg │ │ │ │ ├── text-rdf.svg │ │ │ │ ├── text-rtf.svg │ │ │ │ ├── text-rust.svg │ │ │ │ ├── text-sgml.svg │ │ │ │ ├── text-troff.svg │ │ │ │ ├── text-vcalendar.svg │ │ │ │ ├── text-vnd.abc.svg │ │ │ │ ├── text-vnd.kde.kcrash-report.svg │ │ │ │ ├── text-vnd.trolltech.linguist.svg │ │ │ │ ├── text-vnd.wap.wml.svg │ │ │ │ ├── text-vtt.svg │ │ │ │ ├── text-wiki.svg │ │ │ │ ├── text-x-adasrc.svg │ │ │ │ ├── text-x-apport.svg │ │ │ │ ├── text-x-authors.svg │ │ │ │ ├── text-x-bibtex.svg │ │ │ │ ├── text-x-c++hdr.svg │ │ │ │ ├── text-x-c++src.svg │ │ │ │ ├── text-x-changelog.svg │ │ │ │ ├── text-x-chdr.svg │ │ │ │ ├── text-x-cmake.svg │ │ │ │ ├── text-x-copying.svg │ │ │ │ ├── text-x-credits.svg │ │ │ │ ├── text-x-csharp.svg │ │ │ │ ├── text-x-csrc.svg │ │ │ │ ├── text-x-dtd.svg │ │ │ │ ├── text-x-generic.svapplication-x-awk.svg │ │ │ │ ├── text-x-generic.svg │ │ │ │ ├── text-x-gettext-translation.svg │ │ │ │ ├── text-x-go.svg │ │ │ │ ├── text-x-haskell.svg │ │ │ │ ├── text-x-hex.svg │ │ │ │ ├── text-x-install.svg │ │ │ │ ├── text-x-java-source.svg │ │ │ │ ├── text-x-java.svg │ │ │ │ ├── text-x-javascript.svg │ │ │ │ ├── text-x-katefilelist.svg │ │ │ │ ├── text-x-kotlin.svg │ │ │ │ ├── text-x-ldif.svg │ │ │ │ ├── text-x-lilypond.svg │ │ │ │ ├── text-x-log.svg │ │ │ │ ├── text-x-lua.svg │ │ │ │ ├── text-x-makefile.svg │ │ │ │ ├── text-x-markdown.svg │ │ │ │ ├── text-x-microdvd.svg │ │ │ │ ├── text-x-mpsub.svg │ │ │ │ ├── text-x-nfo.svg │ │ │ │ ├── text-x-objchdr.svg │ │ │ │ ├── text-x-objcsrc.svg │ │ │ │ ├── text-x-opml+xml.svg │ │ │ │ ├── text-x-opml.svg │ │ │ │ ├── text-x-pascal.svg │ │ │ │ ├── text-x-patch.svg │ │ │ │ ├── text-x-plain.svg │ │ │ │ ├── text-x-po.svg │ │ │ │ ├── text-x-python.svg │ │ │ │ ├── text-x-python3.svg │ │ │ │ ├── text-x-qml.svg │ │ │ │ ├── text-x-r.svg │ │ │ │ ├── text-x-readme.svg │ │ │ │ ├── text-x-rpm-spec.svg │ │ │ │ ├── text-x-rust.svg │ │ │ │ ├── text-x-scala.svg │ │ │ │ ├── text-x-script.svg │ │ │ │ ├── text-x-sql.svg │ │ │ │ ├── text-x-ssa.svg │ │ │ │ ├── text-x-subviewer.svg │ │ │ │ ├── text-x-tcl.svg │ │ │ │ ├── text-x-tex.svg │ │ │ │ ├── text-x-texinfo.svg │ │ │ │ ├── text-x-vcard.svg │ │ │ │ ├── text-x-xslfo.svg │ │ │ │ ├── text-xmcd.svg │ │ │ │ ├── text-xml.svg │ │ │ │ ├── unknown.svg │ │ │ │ ├── uri-mms.svg │ │ │ │ ├── uri-mmst.svg │ │ │ │ ├── uri-pnm.svg │ │ │ │ ├── uri-rtspt.svg │ │ │ │ ├── uri-rtspu.svg │ │ │ │ ├── video-mlt-playlist.svg │ │ │ │ ├── video-mp2t.svg │ │ │ │ ├── video-mp4.svg │ │ │ │ ├── video-vivo.svg │ │ │ │ ├── video-vnd.rn-realvideo.svg │ │ │ │ ├── video-wavelet.svg │ │ │ │ ├── video-webm.svg │ │ │ │ ├── video-x-anim.svg │ │ │ │ ├── video-x-flic.svg │ │ │ │ ├── video-x-flv.svg │ │ │ │ ├── video-x-generic.svg │ │ │ │ ├── video-x-google-vlc-plugin.svg │ │ │ │ ├── video-x-javafx.svg │ │ │ │ ├── video-x-matroska.svg │ │ │ │ ├── video-x-mng.svg │ │ │ │ ├── video-x-ms-wmp.svg │ │ │ │ ├── video-x-ms-wmv.svg │ │ │ │ ├── video-x-msvideo.svg │ │ │ │ ├── video-x-ogm+ogg.svg │ │ │ │ ├── video-x-theora+ogg.svg │ │ │ │ ├── video-x-wmv.svg │ │ │ │ ├── viewbib.svg │ │ │ │ ├── viewdvi.svg │ │ │ │ ├── viewhtml.svg │ │ │ │ ├── viewpdf.svg │ │ │ │ ├── viewps.svg │ │ │ │ ├── virtualbox-hdd.svg │ │ │ │ ├── virtualbox-ova.svg │ │ │ │ ├── virtualbox-ovf.svg │ │ │ │ ├── virtualbox-vbox-extpack.svg │ │ │ │ ├── virtualbox-vbox.svg │ │ │ │ ├── virtualbox-vdi.svg │ │ │ │ ├── virtualbox-vhd.svg │ │ │ │ ├── virtualbox-vmdk.svg │ │ │ │ ├── vnd.ms-publisher.svg │ │ │ │ ├── x-kde-nsplugin-generated.svg │ │ │ │ ├── x-mail-distribution-list.svg │ │ │ │ ├── x-media-podcast.svg │ │ │ │ ├── x-office-address-book.svg │ │ │ │ ├── x-office-calendar.svg │ │ │ │ ├── x-office-contact.svg │ │ │ │ ├── x-office-document.svg │ │ │ │ ├── x-office-drawing.svg │ │ │ │ ├── x-office-presentation.svg │ │ │ │ └── x-office-spreadsheet.svg │ │ │ ├── 32 │ │ │ │ ├── android-package-archive.svg │ │ │ │ ├── application-atom+xml.svg │ │ │ │ ├── application-certificate.svg │ │ │ │ ├── application-dicom.svg │ │ │ │ ├── application-epub+zip.svg │ │ │ │ ├── application-gzip.svg │ │ │ │ ├── application-illustrator.svg │ │ │ │ ├── application-javascript.svg │ │ │ │ ├── application-json.svg │ │ │ │ ├── application-mac-binhex40.svg │ │ │ │ ├── application-mathml+xml.svg │ │ │ │ ├── application-msonenote.svg │ │ │ │ ├── application-msoutlook.svg │ │ │ │ ├── application-msword-template.svg │ │ │ │ ├── application-msword.svg │ │ │ │ ├── application-octet-stream.svg │ │ │ │ ├── application-ogg.svg │ │ │ │ ├── application-pdf.svg │ │ │ │ ├── application-pgp-encrypted.svg │ │ │ │ ├── application-pgp-keys.svg │ │ │ │ ├── application-pgp-signature.svg │ │ │ │ ├── application-pgp.svg │ │ │ │ ├── application-pkcs12.svg │ │ │ │ ├── application-pkcs7-mime.svg │ │ │ │ ├── application-pkcs7-signature.svg │ │ │ │ ├── application-pkix-cerl.svg │ │ │ │ ├── application-pkix-cert.svg │ │ │ │ ├── application-postscript.svg │ │ │ │ ├── application-relaxng.svg │ │ │ │ ├── application-rss+xml.svg │ │ │ │ ├── application-rtf.svg │ │ │ │ ├── application-sql.svg │ │ │ │ ├── application-sxw.svg │ │ │ │ ├── application-vnd.android.package-archive.svg │ │ │ │ ├── application-vnd.appimage.svg │ │ │ │ ├── application-vnd.apple.pkpass.svg │ │ │ │ ├── application-vnd.debian.binary-package.svg │ │ │ │ ├── application-vnd.flatpak.ref.svg │ │ │ │ ├── application-vnd.google-earth.kml+xml.svg │ │ │ │ ├── application-vnd.iccprofile.svg │ │ │ │ ├── application-vnd.ms-access.svg │ │ │ │ ├── application-vnd.ms-excel.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.svg │ │ │ │ ├── application-vnd.ms-excel.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-infopath.svg │ │ │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.svg │ │ │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-publisher.svg │ │ │ │ ├── application-vnd.ms-word.document.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-word.svg │ │ │ │ ├── application-vnd.ms-word.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.nintendo.snes.rom.svg │ │ │ │ ├── application-vnd.nokia.xml.qt.resource.svg │ │ │ │ ├── application-vnd.oasis.opendocument.chart.svg │ │ │ │ ├── application-vnd.oasis.opendocument.database.svg │ │ │ │ ├── application-vnd.oasis.opendocument.draw.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula.svg │ │ │ │ ├── application-vnd.oasis.opendocument.graphics.svg │ │ │ │ ├── application-vnd.oasis.opendocument.image.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-master.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text.svg │ │ │ │ ├── application-vnd.oasis.opendocument.web-template.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg │ │ │ │ ├── application-vnd.rar.svg │ │ │ │ ├── application-vnd.rn-realmedia.svg │ │ │ │ ├── application-vnd.scribus.svg │ │ │ │ ├── application-vnd.sqlite3.svg │ │ │ │ ├── application-vnd.squashfs.svg │ │ │ │ ├── application-vnd.stardivision.calc.svg │ │ │ │ ├── application-vnd.stardivision.draw.svg │ │ │ │ ├── application-vnd.stardivision.mail.svg │ │ │ │ ├── application-vnd.stardivision.math.svg │ │ │ │ ├── application-vnd.sun.xml.calc.svg │ │ │ │ ├── application-vnd.sun.xml.calc.template.svg │ │ │ │ ├── application-vnd.sun.xml.draw.svg │ │ │ │ ├── application-vnd.sun.xml.draw.template.svg │ │ │ │ ├── application-vnd.sun.xml.impress.svg │ │ │ │ ├── application-vnd.sun.xml.impress.template.svg │ │ │ │ ├── application-vnd.sun.xml.math.svg │ │ │ │ ├── application-vnd.sun.xml.writer.global.svg │ │ │ │ ├── application-vnd.sun.xml.writer.svg │ │ │ │ ├── application-vnd.sun.xml.writer.template.svg │ │ │ │ ├── application-vnd.visio.svg │ │ │ │ ├── application-vnd.wordperfect.svg │ │ │ │ ├── application-wps-office.doc.svg │ │ │ │ ├── application-wps-office.docx.svg │ │ │ │ ├── application-wps-office.dot.svg │ │ │ │ ├── application-wps-office.dotx.svg │ │ │ │ ├── application-wps-office.pot.svg │ │ │ │ ├── application-wps-office.potx.svg │ │ │ │ ├── application-wps-office.ppt.svg │ │ │ │ ├── application-wps-office.pptx.svg │ │ │ │ ├── application-wps-office.xls.svg │ │ │ │ ├── application-wps-office.xlsx.svg │ │ │ │ ├── application-wps-office.xlt.svg │ │ │ │ ├── application-wps-office.xltx.svg │ │ │ │ ├── application-x-7z-compressed.svg │ │ │ │ ├── application-x-abiword.svg │ │ │ │ ├── application-x-ace.svg │ │ │ │ ├── application-x-apple-diskimage.svg │ │ │ │ ├── application-x-applix-spreadsheet.svg │ │ │ │ ├── application-x-applix-word.svg │ │ │ │ ├── application-x-ar.svg │ │ │ │ ├── application-x-arc.svg │ │ │ │ ├── application-x-archive.svg │ │ │ │ ├── application-x-arj.svg │ │ │ │ ├── application-x-audacity-project.svg │ │ │ │ ├── application-x-awk.svg │ │ │ │ ├── application-x-bittorrent.svg │ │ │ │ ├── application-x-blender.svg │ │ │ │ ├── application-x-bzdvi.svg │ │ │ │ ├── application-x-bzip-compressed-tar.svg │ │ │ │ ├── application-x-bzip.svg │ │ │ │ ├── application-x-cd-image.svg │ │ │ │ ├── application-x-cda.svg │ │ │ │ ├── application-x-chm.svg │ │ │ │ ├── application-x-compress.svg │ │ │ │ ├── application-x-compressed-tar.svg │ │ │ │ ├── application-x-core.svg │ │ │ │ ├── application-x-cpio.svg │ │ │ │ ├── application-x-cue.svg │ │ │ │ ├── application-x-deb.svg │ │ │ │ ├── application-x-designer.svg │ │ │ │ ├── application-x-desktop.svg │ │ │ │ ├── application-x-egon.svg │ │ │ │ ├── application-x-executable-script.svg │ │ │ │ ├── application-x-executable.svg │ │ │ │ ├── application-x-fictionbook+xml.svg │ │ │ │ ├── application-x-flash-video.svg │ │ │ │ ├── application-x-font-afm.svg │ │ │ │ ├── application-x-font-bdf.svg │ │ │ │ ├── application-x-font-otf.svg │ │ │ │ ├── application-x-font-pcf.svg │ │ │ │ ├── application-x-font-snf.svg │ │ │ │ ├── application-x-font-ttf.svg │ │ │ │ ├── application-x-font-ttx.svg │ │ │ │ ├── application-x-font-type1.svg │ │ │ │ ├── application-x-gameboy-rom.svg │ │ │ │ ├── application-x-gamecube-rom.svg │ │ │ │ ├── application-x-gba-rom.svg │ │ │ │ ├── application-x-gdscript.svg │ │ │ │ ├── application-x-gettext-translation.svg │ │ │ │ ├── application-x-gnumeric.svg │ │ │ │ ├── application-x-godot-project.svg │ │ │ │ ├── application-x-godot-resource.svg │ │ │ │ ├── application-x-godot-scene.svg │ │ │ │ ├── application-x-godot-shader.svg │ │ │ │ ├── application-x-gzdvi.svg │ │ │ │ ├── application-x-gzip.svg │ │ │ │ ├── application-x-gzpostscript.svg │ │ │ │ ├── application-x-iso.svg │ │ │ │ ├── application-x-iso9660-appimage.svg │ │ │ │ ├── application-x-it87.svg │ │ │ │ ├── application-x-jar.svg │ │ │ │ ├── application-x-java-applet.svg │ │ │ │ ├── application-x-java-archive.svg │ │ │ │ ├── application-x-java.svg │ │ │ │ ├── application-x-javascript.svg │ │ │ │ ├── application-x-k3b.svg │ │ │ │ ├── application-x-kcsrc.svg │ │ │ │ ├── application-x-kdenlivetitle.svg │ │ │ │ ├── application-x-kexi-connectiondata.svg │ │ │ │ ├── application-x-kexiproject-shortcut.svg │ │ │ │ ├── application-x-kexiproject-sqlite.svg │ │ │ │ ├── application-x-kexiproject-sqlite2.svg │ │ │ │ ├── application-x-kexiproject-sqlite3.svg │ │ │ │ ├── application-x-kformula.svg │ │ │ │ ├── application-x-kgetlist.svg │ │ │ │ ├── application-x-kmymoney.svg │ │ │ │ ├── application-x-kontour.svg │ │ │ │ ├── application-x-kplato.svg │ │ │ │ ├── application-x-krita.svg │ │ │ │ ├── application-x-kvtml.svg │ │ │ │ ├── application-x-kword.svg │ │ │ │ ├── application-x-lha.svg │ │ │ │ ├── application-x-lyx.svg │ │ │ │ ├── application-x-lzma-compressed-tar.svg │ │ │ │ ├── application-x-lzop.svg │ │ │ │ ├── application-x-m4.svg │ │ │ │ ├── application-x-macbinary.svg │ │ │ │ ├── application-x-marble.svg │ │ │ │ ├── application-x-mimearchive.svg │ │ │ │ ├── application-x-mplayer2.svg │ │ │ │ ├── application-x-ms-dos-executable.svg │ │ │ │ ├── application-x-ms-shortcut.svg │ │ │ │ ├── application-x-ms-wim.svg │ │ │ │ ├── application-x-mswinurl.svg │ │ │ │ ├── application-x-mswrite.svg │ │ │ │ ├── application-x-n64-rom.svg │ │ │ │ ├── application-x-nes-rom.svg │ │ │ │ ├── application-x-nintendo-ds-rom.svg │ │ │ │ ├── application-x-nzb.svg │ │ │ │ ├── application-x-object.svg │ │ │ │ ├── application-x-pak.svg │ │ │ │ ├── application-x-partial-download.svg │ │ │ │ ├── application-x-pem-key.svg │ │ │ │ ├── application-x-perl.svg │ │ │ │ ├── application-x-php.svg │ │ │ │ ├── application-x-pkcs12.svg │ │ │ │ ├── application-x-pkcs7-certificates.svg │ │ │ │ ├── application-x-plasma.svg │ │ │ │ ├── application-x-python-bytecode.svg │ │ │ │ ├── application-x-qemu-disk.svg │ │ │ │ ├── application-x-qet-element.svg │ │ │ │ ├── application-x-qet-project.svg │ │ │ │ ├── application-x-quattropro.svg │ │ │ │ ├── application-x-rar.svg │ │ │ │ ├── application-x-raw-disk-image.svg │ │ │ │ ├── application-x-rdata.svg │ │ │ │ ├── application-x-root.svg │ │ │ │ ├── application-x-rpm.svg │ │ │ │ ├── application-x-ruby.svg │ │ │ │ ├── application-x-sami.svg │ │ │ │ ├── application-x-sharedlib.svg │ │ │ │ ├── application-x-shellscript.svg │ │ │ │ ├── application-x-shockwave-flash.svg │ │ │ │ ├── application-x-siag.svg │ │ │ │ ├── application-x-sif.svg │ │ │ │ ├── application-x-skg.svg │ │ │ │ ├── application-x-skgc.svg │ │ │ │ ├── application-x-smb-server.svg │ │ │ │ ├── application-x-smb-workgroup.svg │ │ │ │ ├── application-x-source-rpm.svg │ │ │ │ ├── application-x-sqlite2.svg │ │ │ │ ├── application-x-sqlite3.svg │ │ │ │ ├── application-x-srt.svg │ │ │ │ ├── application-x-srtrip.svg │ │ │ │ ├── application-x-subrip.svg │ │ │ │ ├── application-x-tar.svg │ │ │ │ ├── application-x-tarz.svg │ │ │ │ ├── application-x-tgif.svg │ │ │ │ ├── application-x-theme.svg │ │ │ │ ├── application-x-trash.svg │ │ │ │ ├── application-x-troff-man.svg │ │ │ │ ├── application-x-tzo.svg │ │ │ │ ├── application-x-wmf.svg │ │ │ │ ├── application-x-x509-ca-cert.svg │ │ │ │ ├── application-x-x509-user-cert.svg │ │ │ │ ├── application-x-xliff.svg │ │ │ │ ├── application-x-xpinstall.svg │ │ │ │ ├── application-x-xz-compressed-tar.svg │ │ │ │ ├── application-x-xz-pkg.svg │ │ │ │ ├── application-x-zerosize.svg │ │ │ │ ├── application-x-zip-compressed-fb2.svg │ │ │ │ ├── application-x-zoo.svg │ │ │ │ ├── application-xhtml+xml.svg │ │ │ │ ├── application-xmind.svg │ │ │ │ ├── application-xml.svg │ │ │ │ ├── application-xsd.svg │ │ │ │ ├── application-xslt+xml.svg │ │ │ │ ├── application-zip.svg │ │ │ │ ├── audio-ac3.svg │ │ │ │ ├── audio-flac.svg │ │ │ │ ├── audio-midi.svg │ │ │ │ ├── audio-mp2.svg │ │ │ │ ├── audio-mp3.svg │ │ │ │ ├── audio-mp4.svg │ │ │ │ ├── audio-mpeg.svg │ │ │ │ ├── audio-prs.sid.svg │ │ │ │ ├── audio-vn.rn-realmedia.svg │ │ │ │ ├── audio-vnd.rn-realvideo.svg │ │ │ │ ├── audio-x-adpcm.svg │ │ │ │ ├── audio-x-aiff.svg │ │ │ │ ├── audio-x-flac+ogg.svg │ │ │ │ ├── audio-x-flac.svg │ │ │ │ ├── audio-x-generic.svg │ │ │ │ ├── audio-x-monkey.svg │ │ │ │ ├── audio-x-mp2.svg │ │ │ │ ├── audio-x-mpeg.svg │ │ │ │ ├── audio-x-speex+ogg.svg │ │ │ │ ├── audio-x-wav.svg │ │ │ │ ├── audiobook.svg │ │ │ │ ├── encrypted.svg │ │ │ │ ├── font-otf.svg │ │ │ │ ├── font-ttf.svg │ │ │ │ ├── fonts-package.svg │ │ │ │ ├── image-bmp.svg │ │ │ │ ├── image-gif.svg │ │ │ │ ├── image-ico.svg │ │ │ │ ├── image-jpeg.svg │ │ │ │ ├── image-jpeg2000.svg │ │ │ │ ├── image-png.svg │ │ │ │ ├── image-svg+xml-compressed.svg │ │ │ │ ├── image-svg+xml.svg │ │ │ │ ├── image-tiff.svg │ │ │ │ ├── image-vnd.dgn.svg │ │ │ │ ├── image-vnd.djvu.svg │ │ │ │ ├── image-vnd.dwg.svg │ │ │ │ ├── image-vnd.microsoft.icon.svg │ │ │ │ ├── image-x-adobe-dng.svg │ │ │ │ ├── image-x-compressed-xcf.svg │ │ │ │ ├── image-x-emf.svg │ │ │ │ ├── image-x-eps.svg │ │ │ │ ├── image-x-generic.svg │ │ │ │ ├── image-x-ico.svg │ │ │ │ ├── image-x-icon.svg │ │ │ │ ├── image-x-krita.svg │ │ │ │ ├── image-x-portable-bitmap.svg │ │ │ │ ├── image-x-psd.svg │ │ │ │ ├── image-x-psdimage-x-psd.svg │ │ │ │ ├── image-x-svg+xml.svg │ │ │ │ ├── image-x-tga.svg │ │ │ │ ├── image-x-vnd.trolltech.qpicture.svg │ │ │ │ ├── image-x-win-bitmap.svg │ │ │ │ ├── image-x-win-bmp.svg │ │ │ │ ├── image-x-wmf.svg │ │ │ │ ├── image-x-xcf.svg │ │ │ │ ├── image-x-xfig.svg │ │ │ │ ├── inode-directory.svg │ │ │ │ ├── libreoffice-database.svg │ │ │ │ ├── libreoffice-drawing-template.svg │ │ │ │ ├── libreoffice-drawing.svg │ │ │ │ ├── libreoffice-extension.svg │ │ │ │ ├── libreoffice-formula.svg │ │ │ │ ├── libreoffice-master-document.svg │ │ │ │ ├── libreoffice-oasis-database.svg │ │ │ │ ├── libreoffice-oasis-drawing-template.svg │ │ │ │ ├── libreoffice-oasis-drawing.svg │ │ │ │ ├── libreoffice-oasis-formula.svg │ │ │ │ ├── libreoffice-oasis-master-document.svg │ │ │ │ ├── libreoffice-oasis-presentation-template.svg │ │ │ │ ├── libreoffice-oasis-presentation.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-template.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet.svg │ │ │ │ ├── libreoffice-oasis-text-template.svg │ │ │ │ ├── libreoffice-oasis-text.svg │ │ │ │ ├── libreoffice-oasis-web-template.svg │ │ │ │ ├── libreoffice-presentation-template.svg │ │ │ │ ├── libreoffice-presentation.svg │ │ │ │ ├── libreoffice-spreadsheet-template.svg │ │ │ │ ├── libreoffice-spreadsheet.svg │ │ │ │ ├── libreoffice-text-template.svg │ │ │ │ ├── libreoffice-text.svg │ │ │ │ ├── message-news.svg │ │ │ │ ├── message-partial.svg │ │ │ │ ├── message-rfc822.svg │ │ │ │ ├── message-x-gnu-rmail.svg │ │ │ │ ├── message.svg │ │ │ │ ├── none.svg │ │ │ │ ├── odf.svg │ │ │ │ ├── package-x-generic.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── preferences-desktop-cryptography.svg │ │ │ │ ├── text-calendar.svg │ │ │ │ ├── text-csharp.svg │ │ │ │ ├── text-css.svg │ │ │ │ ├── text-csv.svg │ │ │ │ ├── text-directory.svg │ │ │ │ ├── text-dockerfile.svg │ │ │ │ ├── text-enriched.svg │ │ │ │ ├── text-html.svg │ │ │ │ ├── text-markdown.svg │ │ │ │ ├── text-plain.svg │ │ │ │ ├── text-rdf+xml.svg │ │ │ │ ├── text-rdf.svg │ │ │ │ ├── text-rtf.svg │ │ │ │ ├── text-rust.svg │ │ │ │ ├── text-sgml.svg │ │ │ │ ├── text-troff.svg │ │ │ │ ├── text-vcalendar.svg │ │ │ │ ├── text-vnd.abc.svg │ │ │ │ ├── text-vnd.kde.kcrash-report.svg │ │ │ │ ├── text-vnd.trolltech.linguist.svg │ │ │ │ ├── text-vnd.wap.wml.svg │ │ │ │ ├── text-vtt.svg │ │ │ │ ├── text-wiki.svg │ │ │ │ ├── text-x-adasrc.svg │ │ │ │ ├── text-x-apport.svg │ │ │ │ ├── text-x-authors.svg │ │ │ │ ├── text-x-bibtex.svg │ │ │ │ ├── text-x-c++hdr.svg │ │ │ │ ├── text-x-c++src.svg │ │ │ │ ├── text-x-changelog.svg │ │ │ │ ├── text-x-chdr.svg │ │ │ │ ├── text-x-cmake.svg │ │ │ │ ├── text-x-copying.svg │ │ │ │ ├── text-x-credits.svg │ │ │ │ ├── text-x-csharp.svg │ │ │ │ ├── text-x-csrc.svg │ │ │ │ ├── text-x-dtd.svg │ │ │ │ ├── text-x-generic.svapplication-x-awk.svg │ │ │ │ ├── text-x-generic.svg │ │ │ │ ├── text-x-gettext-translation.svg │ │ │ │ ├── text-x-go.svg │ │ │ │ ├── text-x-haskell.svg │ │ │ │ ├── text-x-hex.svg │ │ │ │ ├── text-x-install.svg │ │ │ │ ├── text-x-java-source.svg │ │ │ │ ├── text-x-java.svg │ │ │ │ ├── text-x-javascript.svg │ │ │ │ ├── text-x-katefilelist.svg │ │ │ │ ├── text-x-kotlin.svg │ │ │ │ ├── text-x-ldif.svg │ │ │ │ ├── text-x-lilypond.svg │ │ │ │ ├── text-x-log.svg │ │ │ │ ├── text-x-lua.svg │ │ │ │ ├── text-x-makefile.svg │ │ │ │ ├── text-x-markdown.svg │ │ │ │ ├── text-x-microdvd.svg │ │ │ │ ├── text-x-mpsub.svg │ │ │ │ ├── text-x-nfo.svg │ │ │ │ ├── text-x-objchdr.svg │ │ │ │ ├── text-x-objcsrc.svg │ │ │ │ ├── text-x-opml+xml.svg │ │ │ │ ├── text-x-opml.svg │ │ │ │ ├── text-x-pascal.svg │ │ │ │ ├── text-x-patch.svg │ │ │ │ ├── text-x-plain.svg │ │ │ │ ├── text-x-po.svg │ │ │ │ ├── text-x-python.svg │ │ │ │ ├── text-x-python3.svg │ │ │ │ ├── text-x-qml.svg │ │ │ │ ├── text-x-r.svg │ │ │ │ ├── text-x-readme.svg │ │ │ │ ├── text-x-rpm-spec.svg │ │ │ │ ├── text-x-rust.svg │ │ │ │ ├── text-x-scala.svg │ │ │ │ ├── text-x-script.svg │ │ │ │ ├── text-x-sql.svg │ │ │ │ ├── text-x-ssa.svg │ │ │ │ ├── text-x-subviewer.svg │ │ │ │ ├── text-x-tcl.svg │ │ │ │ ├── text-x-tex.svg │ │ │ │ ├── text-x-texinfo.svg │ │ │ │ ├── text-x-vcard.svg │ │ │ │ ├── text-x-xslfo.svg │ │ │ │ ├── text-xmcd.svg │ │ │ │ ├── text-xml.svg │ │ │ │ ├── unknown.svg │ │ │ │ ├── uri-mms.svg │ │ │ │ ├── uri-mmst.svg │ │ │ │ ├── uri-pnm.svg │ │ │ │ ├── uri-rtspt.svg │ │ │ │ ├── uri-rtspu.svg │ │ │ │ ├── video-mlt-playlist.svg │ │ │ │ ├── video-mp2t.svg │ │ │ │ ├── video-mp4.svg │ │ │ │ ├── video-vivo.svg │ │ │ │ ├── video-vnd.rn-realvideo.svg │ │ │ │ ├── video-wavelet.svg │ │ │ │ ├── video-webm.svg │ │ │ │ ├── video-x-anim.svg │ │ │ │ ├── video-x-flic.svg │ │ │ │ ├── video-x-flv.svg │ │ │ │ ├── video-x-generic.svg │ │ │ │ ├── video-x-google-vlc-plugin.svg │ │ │ │ ├── video-x-javafx.svg │ │ │ │ ├── video-x-matroska.svg │ │ │ │ ├── video-x-mng.svg │ │ │ │ ├── video-x-ms-wmp.svg │ │ │ │ ├── video-x-ms-wmv.svg │ │ │ │ ├── video-x-msvideo.svg │ │ │ │ ├── video-x-ogm+ogg.svg │ │ │ │ ├── video-x-theora+ogg.svg │ │ │ │ ├── video-x-wmv.svg │ │ │ │ ├── viewbib.svg │ │ │ │ ├── viewdvi.svg │ │ │ │ ├── viewhtml.svg │ │ │ │ ├── viewpdf.svg │ │ │ │ ├── viewps.svg │ │ │ │ ├── virtualbox-hdd.svg │ │ │ │ ├── virtualbox-ova.svg │ │ │ │ ├── virtualbox-ovf.svg │ │ │ │ ├── virtualbox-vbox-extpack.svg │ │ │ │ ├── virtualbox-vbox.svg │ │ │ │ ├── virtualbox-vdi.svg │ │ │ │ ├── virtualbox-vhd.svg │ │ │ │ ├── virtualbox-vmdk.svg │ │ │ │ ├── vnd.ms-publisher.svg │ │ │ │ ├── x-kde-nsplugin-generated.svg │ │ │ │ ├── x-mail-distribution-list.svg │ │ │ │ ├── x-media-podcast.svg │ │ │ │ ├── x-office-address-book.svg │ │ │ │ ├── x-office-calendar.svg │ │ │ │ ├── x-office-contact.svg │ │ │ │ ├── x-office-document.svg │ │ │ │ ├── x-office-drawing.svg │ │ │ │ ├── x-office-presentation.svg │ │ │ │ └── x-office-spreadsheet.svg │ │ │ └── 64 │ │ │ │ ├── android-package-archive.svg │ │ │ │ ├── application-atom+xml.svg │ │ │ │ ├── application-certificate.svg │ │ │ │ ├── application-dicom.svg │ │ │ │ ├── application-epub+zip.svg │ │ │ │ ├── application-gzip.svg │ │ │ │ ├── application-illustrator.svg │ │ │ │ ├── application-javascript.svg │ │ │ │ ├── application-json.svg │ │ │ │ ├── application-mac-binhex40.svg │ │ │ │ ├── application-mathml+xml.svg │ │ │ │ ├── application-msonenote.svg │ │ │ │ ├── application-msoutlook.svg │ │ │ │ ├── application-msword-template.svg │ │ │ │ ├── application-msword.svg │ │ │ │ ├── application-octet-stream.svg │ │ │ │ ├── application-ogg.svg │ │ │ │ ├── application-pdf.svg │ │ │ │ ├── application-pgp-encrypted.svg │ │ │ │ ├── application-pgp-keys.svg │ │ │ │ ├── application-pgp-signature.svg │ │ │ │ ├── application-pgp.svg │ │ │ │ ├── application-pkcs12.svg │ │ │ │ ├── application-pkcs7-mime.svg │ │ │ │ ├── application-pkcs7-signature.svg │ │ │ │ ├── application-pkix-cerl.svg │ │ │ │ ├── application-pkix-cert.svg │ │ │ │ ├── application-postscript.svg │ │ │ │ ├── application-relaxng.svg │ │ │ │ ├── application-rss+xml.svg │ │ │ │ ├── application-rtf.svg │ │ │ │ ├── application-sql.svg │ │ │ │ ├── application-sxw.svg │ │ │ │ ├── application-vnd.android.package-archive.svg │ │ │ │ ├── application-vnd.appimage.svg │ │ │ │ ├── application-vnd.apple.pkpass.svg │ │ │ │ ├── application-vnd.debian.binary-package.svg │ │ │ │ ├── application-vnd.flatpak.ref.svg │ │ │ │ ├── application-vnd.google-earth.kml+xml.svg │ │ │ │ ├── application-vnd.iccprofile.svg │ │ │ │ ├── application-vnd.ms-access.svg │ │ │ │ ├── application-vnd.ms-excel.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.svg │ │ │ │ ├── application-vnd.ms-excel.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-infopath.svg │ │ │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.svg │ │ │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-publisher.svg │ │ │ │ ├── application-vnd.ms-word.document.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-word.svg │ │ │ │ ├── application-vnd.ms-word.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.nintendo.snes.rom.svg │ │ │ │ ├── application-vnd.nokia.xml.qt.resource.svg │ │ │ │ ├── application-vnd.oasis.opendocument.chart.svg │ │ │ │ ├── application-vnd.oasis.opendocument.database.svg │ │ │ │ ├── application-vnd.oasis.opendocument.draw.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula.svg │ │ │ │ ├── application-vnd.oasis.opendocument.graphics.svg │ │ │ │ ├── application-vnd.oasis.opendocument.image.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-master.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text.svg │ │ │ │ ├── application-vnd.oasis.opendocument.web-template.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg │ │ │ │ ├── application-vnd.rar.svg │ │ │ │ ├── application-vnd.rn-realmedia.svg │ │ │ │ ├── application-vnd.scribus.svg │ │ │ │ ├── application-vnd.sqlite3.svg │ │ │ │ ├── application-vnd.squashfs.svg │ │ │ │ ├── application-vnd.stardivision.calc.svg │ │ │ │ ├── application-vnd.stardivision.draw.svg │ │ │ │ ├── application-vnd.stardivision.mail.svg │ │ │ │ ├── application-vnd.stardivision.math.svg │ │ │ │ ├── application-vnd.sun.xml.calc.svg │ │ │ │ ├── application-vnd.sun.xml.calc.template.svg │ │ │ │ ├── application-vnd.sun.xml.draw.svg │ │ │ │ ├── application-vnd.sun.xml.draw.template.svg │ │ │ │ ├── application-vnd.sun.xml.impress.svg │ │ │ │ ├── application-vnd.sun.xml.impress.template.svg │ │ │ │ ├── application-vnd.sun.xml.math.svg │ │ │ │ ├── application-vnd.sun.xml.writer.global.svg │ │ │ │ ├── application-vnd.sun.xml.writer.svg │ │ │ │ ├── application-vnd.sun.xml.writer.template.svg │ │ │ │ ├── application-vnd.visio.svg │ │ │ │ ├── application-vnd.wordperfect.svg │ │ │ │ ├── application-wps-office.doc.svg │ │ │ │ ├── application-wps-office.docx.svg │ │ │ │ ├── application-wps-office.dot.svg │ │ │ │ ├── application-wps-office.dotx.svg │ │ │ │ ├── application-wps-office.pot.svg │ │ │ │ ├── application-wps-office.potx.svg │ │ │ │ ├── application-wps-office.ppt.svg │ │ │ │ ├── application-wps-office.pptx.svg │ │ │ │ ├── application-wps-office.xls.svg │ │ │ │ ├── application-wps-office.xlsx.svg │ │ │ │ ├── application-wps-office.xlt.svg │ │ │ │ ├── application-wps-office.xltx.svg │ │ │ │ ├── application-x-7z-compressed.svg │ │ │ │ ├── application-x-abiword.svg │ │ │ │ ├── application-x-ace.svg │ │ │ │ ├── application-x-apple-diskimage.svg │ │ │ │ ├── application-x-applix-spreadsheet.svg │ │ │ │ ├── application-x-applix-word.svg │ │ │ │ ├── application-x-ar.svg │ │ │ │ ├── application-x-arc.svg │ │ │ │ ├── application-x-archive.svg │ │ │ │ ├── application-x-arj.svg │ │ │ │ ├── application-x-audacity-project.svg │ │ │ │ ├── application-x-awk.svg │ │ │ │ ├── application-x-bittorrent.svg │ │ │ │ ├── application-x-blender.svg │ │ │ │ ├── application-x-bzdvi.svg │ │ │ │ ├── application-x-bzip-compressed-tar.svg │ │ │ │ ├── application-x-bzip.svg │ │ │ │ ├── application-x-cd-image.svg │ │ │ │ ├── application-x-cda.svg │ │ │ │ ├── application-x-chm.svg │ │ │ │ ├── application-x-compress.svg │ │ │ │ ├── application-x-compressed-tar.svg │ │ │ │ ├── application-x-core.svg │ │ │ │ ├── application-x-cpio.svg │ │ │ │ ├── application-x-cue.svg │ │ │ │ ├── application-x-deb.svg │ │ │ │ ├── application-x-designer.svg │ │ │ │ ├── application-x-desktop.svg │ │ │ │ ├── application-x-egon.svg │ │ │ │ ├── application-x-executable-script.svg │ │ │ │ ├── application-x-executable.svg │ │ │ │ ├── application-x-fictionbook+xml.svg │ │ │ │ ├── application-x-flash-video.svg │ │ │ │ ├── application-x-font-afm.svg │ │ │ │ ├── application-x-font-bdf.svg │ │ │ │ ├── application-x-font-otf.svg │ │ │ │ ├── application-x-font-pcf.svg │ │ │ │ ├── application-x-font-snf.svg │ │ │ │ ├── application-x-font-ttf.svg │ │ │ │ ├── application-x-font-ttx.svg │ │ │ │ ├── application-x-font-type1.svg │ │ │ │ ├── application-x-gameboy-rom.svg │ │ │ │ ├── application-x-gamecube-rom.svg │ │ │ │ ├── application-x-gba-rom.svg │ │ │ │ ├── application-x-gdscript.svg │ │ │ │ ├── application-x-gettext-translation.svg │ │ │ │ ├── application-x-gnumeric.svg │ │ │ │ ├── application-x-godot-project.svg │ │ │ │ ├── application-x-godot-resource.svg │ │ │ │ ├── application-x-godot-scene.svg │ │ │ │ ├── application-x-godot-shader.svg │ │ │ │ ├── application-x-gzdvi.svg │ │ │ │ ├── application-x-gzip.svg │ │ │ │ ├── application-x-gzpostscript.svg │ │ │ │ ├── application-x-iso.svg │ │ │ │ ├── application-x-iso9660-appimage.svg │ │ │ │ ├── application-x-it87.svg │ │ │ │ ├── application-x-jar.svg │ │ │ │ ├── application-x-java-applet.svg │ │ │ │ ├── application-x-java-archive.svg │ │ │ │ ├── application-x-java.svg │ │ │ │ ├── application-x-javascript.svg │ │ │ │ ├── application-x-k3b.svg │ │ │ │ ├── application-x-kcsrc.svg │ │ │ │ ├── application-x-kdenlivetitle.svg │ │ │ │ ├── application-x-kexi-connectiondata.svg │ │ │ │ ├── application-x-kexiproject-shortcut.svg │ │ │ │ ├── application-x-kexiproject-sqlite.svg │ │ │ │ ├── application-x-kexiproject-sqlite2.svg │ │ │ │ ├── application-x-kexiproject-sqlite3.svg │ │ │ │ ├── application-x-kformula.svg │ │ │ │ ├── application-x-kgetlist.svg │ │ │ │ ├── application-x-kmymoney.svg │ │ │ │ ├── application-x-kontour.svg │ │ │ │ ├── application-x-kplato.svg │ │ │ │ ├── application-x-krita.svg │ │ │ │ ├── application-x-kvtml.svg │ │ │ │ ├── application-x-kword.svg │ │ │ │ ├── application-x-labplot2.svg │ │ │ │ ├── application-x-lha.svg │ │ │ │ ├── application-x-lyx.svg │ │ │ │ ├── application-x-lzma-compressed-tar.svg │ │ │ │ ├── application-x-lzop.svg │ │ │ │ ├── application-x-m4.svg │ │ │ │ ├── application-x-macbinary.svg │ │ │ │ ├── application-x-marble.svg │ │ │ │ ├── application-x-mimearchive.svg │ │ │ │ ├── application-x-mplayer2.svg │ │ │ │ ├── application-x-ms-dos-executable.svg │ │ │ │ ├── application-x-ms-shortcut.svg │ │ │ │ ├── application-x-ms-wim.svg │ │ │ │ ├── application-x-mswinurl.svg │ │ │ │ ├── application-x-mswrite.svg │ │ │ │ ├── application-x-n64-rom.svg │ │ │ │ ├── application-x-nes-rom.svg │ │ │ │ ├── application-x-nintendo-ds-rom.svg │ │ │ │ ├── application-x-nzb.svg │ │ │ │ ├── application-x-object.svg │ │ │ │ ├── application-x-pak.svg │ │ │ │ ├── application-x-partial-download.svg │ │ │ │ ├── application-x-pem-key.svg │ │ │ │ ├── application-x-perl.svg │ │ │ │ ├── application-x-php.svg │ │ │ │ ├── application-x-pkcs12.svg │ │ │ │ ├── application-x-pkcs7-certificates.svg │ │ │ │ ├── application-x-plasma.svg │ │ │ │ ├── application-x-python-bytecode.svg │ │ │ │ ├── application-x-qemu-disk.svg │ │ │ │ ├── application-x-qet-element.svg │ │ │ │ ├── application-x-qet-project.svg │ │ │ │ ├── application-x-quattropro.svg │ │ │ │ ├── application-x-rar.svg │ │ │ │ ├── application-x-raw-disk-image.svg │ │ │ │ ├── application-x-rdata.svg │ │ │ │ ├── application-x-root.svg │ │ │ │ ├── application-x-rpm.svg │ │ │ │ ├── application-x-ruby.svg │ │ │ │ ├── application-x-sami.svg │ │ │ │ ├── application-x-sharedlib.svg │ │ │ │ ├── application-x-shellscript.svg │ │ │ │ ├── application-x-shockwave-flash.svg │ │ │ │ ├── application-x-siag.svg │ │ │ │ ├── application-x-sif.svg │ │ │ │ ├── application-x-skg.svg │ │ │ │ ├── application-x-skgc.svg │ │ │ │ ├── application-x-smb-server.svg │ │ │ │ ├── application-x-smb-workgroup.svg │ │ │ │ ├── application-x-source-rpm.svg │ │ │ │ ├── application-x-sqlite2.svg │ │ │ │ ├── application-x-sqlite3.svg │ │ │ │ ├── application-x-srt.svg │ │ │ │ ├── application-x-srtrip.svg │ │ │ │ ├── application-x-subrip.svg │ │ │ │ ├── application-x-tar.svg │ │ │ │ ├── application-x-tarz.svg │ │ │ │ ├── application-x-tgif.svg │ │ │ │ ├── application-x-theme.svg │ │ │ │ ├── application-x-trash.svg │ │ │ │ ├── application-x-troff-man.svg │ │ │ │ ├── application-x-tzo.svg │ │ │ │ ├── application-x-wmf.svg │ │ │ │ ├── application-x-x509-ca-cert.svg │ │ │ │ ├── application-x-x509-user-cert.svg │ │ │ │ ├── application-x-xliff.svg │ │ │ │ ├── application-x-xpinstall.svg │ │ │ │ ├── application-x-xz-compressed-tar.svg │ │ │ │ ├── application-x-xz-pkg.svg │ │ │ │ ├── application-x-zerosize.svg │ │ │ │ ├── application-x-zip-compressed-fb2.svg │ │ │ │ ├── application-x-zoo.svg │ │ │ │ ├── application-xhtml+xml.svg │ │ │ │ ├── application-xmind.svg │ │ │ │ ├── application-xml.svg │ │ │ │ ├── application-xsd.svg │ │ │ │ ├── application-xslt+xml.svg │ │ │ │ ├── application-zip.svg │ │ │ │ ├── audio-ac3.svg │ │ │ │ ├── audio-flac.svg │ │ │ │ ├── audio-midi.svg │ │ │ │ ├── audio-mp2.svg │ │ │ │ ├── audio-mp3.svg │ │ │ │ ├── audio-mp4.svg │ │ │ │ ├── audio-mpeg.svg │ │ │ │ ├── audio-prs.sid.svg │ │ │ │ ├── audio-vn.rn-realmedia.svg │ │ │ │ ├── audio-vnd.rn-realvideo.svg │ │ │ │ ├── audio-x-adpcm.svg │ │ │ │ ├── audio-x-aiff.svg │ │ │ │ ├── audio-x-flac+ogg.svg │ │ │ │ ├── audio-x-flac.svg │ │ │ │ ├── audio-x-generic.svg │ │ │ │ ├── audio-x-monkey.svg │ │ │ │ ├── audio-x-mp2.svg │ │ │ │ ├── audio-x-mpeg.svg │ │ │ │ ├── audio-x-speex+ogg.svg │ │ │ │ ├── audio-x-wav.svg │ │ │ │ ├── audiobook.svg │ │ │ │ ├── encrypted.svg │ │ │ │ ├── font-otf.svg │ │ │ │ ├── font-ttf.svg │ │ │ │ ├── fonts-package.svg │ │ │ │ ├── image-bmp.svg │ │ │ │ ├── image-gif.svg │ │ │ │ ├── image-ico.svg │ │ │ │ ├── image-jpeg.svg │ │ │ │ ├── image-jpeg2000.svg │ │ │ │ ├── image-png.svg │ │ │ │ ├── image-svg+xml-compressed.svg │ │ │ │ ├── image-svg+xml.svg │ │ │ │ ├── image-tiff.svg │ │ │ │ ├── image-vnd.dgn.svg │ │ │ │ ├── image-vnd.djvu.svg │ │ │ │ ├── image-vnd.dwg.svg │ │ │ │ ├── image-vnd.microsoft.icon.svg │ │ │ │ ├── image-x-adobe-dng.svg │ │ │ │ ├── image-x-compressed-xcf.svg │ │ │ │ ├── image-x-emf.svg │ │ │ │ ├── image-x-eps.svg │ │ │ │ ├── image-x-generic.svg │ │ │ │ ├── image-x-ico.svg │ │ │ │ ├── image-x-icon.svg │ │ │ │ ├── image-x-krita.svg │ │ │ │ ├── image-x-portable-bitmap.svg │ │ │ │ ├── image-x-psd.svg │ │ │ │ ├── image-x-psdimage-x-psd.svg │ │ │ │ ├── image-x-svg+xml.svg │ │ │ │ ├── image-x-tga.svg │ │ │ │ ├── image-x-vnd.trolltech.qpicture.svg │ │ │ │ ├── image-x-win-bitmap.svg │ │ │ │ ├── image-x-win-bmp.svg │ │ │ │ ├── image-x-wmf.svg │ │ │ │ ├── image-x-xcf.svg │ │ │ │ ├── image-x-xfig.svg │ │ │ │ ├── inode-directory.svg │ │ │ │ ├── libreoffice-database.svg │ │ │ │ ├── libreoffice-drawing-template.svg │ │ │ │ ├── libreoffice-drawing.svg │ │ │ │ ├── libreoffice-extension.svg │ │ │ │ ├── libreoffice-formula.svg │ │ │ │ ├── libreoffice-master-document.svg │ │ │ │ ├── libreoffice-oasis-database.svg │ │ │ │ ├── libreoffice-oasis-drawing-template.svg │ │ │ │ ├── libreoffice-oasis-drawing.svg │ │ │ │ ├── libreoffice-oasis-formula.svg │ │ │ │ ├── libreoffice-oasis-master-document.svg │ │ │ │ ├── libreoffice-oasis-presentation-template.svg │ │ │ │ ├── libreoffice-oasis-presentation.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-template.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet.svg │ │ │ │ ├── libreoffice-oasis-text-template.svg │ │ │ │ ├── libreoffice-oasis-text.svg │ │ │ │ ├── libreoffice-oasis-web-template.svg │ │ │ │ ├── libreoffice-presentation-template.svg │ │ │ │ ├── libreoffice-presentation.svg │ │ │ │ ├── libreoffice-spreadsheet-template.svg │ │ │ │ ├── libreoffice-spreadsheet.svg │ │ │ │ ├── libreoffice-text-template.svg │ │ │ │ ├── libreoffice-text.svg │ │ │ │ ├── message-news.svg │ │ │ │ ├── message-partial.svg │ │ │ │ ├── message-rfc822.svg │ │ │ │ ├── message-x-gnu-rmail.svg │ │ │ │ ├── message.svg │ │ │ │ ├── none.svg │ │ │ │ ├── odf.svg │ │ │ │ ├── package-x-generic.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── text-calendar.svg │ │ │ │ ├── text-csharp.svg │ │ │ │ ├── text-css.svg │ │ │ │ ├── text-csv.svg │ │ │ │ ├── text-directory.svg │ │ │ │ ├── text-dockerfile.svg │ │ │ │ ├── text-enriched.svg │ │ │ │ ├── text-html.svg │ │ │ │ ├── text-markdown.svg │ │ │ │ ├── text-plain.svg │ │ │ │ ├── text-rdf+xml.svg │ │ │ │ ├── text-rdf.svg │ │ │ │ ├── text-rtf.svg │ │ │ │ ├── text-rust.svg │ │ │ │ ├── text-sgml.svg │ │ │ │ ├── text-troff.svg │ │ │ │ ├── text-vcalendar.svg │ │ │ │ ├── text-vnd.abc.svg │ │ │ │ ├── text-vnd.kde.kcrash-report.svg │ │ │ │ ├── text-vnd.trolltech.linguist.svg │ │ │ │ ├── text-vnd.wap.wml.svg │ │ │ │ ├── text-vtt.svg │ │ │ │ ├── text-wiki.svg │ │ │ │ ├── text-x-adasrc.svg │ │ │ │ ├── text-x-apport.svg │ │ │ │ ├── text-x-authors.svg │ │ │ │ ├── text-x-bibtex.svg │ │ │ │ ├── text-x-c++hdr.svg │ │ │ │ ├── text-x-c++src.svg │ │ │ │ ├── text-x-changelog.svg │ │ │ │ ├── text-x-chdr.svg │ │ │ │ ├── text-x-cmake.svg │ │ │ │ ├── text-x-copying.svg │ │ │ │ ├── text-x-credits.svg │ │ │ │ ├── text-x-csharp.svg │ │ │ │ ├── text-x-csrc.svg │ │ │ │ ├── text-x-dtd.svg │ │ │ │ ├── text-x-generic.svapplication-x-awk.svg │ │ │ │ ├── text-x-generic.svg │ │ │ │ ├── text-x-gettext-translation.svg │ │ │ │ ├── text-x-go.svg │ │ │ │ ├── text-x-haskell.svg │ │ │ │ ├── text-x-hex.svg │ │ │ │ ├── text-x-install.svg │ │ │ │ ├── text-x-java-source.svg │ │ │ │ ├── text-x-java.svg │ │ │ │ ├── text-x-javascript.svg │ │ │ │ ├── text-x-katefilelist.svg │ │ │ │ ├── text-x-kotlin.svg │ │ │ │ ├── text-x-ldif.svg │ │ │ │ ├── text-x-lilypond.svg │ │ │ │ ├── text-x-log.svg │ │ │ │ ├── text-x-lua.svg │ │ │ │ ├── text-x-makefile.svg │ │ │ │ ├── text-x-markdown.svg │ │ │ │ ├── text-x-microdvd.svg │ │ │ │ ├── text-x-mpsub.svg │ │ │ │ ├── text-x-nfo.svg │ │ │ │ ├── text-x-objchdr.svg │ │ │ │ ├── text-x-objcsrc.svg │ │ │ │ ├── text-x-opml+xml.svg │ │ │ │ ├── text-x-opml.svg │ │ │ │ ├── text-x-pascal.svg │ │ │ │ ├── text-x-patch.svg │ │ │ │ ├── text-x-plain.svg │ │ │ │ ├── text-x-po.svg │ │ │ │ ├── text-x-python.svg │ │ │ │ ├── text-x-python3.svg │ │ │ │ ├── text-x-qml.svg │ │ │ │ ├── text-x-r.svg │ │ │ │ ├── text-x-readme.svg │ │ │ │ ├── text-x-rpm-spec.svg │ │ │ │ ├── text-x-rust.svg │ │ │ │ ├── text-x-sass.svg │ │ │ │ ├── text-x-scala.svg │ │ │ │ ├── text-x-script.svg │ │ │ │ ├── text-x-scss.svg │ │ │ │ ├── text-x-sql.svg │ │ │ │ ├── text-x-ssa.svg │ │ │ │ ├── text-x-subviewer.svg │ │ │ │ ├── text-x-tcl.svg │ │ │ │ ├── text-x-tex.svg │ │ │ │ ├── text-x-texinfo.svg │ │ │ │ ├── text-x-vcard.svg │ │ │ │ ├── text-x-xslfo.svg │ │ │ │ ├── text-xmcd.svg │ │ │ │ ├── text-xml.svg │ │ │ │ ├── unknown.svg │ │ │ │ ├── uri-mms.svg │ │ │ │ ├── uri-mmst.svg │ │ │ │ ├── uri-pnm.svg │ │ │ │ ├── uri-rtspt.svg │ │ │ │ ├── uri-rtspu.svg │ │ │ │ ├── video-mlt-playlist.svg │ │ │ │ ├── video-mp2t.svg │ │ │ │ ├── video-mp4.svg │ │ │ │ ├── video-vivo.svg │ │ │ │ ├── video-vnd.rn-realvideo.svg │ │ │ │ ├── video-wavelet.svg │ │ │ │ ├── video-webm.svg │ │ │ │ ├── video-x-anim.svg │ │ │ │ ├── video-x-flic.svg │ │ │ │ ├── video-x-flv.svg │ │ │ │ ├── video-x-generic.svg │ │ │ │ ├── video-x-google-vlc-plugin.svg │ │ │ │ ├── video-x-javafx.svg │ │ │ │ ├── video-x-matroska.svg │ │ │ │ ├── video-x-mng.svg │ │ │ │ ├── video-x-ms-wmp.svg │ │ │ │ ├── video-x-ms-wmv.svg │ │ │ │ ├── video-x-msvideo.svg │ │ │ │ ├── video-x-ogm+ogg.svg │ │ │ │ ├── video-x-theora+ogg.svg │ │ │ │ ├── video-x-wmv.svg │ │ │ │ ├── viewbib.svg │ │ │ │ ├── viewdvi.svg │ │ │ │ ├── viewhtml.svg │ │ │ │ ├── viewpdf.svg │ │ │ │ ├── viewps.svg │ │ │ │ ├── virtualbox-hdd.svg │ │ │ │ ├── virtualbox-ova.svg │ │ │ │ ├── virtualbox-ovf.svg │ │ │ │ ├── virtualbox-vbox-extpack.svg │ │ │ │ ├── virtualbox-vbox.svg │ │ │ │ ├── virtualbox-vdi.svg │ │ │ │ ├── virtualbox-vhd.svg │ │ │ │ ├── virtualbox-vmdk.svg │ │ │ │ ├── vnd.ms-publisher.svg │ │ │ │ ├── x-kde-nsplugin-generated.svg │ │ │ │ ├── x-mail-distribution-list.svg │ │ │ │ ├── x-media-podcast.svg │ │ │ │ ├── x-office-address-book.svg │ │ │ │ ├── x-office-calendar.svg │ │ │ │ ├── x-office-contact.svg │ │ │ │ ├── x-office-document.svg │ │ │ │ ├── x-office-drawing.svg │ │ │ │ ├── x-office-presentation.svg │ │ │ │ └── x-office-spreadsheet.svg │ │ ├── places │ │ │ ├── 22 │ │ │ │ ├── certificate-server.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── document-multiple.svg │ │ │ │ ├── favorites.svg │ │ │ │ ├── folder-activities.svg │ │ │ │ ├── folder-add.svg │ │ │ │ ├── folder-android.svg │ │ │ │ ├── folder-appimage.svg │ │ │ │ ├── folder-black.svg │ │ │ │ ├── folder-blender.svg │ │ │ │ ├── folder-blue.svg │ │ │ │ ├── folder-bookmark.svg │ │ │ │ ├── folder-brown.svg │ │ │ │ ├── folder-build.svg │ │ │ │ ├── folder-calculate.svg │ │ │ │ ├── folder-chart.svg │ │ │ │ ├── folder-cloud.svg │ │ │ │ ├── folder-crash.svg │ │ │ │ ├── folder-cyan.svg │ │ │ │ ├── folder-database.svg │ │ │ │ ├── folder-deb.svg │ │ │ │ ├── folder-design.svg │ │ │ │ ├── folder-desktop.svg │ │ │ │ ├── folder-development.svg │ │ │ │ ├── folder-docker.svg │ │ │ │ ├── folder-documents.svg │ │ │ │ ├── folder-download.svg │ │ │ │ ├── folder-downloads.svg │ │ │ │ ├── folder-drawing.svg │ │ │ │ ├── folder-dropbox.svg │ │ │ │ ├── folder-extension.svg │ │ │ │ ├── folder-favorites.svg │ │ │ │ ├── folder-flatpak.svg │ │ │ │ ├── folder-games.svg │ │ │ │ ├── folder-gdrive.svg │ │ │ │ ├── folder-git.svg │ │ │ │ ├── folder-godot.svg │ │ │ │ ├── folder-green.svg │ │ │ │ ├── folder-grey.svg │ │ │ │ ├── folder-html.svg │ │ │ │ ├── folder-image-people.svg │ │ │ │ ├── folder-image.svg │ │ │ │ ├── folder-images.svg │ │ │ │ ├── folder-important.svg │ │ │ │ ├── folder-java.svg │ │ │ │ ├── folder-language.svg │ │ │ │ ├── folder-locked.svg │ │ │ │ ├── folder-log.svg │ │ │ │ ├── folder-mac.svg │ │ │ │ ├── folder-magenta.svg │ │ │ │ ├── folder-mail.svg │ │ │ │ ├── folder-music.svg │ │ │ │ ├── folder-network.svg │ │ │ │ ├── folder-notes.svg │ │ │ │ ├── folder-onedrive.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-orange.svg │ │ │ │ ├── folder-owncloud.svg │ │ │ │ ├── folder-paint.svg │ │ │ │ ├── folder-picture.svg │ │ │ │ ├── folder-pictures.svg │ │ │ │ ├── folder-podcast.svg │ │ │ │ ├── folder-presentation.svg │ │ │ │ ├── folder-print.svg │ │ │ │ ├── folder-public.svg │ │ │ │ ├── folder-publicshare.svg │ │ │ │ ├── folder-recent.svg │ │ │ │ ├── folder-red.svg │ │ │ │ ├── folder-remote.svg │ │ │ │ ├── folder-root.svg │ │ │ │ ├── folder-rpm.svg │ │ │ │ ├── folder-script.svg │ │ │ │ ├── folder-sign.svg │ │ │ │ ├── folder-snap.svg │ │ │ │ ├── folder-sound.svg │ │ │ │ ├── folder-table.svg │ │ │ │ ├── folder-tar.svg │ │ │ │ ├── folder-temp.svg │ │ │ │ ├── folder-templates.svg │ │ │ │ ├── folder-text.svg │ │ │ │ ├── folder-trash.svg │ │ │ │ ├── folder-txt.svg │ │ │ │ ├── folder-unlocked.svg │ │ │ │ ├── folder-video.svg │ │ │ │ ├── folder-videos.svg │ │ │ │ ├── folder-violet.svg │ │ │ │ ├── folder-windows.svg │ │ │ │ ├── folder-yellow.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── folder_html.svg │ │ │ │ ├── mail-folder-inbox.svg │ │ │ │ ├── mail-folder-outbox.svg │ │ │ │ ├── mail-folder-sent.svg │ │ │ │ ├── mail-message.svg │ │ │ │ ├── network-server-database.svg │ │ │ │ ├── network-server.svg │ │ │ │ ├── network-workgroup.svg │ │ │ │ ├── org.xfce.gigolo.svg │ │ │ │ ├── repository.svg │ │ │ │ ├── server-database.svg │ │ │ │ ├── start-here-kde-plasma.svg │ │ │ │ ├── start-here-kde.svg │ │ │ │ ├── stock_folder.svg │ │ │ │ ├── user-desktop.svg │ │ │ │ ├── user-home.svg │ │ │ │ ├── user-identity.svg │ │ │ │ ├── user-trash-full.svg │ │ │ │ └── user-trash.svg │ │ │ ├── 32 │ │ │ │ ├── certificate-server.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── favorites.svg │ │ │ │ ├── folder-activities.svg │ │ │ │ ├── folder-android.svg │ │ │ │ ├── folder-appimage.svg │ │ │ │ ├── folder-black.svg │ │ │ │ ├── folder-blender.svg │ │ │ │ ├── folder-blue.svg │ │ │ │ ├── folder-bookmark.svg │ │ │ │ ├── folder-brown.svg │ │ │ │ ├── folder-build.svg │ │ │ │ ├── folder-calculate.svg │ │ │ │ ├── folder-chart.svg │ │ │ │ ├── folder-cloud.svg │ │ │ │ ├── folder-crash.svg │ │ │ │ ├── folder-cyan.svg │ │ │ │ ├── folder-database.svg │ │ │ │ ├── folder-deb.svg │ │ │ │ ├── folder-decrypted.svg │ │ │ │ ├── folder-design.svg │ │ │ │ ├── folder-desktop.svg │ │ │ │ ├── folder-development.svg │ │ │ │ ├── folder-docker.svg │ │ │ │ ├── folder-documents.svg │ │ │ │ ├── folder-download.svg │ │ │ │ ├── folder-downloads.svg │ │ │ │ ├── folder-drawing.svg │ │ │ │ ├── folder-dropbox.svg │ │ │ │ ├── folder-encrypted.svg │ │ │ │ ├── folder-extension.svg │ │ │ │ ├── folder-favorites.svg │ │ │ │ ├── folder-flatpak.svg │ │ │ │ ├── folder-games.svg │ │ │ │ ├── folder-gdrive.svg │ │ │ │ ├── folder-git.svg │ │ │ │ ├── folder-godot.svg │ │ │ │ ├── folder-green.svg │ │ │ │ ├── folder-grey.svg │ │ │ │ ├── folder-html.svg │ │ │ │ ├── folder-image-people.svg │ │ │ │ ├── folder-image.svg │ │ │ │ ├── folder-images.svg │ │ │ │ ├── folder-important.svg │ │ │ │ ├── folder-java.svg │ │ │ │ ├── folder-language.svg │ │ │ │ ├── folder-locked.svg │ │ │ │ ├── folder-log.svg │ │ │ │ ├── folder-mac.svg │ │ │ │ ├── folder-magenta.svg │ │ │ │ ├── folder-mail.svg │ │ │ │ ├── folder-music.svg │ │ │ │ ├── folder-network.svg │ │ │ │ ├── folder-notes.svg │ │ │ │ ├── folder-onedrive.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-orange.svg │ │ │ │ ├── folder-owncloud.svg │ │ │ │ ├── folder-paint.svg │ │ │ │ ├── folder-picture.svg │ │ │ │ ├── folder-pictures.svg │ │ │ │ ├── folder-podcast.svg │ │ │ │ ├── folder-presentation.svg │ │ │ │ ├── folder-print.svg │ │ │ │ ├── folder-public.svg │ │ │ │ ├── folder-publicshare.svg │ │ │ │ ├── folder-recent.svg │ │ │ │ ├── folder-red.svg │ │ │ │ ├── folder-remote.svg │ │ │ │ ├── folder-root.svg │ │ │ │ ├── folder-rpm.svg │ │ │ │ ├── folder-script.svg │ │ │ │ ├── folder-sign.svg │ │ │ │ ├── folder-snap.svg │ │ │ │ ├── folder-sound.svg │ │ │ │ ├── folder-table.svg │ │ │ │ ├── folder-tar.svg │ │ │ │ ├── folder-temp.svg │ │ │ │ ├── folder-templates.svg │ │ │ │ ├── folder-text.svg │ │ │ │ ├── folder-trash.svg │ │ │ │ ├── folder-txt.svg │ │ │ │ ├── folder-unlocked.svg │ │ │ │ ├── folder-video.svg │ │ │ │ ├── folder-videos.svg │ │ │ │ ├── folder-violet.svg │ │ │ │ ├── folder-windows.svg │ │ │ │ ├── folder-yellow.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── folder_html.svg │ │ │ │ ├── library-music.svg │ │ │ │ ├── network-server.svg │ │ │ │ ├── network-workgroup.svg │ │ │ │ ├── stock_folder.svg │ │ │ │ ├── user-desktop.svg │ │ │ │ ├── user-home.svg │ │ │ │ ├── user-trash-full.svg │ │ │ │ └── user-trash.svg │ │ │ ├── 48 │ │ │ │ ├── certificate-server.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── favorites.svg │ │ │ │ ├── folder-activities.svg │ │ │ │ ├── folder-black.svg │ │ │ │ ├── folder-blue.svg │ │ │ │ ├── folder-bookmark.svg │ │ │ │ ├── folder-brown.svg │ │ │ │ ├── folder-cloud.svg │ │ │ │ ├── folder-cyan.svg │ │ │ │ ├── folder-decrypted.svg │ │ │ │ ├── folder-development.svg │ │ │ │ ├── folder-documents.svg │ │ │ │ ├── folder-download.svg │ │ │ │ ├── folder-downloads.svg │ │ │ │ ├── folder-dropbox.svg │ │ │ │ ├── folder-encrypted.svg │ │ │ │ ├── folder-favorites.svg │ │ │ │ ├── folder-games.svg │ │ │ │ ├── folder-gdrive.svg │ │ │ │ ├── folder-green.svg │ │ │ │ ├── folder-grey.svg │ │ │ │ ├── folder-html.svg │ │ │ │ ├── folder-image-people.svg │ │ │ │ ├── folder-image.svg │ │ │ │ ├── folder-images.svg │ │ │ │ ├── folder-important.svg │ │ │ │ ├── folder-locked.svg │ │ │ │ ├── folder-magenta.svg │ │ │ │ ├── folder-mail.svg │ │ │ │ ├── folder-music.svg │ │ │ │ ├── folder-network.svg │ │ │ │ ├── folder-onedrive.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-orange.svg │ │ │ │ ├── folder-owncloud.svg │ │ │ │ ├── folder-picture.svg │ │ │ │ ├── folder-pictures.svg │ │ │ │ ├── folder-print.svg │ │ │ │ ├── folder-public.svg │ │ │ │ ├── folder-publicshare.svg │ │ │ │ ├── folder-recent.svg │ │ │ │ ├── folder-red.svg │ │ │ │ ├── folder-remote.svg │ │ │ │ ├── folder-root.svg │ │ │ │ ├── folder-script.svg │ │ │ │ ├── folder-sound.svg │ │ │ │ ├── folder-tar.svg │ │ │ │ ├── folder-temp.svg │ │ │ │ ├── folder-templates.svg │ │ │ │ ├── folder-text.svg │ │ │ │ ├── folder-txt.svg │ │ │ │ ├── folder-unlocked.svg │ │ │ │ ├── folder-video.svg │ │ │ │ ├── folder-videos.svg │ │ │ │ ├── folder-violet.svg │ │ │ │ ├── folder-yellow.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── folder_html.svg │ │ │ │ ├── library-music.svg │ │ │ │ ├── network-server.svg │ │ │ │ ├── network-workgroup.svg │ │ │ │ ├── stock_folder.svg │ │ │ │ ├── user-desktop.svg │ │ │ │ ├── user-home.svg │ │ │ │ ├── user-trash-full.svg │ │ │ │ └── user-trash.svg │ │ │ ├── 64 │ │ │ │ ├── certificate-server.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── favorites.svg │ │ │ │ ├── folder-activities.svg │ │ │ │ ├── folder-android.svg │ │ │ │ ├── folder-appimage.svg │ │ │ │ ├── folder-black.svg │ │ │ │ ├── folder-blender.svg │ │ │ │ ├── folder-blue.svg │ │ │ │ ├── folder-bookmark.svg │ │ │ │ ├── folder-brown.svg │ │ │ │ ├── folder-build.svg │ │ │ │ ├── folder-calculate.svg │ │ │ │ ├── folder-chart.svg │ │ │ │ ├── folder-cloud.svg │ │ │ │ ├── folder-crash.svg │ │ │ │ ├── folder-cyan.svg │ │ │ │ ├── folder-database.svg │ │ │ │ ├── folder-deb.svg │ │ │ │ ├── folder-decrypted.svg │ │ │ │ ├── folder-design.svg │ │ │ │ ├── folder-desktop.svg │ │ │ │ ├── folder-development.svg │ │ │ │ ├── folder-docker.svg │ │ │ │ ├── folder-documents.svg │ │ │ │ ├── folder-download.svg │ │ │ │ ├── folder-downloads.svg │ │ │ │ ├── folder-drawing.svg │ │ │ │ ├── folder-dropbox.svg │ │ │ │ ├── folder-encrypted.svg │ │ │ │ ├── folder-extension.svg │ │ │ │ ├── folder-favorites.svg │ │ │ │ ├── folder-flatpak.svg │ │ │ │ ├── folder-games.svg │ │ │ │ ├── folder-gdrive.svg │ │ │ │ ├── folder-git.svg │ │ │ │ ├── folder-godot.svg │ │ │ │ ├── folder-green.svg │ │ │ │ ├── folder-grey.svg │ │ │ │ ├── folder-html.svg │ │ │ │ ├── folder-image-people.svg │ │ │ │ ├── folder-image.svg │ │ │ │ ├── folder-images.svg │ │ │ │ ├── folder-important.svg │ │ │ │ ├── folder-java.svg │ │ │ │ ├── folder-language.svg │ │ │ │ ├── folder-locked.svg │ │ │ │ ├── folder-log.svg │ │ │ │ ├── folder-mac.svg │ │ │ │ ├── folder-magenta.svg │ │ │ │ ├── folder-mail.svg │ │ │ │ ├── folder-music.svg │ │ │ │ ├── folder-network.svg │ │ │ │ ├── folder-notes.svg │ │ │ │ ├── folder-onedrive.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-orange.svg │ │ │ │ ├── folder-owncloud.svg │ │ │ │ ├── folder-paint.svg │ │ │ │ ├── folder-picture.svg │ │ │ │ ├── folder-pictures.svg │ │ │ │ ├── folder-podcast.svg │ │ │ │ ├── folder-presentation.svg │ │ │ │ ├── folder-print.svg │ │ │ │ ├── folder-public.svg │ │ │ │ ├── folder-publicshare.svg │ │ │ │ ├── folder-recent.svg │ │ │ │ ├── folder-red.svg │ │ │ │ ├── folder-remote.svg │ │ │ │ ├── folder-root.svg │ │ │ │ ├── folder-rpm.svg │ │ │ │ ├── folder-script.svg │ │ │ │ ├── folder-sign.svg │ │ │ │ ├── folder-snap.svg │ │ │ │ ├── folder-sound.svg │ │ │ │ ├── folder-table.svg │ │ │ │ ├── folder-tar.svg │ │ │ │ ├── folder-temp.svg │ │ │ │ ├── folder-templates.svg │ │ │ │ ├── folder-text.svg │ │ │ │ ├── folder-trash.svg │ │ │ │ ├── folder-txt.svg │ │ │ │ ├── folder-unlocked.svg │ │ │ │ ├── folder-video.svg │ │ │ │ ├── folder-videos.svg │ │ │ │ ├── folder-violet.svg │ │ │ │ ├── folder-windows.svg │ │ │ │ ├── folder-yellow.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── folder_html.svg │ │ │ │ ├── library-music.svg │ │ │ │ ├── network-server.svg │ │ │ │ ├── network-workgroup.svg │ │ │ │ ├── start-here-kde-plasma.svg │ │ │ │ ├── start-here-kde.svg │ │ │ │ ├── stock_folder.svg │ │ │ │ ├── user-desktop.svg │ │ │ │ ├── user-home.svg │ │ │ │ ├── user-trash-full.svg │ │ │ │ └── user-trash.svg │ │ │ ├── 96 │ │ │ │ ├── certificate-server.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── favorites.svg │ │ │ │ ├── folder-activities.svg │ │ │ │ ├── folder-black.svg │ │ │ │ ├── folder-blue.svg │ │ │ │ ├── folder-bookmark.svg │ │ │ │ ├── folder-brown.svg │ │ │ │ ├── folder-cloud.svg │ │ │ │ ├── folder-cyan.svg │ │ │ │ ├── folder-decrypted.svg │ │ │ │ ├── folder-development.svg │ │ │ │ ├── folder-documents.svg │ │ │ │ ├── folder-download.svg │ │ │ │ ├── folder-downloads.svg │ │ │ │ ├── folder-dropbox.svg │ │ │ │ ├── folder-encrypted.svg │ │ │ │ ├── folder-favorites.svg │ │ │ │ ├── folder-games.svg │ │ │ │ ├── folder-gdrive.svg │ │ │ │ ├── folder-green.svg │ │ │ │ ├── folder-grey.svg │ │ │ │ ├── folder-html.svg │ │ │ │ ├── folder-image-people.svg │ │ │ │ ├── folder-image.svg │ │ │ │ ├── folder-images.svg │ │ │ │ ├── folder-important.svg │ │ │ │ ├── folder-locked.svg │ │ │ │ ├── folder-magenta.svg │ │ │ │ ├── folder-mail.svg │ │ │ │ ├── folder-music.svg │ │ │ │ ├── folder-network.svg │ │ │ │ ├── folder-onedrive.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-orange.svg │ │ │ │ ├── folder-owncloud.svg │ │ │ │ ├── folder-picture.svg │ │ │ │ ├── folder-pictures.svg │ │ │ │ ├── folder-print.svg │ │ │ │ ├── folder-public.svg │ │ │ │ ├── folder-publicshare.svg │ │ │ │ ├── folder-recent.svg │ │ │ │ ├── folder-red.svg │ │ │ │ ├── folder-remote.svg │ │ │ │ ├── folder-root.svg │ │ │ │ ├── folder-script.svg │ │ │ │ ├── folder-sound.svg │ │ │ │ ├── folder-tar.svg │ │ │ │ ├── folder-temp.svg │ │ │ │ ├── folder-templates.svg │ │ │ │ ├── folder-text.svg │ │ │ │ ├── folder-txt.svg │ │ │ │ ├── folder-unlocked.svg │ │ │ │ ├── folder-video.svg │ │ │ │ ├── folder-videos.svg │ │ │ │ ├── folder-violet.svg │ │ │ │ ├── folder-yellow.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── folder_html.svg │ │ │ │ ├── library-music.svg │ │ │ │ ├── network-server.svg │ │ │ │ ├── network-workgroup.svg │ │ │ │ ├── start-here-kde-plasma.svg │ │ │ │ ├── start-here-kde.svg │ │ │ │ ├── stock_folder.svg │ │ │ │ ├── user-desktop.svg │ │ │ │ ├── user-home.svg │ │ │ │ ├── user-trash-full.svg │ │ │ │ └── user-trash.svg │ │ │ └── symbolic │ │ │ │ ├── folder-documents-symbolic.svg │ │ │ │ ├── folder-download-symbolic.svg │ │ │ │ ├── folder-games-symbolic.svg │ │ │ │ ├── folder-music-symbolic.svg │ │ │ │ ├── folder-pictures-symbolic.svg │ │ │ │ ├── folder-publicshare-symbolic.svg │ │ │ │ ├── folder-remote-symbolic.svg │ │ │ │ ├── folder-root-symbolic.svg │ │ │ │ ├── folder-saved-search-symbolic.svg │ │ │ │ ├── folder-symbolic.svg │ │ │ │ ├── folder-templates-symbolic.svg │ │ │ │ ├── folder-videos-symbolic.svg │ │ │ │ ├── network-server-symbolic.svg │ │ │ │ ├── network-workgroup-symbolic.svg │ │ │ │ ├── start-here-symbolic.svg │ │ │ │ ├── user-bookmarks-symbolic.svg │ │ │ │ ├── user-desktop-symbolic.svg │ │ │ │ ├── user-home-symbolic.svg │ │ │ │ └── user-trash-symbolic.svg │ │ ├── preferences │ │ │ ├── 22 │ │ │ │ ├── device-notifier.svg │ │ │ │ ├── drive-removable-media.svg │ │ │ │ ├── plasma-search.svg │ │ │ │ ├── podcast-amarok.svg │ │ │ │ ├── preferences-desktop-accessibility.svg │ │ │ │ ├── preferences-desktop-activities.svg │ │ │ │ ├── preferences-desktop-baloo.svg │ │ │ │ ├── preferences-desktop-color.svg │ │ │ │ ├── preferences-desktop-cryptography.svg │ │ │ │ ├── preferences-desktop-cursors.svg │ │ │ │ ├── preferences-desktop-default-applications.svg │ │ │ │ ├── preferences-desktop-display-color.svg │ │ │ │ ├── preferences-desktop-display.svg │ │ │ │ ├── preferences-desktop-effects.svg │ │ │ │ ├── preferences-desktop-emoticons.svg │ │ │ │ ├── preferences-desktop-filetype-association.svg │ │ │ │ ├── preferences-desktop-filter.svg │ │ │ │ ├── preferences-desktop-font.svg │ │ │ │ ├── preferences-desktop-gestures-screenedges.svg │ │ │ │ ├── preferences-desktop-gestures-touch.svg │ │ │ │ ├── preferences-desktop-icons.svg │ │ │ │ ├── preferences-desktop-keyboard.svg │ │ │ │ ├── preferences-desktop-launch-feedback.svg │ │ │ │ ├── preferences-desktop-locale.svg │ │ │ │ ├── preferences-desktop-multimedia.svg │ │ │ │ ├── preferences-desktop-navigation.svg │ │ │ │ ├── preferences-desktop-notification-bell.svg │ │ │ │ ├── preferences-desktop-plasma-theme.svg │ │ │ │ ├── preferences-desktop-plasma.svg │ │ │ │ ├── preferences-desktop-screensaver.svg │ │ │ │ ├── preferences-desktop-search.svg │ │ │ │ ├── preferences-desktop-sound.svg │ │ │ │ ├── preferences-desktop-tablet.svg │ │ │ │ ├── preferences-desktop-text-to-speech.svg │ │ │ │ ├── preferences-desktop-theme-applications.svg │ │ │ │ ├── preferences-desktop-theme-global.svg │ │ │ │ ├── preferences-desktop-theme-windowdecorations.svg │ │ │ │ ├── preferences-desktop-thunderbolt.svg │ │ │ │ ├── preferences-desktop-touchpad.svg │ │ │ │ ├── preferences-desktop-user-password.svg │ │ │ │ ├── preferences-desktop-user.svg │ │ │ │ ├── preferences-desktop-virtual.svg │ │ │ │ ├── preferences-desktop-wallpaper.svg │ │ │ │ ├── preferences-desktop.svg │ │ │ │ ├── preferences-devices-cpu.svg │ │ │ │ ├── preferences-devices-drive-optical-check.svg │ │ │ │ ├── preferences-devices-printer.svg │ │ │ │ ├── preferences-devices-scanner.svg │ │ │ │ ├── preferences-devices-tree.svg │ │ │ │ ├── preferences-gtk-config.svg │ │ │ │ ├── preferences-kde-connect.svg │ │ │ │ ├── preferences-other.svg │ │ │ │ ├── preferences-plugin.svg │ │ │ │ ├── preferences-security-kerberos.svg │ │ │ │ ├── preferences-security.svg │ │ │ │ ├── preferences-smart-status.svg │ │ │ │ ├── preferences-system-bluetooth.svg │ │ │ │ ├── preferences-system-linux.svg │ │ │ │ ├── preferences-system-login.svg │ │ │ │ ├── preferences-system-network-dsl.svg │ │ │ │ ├── preferences-system-network-ethernet.svg │ │ │ │ ├── preferences-system-network-ldap.svg │ │ │ │ ├── preferences-system-network-nis.svg │ │ │ │ ├── preferences-system-network-proxy.svg │ │ │ │ ├── preferences-system-network-share-windows.svg │ │ │ │ ├── preferences-system-network-sharing.svg │ │ │ │ ├── preferences-system-network-vpn.svg │ │ │ │ ├── preferences-system-network-wakeonlan.svg │ │ │ │ ├── preferences-system-power-management.svg │ │ │ │ ├── preferences-system-services.svg │ │ │ │ ├── preferences-system-session-services.svg │ │ │ │ ├── preferences-system-splash.svg │ │ │ │ ├── preferences-system-startup.svg │ │ │ │ ├── preferences-system-time.svg │ │ │ │ ├── preferences-system-user-sudo.svg │ │ │ │ ├── preferences-system-windows-actions.svg │ │ │ │ ├── preferences-system-windows-behavior.svg │ │ │ │ ├── preferences-system-windows-move.svg │ │ │ │ ├── preferences-system-windows.svg │ │ │ │ ├── preferences-virtualization-container.svg │ │ │ │ ├── preferences-web-browser-cache.svg │ │ │ │ ├── preferences-web-browser-cookies.svg │ │ │ │ ├── preferences-web-browser-identification.svg │ │ │ │ ├── preferences-web-browser-shortcuts.svg │ │ │ │ ├── preferences-web-browser-ssl.svg │ │ │ │ ├── preferences-web-browser-stylesheets.svg │ │ │ │ ├── system-users.svg │ │ │ │ ├── window-duplicate.svg │ │ │ │ └── yast-disk.svg │ │ │ └── 32 │ │ │ │ ├── amarok_change_language.svg │ │ │ │ ├── device-notifier.svg │ │ │ │ ├── drive-removable-media.svg │ │ │ │ ├── face-smile.svg │ │ │ │ ├── financial-schedule.svg │ │ │ │ ├── gtkconfig.svg │ │ │ │ ├── kaccess.svg │ │ │ │ ├── kde-gtk-config.svg │ │ │ │ ├── kdeconnect.svg │ │ │ │ ├── kded5.svg │ │ │ │ ├── krunner.svg │ │ │ │ ├── ksmserver.svg │ │ │ │ ├── mediacontrol.svg │ │ │ │ ├── plasma-search.svg │ │ │ │ ├── plasma.svg │ │ │ │ ├── plasmagik.svg │ │ │ │ ├── plasmashell.svg │ │ │ │ ├── podcast-amarok.svg │ │ │ │ ├── preferences-desktop-accessibility.svg │ │ │ │ ├── preferences-desktop-activities.svg │ │ │ │ ├── preferences-desktop-baloo.svg │ │ │ │ ├── preferences-desktop-color.svg │ │ │ │ ├── preferences-desktop-cryptography.svg │ │ │ │ ├── preferences-desktop-cursors.svg │ │ │ │ ├── preferences-desktop-default-applications.svg │ │ │ │ ├── preferences-desktop-display-color.svg │ │ │ │ ├── preferences-desktop-display.svg │ │ │ │ ├── preferences-desktop-effects.svg │ │ │ │ ├── preferences-desktop-emoticons.svg │ │ │ │ ├── preferences-desktop-filetype-association.svg │ │ │ │ ├── preferences-desktop-filter.svg │ │ │ │ ├── preferences-desktop-font.svg │ │ │ │ ├── preferences-desktop-gaming.svg │ │ │ │ ├── preferences-desktop-gestures-screenedges.svg │ │ │ │ ├── preferences-desktop-gestures-touch.svg │ │ │ │ ├── preferences-desktop-icons.svg │ │ │ │ ├── preferences-desktop-keyboard.svg │ │ │ │ ├── preferences-desktop-launch-feedback.svg │ │ │ │ ├── preferences-desktop-locale.svg │ │ │ │ ├── preferences-desktop-menu-edit.svg │ │ │ │ ├── preferences-desktop-mouse.svg │ │ │ │ ├── preferences-desktop-multimedia.svg │ │ │ │ ├── preferences-desktop-navigation.svg │ │ │ │ ├── preferences-desktop-notification-bell.svg │ │ │ │ ├── preferences-desktop-notification.svg │ │ │ │ ├── preferences-desktop-peripherals.svg │ │ │ │ ├── preferences-desktop-plasma-theme.svg │ │ │ │ ├── preferences-desktop-plasma.svg │ │ │ │ ├── preferences-desktop-screensaver.svg │ │ │ │ ├── preferences-desktop-search.svg │ │ │ │ ├── preferences-desktop-sound.svg │ │ │ │ ├── preferences-desktop-tablet.svg │ │ │ │ ├── preferences-desktop-text-to-speech.svg │ │ │ │ ├── preferences-desktop-theme-applications.svg │ │ │ │ ├── preferences-desktop-theme-global.svg │ │ │ │ ├── preferences-desktop-theme-windowdecorations.svg │ │ │ │ ├── preferences-desktop-theme.svg │ │ │ │ ├── preferences-desktop-thunderbolt.svg │ │ │ │ ├── preferences-desktop-touchpad.svg │ │ │ │ ├── preferences-desktop-user-password.svg │ │ │ │ ├── preferences-desktop-user.svg │ │ │ │ ├── preferences-desktop-virtual.svg │ │ │ │ ├── preferences-desktop-wallpaper.svg │ │ │ │ ├── preferences-desktop.svg │ │ │ │ ├── preferences-devices-cpu.svg │ │ │ │ ├── preferences-devices-drive-optical-check.svg │ │ │ │ ├── preferences-devices-printer.svg │ │ │ │ ├── preferences-devices-scanner.svg │ │ │ │ ├── preferences-devices-tree.svg │ │ │ │ ├── preferences-gtk-config.svg │ │ │ │ ├── preferences-kde-connect.svg │ │ │ │ ├── preferences-log.svg │ │ │ │ ├── preferences-other.svg │ │ │ │ ├── preferences-plugin.svg │ │ │ │ ├── preferences-releasenotes.svg │ │ │ │ ├── preferences-security-apparmor.svg │ │ │ │ ├── preferences-security-firewall.svg │ │ │ │ ├── preferences-security-kerberos.svg │ │ │ │ ├── preferences-security.svg │ │ │ │ ├── preferences-smart-status.svg │ │ │ │ ├── preferences-system-backup.svg │ │ │ │ ├── preferences-system-bluetooth.svg │ │ │ │ ├── preferences-system-linux.svg │ │ │ │ ├── preferences-system-login.svg │ │ │ │ ├── preferences-system-network-dsl.svg │ │ │ │ ├── preferences-system-network-ethernet.svg │ │ │ │ ├── preferences-system-network-iscsi.svg │ │ │ │ ├── preferences-system-network-ldap.svg │ │ │ │ ├── preferences-system-network-nis.svg │ │ │ │ ├── preferences-system-network-ntp.svg │ │ │ │ ├── preferences-system-network-proxy.svg │ │ │ │ ├── preferences-system-network-remote.svg │ │ │ │ ├── preferences-system-network-server-boot.svg │ │ │ │ ├── preferences-system-network-server-dhcp.svg │ │ │ │ ├── preferences-system-network-server-dns.svg │ │ │ │ ├── preferences-system-network-server-ftp.svg │ │ │ │ ├── preferences-system-network-server-installation.svg │ │ │ │ ├── preferences-system-network-server-iscsi.svg │ │ │ │ ├── preferences-system-network-server-kerberos.svg │ │ │ │ ├── preferences-system-network-server-ldap.svg │ │ │ │ ├── preferences-system-network-server-mail.svg │ │ │ │ ├── preferences-system-network-server-nis.svg │ │ │ │ ├── preferences-system-network-server-share-windows.svg │ │ │ │ ├── preferences-system-network-server-share.svg │ │ │ │ ├── preferences-system-network-server-slp.svg │ │ │ │ ├── preferences-system-network-server-web.svg │ │ │ │ ├── preferences-system-network-server.svg │ │ │ │ ├── preferences-system-network-share-windows.svg │ │ │ │ ├── preferences-system-network-share.svg │ │ │ │ ├── preferences-system-network-sharing.svg │ │ │ │ ├── preferences-system-network-vpn.svg │ │ │ │ ├── preferences-system-network-wakeonlan.svg │ │ │ │ ├── preferences-system-network.svg │ │ │ │ ├── preferences-system-performance.svg │ │ │ │ ├── preferences-system-power-management.svg │ │ │ │ ├── preferences-system-services.svg │ │ │ │ ├── preferences-system-session-services.svg │ │ │ │ ├── preferences-system-splash.svg │ │ │ │ ├── preferences-system-startup.svg │ │ │ │ ├── preferences-system-time.svg │ │ │ │ ├── preferences-system-user-sudo.svg │ │ │ │ ├── preferences-system-users.svg │ │ │ │ ├── preferences-system-windows-actions.svg │ │ │ │ ├── preferences-system-windows-behavior.svg │ │ │ │ ├── preferences-system-windows-move.svg │ │ │ │ ├── preferences-system-windows.svg │ │ │ │ ├── preferences-virtualization-container.svg │ │ │ │ ├── preferences-virtualization-vm-install.svg │ │ │ │ ├── preferences-virtualization-vm-migrate.svg │ │ │ │ ├── preferences-virtualization-vm-new.svg │ │ │ │ ├── preferences-virtualization-vm.svg │ │ │ │ ├── preferences-web-browser-adblock.svg │ │ │ │ ├── preferences-web-browser-cache.svg │ │ │ │ ├── preferences-web-browser-cookies.svg │ │ │ │ ├── preferences-web-browser-identification.svg │ │ │ │ ├── preferences-web-browser-shortcuts.svg │ │ │ │ ├── preferences-web-browser-ssl.svg │ │ │ │ ├── preferences-web-browser-stylesheets.svg │ │ │ │ ├── preferences.svg │ │ │ │ ├── system-lock-screen.svg │ │ │ │ ├── system-users.svg │ │ │ │ ├── window-duplicate.svg │ │ │ │ ├── yast-addon-extension.svg │ │ │ │ ├── yast-addon.svg │ │ │ │ ├── yast-alternatives.svg │ │ │ │ ├── yast-apparmor.svg │ │ │ │ ├── yast-auth-client.svg │ │ │ │ ├── yast-autoyast.svg │ │ │ │ ├── yast-bootloader.svg │ │ │ │ ├── yast-checkmedia.svg │ │ │ │ ├── yast-create-new-vm.svg │ │ │ │ ├── yast-device-tree.svg │ │ │ │ ├── yast-dhcp-server.svg │ │ │ │ ├── yast-disk.svg │ │ │ │ ├── yast-dns-server.svg │ │ │ │ ├── yast-docker.svg │ │ │ │ ├── yast-dsl.svg │ │ │ │ ├── yast-fcoe.svg │ │ │ │ ├── yast-firewall.svg │ │ │ │ ├── yast-fonts.svg │ │ │ │ ├── yast-ftp-server.svg │ │ │ │ ├── yast-hardware-group.svg │ │ │ │ ├── yast-host.svg │ │ │ │ ├── yast-http-server.svg │ │ │ │ ├── yast-hwinfo.svg │ │ │ │ ├── yast-instserver.svg │ │ │ │ ├── yast-iscsi-client.svg │ │ │ │ ├── yast-iscsi-server.svg │ │ │ │ ├── yast-journal.svg │ │ │ │ ├── yast-kerberos-server.svg │ │ │ │ ├── yast-kernel.svg │ │ │ │ ├── yast-keyboard.svg │ │ │ │ ├── yast-lan.svg │ │ │ │ ├── yast-language.svg │ │ │ │ ├── yast-ldap-kerberos.svg │ │ │ │ ├── yast-ldap-server.svg │ │ │ │ ├── yast-mail.svg │ │ │ │ ├── yast-messages.svg │ │ │ │ ├── yast-misc-group.svg │ │ │ │ ├── yast-network-group.svg │ │ │ │ ├── yast-nfs-server.svg │ │ │ │ ├── yast-nfs.svg │ │ │ │ ├── yast-nis-server.svg │ │ │ │ ├── yast-nis.svg │ │ │ │ ├── yast-ntp-client.svg │ │ │ │ ├── yast-printer.svg │ │ │ │ ├── yast-proxy.svg │ │ │ │ ├── yast-release-notes.svg │ │ │ │ ├── yast-remote.svg │ │ │ │ ├── yast-samba-client.svg │ │ │ │ ├── yast-samba-server.svg │ │ │ │ ├── yast-scanner.svg │ │ │ │ ├── yast-security-group.svg │ │ │ │ ├── yast-security.svg │ │ │ │ ├── yast-services-manager.svg │ │ │ │ ├── yast-slp-server.svg │ │ │ │ ├── yast-snapper.svg │ │ │ │ ├── yast-software-group.svg │ │ │ │ ├── yast-sound.svg │ │ │ │ ├── yast-sudo.svg │ │ │ │ ├── yast-support-group.svg │ │ │ │ ├── yast-support.svg │ │ │ │ ├── yast-sw_source.svg │ │ │ │ ├── yast-sysconfig.svg │ │ │ │ ├── yast-system-group.svg │ │ │ │ ├── yast-tftp-server.svg │ │ │ │ ├── yast-timezone.svg │ │ │ │ ├── yast-update-online-configuration.svg │ │ │ │ ├── yast-update-online.svg │ │ │ │ ├── yast-update.svg │ │ │ │ ├── yast-users.svg │ │ │ │ ├── yast-vm-group.svg │ │ │ │ ├── yast-vm-install.svg │ │ │ │ ├── yast-vm-migrate.svg │ │ │ │ ├── yast-vpn.svg │ │ │ │ └── yast-wol.svg │ │ └── status │ │ │ ├── 22 │ │ │ ├── TeamViewer.svg │ │ │ ├── appointment-recurring.svg │ │ │ ├── appointment-reminder.svg │ │ │ ├── audio-off.svg │ │ │ ├── audio-on.svg │ │ │ ├── audio-ready.svg │ │ │ ├── audio-volume-high.svg │ │ │ ├── audio-volume-low.svg │ │ │ ├── audio-volume-medium.svg │ │ │ ├── audio-volume-muted.svg │ │ │ ├── auth-sim-locked.svg │ │ │ ├── auth-sim-missing.svg │ │ │ ├── battery-000-charging.svg │ │ │ ├── battery-000.svg │ │ │ ├── battery-010-charging.svg │ │ │ ├── battery-010.svg │ │ │ ├── battery-020-charging.svg │ │ │ ├── battery-020.svg │ │ │ ├── battery-030-charging.svg │ │ │ ├── battery-030.svg │ │ │ ├── battery-040-charging.svg │ │ │ ├── battery-040.svg │ │ │ ├── battery-050-charging.svg │ │ │ ├── battery-050.svg │ │ │ ├── battery-060-charging.svg │ │ │ ├── battery-060.svg │ │ │ ├── battery-070-charging.svg │ │ │ ├── battery-070.svg │ │ │ ├── battery-080-charging.svg │ │ │ ├── battery-080.svg │ │ │ ├── battery-090-charging.svg │ │ │ ├── battery-090.svg │ │ │ ├── battery-100-charging.svg │ │ │ ├── battery-100.svg │ │ │ ├── battery-caution-charging.svg │ │ │ ├── battery-caution.svg │ │ │ ├── battery-empty-charging.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full-charging.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-good-charging.svg │ │ │ ├── battery-good.svg │ │ │ ├── battery-low-charging.svg │ │ │ ├── battery-low.svg │ │ │ ├── battery-missing.svg │ │ │ ├── call-incoming.svg │ │ │ ├── call-missed.svg │ │ │ ├── call-outgoing.svg │ │ │ ├── camera-off.svg │ │ │ ├── camera-on.svg │ │ │ ├── camera-ready.svg │ │ │ ├── cloudstatus.svg │ │ │ ├── com.github.ztefn.haguichi-connected.svg │ │ │ ├── com.github.ztefn.haguichi-connecting-1.svg │ │ │ ├── com.github.ztefn.haguichi-connecting-2.svg │ │ │ ├── com.github.ztefn.haguichi-connecting-3.svg │ │ │ ├── com.github.ztefn.haguichi-disconnected.svg │ │ │ ├── data-error.svg │ │ │ ├── data-information.svg │ │ │ ├── data-warning.svg │ │ │ ├── dialog-error.svg │ │ │ ├── dialog-information.svg │ │ │ ├── dialog-password.svg │ │ │ ├── dialog-positive.svg │ │ │ ├── dialog-question.svg │ │ │ ├── dialog-warning.svg │ │ │ ├── disk-quota-critical.svg │ │ │ ├── disk-quota-high.svg │ │ │ ├── disk-quota-low.svg │ │ │ ├── disk-quota.svg │ │ │ ├── dropboxstatus-busy.svg │ │ │ ├── dropboxstatus-busy2.svg │ │ │ ├── dropboxstatus-idle.svg │ │ │ ├── dropboxstatus-logo.svg │ │ │ ├── dropboxstatus-x.svg │ │ │ ├── fcitx-googlepinyin.svg │ │ │ ├── fcitx-pinyin-libpinyin.svg │ │ │ ├── fcitx-pinyin.svg │ │ │ ├── fcitx-shuangpin-libpinyin.svg │ │ │ ├── fcitx-shuangpin.svg │ │ │ ├── fcitx-sunpinyin.svg │ │ │ ├── fcitx-wubi.svg │ │ │ ├── firewall-applet-error.svg │ │ │ ├── firewall-applet-panic.svg │ │ │ ├── firewall-applet-shields_up.svg │ │ │ ├── firewall-applet.svg │ │ │ ├── flameshot-tray.svg │ │ │ ├── haguichi-connected.svg │ │ │ ├── haguichi-connecting-1.svg │ │ │ ├── haguichi-connecting-2.svg │ │ │ ├── haguichi-connecting-3.svg │ │ │ ├── haguichi-disconnected.svg │ │ │ ├── image-missing.svg │ │ │ ├── input-caps-on.svg │ │ │ ├── input-keyboard-virtual-off.svg │ │ │ ├── input-keyboard-virtual-on.svg │ │ │ ├── input-touchpad-off.svg │ │ │ ├── input-touchpad-on.svg │ │ │ ├── install.svg │ │ │ ├── irc-channel-joined.svg │ │ │ ├── irc-channel-parted.svg │ │ │ ├── kdeconnect-tray.svg │ │ │ ├── media-playback-paused.svg │ │ │ ├── media-playback-playing.svg │ │ │ ├── media-playback-stopped.svg │ │ │ ├── meeting-organizer.svg │ │ │ ├── mic-off.svg │ │ │ ├── mic-on.svg │ │ │ ├── mic-ready.svg │ │ │ ├── microphone-sensitivity-high.svg │ │ │ ├── microphone-sensitivity-low.svg │ │ │ ├── microphone-sensitivity-medium.svg │ │ │ ├── microphone-sensitivity-muted.svg │ │ │ ├── network-bluetooth-activated-locked.svg │ │ │ ├── network-bluetooth-activated.svg │ │ │ ├── network-bluetooth.svg │ │ │ ├── network-flightmode-off.svg │ │ │ ├── network-flightmode-on.svg │ │ │ ├── network-limited.svg │ │ │ ├── network-mobile-0-edge-locked.svg │ │ │ ├── network-mobile-0-edge.svg │ │ │ ├── network-mobile-0-gprs-locked.svg │ │ │ ├── network-mobile-0-gprs.svg │ │ │ ├── network-mobile-0-hsdpa-locked.svg │ │ │ ├── network-mobile-0-hsdpa.svg │ │ │ ├── network-mobile-0-hspa-locked.svg │ │ │ ├── network-mobile-0-hspa.svg │ │ │ ├── network-mobile-0-hsupa-locked.svg │ │ │ ├── network-mobile-0-hsupa.svg │ │ │ ├── network-mobile-0-locked.svg │ │ │ ├── network-mobile-0-lte-locked.svg │ │ │ ├── network-mobile-0-lte.svg │ │ │ ├── network-mobile-0-umts-locked.svg │ │ │ ├── network-mobile-0-umts.svg │ │ │ ├── network-mobile-0.svg │ │ │ ├── network-mobile-100-edge-locked.svg │ │ │ ├── network-mobile-100-edge.svg │ │ │ ├── network-mobile-100-gprs-locked.svg │ │ │ ├── network-mobile-100-gprs.svg │ │ │ ├── network-mobile-100-hsdpa-locked.svg │ │ │ ├── network-mobile-100-hsdpa.svg │ │ │ ├── network-mobile-100-hspa-locked.svg │ │ │ ├── network-mobile-100-hspa.svg │ │ │ ├── network-mobile-100-hsupa-locked.svg │ │ │ ├── network-mobile-100-hsupa.svg │ │ │ ├── network-mobile-100-locked.svg │ │ │ ├── network-mobile-100-lte-locked.svg │ │ │ ├── network-mobile-100-lte.svg │ │ │ ├── network-mobile-100-umts-locked.svg │ │ │ ├── network-mobile-100-umts.svg │ │ │ ├── network-mobile-100.svg │ │ │ ├── network-mobile-20-edge-locked.svg │ │ │ ├── network-mobile-20-edge.svg │ │ │ ├── network-mobile-20-gprs-locked.svg │ │ │ ├── network-mobile-20-gprs.svg │ │ │ ├── network-mobile-20-hsdpa-locked.svg │ │ │ ├── network-mobile-20-hsdpa.svg │ │ │ ├── network-mobile-20-hspa-locked.svg │ │ │ ├── network-mobile-20-hspa.svg │ │ │ ├── network-mobile-20-hsupa-locked.svg │ │ │ ├── network-mobile-20-hsupa.svg │ │ │ ├── network-mobile-20-locked.svg │ │ │ ├── network-mobile-20-lte-locked.svg │ │ │ ├── network-mobile-20-lte.svg │ │ │ ├── network-mobile-20-umts-locked.svg │ │ │ ├── network-mobile-20-umts.svg │ │ │ ├── network-mobile-20.svg │ │ │ ├── network-mobile-40-edge-locked.svg │ │ │ ├── network-mobile-40-edge.svg │ │ │ ├── network-mobile-40-gprs-locked.svg │ │ │ ├── network-mobile-40-gprs.svg │ │ │ ├── network-mobile-40-hsdpa-locked.svg │ │ │ ├── network-mobile-40-hsdpa.svg │ │ │ ├── network-mobile-40-hspa-locked.svg │ │ │ ├── network-mobile-40-hspa.svg │ │ │ ├── network-mobile-40-hsupa-locked.svg │ │ │ ├── network-mobile-40-hsupa.svg │ │ │ ├── network-mobile-40-locked.svg │ │ │ ├── network-mobile-40-lte-locked.svg │ │ │ ├── network-mobile-40-lte.svg │ │ │ ├── network-mobile-40-umts-locked.svg │ │ │ ├── network-mobile-40-umts.svg │ │ │ ├── network-mobile-40.svg │ │ │ ├── network-mobile-60-edge-locked.svg │ │ │ ├── network-mobile-60-edge.svg │ │ │ ├── network-mobile-60-gprs-locked.svg │ │ │ ├── network-mobile-60-gprs.svg │ │ │ ├── network-mobile-60-hsdpa-locked.svg │ │ │ ├── network-mobile-60-hsdpa.svg │ │ │ ├── network-mobile-60-hspa-locked.svg │ │ │ ├── network-mobile-60-hspa.svg │ │ │ ├── network-mobile-60-hsupa-locked.svg │ │ │ ├── network-mobile-60-hsupa.svg │ │ │ ├── network-mobile-60-locked.svg │ │ │ ├── network-mobile-60-lte-locked.svg │ │ │ ├── network-mobile-60-lte.svg │ │ │ ├── network-mobile-60-umts-locked.svg │ │ │ ├── network-mobile-60-umts.svg │ │ │ ├── network-mobile-60.svg │ │ │ ├── network-mobile-80-edge-locked.svg │ │ │ ├── network-mobile-80-edge.svg │ │ │ ├── network-mobile-80-gprs-locked.svg │ │ │ ├── network-mobile-80-gprs.svg │ │ │ ├── network-mobile-80-hsdpa-locked.svg │ │ │ ├── network-mobile-80-hsdpa.svg │ │ │ ├── network-mobile-80-hspa-locked.svg │ │ │ ├── network-mobile-80-hspa.svg │ │ │ ├── network-mobile-80-hsupa-locked.svg │ │ │ ├── network-mobile-80-hsupa.svg │ │ │ ├── network-mobile-80-locked.svg │ │ │ ├── network-mobile-80-lte-locked.svg │ │ │ ├── network-mobile-80-lte.svg │ │ │ ├── network-mobile-80-umts-locked.svg │ │ │ ├── network-mobile-80-umts.svg │ │ │ ├── network-mobile-80.svg │ │ │ ├── network-mobile-available.svg │ │ │ ├── network-mobile-off.svg │ │ │ ├── network-mobile-on.svg │ │ │ ├── network-offline.svg │ │ │ ├── network-wired-activated.svg │ │ │ ├── network-wired-disconnected.svg │ │ │ ├── network-wired-unavailable.svg │ │ │ ├── network-wireless-acquiring.svg │ │ │ ├── network-wireless-connected-00.svg │ │ │ ├── network-wireless-connected-100.svg │ │ │ ├── network-wireless-connected-25.svg │ │ │ ├── network-wireless-connected-50.svg │ │ │ ├── network-wireless-connected-75.svg │ │ │ ├── network-wireless-disconnected.svg │ │ │ ├── network-wireless-signal-excellent.svg │ │ │ ├── network-wireless-signal-good.svg │ │ │ ├── network-wireless-signal-none.svg │ │ │ ├── network-wireless-signal-ok.svg │ │ │ ├── network-wireless-signal-weak.svg │ │ │ ├── nm-device-wired.svg │ │ │ ├── nm-nm-signal-00.svg │ │ │ ├── nm-nm-signal-100.svg │ │ │ ├── nm-nm-signal-25.svg │ │ │ ├── nm-nm-signal-50.svg │ │ │ ├── nm-nm-signal-75.svg │ │ │ ├── nm-no-connection.svg │ │ │ ├── redshift-status-off.svg │ │ │ ├── redshift-status-on.svg │ │ │ ├── rotation-allowed.svg │ │ │ ├── rotation-locked-landscape.svg │ │ │ ├── rotation-locked-portrait.svg │ │ │ ├── script-error.svg │ │ │ ├── security-high.svg │ │ │ ├── security-low.svg │ │ │ ├── security-medium.svg │ │ │ ├── state-download.svg │ │ │ ├── state-error.svg │ │ │ ├── state-information.svg │ │ │ ├── state-offline.svg │ │ │ ├── state-ok.svg │ │ │ ├── state-pause.svg │ │ │ ├── state-sync.svg │ │ │ ├── state-warning.svg │ │ │ ├── task-complete.svg │ │ │ ├── task-process-0.svg │ │ │ ├── task-process-1.svg │ │ │ ├── task-process-2.svg │ │ │ ├── task-process-3.svg │ │ │ ├── task-process-4.svg │ │ │ ├── task-recurring.svg │ │ │ ├── task-reminder.svg │ │ │ ├── telegram-attention-panel.svg │ │ │ ├── telegram-mute-panel.svg │ │ │ ├── telegram-panel.svg │ │ │ ├── temperature-cold.svg │ │ │ ├── temperature-normal.svg │ │ │ ├── temperature-warm.svg │ │ │ ├── transmission-tray-icon.svg │ │ │ ├── uninstall.svg │ │ │ ├── update-high.svg │ │ │ ├── update-low.svg │ │ │ ├── update-medium.svg │ │ │ ├── update-none.svg │ │ │ ├── user-available.svg │ │ │ ├── user-away-extended.svg │ │ │ ├── user-away.svg │ │ │ ├── user-busy.svg │ │ │ ├── user-idle.svg │ │ │ ├── user-invisible.svg │ │ │ ├── user-offline.svg │ │ │ ├── user-online.svg │ │ │ └── video-card-inactive.svg │ │ │ ├── 32 │ │ │ ├── appointment-recurring.svg │ │ │ ├── battery-000-charging.svg │ │ │ ├── battery-000.svg │ │ │ ├── battery-010-charging.svg │ │ │ ├── battery-010.svg │ │ │ ├── battery-020-charging.svg │ │ │ ├── battery-020.svg │ │ │ ├── battery-030-charging.svg │ │ │ ├── battery-030.svg │ │ │ ├── battery-040-charging.svg │ │ │ ├── battery-040.svg │ │ │ ├── battery-050-charging.svg │ │ │ ├── battery-050.svg │ │ │ ├── battery-060-charging.svg │ │ │ ├── battery-060.svg │ │ │ ├── battery-070-charging.svg │ │ │ ├── battery-070.svg │ │ │ ├── battery-080-charging.svg │ │ │ ├── battery-080.svg │ │ │ ├── battery-090-charging.svg │ │ │ ├── battery-090.svg │ │ │ ├── battery-100-charging.svg │ │ │ ├── battery-100.svg │ │ │ ├── battery-caution-charging.svg │ │ │ ├── battery-caution.svg │ │ │ ├── battery-empty-charging.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full-charging.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-good-charging.svg │ │ │ ├── battery-good.svg │ │ │ ├── battery-low-charging.svg │ │ │ ├── battery-low.svg │ │ │ ├── battery-missing.svg │ │ │ ├── call-incoming.svg │ │ │ ├── call-missed.svg │ │ │ ├── call-outgoing.svg │ │ │ ├── dialog-warning.svg │ │ │ ├── rotation-allowed.svg │ │ │ ├── rotation-locked-landscape.svg │ │ │ ├── rotation-locked-portrait.svg │ │ │ └── task-recurring.svg │ │ │ ├── 48 │ │ │ └── dialog-warning.svg │ │ │ ├── 64 │ │ │ ├── dialog-error.svg │ │ │ ├── dialog-information.svg │ │ │ ├── dialog-password.svg │ │ │ ├── dialog-positive.svg │ │ │ ├── dialog-question.svg │ │ │ ├── dialog-warning.svg │ │ │ ├── image-missing.svg │ │ │ ├── security-high.svg │ │ │ ├── security-low.svg │ │ │ └── security-medium.svg │ │ │ └── symbolic │ │ │ ├── alarm-symbolic.svg │ │ │ ├── appointment-missed-symbolic.svg │ │ │ ├── appointment-soon-symbolic.svg │ │ │ ├── audio-volume-high-symbolic.svg │ │ │ ├── audio-volume-low-symbolic.svg │ │ │ ├── audio-volume-medium-symbolic.svg │ │ │ ├── audio-volume-muted-symbolic.svg │ │ │ ├── auth-sim-locked-symbolic.svg │ │ │ ├── auth-sim-missing-symbolic.svg │ │ │ ├── avatar-default-symbolic.svg │ │ │ ├── battery-caution-charging-symbolic.svg │ │ │ ├── battery-caution-symbolic.svg │ │ │ ├── battery-empty-charging-symbolic.svg │ │ │ ├── battery-empty-symbolic.svg │ │ │ ├── battery-full-charged-symbolic.svg │ │ │ ├── battery-full-charging-symbolic.svg │ │ │ ├── battery-full-symbolic.svg │ │ │ ├── battery-good-charging-symbolic.svg │ │ │ ├── battery-good-symbolic.svg │ │ │ ├── battery-low-charging-symbolic.svg │ │ │ ├── battery-low-symbolic.svg │ │ │ ├── battery-missing-symbolic.svg │ │ │ ├── call-incoming-symbolic.svg │ │ │ ├── call-missed-symbolic.svg │ │ │ ├── call-outgoing-symbolic.svg │ │ │ ├── changes-allow-symbolic.svg │ │ │ ├── changes-prevent-symbolic.svg │ │ │ ├── channel-insecure-symbolic.svg │ │ │ ├── channel-secure-symbolic.svg │ │ │ ├── computer-fail-symbolic.svg │ │ │ ├── content-loading-symbolic.svg │ │ │ ├── dialog-error-symbolic.svg │ │ │ ├── dialog-warning-symbolic.svg │ │ │ ├── folder-open-symbolic.svg │ │ │ ├── image-loading-symbolic.svg │ │ │ ├── mail-attachment-symbolic.svg │ │ │ ├── mail-read-symbolic.svg │ │ │ ├── mail-replied-symbolic.svg │ │ │ ├── mail-unread-symbolic.svg │ │ │ ├── media-playlist-consecutive-symbolic-rtl.svg │ │ │ ├── media-playlist-consecutive-symbolic.svg │ │ │ ├── media-playlist-repeat-song-symbolic-rtl.svg │ │ │ ├── media-playlist-repeat-song-symbolic.svg │ │ │ ├── media-playlist-repeat-symbolic-rtl.svg │ │ │ ├── media-playlist-repeat-symbolic.svg │ │ │ ├── media-playlist-shuffle-symbolic-rtl.svg │ │ │ ├── media-playlist-shuffle-symbolic.svg │ │ │ ├── microphone-sensitivity-high-symbolic.svg │ │ │ ├── microphone-sensitivity-low-symbolic.svg │ │ │ ├── microphone-sensitivity-medium-symbolic.svg │ │ │ ├── microphone-sensitivity-muted-symbolic.svg │ │ │ ├── non-starred-symbolic.svg │ │ │ ├── printer-error-symbolic.svg │ │ │ ├── printer-printing-symbolic.svg │ │ │ ├── printer-warning-symbolic.svg │ │ │ ├── process-working-symbolic.svg │ │ │ ├── rating-unrated.svg │ │ │ ├── rotation-allowed-symbolic.svg │ │ │ ├── rotation-locked-landscape-symbolic.svg │ │ │ ├── rotation-locked-portrait-symbolic.svg │ │ │ ├── rotation-locked-symbolic.svg │ │ │ ├── security-high-symbolic.svg │ │ │ ├── security-low-symbolic.svg │ │ │ ├── security-medium-symbolic.svg │ │ │ ├── semi-starred-symbolic-rtl.svg │ │ │ ├── semi-starred-symbolic.svg │ │ │ ├── starred-symbolic.svg │ │ │ ├── system-lock-screen-symbolic.svg │ │ │ ├── user-available-symbolic.svg │ │ │ ├── user-away-symbolic.svg │ │ │ ├── user-busy-symbolic.svg │ │ │ ├── user-idle-symbolic.svg │ │ │ ├── user-invisible-symbolic.svg │ │ │ ├── user-not-tracked-symbolic.svg │ │ │ ├── user-offline-symbolic.svg │ │ │ ├── user-status-pending-symbolic.svg │ │ │ ├── user-trash-full-symbolic.svg │ │ │ ├── view-wrapped-symbolic-rtl.svg │ │ │ └── view-wrapped-symbolic.svg │ ├── banner.png │ ├── misc │ │ ├── bazqux.png │ │ ├── feedly.png │ │ ├── flags │ │ │ ├── cs.png │ │ │ ├── da.png │ │ │ ├── de.png │ │ │ ├── en.png │ │ │ ├── en_GB.png │ │ │ ├── en_US.png │ │ │ ├── es.png │ │ │ ├── fi.png │ │ │ ├── fr.png │ │ │ ├── gl.png │ │ │ ├── he.png │ │ │ ├── id.png │ │ │ ├── it.png │ │ │ ├── ja.png │ │ │ ├── lt.png │ │ │ ├── nl.png │ │ │ ├── pl.png │ │ │ ├── pt_BR.png │ │ │ ├── pt_PT.png │ │ │ ├── ru.png │ │ │ ├── sv_SE.png │ │ │ ├── tr.png │ │ │ ├── uk.png │ │ │ ├── zh_CN.png │ │ │ └── zh_TW.png │ │ ├── freshrss.png │ │ ├── gmail.png │ │ ├── google.png │ │ ├── image-placeholder-error.png │ │ ├── image-placeholder.png │ │ ├── inoreader.png │ │ ├── miniflux.png │ │ ├── nextcloud.png │ │ ├── reddit.png │ │ ├── reedah.png │ │ ├── theoldreader.png │ │ └── tt-rss.png │ ├── official_pictures │ │ ├── main-window-linux.png │ │ └── main-window-windows.png │ ├── original_sizes │ │ ├── banner.psd │ │ ├── rssguard.png │ │ ├── rssguard_mono.png │ │ ├── rssguard_plain.png │ │ └── rssguard_plain_mono.png │ ├── rssguard.ico │ ├── rssguard.png │ ├── rssguard_mono.png │ ├── rssguard_plain.png │ └── rssguard_plain_mono.png ├── icons.qrc ├── info │ └── greader-api.pdf ├── initial_feeds │ └── feeds-en_US.opml ├── litehtml │ └── master.css ├── macosx │ ├── Info.plist.in │ └── rssguard.icns ├── nsis │ ├── NSIS.definitions.nsh.in │ └── NSIS.template.in ├── rssguard.qrc ├── rssguard.rc.in ├── scripts │ ├── clang-format │ │ └── clang-format.exe │ ├── generate-used-icons.sh │ ├── github-actions │ │ ├── build-linux-mac.sh │ │ ├── build-windows.ps1 │ │ └── prepare-linux.sh │ ├── icu │ │ ├── APIChangeReport.html │ │ ├── LICENSE │ │ ├── bin64 │ │ │ ├── derb.exe │ │ │ ├── genbrk.exe │ │ │ ├── genccode.exe │ │ │ ├── gencfu.exe │ │ │ ├── gencmn.exe │ │ │ ├── gencnval.exe │ │ │ ├── gendict.exe │ │ │ ├── gennorm2.exe │ │ │ ├── genrb.exe │ │ │ ├── gensprep.exe │ │ │ ├── icudt77.dll │ │ │ ├── icuexportdata.exe │ │ │ ├── icuin77.dll │ │ │ ├── icuinfo.exe │ │ │ ├── icuio77.dll │ │ │ ├── icupkg.exe │ │ │ ├── icutest77.exe │ │ │ ├── icutu77.dll │ │ │ ├── icuuc77.dll │ │ │ ├── makeconv.exe │ │ │ ├── pkgdata.exe │ │ │ ├── testplug.dll │ │ │ └── uconv.exe │ │ ├── icu4c.css │ │ ├── include │ │ │ └── unicode │ │ │ │ ├── alphaindex.h │ │ │ │ ├── appendable.h │ │ │ │ ├── basictz.h │ │ │ │ ├── brkiter.h │ │ │ │ ├── bytestream.h │ │ │ │ ├── bytestrie.h │ │ │ │ ├── bytestriebuilder.h │ │ │ │ ├── calendar.h │ │ │ │ ├── caniter.h │ │ │ │ ├── casemap.h │ │ │ │ ├── char16ptr.h │ │ │ │ ├── chariter.h │ │ │ │ ├── choicfmt.h │ │ │ │ ├── coleitr.h │ │ │ │ ├── coll.h │ │ │ │ ├── compactdecimalformat.h │ │ │ │ ├── curramt.h │ │ │ │ ├── currpinf.h │ │ │ │ ├── currunit.h │ │ │ │ ├── datefmt.h │ │ │ │ ├── dbbi.h │ │ │ │ ├── dcfmtsym.h │ │ │ │ ├── decimfmt.h │ │ │ │ ├── displayoptions.h │ │ │ │ ├── docmain.h │ │ │ │ ├── dtfmtsym.h │ │ │ │ ├── dtintrv.h │ │ │ │ ├── dtitvfmt.h │ │ │ │ ├── dtitvinf.h │ │ │ │ ├── dtptngen.h │ │ │ │ ├── dtrule.h │ │ │ │ ├── edits.h │ │ │ │ ├── enumset.h │ │ │ │ ├── errorcode.h │ │ │ │ ├── fieldpos.h │ │ │ │ ├── filteredbrk.h │ │ │ │ ├── fmtable.h │ │ │ │ ├── format.h │ │ │ │ ├── formattednumber.h │ │ │ │ ├── formattedvalue.h │ │ │ │ ├── fpositer.h │ │ │ │ ├── gender.h │ │ │ │ ├── gregocal.h │ │ │ │ ├── icudataver.h │ │ │ │ ├── icuplug.h │ │ │ │ ├── idna.h │ │ │ │ ├── listformatter.h │ │ │ │ ├── localebuilder.h │ │ │ │ ├── localematcher.h │ │ │ │ ├── localpointer.h │ │ │ │ ├── locdspnm.h │ │ │ │ ├── locid.h │ │ │ │ ├── measfmt.h │ │ │ │ ├── measunit.h │ │ │ │ ├── measure.h │ │ │ │ ├── messageformat2.h │ │ │ │ ├── messageformat2_arguments.h │ │ │ │ ├── messageformat2_data_model.h │ │ │ │ ├── messageformat2_data_model_names.h │ │ │ │ ├── messageformat2_formattable.h │ │ │ │ ├── messageformat2_function_registry.h │ │ │ │ ├── messagepattern.h │ │ │ │ ├── msgfmt.h │ │ │ │ ├── normalizer2.h │ │ │ │ ├── normlzr.h │ │ │ │ ├── nounit.h │ │ │ │ ├── numberformatter.h │ │ │ │ ├── numberrangeformatter.h │ │ │ │ ├── numfmt.h │ │ │ │ ├── numsys.h │ │ │ │ ├── parseerr.h │ │ │ │ ├── parsepos.h │ │ │ │ ├── platform.h │ │ │ │ ├── plurfmt.h │ │ │ │ ├── plurrule.h │ │ │ │ ├── ptypes.h │ │ │ │ ├── putil.h │ │ │ │ ├── rbbi.h │ │ │ │ ├── rbnf.h │ │ │ │ ├── rbtz.h │ │ │ │ ├── regex.h │ │ │ │ ├── region.h │ │ │ │ ├── reldatefmt.h │ │ │ │ ├── rep.h │ │ │ │ ├── resbund.h │ │ │ │ ├── schriter.h │ │ │ │ ├── scientificnumberformatter.h │ │ │ │ ├── search.h │ │ │ │ ├── selfmt.h │ │ │ │ ├── simpleformatter.h │ │ │ │ ├── simplenumberformatter.h │ │ │ │ ├── simpletz.h │ │ │ │ ├── smpdtfmt.h │ │ │ │ ├── sortkey.h │ │ │ │ ├── std_string.h │ │ │ │ ├── strenum.h │ │ │ │ ├── stringoptions.h │ │ │ │ ├── stringpiece.h │ │ │ │ ├── stringtriebuilder.h │ │ │ │ ├── stsearch.h │ │ │ │ ├── symtable.h │ │ │ │ ├── tblcoll.h │ │ │ │ ├── timezone.h │ │ │ │ ├── tmunit.h │ │ │ │ ├── tmutamt.h │ │ │ │ ├── tmutfmt.h │ │ │ │ ├── translit.h │ │ │ │ ├── tzfmt.h │ │ │ │ ├── tznames.h │ │ │ │ ├── tzrule.h │ │ │ │ ├── tztrans.h │ │ │ │ ├── ubidi.h │ │ │ │ ├── ubiditransform.h │ │ │ │ ├── ubrk.h │ │ │ │ ├── ucal.h │ │ │ │ ├── ucasemap.h │ │ │ │ ├── ucat.h │ │ │ │ ├── uchar.h │ │ │ │ ├── ucharstrie.h │ │ │ │ ├── ucharstriebuilder.h │ │ │ │ ├── uchriter.h │ │ │ │ ├── uclean.h │ │ │ │ ├── ucnv.h │ │ │ │ ├── ucnv_cb.h │ │ │ │ ├── ucnv_err.h │ │ │ │ ├── ucnvsel.h │ │ │ │ ├── ucol.h │ │ │ │ ├── ucoleitr.h │ │ │ │ ├── uconfig.h │ │ │ │ ├── ucpmap.h │ │ │ │ ├── ucptrie.h │ │ │ │ ├── ucsdet.h │ │ │ │ ├── ucurr.h │ │ │ │ ├── udat.h │ │ │ │ ├── udata.h │ │ │ │ ├── udateintervalformat.h │ │ │ │ ├── udatpg.h │ │ │ │ ├── udisplaycontext.h │ │ │ │ ├── udisplayoptions.h │ │ │ │ ├── uenum.h │ │ │ │ ├── ufieldpositer.h │ │ │ │ ├── uformattable.h │ │ │ │ ├── uformattednumber.h │ │ │ │ ├── uformattedvalue.h │ │ │ │ ├── ugender.h │ │ │ │ ├── uidna.h │ │ │ │ ├── uiter.h │ │ │ │ ├── uldnames.h │ │ │ │ ├── ulistformatter.h │ │ │ │ ├── uloc.h │ │ │ │ ├── ulocale.h │ │ │ │ ├── ulocbuilder.h │ │ │ │ ├── ulocdata.h │ │ │ │ ├── umachine.h │ │ │ │ ├── umisc.h │ │ │ │ ├── umsg.h │ │ │ │ ├── umutablecptrie.h │ │ │ │ ├── unifilt.h │ │ │ │ ├── unifunct.h │ │ │ │ ├── unimatch.h │ │ │ │ ├── unirepl.h │ │ │ │ ├── uniset.h │ │ │ │ ├── unistr.h │ │ │ │ ├── unorm.h │ │ │ │ ├── unorm2.h │ │ │ │ ├── unum.h │ │ │ │ ├── unumberformatter.h │ │ │ │ ├── unumberoptions.h │ │ │ │ ├── unumberrangeformatter.h │ │ │ │ ├── unumsys.h │ │ │ │ ├── uobject.h │ │ │ │ ├── upluralrules.h │ │ │ │ ├── uregex.h │ │ │ │ ├── uregion.h │ │ │ │ ├── ureldatefmt.h │ │ │ │ ├── urename.h │ │ │ │ ├── urep.h │ │ │ │ ├── ures.h │ │ │ │ ├── uscript.h │ │ │ │ ├── usearch.h │ │ │ │ ├── uset.h │ │ │ │ ├── usetiter.h │ │ │ │ ├── ushape.h │ │ │ │ ├── usimplenumberformatter.h │ │ │ │ ├── uspoof.h │ │ │ │ ├── usprep.h │ │ │ │ ├── ustdio.h │ │ │ │ ├── ustream.h │ │ │ │ ├── ustring.h │ │ │ │ ├── ustringtrie.h │ │ │ │ ├── utext.h │ │ │ │ ├── utf.h │ │ │ │ ├── utf16.h │ │ │ │ ├── utf32.h │ │ │ │ ├── utf8.h │ │ │ │ ├── utf_old.h │ │ │ │ ├── utmscale.h │ │ │ │ ├── utrace.h │ │ │ │ ├── utrans.h │ │ │ │ ├── utypes.h │ │ │ │ ├── uvernum.h │ │ │ │ ├── uversion.h │ │ │ │ └── vtzone.h │ │ ├── lib64 │ │ │ ├── icudt.exp │ │ │ ├── icudt.lib │ │ │ ├── icudt.pdb │ │ │ ├── icuin.exp │ │ │ ├── icuin.lib │ │ │ ├── icuin.pdb │ │ │ ├── icuio.exp │ │ │ ├── icuio.lib │ │ │ ├── icuio.pdb │ │ │ ├── icutest.exp │ │ │ ├── icutest.lib │ │ │ ├── icutest.pdb │ │ │ ├── icutu.exp │ │ │ ├── icutu.lib │ │ │ ├── icutu.pdb │ │ │ ├── icuuc.exp │ │ │ ├── icuuc.lib │ │ │ ├── icuuc.pdb │ │ │ └── testplug.pdb │ │ └── readme.html │ ├── mpv │ │ ├── input.conf │ │ └── mpv.conf │ ├── redist │ │ ├── msvcp140.dll │ │ ├── msvcp140_1.dll │ │ ├── msvcp140_2.dll │ │ ├── vcruntime140.dll │ │ └── vcruntime140_1.dll │ ├── scrapers │ │ ├── abc-my-comments.py │ │ ├── funnyjunk-embed-gifs.py │ │ ├── github-releases.py │ │ ├── hudebnibazar.py │ │ ├── metacritic.py │ │ ├── njcom.py │ │ ├── nvidia-driver-articles.py │ │ ├── old.reddit.py │ │ ├── piped-fix.py │ │ ├── product-hunt.py │ │ ├── scrape-full-articles.py │ │ ├── search-xml-feeds.py │ │ ├── trans-stdin.py │ │ ├── translate-feed.py │ │ ├── twitter.py │ │ ├── wiki-inthenews.py │ │ ├── wiki-qotd.py │ │ └── youtube-limit-length.py │ └── standalone │ │ └── article-extractor │ │ ├── CMakeLists.txt │ │ ├── go.mod │ │ └── main.go ├── skins │ ├── minimal-base │ │ ├── html_enclosure_every.html │ │ ├── html_enclosure_image.html │ │ ├── html_single_message.html │ │ ├── html_style_base.scss │ │ ├── html_wrapper.html │ │ └── qt_style_forced.qss │ ├── minimal-dark │ │ ├── html_style.css │ │ ├── html_style.scss │ │ ├── metadata.xml │ │ └── qt_style.qss │ └── minimal-light │ │ ├── html_style.css │ │ ├── html_style.scss │ │ ├── metadata.xml │ │ └── qt_style.qss ├── sounds │ ├── boing.wav │ ├── doorbell.wav │ ├── error.wav │ ├── fanfare.wav │ ├── fanfare2.wav │ ├── goodresult.wav │ ├── notify.wav │ ├── rooster.wav │ └── sheep.wav ├── sql.qrc ├── sql │ ├── db_init.sql │ ├── db_init_mysql.sql │ └── db_init_sqlite.sql ├── tests │ └── data.sql └── text │ ├── CHANGELOG │ ├── COPYING_APACHE │ ├── COPYING_BOOLINQ │ ├── COPYING_BSD │ ├── COPYING_GNU_GPL │ ├── COPYING_GNU_LGPL │ ├── COPYING_GNU_LGPL_21 │ ├── COPYING_QT │ └── licenses.json └── src ├── cmake_plugins.cmake ├── librssguard-feedly ├── CMakeLists.txt ├── plugin.json └── src │ ├── definitions.h │ ├── feedlyentrypoint.cpp │ ├── feedlyentrypoint.h │ ├── feedlynetwork.cpp │ ├── feedlynetwork.h │ ├── feedlyserviceroot.cpp │ ├── feedlyserviceroot.h │ └── gui │ ├── feedlyaccountdetails.cpp │ ├── feedlyaccountdetails.h │ ├── feedlyaccountdetails.ui │ ├── formeditfeedlyaccount.cpp │ └── formeditfeedlyaccount.h ├── librssguard-gmail ├── CMakeLists.txt ├── plugin.json └── src │ ├── 3rd-party │ ├── mimesis │ │ ├── mimesis.cpp │ │ ├── mimesis.hpp │ │ ├── quoted-printable.cpp │ │ └── quoted-printable.hpp │ └── richtexteditor │ │ ├── mrichtextedit.cpp │ │ ├── mrichtextedit.h │ │ ├── mrichtextedit.ui │ │ ├── mtextedit.cpp │ │ └── mtextedit.h │ ├── definitions.h │ ├── gmailentrypoint.cpp │ ├── gmailentrypoint.h │ ├── gmailnetworkfactory.cpp │ ├── gmailnetworkfactory.h │ ├── gmailserviceroot.cpp │ ├── gmailserviceroot.h │ └── gui │ ├── emailpreviewer.cpp │ ├── emailpreviewer.h │ ├── emailpreviewer.ui │ ├── emailrecipientcontrol.cpp │ ├── emailrecipientcontrol.h │ ├── formaddeditemail.cpp │ ├── formaddeditemail.h │ ├── formaddeditemail.ui │ ├── formeditgmailaccount.cpp │ ├── formeditgmailaccount.h │ ├── gmailaccountdetails.cpp │ ├── gmailaccountdetails.h │ └── gmailaccountdetails.ui ├── librssguard-greader ├── CMakeLists.txt ├── plugin.json └── src │ ├── definitions.h │ ├── greaderentrypoint.cpp │ ├── greaderentrypoint.h │ ├── greaderfeed.cpp │ ├── greaderfeed.h │ ├── greadernetwork.cpp │ ├── greadernetwork.h │ ├── greaderserviceroot.cpp │ ├── greaderserviceroot.h │ └── gui │ ├── formeditgreaderaccount.cpp │ ├── formeditgreaderaccount.h │ ├── formgreaderfeeddetails.cpp │ ├── formgreaderfeeddetails.h │ ├── greaderaccountdetails.cpp │ ├── greaderaccountdetails.h │ ├── greaderaccountdetails.ui │ ├── greaderfeeddetails.cpp │ ├── greaderfeeddetails.h │ └── greaderfeeddetails.ui ├── librssguard-nextcloud ├── CMakeLists.txt ├── plugin.json └── src │ ├── definitions.h │ ├── gui │ ├── formeditnextcloudaccount.cpp │ ├── formeditnextcloudaccount.h │ ├── nextcloudaccountdetails.cpp │ ├── nextcloudaccountdetails.h │ └── nextcloudaccountdetails.ui │ ├── nextcloudfeed.cpp │ ├── nextcloudfeed.h │ ├── nextcloudnetworkfactory.cpp │ ├── nextcloudnetworkfactory.h │ ├── nextcloudserviceentrypoint.cpp │ ├── nextcloudserviceentrypoint.h │ ├── nextcloudserviceroot.cpp │ └── nextcloudserviceroot.h ├── librssguard-reddit ├── CMakeLists.txt ├── plugin.json └── src │ ├── 3rd-party │ └── mimesis │ │ ├── mimesis.cpp │ │ ├── mimesis.hpp │ │ ├── quoted-printable.cpp │ │ └── quoted-printable.hpp │ ├── definitions.h │ ├── gui │ ├── formeditredditaccount.cpp │ ├── formeditredditaccount.h │ ├── redditaccountdetails.cpp │ ├── redditaccountdetails.h │ └── redditaccountdetails.ui │ ├── redditcategory.cpp │ ├── redditcategory.h │ ├── redditentrypoint.cpp │ ├── redditentrypoint.h │ ├── redditnetworkfactory.cpp │ ├── redditnetworkfactory.h │ ├── redditserviceroot.cpp │ ├── redditserviceroot.h │ ├── redditsubscription.cpp │ └── redditsubscription.h ├── librssguard-standard ├── CMakeLists.txt ├── plugin.json └── src │ ├── 3rd-party │ └── qcompressor │ │ ├── qcompressor.cpp │ │ └── qcompressor.h │ ├── definitions.h │ ├── gui │ ├── formdiscoverfeeds.cpp │ ├── formdiscoverfeeds.h │ ├── formdiscoverfeeds.ui │ ├── formeditstandardaccount.cpp │ ├── formeditstandardaccount.h │ ├── formstandardfeeddetails.cpp │ ├── formstandardfeeddetails.h │ ├── formstandardimportexport.cpp │ ├── formstandardimportexport.h │ ├── formstandardimportexport.ui │ ├── standardaccountdetails.cpp │ ├── standardaccountdetails.h │ ├── standardaccountdetails.ui │ ├── standardfeeddetails.cpp │ ├── standardfeeddetails.h │ ├── standardfeeddetails.ui │ ├── standardfeedexpdetails.cpp │ ├── standardfeedexpdetails.h │ ├── standardfeedexpdetails.ui │ ├── standardfeednetworkdetails.cpp │ ├── standardfeednetworkdetails.h │ └── standardfeednetworkdetails.ui │ ├── parsers │ ├── atomparser.cpp │ ├── atomparser.h │ ├── feedparser.cpp │ ├── feedparser.h │ ├── icalparser.cpp │ ├── icalparser.h │ ├── jsonparser.cpp │ ├── jsonparser.h │ ├── rdfparser.cpp │ ├── rdfparser.h │ ├── rssparser.cpp │ ├── rssparser.h │ ├── sitemapparser.cpp │ └── sitemapparser.h │ ├── quiterssimport.cpp │ ├── quiterssimport.h │ ├── standardcategory.cpp │ ├── standardcategory.h │ ├── standardfeed.cpp │ ├── standardfeed.h │ ├── standardfeedsimportexportmodel.cpp │ ├── standardfeedsimportexportmodel.h │ ├── standardserviceentrypoint.cpp │ ├── standardserviceentrypoint.h │ ├── standardserviceroot.cpp │ └── standardserviceroot.h ├── librssguard-ttrss ├── CMakeLists.txt ├── plugin.json └── src │ ├── definitions.h │ ├── gui │ ├── formeditttrssaccount.cpp │ ├── formeditttrssaccount.h │ ├── formttrssfeeddetails.cpp │ ├── formttrssfeeddetails.h │ ├── formttrssnote.cpp │ ├── formttrssnote.h │ ├── formttrssnote.ui │ ├── ttrssaccountdetails.cpp │ ├── ttrssaccountdetails.h │ ├── ttrssaccountdetails.ui │ ├── ttrssfeeddetails.cpp │ ├── ttrssfeeddetails.h │ └── ttrssfeeddetails.ui │ ├── ttrssfeed.cpp │ ├── ttrssfeed.h │ ├── ttrssnetworkfactory.cpp │ ├── ttrssnetworkfactory.h │ ├── ttrssnotetopublish.h │ ├── ttrssserviceentrypoint.cpp │ ├── ttrssserviceentrypoint.h │ ├── ttrssserviceroot.cpp │ └── ttrssserviceroot.h ├── librssguard ├── 3rd-party │ ├── .clang-format │ └── sc │ │ ├── simplecrypt.cpp │ │ └── simplecrypt.h ├── CMakeLists.txt ├── core │ ├── articlelistnotificationmodel.cpp │ ├── articlelistnotificationmodel.h │ ├── feeddownloader.cpp │ ├── feeddownloader.h │ ├── feedsmodel.cpp │ ├── feedsmodel.h │ ├── feedsproxymodel.cpp │ ├── feedsproxymodel.h │ ├── message.cpp │ ├── message.h │ ├── messagesmodel.cpp │ ├── messagesmodel.h │ ├── messagesmodelsqllayer.cpp │ ├── messagesmodelsqllayer.h │ ├── messagesproxymodel.cpp │ └── messagesproxymodel.h ├── database │ ├── databasecleaner.cpp │ ├── databasecleaner.h │ ├── databasedriver.cpp │ ├── databasedriver.h │ ├── databasefactory.cpp │ ├── databasefactory.h │ ├── databasequeries.cpp │ ├── databasequeries.h │ ├── databasewriter.cpp │ ├── databasewriter.h │ ├── mariadbdriver.cpp │ ├── mariadbdriver.h │ ├── sqlitedriver.cpp │ ├── sqlitedriver.h │ ├── sqlquery.cpp │ └── sqlquery.h ├── definitions │ ├── definitions.h │ ├── globals.cpp │ ├── globals.h │ └── typedefs.h ├── dynamic-shortcuts │ ├── dynamicshortcuts.cpp │ ├── dynamicshortcuts.h │ ├── dynamicshortcutswidget.cpp │ ├── dynamicshortcutswidget.h │ ├── shortcutcatcher.cpp │ └── shortcutcatcher.h ├── exceptions │ ├── applicationexception.cpp │ ├── applicationexception.h │ ├── feedfetchexception.cpp │ ├── feedfetchexception.h │ ├── feedrecognizedbutfailedexception.cpp │ ├── feedrecognizedbutfailedexception.h │ ├── filteringexception.cpp │ ├── filteringexception.h │ ├── ioexception.cpp │ ├── ioexception.h │ ├── networkexception.cpp │ ├── networkexception.h │ ├── processexception.cpp │ ├── processexception.h │ ├── scriptexception.cpp │ ├── scriptexception.h │ ├── sqlexception.cpp │ └── sqlexception.h ├── filtering │ ├── filteringsystem.cpp │ ├── filteringsystem.h │ ├── filterobjects.cpp │ ├── filterobjects.h │ ├── messagefilter.cpp │ ├── messagefilter.h │ ├── messagesforfiltersmodel.cpp │ └── messagesforfiltersmodel.h ├── gui │ ├── dialogs │ │ ├── filedialog.cpp │ │ ├── filedialog.h │ │ ├── formabout.cpp │ │ ├── formabout.h │ │ ├── formabout.ui │ │ ├── formaddaccount.cpp │ │ ├── formaddaccount.h │ │ ├── formaddaccount.ui │ │ ├── formbackupdatabasesettings.cpp │ │ ├── formbackupdatabasesettings.h │ │ ├── formbackupdatabasesettings.ui │ │ ├── formdatabasecleanup.cpp │ │ ├── formdatabasecleanup.h │ │ ├── formdatabasecleanup.ui │ │ ├── formlog.cpp │ │ ├── formlog.h │ │ ├── formlog.ui │ │ ├── formmain.cpp │ │ ├── formmain.h │ │ ├── formmain.ui │ │ ├── formmessagefiltersmanager.cpp │ │ ├── formmessagefiltersmanager.h │ │ ├── formmessagefiltersmanager.ui │ │ ├── formprogressworker.cpp │ │ ├── formprogressworker.h │ │ ├── formprogressworker.ui │ │ ├── formrestoredatabasesettings.cpp │ │ ├── formrestoredatabasesettings.h │ │ ├── formrestoredatabasesettings.ui │ │ ├── formsettings.cpp │ │ ├── formsettings.h │ │ ├── formsettings.ui │ │ ├── formupdate.cpp │ │ ├── formupdate.h │ │ └── formupdate.ui │ ├── feedmessageviewer.cpp │ ├── feedmessageviewer.h │ ├── feedsview.cpp │ ├── feedsview.h │ ├── guiutilities.cpp │ ├── guiutilities.h │ ├── itemdetails.cpp │ ├── itemdetails.h │ ├── itemdetails.ui │ ├── mediaplayer │ │ ├── libmpv │ │ │ ├── libmpvbackend.cpp │ │ │ ├── libmpvbackend.h │ │ │ ├── libmpvwidget.cpp │ │ │ ├── libmpvwidget.h │ │ │ └── qthelper.h │ │ ├── mediaplayer.cpp │ │ ├── mediaplayer.h │ │ ├── mediaplayer.ui │ │ ├── playerbackend.cpp │ │ ├── playerbackend.h │ │ └── qtmultimedia │ │ │ ├── qtmultimediabackend.cpp │ │ │ └── qtmultimediabackend.h │ ├── messagebox.cpp │ ├── messagebox.h │ ├── messagebrowser.cpp │ ├── messagebrowser.h │ ├── messagepreviewer.cpp │ ├── messagepreviewer.h │ ├── messagesview.cpp │ ├── messagesview.h │ ├── messagetextbrowser.cpp │ ├── messagetextbrowser.h │ ├── notifications │ │ ├── articlelistnotification.cpp │ │ ├── articlelistnotification.h │ │ ├── articlelistnotification.ui │ │ ├── basetoastnotification.cpp │ │ ├── basetoastnotification.h │ │ ├── notificationseditor.cpp │ │ ├── notificationseditor.h │ │ ├── notificationseditor.ui │ │ ├── singlenotificationeditor.cpp │ │ ├── singlenotificationeditor.h │ │ ├── singlenotificationeditor.ui │ │ ├── toastnotification.cpp │ │ ├── toastnotification.h │ │ ├── toastnotification.ui │ │ ├── toastnotificationsmanager.cpp │ │ └── toastnotificationsmanager.h │ ├── reusable │ │ ├── articleamountcontrol.cpp │ │ ├── articleamountcontrol.h │ │ ├── articleamountcontrol.ui │ │ ├── baselineedit.cpp │ │ ├── baselineedit.h │ │ ├── basetreeview.cpp │ │ ├── basetreeview.h │ │ ├── colortoolbutton.cpp │ │ ├── colortoolbutton.h │ │ ├── helpspoiler.cpp │ │ ├── helpspoiler.h │ │ ├── jssyntaxhighlighter.cpp │ │ ├── jssyntaxhighlighter.h │ │ ├── labelsmenu.cpp │ │ ├── labelsmenu.h │ │ ├── labelwithstatus.cpp │ │ ├── labelwithstatus.h │ │ ├── lineeditwithstatus.cpp │ │ ├── lineeditwithstatus.h │ │ ├── messagecountspinbox.cpp │ │ ├── messagecountspinbox.h │ │ ├── networkproxydetails.cpp │ │ ├── networkproxydetails.h │ │ ├── networkproxydetails.ui │ │ ├── nonclosablemenu.cpp │ │ ├── nonclosablemenu.h │ │ ├── plaintoolbutton.cpp │ │ ├── plaintoolbutton.h │ │ ├── progressbarwithtext.cpp │ │ ├── progressbarwithtext.h │ │ ├── resizablestackedwidget.cpp │ │ ├── resizablestackedwidget.h │ │ ├── scrollablemenu.cpp │ │ ├── scrollablemenu.h │ │ ├── searchlineedit.cpp │ │ ├── searchlineedit.h │ │ ├── searchtextwidget.cpp │ │ ├── searchtextwidget.h │ │ ├── searchtextwidget.ui │ │ ├── squeezelabel.cpp │ │ ├── squeezelabel.h │ │ ├── styleditemdelegate.cpp │ │ ├── styleditemdelegate.h │ │ ├── timespinbox.cpp │ │ ├── timespinbox.h │ │ ├── treeviewcolumnsmenu.cpp │ │ ├── treeviewcolumnsmenu.h │ │ ├── widgetwithstatus.cpp │ │ └── widgetwithstatus.h │ ├── settings │ │ ├── settingsbrowsermail.cpp │ │ ├── settingsbrowsermail.h │ │ ├── settingsbrowsermail.ui │ │ ├── settingsdatabase.cpp │ │ ├── settingsdatabase.h │ │ ├── settingsdatabase.ui │ │ ├── settingsfeedsmessages.cpp │ │ ├── settingsfeedsmessages.h │ │ ├── settingsfeedsmessages.ui │ │ ├── settingsgeneral.cpp │ │ ├── settingsgeneral.h │ │ ├── settingsgeneral.ui │ │ ├── settingsgui.cpp │ │ ├── settingsgui.h │ │ ├── settingsgui.ui │ │ ├── settingslocalization.cpp │ │ ├── settingslocalization.h │ │ ├── settingslocalization.ui │ │ ├── settingsmediaplayer.cpp │ │ ├── settingsmediaplayer.h │ │ ├── settingsmediaplayer.ui │ │ ├── settingsnotifications.cpp │ │ ├── settingsnotifications.h │ │ ├── settingsnotifications.ui │ │ ├── settingspanel.cpp │ │ ├── settingspanel.h │ │ ├── settingsshortcuts.cpp │ │ ├── settingsshortcuts.h │ │ ├── settingsshortcuts.ui │ │ ├── settingstoolbars.cpp │ │ ├── settingstoolbars.h │ │ └── settingstoolbars.ui │ ├── systemtrayicon.cpp │ ├── systemtrayicon.h │ ├── tabbar.cpp │ ├── tabbar.h │ ├── tabcontent.cpp │ ├── tabcontent.h │ ├── tabwidget.cpp │ ├── tabwidget.h │ ├── toolbars │ │ ├── basetoolbar.cpp │ │ ├── basetoolbar.h │ │ ├── feedstoolbar.cpp │ │ ├── feedstoolbar.h │ │ ├── messagestoolbar.cpp │ │ ├── messagestoolbar.h │ │ ├── statusbar.cpp │ │ ├── statusbar.h │ │ ├── toolbareditor.cpp │ │ ├── toolbareditor.h │ │ └── toolbareditor.ui │ ├── webbrowser.cpp │ ├── webbrowser.h │ └── webviewers │ │ ├── qlitehtml │ │ ├── documentcontainer.cpp │ │ ├── documentcontainer.h │ │ ├── qlitehtmlarticleviewer.cpp │ │ ├── qlitehtmlarticleviewer.h │ │ ├── qlitehtmlwidget.cpp │ │ └── qlitehtmlwidget.h │ │ ├── webviewer.cpp │ │ └── webviewer.h ├── miscellaneous │ ├── application.cpp │ ├── application.h │ ├── domdocument.cpp │ ├── domdocument.h │ ├── externaltool.cpp │ ├── externaltool.h │ ├── feedreader.cpp │ ├── feedreader.h │ ├── iconfactory.cpp │ ├── iconfactory.h │ ├── iofactory.cpp │ ├── iofactory.h │ ├── localization.cpp │ ├── localization.h │ ├── mutex.cpp │ ├── mutex.h │ ├── notification.cpp │ ├── notification.h │ ├── notificationfactory.cpp │ ├── notificationfactory.h │ ├── pluginfactory.cpp │ ├── pluginfactory.h │ ├── regexfactory.cpp │ ├── regexfactory.h │ ├── settings.cpp │ ├── settings.h │ ├── settingsproperties.h │ ├── singleapplication.cpp │ ├── singleapplication.h │ ├── skinfactory.cpp │ ├── skinfactory.h │ ├── systemfactory.cpp │ ├── systemfactory.h │ ├── templates.h │ ├── textfactory.cpp │ ├── textfactory.h │ ├── thread.cpp │ ├── thread.h │ ├── xmlencodingdetector.cpp │ └── xmlencodingdetector.h ├── network-web │ ├── basenetworkaccessmanager.cpp │ ├── basenetworkaccessmanager.h │ ├── downloader.cpp │ ├── downloader.h │ ├── gemini │ │ ├── geminiclient.cpp │ │ ├── geminiclient.h │ │ ├── geminiparser.cpp │ │ └── geminiparser.h │ ├── httpresponse.cpp │ ├── httpresponse.h │ ├── httpserver.cpp │ ├── httpserver.h │ ├── networkfactory.cpp │ ├── networkfactory.h │ ├── oauth2service.cpp │ ├── oauth2service.h │ ├── oauthhttphandler.cpp │ ├── oauthhttphandler.h │ ├── silentnetworkaccessmanager.cpp │ ├── silentnetworkaccessmanager.h │ ├── webfactory.cpp │ └── webfactory.h └── services │ └── abstract │ ├── accountcheckmodel.cpp │ ├── accountcheckmodel.h │ ├── cacheforserviceroot.cpp │ ├── cacheforserviceroot.h │ ├── category.cpp │ ├── category.h │ ├── feed.cpp │ ├── feed.h │ ├── feedrtlbehavior.h │ ├── gui │ ├── accountdetails.cpp │ ├── accountdetails.h │ ├── accountdetails.ui │ ├── authenticationdetails.cpp │ ├── authenticationdetails.h │ ├── authenticationdetails.ui │ ├── custommessagepreviewer.cpp │ ├── custommessagepreviewer.h │ ├── formaccountdetails.cpp │ ├── formaccountdetails.h │ ├── formaccountdetails.ui │ ├── formaddeditlabel.cpp │ ├── formaddeditlabel.h │ ├── formaddeditlabel.ui │ ├── formaddeditprobe.cpp │ ├── formaddeditprobe.h │ ├── formaddeditprobe.ui │ ├── formcategorydetails.cpp │ ├── formcategorydetails.h │ ├── formcategorydetails.ui │ ├── formfeeddetails.cpp │ ├── formfeeddetails.h │ ├── formfeeddetails.ui │ ├── multifeededitcheckbox.cpp │ └── multifeededitcheckbox.h │ ├── importantnode.cpp │ ├── importantnode.h │ ├── label.cpp │ ├── label.h │ ├── labelsnode.cpp │ ├── labelsnode.h │ ├── recyclebin.cpp │ ├── recyclebin.h │ ├── rootitem.cpp │ ├── rootitem.h │ ├── search.cpp │ ├── search.h │ ├── searchsnode.cpp │ ├── searchsnode.h │ ├── serviceentrypoint.h │ ├── serviceroot.cpp │ ├── serviceroot.h │ ├── unreadnode.cpp │ └── unreadnode.h └── rssguard ├── CMakeLists.txt └── main.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-format-ignore: -------------------------------------------------------------------------------- 1 | src/librssguard/3rd-party/* -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/rssguard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/.github/workflows/rssguard.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/README.md -------------------------------------------------------------------------------- /aqt/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/aqt/settings.ini -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/crowdin.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/5-vs-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/5-vs-4.md -------------------------------------------------------------------------------- /docs/source/_static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/_static/style.css -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contrib/bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/contrib/bugs.md -------------------------------------------------------------------------------- /docs/source/contrib/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/contrib/compile.md -------------------------------------------------------------------------------- /docs/source/contrib/localization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/contrib/localization.md -------------------------------------------------------------------------------- /docs/source/contrib/migrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/contrib/migrate.md -------------------------------------------------------------------------------- /docs/source/contrib/papi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/contrib/papi.md -------------------------------------------------------------------------------- /docs/source/donations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/donations.md -------------------------------------------------------------------------------- /docs/source/downloads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/downloads.md -------------------------------------------------------------------------------- /docs/source/features/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/cli.md -------------------------------------------------------------------------------- /docs/source/features/db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/db.md -------------------------------------------------------------------------------- /docs/source/features/dbcleaning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/dbcleaning.md -------------------------------------------------------------------------------- /docs/source/features/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/filters.md -------------------------------------------------------------------------------- /docs/source/features/gui-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/gui-concepts.md -------------------------------------------------------------------------------- /docs/source/features/images/about-skins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/images/about-skins.png -------------------------------------------------------------------------------- /docs/source/features/images/account-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/images/account-menu.png -------------------------------------------------------------------------------- /docs/source/features/images/accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/images/accounts.png -------------------------------------------------------------------------------- /docs/source/features/images/discover-feeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/images/discover-feeds.png -------------------------------------------------------------------------------- /docs/source/features/images/feed-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/images/feed-details.png -------------------------------------------------------------------------------- /docs/source/features/images/filters-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/images/filters-dialog.png -------------------------------------------------------------------------------- /docs/source/features/images/gui-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/images/gui-dark.png -------------------------------------------------------------------------------- /docs/source/features/images/label-assign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/images/label-assign.png -------------------------------------------------------------------------------- /docs/source/features/images/label-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/images/label-dialog.png -------------------------------------------------------------------------------- /docs/source/features/images/label-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/images/label-menu.png -------------------------------------------------------------------------------- /docs/source/features/images/notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/images/notif.png -------------------------------------------------------------------------------- /docs/source/features/images/opml-import-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/images/opml-import-menu.png -------------------------------------------------------------------------------- /docs/source/features/images/query-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/images/query-dialog.png -------------------------------------------------------------------------------- /docs/source/features/images/rssguard-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/images/rssguard-window.png -------------------------------------------------------------------------------- /docs/source/features/images/scrape-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/images/scrape-post.png -------------------------------------------------------------------------------- /docs/source/features/labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/labels.md -------------------------------------------------------------------------------- /docs/source/features/mediaplayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/mediaplayer.md -------------------------------------------------------------------------------- /docs/source/features/notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/notifications.md -------------------------------------------------------------------------------- /docs/source/features/opmlimport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/opmlimport.md -------------------------------------------------------------------------------- /docs/source/features/queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/queries.md -------------------------------------------------------------------------------- /docs/source/features/scraping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/scraping.md -------------------------------------------------------------------------------- /docs/source/features/skins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/skins.md -------------------------------------------------------------------------------- /docs/source/features/userdata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/features/userdata.md -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/requirements.txt -------------------------------------------------------------------------------- /docs/source/supported-os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/supported-os.md -------------------------------------------------------------------------------- /docs/source/supported-readers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/supported-readers.md -------------------------------------------------------------------------------- /docs/source/what.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/docs/source/what.md -------------------------------------------------------------------------------- /localization/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/CMakeLists.txt -------------------------------------------------------------------------------- /localization/qtbase_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_cs.ts -------------------------------------------------------------------------------- /localization/qtbase_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_da.ts -------------------------------------------------------------------------------- /localization/qtbase_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_de.ts -------------------------------------------------------------------------------- /localization/qtbase_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_es.ts -------------------------------------------------------------------------------- /localization/qtbase_fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_fi.ts -------------------------------------------------------------------------------- /localization/qtbase_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_fr.ts -------------------------------------------------------------------------------- /localization/qtbase_he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_he.ts -------------------------------------------------------------------------------- /localization/qtbase_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_it.ts -------------------------------------------------------------------------------- /localization/qtbase_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_ja.ts -------------------------------------------------------------------------------- /localization/qtbase_lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_lt.ts -------------------------------------------------------------------------------- /localization/qtbase_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_nl.ts -------------------------------------------------------------------------------- /localization/qtbase_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_pl.ts -------------------------------------------------------------------------------- /localization/qtbase_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_pt_BR.ts -------------------------------------------------------------------------------- /localization/qtbase_pt_PT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_pt_PT.ts -------------------------------------------------------------------------------- /localization/qtbase_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_ru.ts -------------------------------------------------------------------------------- /localization/qtbase_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_sv.ts -------------------------------------------------------------------------------- /localization/qtbase_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_tr.ts -------------------------------------------------------------------------------- /localization/qtbase_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_uk.ts -------------------------------------------------------------------------------- /localization/qtbase_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_zh_CN.ts -------------------------------------------------------------------------------- /localization/qtbase_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/qtbase_zh_TW.ts -------------------------------------------------------------------------------- /localization/rssguard_ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_ar.ts -------------------------------------------------------------------------------- /localization/rssguard_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_cs.ts -------------------------------------------------------------------------------- /localization/rssguard_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_da.ts -------------------------------------------------------------------------------- /localization/rssguard_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_de.ts -------------------------------------------------------------------------------- /localization/rssguard_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_en.ts -------------------------------------------------------------------------------- /localization/rssguard_en_GB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_en_GB.ts -------------------------------------------------------------------------------- /localization/rssguard_en_US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_en_US.ts -------------------------------------------------------------------------------- /localization/rssguard_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_es.ts -------------------------------------------------------------------------------- /localization/rssguard_fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_fi.ts -------------------------------------------------------------------------------- /localization/rssguard_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_fr.ts -------------------------------------------------------------------------------- /localization/rssguard_gl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_gl.ts -------------------------------------------------------------------------------- /localization/rssguard_he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_he.ts -------------------------------------------------------------------------------- /localization/rssguard_hi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_hi.ts -------------------------------------------------------------------------------- /localization/rssguard_hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_hu.ts -------------------------------------------------------------------------------- /localization/rssguard_id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_id.ts -------------------------------------------------------------------------------- /localization/rssguard_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_it.ts -------------------------------------------------------------------------------- /localization/rssguard_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_ja.ts -------------------------------------------------------------------------------- /localization/rssguard_ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_ko.ts -------------------------------------------------------------------------------- /localization/rssguard_lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_lt.ts -------------------------------------------------------------------------------- /localization/rssguard_lv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_lv.ts -------------------------------------------------------------------------------- /localization/rssguard_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_nl.ts -------------------------------------------------------------------------------- /localization/rssguard_no.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_no.ts -------------------------------------------------------------------------------- /localization/rssguard_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_pl.ts -------------------------------------------------------------------------------- /localization/rssguard_pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_pt.ts -------------------------------------------------------------------------------- /localization/rssguard_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_pt_BR.ts -------------------------------------------------------------------------------- /localization/rssguard_ro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_ro.ts -------------------------------------------------------------------------------- /localization/rssguard_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_ru.ts -------------------------------------------------------------------------------- /localization/rssguard_sk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_sk.ts -------------------------------------------------------------------------------- /localization/rssguard_sr_Latn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_sr_Latn.ts -------------------------------------------------------------------------------- /localization/rssguard_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_sv.ts -------------------------------------------------------------------------------- /localization/rssguard_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_tr.ts -------------------------------------------------------------------------------- /localization/rssguard_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_uk.ts -------------------------------------------------------------------------------- /localization/rssguard_vi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_vi.ts -------------------------------------------------------------------------------- /localization/rssguard_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_zh_CN.ts -------------------------------------------------------------------------------- /localization/rssguard_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/localization/rssguard_zh_TW.ts -------------------------------------------------------------------------------- /resources/desktop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/desktop/CMakeLists.txt -------------------------------------------------------------------------------- /resources/desktop/rssguard.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/desktop/rssguard.desktop.in -------------------------------------------------------------------------------- /resources/desktop/rssguard.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/desktop/rssguard.metainfo.xml.in -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/actions/22/qa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/actions/22/qa.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/actions/32/qa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/actions/32/qa.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/applets/22/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/applets/22/tv.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/22/elisa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/22/elisa.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/22/kde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/22/kde.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/32/kup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/32/kup.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/32/yast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/32/yast.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/VBox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/VBox.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/apper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/apper.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/ark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/ark.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/atom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/atom.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/babe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/babe.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/baloo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/baloo.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/bomi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/bomi.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/bovo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/bovo.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/buho.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/buho.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/cmake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/cmake.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/elisa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/elisa.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/emacs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/emacs.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/flow.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/fluid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/fluid.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/gimp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/gimp.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/gpick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/gpick.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/htop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/htop.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/juk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/juk.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/k3b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/k3b.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kate.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kcalc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kcalc.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kde.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kdots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kdots.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kexi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kexi.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kfind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kfind.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kget.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kig.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kile.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kiten.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kiten.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kmag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kmag.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kmail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kmail.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kmix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kmix.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kolf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kolf.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kpat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kpat.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/krdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/krdc.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/krfb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/krfb.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/ksirk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/ksirk.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/ktip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/ktip.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/ktnef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/ktnef.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/ktrip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/ktrip.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kup.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kuser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kuser.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kwave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kwave.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kwin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kwin.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/kword.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/kword.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/mixxx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/mixxx.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/mpv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/mpv.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/muon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/muon.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/nota.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/nota.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/nylas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/nylas.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/picmi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/picmi.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/plan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/plan.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/plank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/plank.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/r.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/ring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/ring.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/rocs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/rocs.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/smb4k.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/smb4k.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/apps/48/stage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/apps/48/stage.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze Dark/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze Dark/index.theme -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/box.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/emph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/emph.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/enum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/enum.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/flag.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/font.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/food.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/fork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/fork.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/gpg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/gpg.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/gps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/gps.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/hand.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/hint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/hint.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/item.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/join.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/join.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/know.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/know.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/l2h.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/l2h.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/link.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/lock.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/love.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/love.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/node.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/note.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/pin.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/port.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/port.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/qa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/qa.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/roll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/roll.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/rss.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/snap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/snap.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/sqrt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/sqrt.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/tag.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/user.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/verb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/verb.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/22/zoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/22/zoom.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/32/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/32/home.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/32/qa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/32/qa.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/32/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/32/tag.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/32/zoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/32/zoom.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/actions/48/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/actions/48/home.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/applets/22/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/applets/22/car.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/applets/22/hifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/applets/22/hifi.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/applets/22/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/applets/22/tv.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/22/anydesk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/22/anydesk.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/22/elisa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/22/elisa.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/22/homerun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/22/homerun.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/22/hotspot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/22/hotspot.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/22/kde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/22/kde.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/22/kwrite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/22/kwrite.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/22/plasma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/22/plasma.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/32/anydesk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/32/anydesk.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/32/hotspot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/32/hotspot.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/32/hwinfo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/32/hwinfo.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/32/kup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/32/kup.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/32/kwrite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/32/kwrite.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/32/yast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/32/yast.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/VBox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/VBox.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/amarok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/amarok.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/anjuta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/anjuta.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/anydesk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/anydesk.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/apper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/apper.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/aptana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/aptana.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/ardour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/ardour.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/ark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/ark.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/atom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/atom.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/author.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/author.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/babe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/babe.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/baloo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/baloo.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/blender.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/blender.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/blinken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/blinken.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/blogilo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/blogilo.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/bomber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/bomber.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/bomi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/bomi.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/bovo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/bovo.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/buho.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/buho.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/cantata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/cantata.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/cantor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/cantor.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/choqok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/choqok.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/cmake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/cmake.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/diffuse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/diffuse.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/digikam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/digikam.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/elisa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/elisa.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/emacs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/emacs.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/falkon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/falkon.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/flow.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/fluid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/fluid.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/gimp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/gimp.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/git-gui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/git-gui.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/gparted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/gparted.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/gpick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/gpick.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/gpodder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/gpodder.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/gtkhash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/gtkhash.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/homerun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/homerun.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/hotspot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/hotspot.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/htop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/htop.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/hwinfo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/hwinfo.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/joplin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/joplin.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/juk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/juk.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/k3b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/k3b.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kajongg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kajongg.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kalarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kalarm.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kalzium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kalzium.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kamoso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kamoso.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kapman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kapman.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/karbon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/karbon.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kate.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/katomic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/katomic.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kblocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kblocks.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kbruch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kbruch.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kcalc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kcalc.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kchart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kchart.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kde.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kdeapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kdeapp.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kdesvn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kdesvn.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kdiff3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kdiff3.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kdots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kdots.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/keepass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/keepass.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kexi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kexi.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kfind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kfind.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kfloppy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kfloppy.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kget.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kig.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kile.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kiriki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kiriki.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kirogi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kirogi.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kiten.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kiten.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/klines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/klines.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/klipper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/klipper.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kmag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kmag.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kmail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kmail.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kmix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kmix.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kmouth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kmouth.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kmplot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kmplot.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/knights.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/knights.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/knotes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/knotes.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kolf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kolf.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kompare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kompare.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kontact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kontact.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kopete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kopete.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/korgac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/korgac.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kpat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kpat.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kplato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kplato.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/krdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/krdc.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/krename.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/krename.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/krfb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/krfb.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kruler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kruler.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kshisen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kshisen.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/ksirk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/ksirk.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kspread.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kspread.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kstars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kstars.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/ktimer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/ktimer.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/ktip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/ktip.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/ktnef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/ktnef.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/ktouch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/ktouch.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/ktrip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/ktrip.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kup.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kuser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kuser.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kwave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kwave.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kwin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kwin.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kword.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kword.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/kwrite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/kwrite.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/labplot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/labplot.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/leocad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/leocad.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/logisim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/logisim.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/matlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/matlab.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/minuet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/minuet.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/mixxx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/mixxx.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/mpv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/mpv.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/muon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/muon.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/nota.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/nota.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/nylas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/nylas.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/octave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/octave.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/octopi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/octopi.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/okteta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/okteta.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/okular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/okular.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/parley.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/parley.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/picmi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/picmi.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/plan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/plan.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/plank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/plank.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/planner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/planner.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/q4wine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/q4wine.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/quassel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/quassel.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/r.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/rekonq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/rekonq.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/ring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/ring.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/rocs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/rocs.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/scanner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/scanner.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/scribus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/scribus.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/sheets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/sheets.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/skrooge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/skrooge.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/smb4k.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/smb4k.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/smtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/smtube.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/stage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/stage.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/steam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/steam.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/step.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/step.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/sweeper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/sweeper.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/viber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/viber.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/vlc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/vlc.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/vvave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/vvave.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/wayland.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/wayland.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/wine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/wine.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/words.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/words.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/xchat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/xchat.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/xine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/xine.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/xmind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/xmind.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/xorg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/xorg.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/xterm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/xterm.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/yakuake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/yakuake.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/yast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/yast.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/48/zanshin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/48/zanshin.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/64/hotspot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/64/hotspot.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/apps/64/kwrite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/apps/64/kwrite.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/devices/22/cups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/devices/22/cups.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/devices/22/uav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/devices/22/uav.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/devices/64/cpu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/devices/64/cpu.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/devices/64/cups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/devices/64/cups.svg -------------------------------------------------------------------------------- /resources/graphics/Breeze/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/Breeze/index.theme -------------------------------------------------------------------------------- /resources/graphics/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/banner.png -------------------------------------------------------------------------------- /resources/graphics/misc/bazqux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/bazqux.png -------------------------------------------------------------------------------- /resources/graphics/misc/feedly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/feedly.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/cs.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/da.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/da.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/de.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/en.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/en_GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/en_GB.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/en_US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/en_US.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/es.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/fi.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/fr.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/gl.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/he.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/he.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/id.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/it.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/ja.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/lt.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/nl.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/pl.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/pt_BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/pt_BR.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/pt_PT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/pt_PT.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/ru.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/sv_SE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/sv_SE.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/tr.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/uk.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/zh_CN.png -------------------------------------------------------------------------------- /resources/graphics/misc/flags/zh_TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/flags/zh_TW.png -------------------------------------------------------------------------------- /resources/graphics/misc/freshrss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/freshrss.png -------------------------------------------------------------------------------- /resources/graphics/misc/gmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/gmail.png -------------------------------------------------------------------------------- /resources/graphics/misc/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/google.png -------------------------------------------------------------------------------- /resources/graphics/misc/image-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/image-placeholder.png -------------------------------------------------------------------------------- /resources/graphics/misc/inoreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/inoreader.png -------------------------------------------------------------------------------- /resources/graphics/misc/miniflux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/miniflux.png -------------------------------------------------------------------------------- /resources/graphics/misc/nextcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/nextcloud.png -------------------------------------------------------------------------------- /resources/graphics/misc/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/reddit.png -------------------------------------------------------------------------------- /resources/graphics/misc/reedah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/reedah.png -------------------------------------------------------------------------------- /resources/graphics/misc/theoldreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/theoldreader.png -------------------------------------------------------------------------------- /resources/graphics/misc/tt-rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/misc/tt-rss.png -------------------------------------------------------------------------------- /resources/graphics/original_sizes/banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/original_sizes/banner.psd -------------------------------------------------------------------------------- /resources/graphics/rssguard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/rssguard.ico -------------------------------------------------------------------------------- /resources/graphics/rssguard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/rssguard.png -------------------------------------------------------------------------------- /resources/graphics/rssguard_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/rssguard_mono.png -------------------------------------------------------------------------------- /resources/graphics/rssguard_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/rssguard_plain.png -------------------------------------------------------------------------------- /resources/graphics/rssguard_plain_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/graphics/rssguard_plain_mono.png -------------------------------------------------------------------------------- /resources/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/icons.qrc -------------------------------------------------------------------------------- /resources/info/greader-api.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/info/greader-api.pdf -------------------------------------------------------------------------------- /resources/initial_feeds/feeds-en_US.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/initial_feeds/feeds-en_US.opml -------------------------------------------------------------------------------- /resources/litehtml/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/litehtml/master.css -------------------------------------------------------------------------------- /resources/macosx/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/macosx/Info.plist.in -------------------------------------------------------------------------------- /resources/macosx/rssguard.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/macosx/rssguard.icns -------------------------------------------------------------------------------- /resources/nsis/NSIS.definitions.nsh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/nsis/NSIS.definitions.nsh.in -------------------------------------------------------------------------------- /resources/nsis/NSIS.template.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/nsis/NSIS.template.in -------------------------------------------------------------------------------- /resources/rssguard.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/rssguard.qrc -------------------------------------------------------------------------------- /resources/rssguard.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/rssguard.rc.in -------------------------------------------------------------------------------- /resources/scripts/generate-used-icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/generate-used-icons.sh -------------------------------------------------------------------------------- /resources/scripts/icu/APIChangeReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/APIChangeReport.html -------------------------------------------------------------------------------- /resources/scripts/icu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/LICENSE -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/derb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/derb.exe -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/genbrk.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/genbrk.exe -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/genccode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/genccode.exe -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/gencfu.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/gencfu.exe -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/gencmn.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/gencmn.exe -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/gencnval.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/gencnval.exe -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/gendict.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/gendict.exe -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/gennorm2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/gennorm2.exe -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/genrb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/genrb.exe -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/gensprep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/gensprep.exe -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/icudt77.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/icudt77.dll -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/icuexportdata.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/icuexportdata.exe -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/icuin77.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/icuin77.dll -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/icuinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/icuinfo.exe -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/icuio77.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/icuio77.dll -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/icupkg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/icupkg.exe -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/icutest77.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/icutest77.exe -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/icutu77.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/icutu77.dll -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/icuuc77.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/icuuc77.dll -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/makeconv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/makeconv.exe -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/pkgdata.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/pkgdata.exe -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/testplug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/testplug.dll -------------------------------------------------------------------------------- /resources/scripts/icu/bin64/uconv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/bin64/uconv.exe -------------------------------------------------------------------------------- /resources/scripts/icu/icu4c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/icu4c.css -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/coll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/coll.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/dbbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/dbbi.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/edits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/edits.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/idna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/idna.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/locid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/locid.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/putil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/putil.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/rbbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/rbbi.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/rbnf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/rbnf.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/rbtz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/rbtz.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/regex.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/rep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/rep.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/tzfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/tzfmt.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/ubidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/ubidi.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/ubrk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/ubrk.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/ucal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/ucal.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/ucat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/ucat.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/uchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/uchar.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/ucnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/ucnv.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/ucol.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/ucurr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/ucurr.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/udat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/udat.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/udata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/udata.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/uenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/uenum.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/uidna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/uidna.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/uiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/uiter.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/uloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/uloc.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/umisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/umisc.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/umsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/umsg.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/unorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/unorm.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/unum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/unum.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/urep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/urep.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/ures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/ures.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/uset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/uset.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/utext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/utext.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/utf.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/utf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/utf16.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/utf32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/utf32.h -------------------------------------------------------------------------------- /resources/scripts/icu/include/unicode/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/include/unicode/utf8.h -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icudt.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icudt.exp -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icudt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icudt.lib -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icudt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icudt.pdb -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icuin.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icuin.exp -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icuin.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icuin.lib -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icuin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icuin.pdb -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icuio.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icuio.exp -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icuio.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icuio.lib -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icuio.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icuio.pdb -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icutest.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icutest.exp -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icutest.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icutest.lib -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icutest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icutest.pdb -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icutu.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icutu.exp -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icutu.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icutu.lib -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icutu.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icutu.pdb -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icuuc.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icuuc.exp -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icuuc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icuuc.lib -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/icuuc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/icuuc.pdb -------------------------------------------------------------------------------- /resources/scripts/icu/lib64/testplug.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/lib64/testplug.pdb -------------------------------------------------------------------------------- /resources/scripts/icu/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/icu/readme.html -------------------------------------------------------------------------------- /resources/scripts/mpv/input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/mpv/input.conf -------------------------------------------------------------------------------- /resources/scripts/mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/mpv/mpv.conf -------------------------------------------------------------------------------- /resources/scripts/redist/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/redist/msvcp140.dll -------------------------------------------------------------------------------- /resources/scripts/redist/msvcp140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/redist/msvcp140_1.dll -------------------------------------------------------------------------------- /resources/scripts/redist/msvcp140_2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/redist/msvcp140_2.dll -------------------------------------------------------------------------------- /resources/scripts/redist/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/redist/vcruntime140.dll -------------------------------------------------------------------------------- /resources/scripts/redist/vcruntime140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/redist/vcruntime140_1.dll -------------------------------------------------------------------------------- /resources/scripts/scrapers/abc-my-comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/scrapers/abc-my-comments.py -------------------------------------------------------------------------------- /resources/scripts/scrapers/github-releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/scrapers/github-releases.py -------------------------------------------------------------------------------- /resources/scripts/scrapers/hudebnibazar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/scrapers/hudebnibazar.py -------------------------------------------------------------------------------- /resources/scripts/scrapers/metacritic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/scrapers/metacritic.py -------------------------------------------------------------------------------- /resources/scripts/scrapers/njcom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/scrapers/njcom.py -------------------------------------------------------------------------------- /resources/scripts/scrapers/old.reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/scrapers/old.reddit.py -------------------------------------------------------------------------------- /resources/scripts/scrapers/piped-fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/scrapers/piped-fix.py -------------------------------------------------------------------------------- /resources/scripts/scrapers/product-hunt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/scrapers/product-hunt.py -------------------------------------------------------------------------------- /resources/scripts/scrapers/trans-stdin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/scrapers/trans-stdin.py -------------------------------------------------------------------------------- /resources/scripts/scrapers/translate-feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/scrapers/translate-feed.py -------------------------------------------------------------------------------- /resources/scripts/scrapers/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/scrapers/twitter.py -------------------------------------------------------------------------------- /resources/scripts/scrapers/wiki-inthenews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/scrapers/wiki-inthenews.py -------------------------------------------------------------------------------- /resources/scripts/scrapers/wiki-qotd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/scripts/scrapers/wiki-qotd.py -------------------------------------------------------------------------------- /resources/skins/minimal-dark/html_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/skins/minimal-dark/html_style.css -------------------------------------------------------------------------------- /resources/skins/minimal-dark/html_style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/skins/minimal-dark/html_style.scss -------------------------------------------------------------------------------- /resources/skins/minimal-dark/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/skins/minimal-dark/metadata.xml -------------------------------------------------------------------------------- /resources/skins/minimal-dark/qt_style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/skins/minimal-dark/qt_style.qss -------------------------------------------------------------------------------- /resources/skins/minimal-light/html_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/skins/minimal-light/html_style.css -------------------------------------------------------------------------------- /resources/skins/minimal-light/html_style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/skins/minimal-light/html_style.scss -------------------------------------------------------------------------------- /resources/skins/minimal-light/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/skins/minimal-light/metadata.xml -------------------------------------------------------------------------------- /resources/skins/minimal-light/qt_style.qss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/sounds/boing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/sounds/boing.wav -------------------------------------------------------------------------------- /resources/sounds/doorbell.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/sounds/doorbell.wav -------------------------------------------------------------------------------- /resources/sounds/error.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/sounds/error.wav -------------------------------------------------------------------------------- /resources/sounds/fanfare.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/sounds/fanfare.wav -------------------------------------------------------------------------------- /resources/sounds/fanfare2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/sounds/fanfare2.wav -------------------------------------------------------------------------------- /resources/sounds/goodresult.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/sounds/goodresult.wav -------------------------------------------------------------------------------- /resources/sounds/notify.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/sounds/notify.wav -------------------------------------------------------------------------------- /resources/sounds/rooster.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/sounds/rooster.wav -------------------------------------------------------------------------------- /resources/sounds/sheep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/sounds/sheep.wav -------------------------------------------------------------------------------- /resources/sql.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/sql.qrc -------------------------------------------------------------------------------- /resources/sql/db_init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/sql/db_init.sql -------------------------------------------------------------------------------- /resources/sql/db_init_mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/sql/db_init_mysql.sql -------------------------------------------------------------------------------- /resources/sql/db_init_sqlite.sql: -------------------------------------------------------------------------------- 1 | !! db_init.sql -------------------------------------------------------------------------------- /resources/tests/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/tests/data.sql -------------------------------------------------------------------------------- /resources/text/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/text/CHANGELOG -------------------------------------------------------------------------------- /resources/text/COPYING_APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/text/COPYING_APACHE -------------------------------------------------------------------------------- /resources/text/COPYING_BOOLINQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/text/COPYING_BOOLINQ -------------------------------------------------------------------------------- /resources/text/COPYING_BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/text/COPYING_BSD -------------------------------------------------------------------------------- /resources/text/COPYING_GNU_GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/text/COPYING_GNU_GPL -------------------------------------------------------------------------------- /resources/text/COPYING_GNU_LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/text/COPYING_GNU_LGPL -------------------------------------------------------------------------------- /resources/text/COPYING_GNU_LGPL_21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/text/COPYING_GNU_LGPL_21 -------------------------------------------------------------------------------- /resources/text/COPYING_QT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/text/COPYING_QT -------------------------------------------------------------------------------- /resources/text/licenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/resources/text/licenses.json -------------------------------------------------------------------------------- /src/cmake_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/cmake_plugins.cmake -------------------------------------------------------------------------------- /src/librssguard-feedly/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-feedly/CMakeLists.txt -------------------------------------------------------------------------------- /src/librssguard-feedly/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-feedly/plugin.json -------------------------------------------------------------------------------- /src/librssguard-feedly/src/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-feedly/src/definitions.h -------------------------------------------------------------------------------- /src/librssguard-feedly/src/feedlyentrypoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-feedly/src/feedlyentrypoint.h -------------------------------------------------------------------------------- /src/librssguard-feedly/src/feedlynetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-feedly/src/feedlynetwork.cpp -------------------------------------------------------------------------------- /src/librssguard-feedly/src/feedlynetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-feedly/src/feedlynetwork.h -------------------------------------------------------------------------------- /src/librssguard-gmail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-gmail/CMakeLists.txt -------------------------------------------------------------------------------- /src/librssguard-gmail/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-gmail/plugin.json -------------------------------------------------------------------------------- /src/librssguard-gmail/src/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-gmail/src/definitions.h -------------------------------------------------------------------------------- /src/librssguard-gmail/src/gmailentrypoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-gmail/src/gmailentrypoint.cpp -------------------------------------------------------------------------------- /src/librssguard-gmail/src/gmailentrypoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-gmail/src/gmailentrypoint.h -------------------------------------------------------------------------------- /src/librssguard-gmail/src/gmailserviceroot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-gmail/src/gmailserviceroot.h -------------------------------------------------------------------------------- /src/librssguard-greader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-greader/CMakeLists.txt -------------------------------------------------------------------------------- /src/librssguard-greader/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-greader/plugin.json -------------------------------------------------------------------------------- /src/librssguard-greader/src/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-greader/src/definitions.h -------------------------------------------------------------------------------- /src/librssguard-greader/src/greaderfeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-greader/src/greaderfeed.cpp -------------------------------------------------------------------------------- /src/librssguard-greader/src/greaderfeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-greader/src/greaderfeed.h -------------------------------------------------------------------------------- /src/librssguard-greader/src/greadernetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-greader/src/greadernetwork.h -------------------------------------------------------------------------------- /src/librssguard-nextcloud/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-nextcloud/CMakeLists.txt -------------------------------------------------------------------------------- /src/librssguard-nextcloud/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-nextcloud/plugin.json -------------------------------------------------------------------------------- /src/librssguard-nextcloud/src/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-nextcloud/src/definitions.h -------------------------------------------------------------------------------- /src/librssguard-nextcloud/src/nextcloudfeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-nextcloud/src/nextcloudfeed.h -------------------------------------------------------------------------------- /src/librssguard-reddit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-reddit/CMakeLists.txt -------------------------------------------------------------------------------- /src/librssguard-reddit/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-reddit/plugin.json -------------------------------------------------------------------------------- /src/librssguard-reddit/src/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-reddit/src/definitions.h -------------------------------------------------------------------------------- /src/librssguard-reddit/src/redditcategory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-reddit/src/redditcategory.cpp -------------------------------------------------------------------------------- /src/librssguard-reddit/src/redditcategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-reddit/src/redditcategory.h -------------------------------------------------------------------------------- /src/librssguard-reddit/src/redditentrypoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-reddit/src/redditentrypoint.h -------------------------------------------------------------------------------- /src/librssguard-standard/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-standard/CMakeLists.txt -------------------------------------------------------------------------------- /src/librssguard-standard/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-standard/plugin.json -------------------------------------------------------------------------------- /src/librssguard-standard/src/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-standard/src/definitions.h -------------------------------------------------------------------------------- /src/librssguard-standard/src/quiterssimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-standard/src/quiterssimport.h -------------------------------------------------------------------------------- /src/librssguard-standard/src/standardfeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-standard/src/standardfeed.cpp -------------------------------------------------------------------------------- /src/librssguard-standard/src/standardfeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-standard/src/standardfeed.h -------------------------------------------------------------------------------- /src/librssguard-ttrss/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-ttrss/CMakeLists.txt -------------------------------------------------------------------------------- /src/librssguard-ttrss/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-ttrss/plugin.json -------------------------------------------------------------------------------- /src/librssguard-ttrss/src/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-ttrss/src/definitions.h -------------------------------------------------------------------------------- /src/librssguard-ttrss/src/gui/formttrssnote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-ttrss/src/gui/formttrssnote.h -------------------------------------------------------------------------------- /src/librssguard-ttrss/src/ttrssfeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-ttrss/src/ttrssfeed.cpp -------------------------------------------------------------------------------- /src/librssguard-ttrss/src/ttrssfeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-ttrss/src/ttrssfeed.h -------------------------------------------------------------------------------- /src/librssguard-ttrss/src/ttrssserviceroot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard-ttrss/src/ttrssserviceroot.h -------------------------------------------------------------------------------- /src/librssguard/3rd-party/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | DisableFormat: true 3 | SortIncludes: Never 4 | ... 5 | 6 | -------------------------------------------------------------------------------- /src/librssguard/3rd-party/sc/simplecrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/3rd-party/sc/simplecrypt.cpp -------------------------------------------------------------------------------- /src/librssguard/3rd-party/sc/simplecrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/3rd-party/sc/simplecrypt.h -------------------------------------------------------------------------------- /src/librssguard/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/CMakeLists.txt -------------------------------------------------------------------------------- /src/librssguard/core/feeddownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/core/feeddownloader.cpp -------------------------------------------------------------------------------- /src/librssguard/core/feeddownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/core/feeddownloader.h -------------------------------------------------------------------------------- /src/librssguard/core/feedsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/core/feedsmodel.cpp -------------------------------------------------------------------------------- /src/librssguard/core/feedsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/core/feedsmodel.h -------------------------------------------------------------------------------- /src/librssguard/core/feedsproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/core/feedsproxymodel.cpp -------------------------------------------------------------------------------- /src/librssguard/core/feedsproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/core/feedsproxymodel.h -------------------------------------------------------------------------------- /src/librssguard/core/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/core/message.cpp -------------------------------------------------------------------------------- /src/librssguard/core/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/core/message.h -------------------------------------------------------------------------------- /src/librssguard/core/messagesmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/core/messagesmodel.cpp -------------------------------------------------------------------------------- /src/librssguard/core/messagesmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/core/messagesmodel.h -------------------------------------------------------------------------------- /src/librssguard/core/messagesmodelsqllayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/core/messagesmodelsqllayer.h -------------------------------------------------------------------------------- /src/librssguard/core/messagesproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/core/messagesproxymodel.cpp -------------------------------------------------------------------------------- /src/librssguard/core/messagesproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/core/messagesproxymodel.h -------------------------------------------------------------------------------- /src/librssguard/database/databasecleaner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/database/databasecleaner.cpp -------------------------------------------------------------------------------- /src/librssguard/database/databasecleaner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/database/databasecleaner.h -------------------------------------------------------------------------------- /src/librssguard/database/databasedriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/database/databasedriver.cpp -------------------------------------------------------------------------------- /src/librssguard/database/databasedriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/database/databasedriver.h -------------------------------------------------------------------------------- /src/librssguard/database/databasefactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/database/databasefactory.cpp -------------------------------------------------------------------------------- /src/librssguard/database/databasefactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/database/databasefactory.h -------------------------------------------------------------------------------- /src/librssguard/database/databasequeries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/database/databasequeries.cpp -------------------------------------------------------------------------------- /src/librssguard/database/databasequeries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/database/databasequeries.h -------------------------------------------------------------------------------- /src/librssguard/database/databasewriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/database/databasewriter.cpp -------------------------------------------------------------------------------- /src/librssguard/database/databasewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/database/databasewriter.h -------------------------------------------------------------------------------- /src/librssguard/database/mariadbdriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/database/mariadbdriver.cpp -------------------------------------------------------------------------------- /src/librssguard/database/mariadbdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/database/mariadbdriver.h -------------------------------------------------------------------------------- /src/librssguard/database/sqlitedriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/database/sqlitedriver.cpp -------------------------------------------------------------------------------- /src/librssguard/database/sqlitedriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/database/sqlitedriver.h -------------------------------------------------------------------------------- /src/librssguard/database/sqlquery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/database/sqlquery.cpp -------------------------------------------------------------------------------- /src/librssguard/database/sqlquery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/database/sqlquery.h -------------------------------------------------------------------------------- /src/librssguard/definitions/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/definitions/definitions.h -------------------------------------------------------------------------------- /src/librssguard/definitions/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/definitions/globals.cpp -------------------------------------------------------------------------------- /src/librssguard/definitions/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/definitions/globals.h -------------------------------------------------------------------------------- /src/librssguard/definitions/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/definitions/typedefs.h -------------------------------------------------------------------------------- /src/librssguard/exceptions/ioexception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/exceptions/ioexception.cpp -------------------------------------------------------------------------------- /src/librssguard/exceptions/ioexception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/exceptions/ioexception.h -------------------------------------------------------------------------------- /src/librssguard/exceptions/networkexception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/exceptions/networkexception.h -------------------------------------------------------------------------------- /src/librssguard/exceptions/processexception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/exceptions/processexception.h -------------------------------------------------------------------------------- /src/librssguard/exceptions/scriptexception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/exceptions/scriptexception.h -------------------------------------------------------------------------------- /src/librssguard/exceptions/sqlexception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/exceptions/sqlexception.cpp -------------------------------------------------------------------------------- /src/librssguard/exceptions/sqlexception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/exceptions/sqlexception.h -------------------------------------------------------------------------------- /src/librssguard/filtering/filteringsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/filtering/filteringsystem.cpp -------------------------------------------------------------------------------- /src/librssguard/filtering/filteringsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/filtering/filteringsystem.h -------------------------------------------------------------------------------- /src/librssguard/filtering/filterobjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/filtering/filterobjects.cpp -------------------------------------------------------------------------------- /src/librssguard/filtering/filterobjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/filtering/filterobjects.h -------------------------------------------------------------------------------- /src/librssguard/filtering/messagefilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/filtering/messagefilter.cpp -------------------------------------------------------------------------------- /src/librssguard/filtering/messagefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/filtering/messagefilter.h -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/filedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/filedialog.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/filedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/filedialog.h -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/formabout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/formabout.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/formabout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/formabout.h -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/formabout.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/formabout.ui -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/formaddaccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/formaddaccount.h -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/formaddaccount.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/formaddaccount.ui -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/formlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/formlog.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/formlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/formlog.h -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/formlog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/formlog.ui -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/formmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/formmain.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/formmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/formmain.h -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/formmain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/formmain.ui -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/formsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/formsettings.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/formsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/formsettings.h -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/formsettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/formsettings.ui -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/formupdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/formupdate.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/formupdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/formupdate.h -------------------------------------------------------------------------------- /src/librssguard/gui/dialogs/formupdate.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/dialogs/formupdate.ui -------------------------------------------------------------------------------- /src/librssguard/gui/feedmessageviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/feedmessageviewer.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/feedmessageviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/feedmessageviewer.h -------------------------------------------------------------------------------- /src/librssguard/gui/feedsview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/feedsview.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/feedsview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/feedsview.h -------------------------------------------------------------------------------- /src/librssguard/gui/guiutilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/guiutilities.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/guiutilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/guiutilities.h -------------------------------------------------------------------------------- /src/librssguard/gui/itemdetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/itemdetails.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/itemdetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/itemdetails.h -------------------------------------------------------------------------------- /src/librssguard/gui/itemdetails.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/itemdetails.ui -------------------------------------------------------------------------------- /src/librssguard/gui/mediaplayer/mediaplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/mediaplayer/mediaplayer.h -------------------------------------------------------------------------------- /src/librssguard/gui/messagebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/messagebox.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/messagebox.h -------------------------------------------------------------------------------- /src/librssguard/gui/messagebrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/messagebrowser.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/messagebrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/messagebrowser.h -------------------------------------------------------------------------------- /src/librssguard/gui/messagepreviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/messagepreviewer.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/messagepreviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/messagepreviewer.h -------------------------------------------------------------------------------- /src/librssguard/gui/messagesview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/messagesview.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/messagesview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/messagesview.h -------------------------------------------------------------------------------- /src/librssguard/gui/messagetextbrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/messagetextbrowser.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/messagetextbrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/messagetextbrowser.h -------------------------------------------------------------------------------- /src/librssguard/gui/reusable/baselineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/reusable/baselineedit.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/reusable/baselineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/reusable/baselineedit.h -------------------------------------------------------------------------------- /src/librssguard/gui/reusable/basetreeview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/reusable/basetreeview.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/reusable/basetreeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/reusable/basetreeview.h -------------------------------------------------------------------------------- /src/librssguard/gui/reusable/helpspoiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/reusable/helpspoiler.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/reusable/helpspoiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/reusable/helpspoiler.h -------------------------------------------------------------------------------- /src/librssguard/gui/reusable/labelsmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/reusable/labelsmenu.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/reusable/labelsmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/reusable/labelsmenu.h -------------------------------------------------------------------------------- /src/librssguard/gui/reusable/scrollablemenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/reusable/scrollablemenu.h -------------------------------------------------------------------------------- /src/librssguard/gui/reusable/searchlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/reusable/searchlineedit.h -------------------------------------------------------------------------------- /src/librssguard/gui/reusable/squeezelabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/reusable/squeezelabel.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/reusable/squeezelabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/reusable/squeezelabel.h -------------------------------------------------------------------------------- /src/librssguard/gui/reusable/timespinbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/reusable/timespinbox.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/reusable/timespinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/reusable/timespinbox.h -------------------------------------------------------------------------------- /src/librssguard/gui/settings/settingsgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/settings/settingsgui.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/settings/settingsgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/settings/settingsgui.h -------------------------------------------------------------------------------- /src/librssguard/gui/settings/settingsgui.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/settings/settingsgui.ui -------------------------------------------------------------------------------- /src/librssguard/gui/settings/settingspanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/settings/settingspanel.h -------------------------------------------------------------------------------- /src/librssguard/gui/systemtrayicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/systemtrayicon.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/systemtrayicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/systemtrayicon.h -------------------------------------------------------------------------------- /src/librssguard/gui/tabbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/tabbar.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/tabbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/tabbar.h -------------------------------------------------------------------------------- /src/librssguard/gui/tabcontent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/tabcontent.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/tabcontent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/tabcontent.h -------------------------------------------------------------------------------- /src/librssguard/gui/tabwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/tabwidget.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/tabwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/tabwidget.h -------------------------------------------------------------------------------- /src/librssguard/gui/toolbars/basetoolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/toolbars/basetoolbar.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/toolbars/basetoolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/toolbars/basetoolbar.h -------------------------------------------------------------------------------- /src/librssguard/gui/toolbars/feedstoolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/toolbars/feedstoolbar.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/toolbars/feedstoolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/toolbars/feedstoolbar.h -------------------------------------------------------------------------------- /src/librssguard/gui/toolbars/statusbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/toolbars/statusbar.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/toolbars/statusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/toolbars/statusbar.h -------------------------------------------------------------------------------- /src/librssguard/gui/toolbars/toolbareditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/toolbars/toolbareditor.h -------------------------------------------------------------------------------- /src/librssguard/gui/toolbars/toolbareditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/toolbars/toolbareditor.ui -------------------------------------------------------------------------------- /src/librssguard/gui/webbrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/webbrowser.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/webbrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/webbrowser.h -------------------------------------------------------------------------------- /src/librssguard/gui/webviewers/webviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/webviewers/webviewer.cpp -------------------------------------------------------------------------------- /src/librssguard/gui/webviewers/webviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/gui/webviewers/webviewer.h -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/application.cpp -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/application.h -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/domdocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/domdocument.cpp -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/domdocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/domdocument.h -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/externaltool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/externaltool.h -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/feedreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/feedreader.cpp -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/feedreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/feedreader.h -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/iconfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/iconfactory.cpp -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/iconfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/iconfactory.h -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/iofactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/iofactory.cpp -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/iofactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/iofactory.h -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/localization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/localization.h -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/mutex.cpp -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/mutex.h -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/notification.h -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/pluginfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/pluginfactory.h -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/regexfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/regexfactory.h -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/settings.cpp -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/settings.h -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/skinfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/skinfactory.cpp -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/skinfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/skinfactory.h -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/systemfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/systemfactory.h -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/templates.h -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/textfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/textfactory.cpp -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/textfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/textfactory.h -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/thread.cpp -------------------------------------------------------------------------------- /src/librssguard/miscellaneous/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/miscellaneous/thread.h -------------------------------------------------------------------------------- /src/librssguard/network-web/downloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/network-web/downloader.cpp -------------------------------------------------------------------------------- /src/librssguard/network-web/downloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/network-web/downloader.h -------------------------------------------------------------------------------- /src/librssguard/network-web/httpresponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/network-web/httpresponse.cpp -------------------------------------------------------------------------------- /src/librssguard/network-web/httpresponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/network-web/httpresponse.h -------------------------------------------------------------------------------- /src/librssguard/network-web/httpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/network-web/httpserver.cpp -------------------------------------------------------------------------------- /src/librssguard/network-web/httpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/network-web/httpserver.h -------------------------------------------------------------------------------- /src/librssguard/network-web/networkfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/network-web/networkfactory.h -------------------------------------------------------------------------------- /src/librssguard/network-web/oauth2service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/network-web/oauth2service.cpp -------------------------------------------------------------------------------- /src/librssguard/network-web/oauth2service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/network-web/oauth2service.h -------------------------------------------------------------------------------- /src/librssguard/network-web/webfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/network-web/webfactory.cpp -------------------------------------------------------------------------------- /src/librssguard/network-web/webfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/network-web/webfactory.h -------------------------------------------------------------------------------- /src/librssguard/services/abstract/category.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/services/abstract/category.h -------------------------------------------------------------------------------- /src/librssguard/services/abstract/feed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/services/abstract/feed.cpp -------------------------------------------------------------------------------- /src/librssguard/services/abstract/feed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/services/abstract/feed.h -------------------------------------------------------------------------------- /src/librssguard/services/abstract/label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/services/abstract/label.cpp -------------------------------------------------------------------------------- /src/librssguard/services/abstract/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/services/abstract/label.h -------------------------------------------------------------------------------- /src/librssguard/services/abstract/rootitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/services/abstract/rootitem.h -------------------------------------------------------------------------------- /src/librssguard/services/abstract/search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/services/abstract/search.cpp -------------------------------------------------------------------------------- /src/librssguard/services/abstract/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/librssguard/services/abstract/search.h -------------------------------------------------------------------------------- /src/rssguard/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/rssguard/CMakeLists.txt -------------------------------------------------------------------------------- /src/rssguard/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrotter/rssguard/HEAD/src/rssguard/main.cpp --------------------------------------------------------------------------------