├── .arcconfig ├── .clang-format ├── .editorconfig ├── .gitignore ├── .gitlab-ci.yml ├── .kde-ci.yml ├── .travis.yml ├── .travis ├── install-flatbuffers.sh ├── install-gpg.sh └── install-kde.sh ├── CMakeLists.txt ├── Messages.sh ├── README.md ├── accounts ├── CMakeLists.txt ├── fastmail │ ├── CMakeLists.txt │ ├── metadata.json │ ├── qml │ │ ├── AccountSettings.qml │ │ ├── FastmailSettings.qml │ │ └── Login.qml │ └── qmldir ├── generic │ ├── CMakeLists.txt │ ├── accountplugin.cpp │ ├── accountplugin.h │ ├── metadata.json │ ├── qml │ │ ├── AccountSettings.qml │ │ └── Login.qml │ ├── qmldir │ ├── settings.cpp │ └── settings.h ├── gmail │ ├── CMakeLists.txt │ ├── gmailaccountplugin.cpp │ ├── gmailaccountplugin.h │ ├── gmailsettings.cpp │ ├── gmailsettings.h │ ├── metadata.json │ ├── qml │ │ ├── AccountSettings.qml │ │ └── Login.qml │ └── qmldir ├── imap │ ├── CMakeLists.txt │ ├── imapaccountplugin.cpp │ ├── imapaccountplugin.h │ ├── imapsettings.cpp │ ├── imapsettings.h │ ├── metadata.json │ ├── qml │ │ ├── AccountSettings.qml │ │ └── Login.qml │ └── qmldir ├── kolabnow │ ├── CMakeLists.txt │ ├── kolabnowaccountplugin.cpp │ ├── kolabnowaccountplugin.h │ ├── kolabnowsettings.cpp │ ├── kolabnowsettings.h │ ├── metadata.json │ ├── qml │ │ ├── AccountSettings.qml │ │ └── Login.qml │ └── qmldir └── maildir │ ├── CMakeLists.txt │ ├── maildiraccountplugin.cpp │ ├── maildiraccountplugin.h │ ├── maildirsettings.cpp │ ├── maildirsettings.h │ ├── metadata.json │ ├── qml │ └── AccountSettings.qml │ └── qmldir ├── applications ├── CMakeLists.txt └── kube │ ├── CMakeLists.txt │ ├── backward.h │ ├── dbusinterface.cpp │ ├── dbusinterface.h │ ├── kube.appdata.xml.in │ ├── kube.desktop.in │ └── main.cpp ├── cmake └── modules │ ├── FindGpgme.cmake │ ├── FindLibBfd.cmake │ ├── MacOSXBundleInfo.plist.in │ ├── add_gpg_crypto_test.cmake │ └── generate_crypto_test_wrapper.cmake ├── components ├── CMakeLists.txt ├── accounts │ ├── AccountConfiguration.qml.in │ ├── qml │ │ ├── AccountWizard.qml │ │ ├── AccountWizardPage.qml │ │ └── main.qml │ └── qmldir └── kube │ ├── applicationstate.js │ ├── main.qml │ ├── qml │ ├── Kube.qml │ ├── ViewManager.qml │ ├── main.qml │ └── upgrade.qml │ ├── qmldir │ └── tests │ ├── CMakeLists.txt │ ├── tst_applicationstart.qml │ ├── tst_screenshots.qml │ └── tst_viewmanagertest.qml ├── dist ├── flatpak │ ├── README │ ├── boost-configure │ ├── boost.json │ ├── com.kolabnow.kube.flatpakref │ ├── com.kolabnow.kube.json │ ├── com.kubeproject.kube.experimental.flatpakref │ ├── com.kubeproject.kube.experimental.json │ ├── com.kubeproject.kube.flatpakref │ ├── com.kubeproject.kube.json │ ├── gpgme.json │ ├── kube.patch │ ├── kubedeps.json │ ├── kubewrapper.sh │ ├── org.kde.kube.json │ ├── patch │ │ ├── pinentry-keyring.patch │ │ ├── qtbase-avoid-hardcoding-kernel-version.patch │ │ ├── qtbase-use-wayland-on-gnome.patch │ │ ├── qtdeclarative-use-python3.patch │ │ ├── qtwayland-use-gnome-platform-theme-on-gnome-based-desktops.patch │ │ └── webengineresources.patch │ ├── qt.json │ └── wrapperscript.json └── kube.spec ├── docker ├── Dockerfile ├── Makefile ├── README.md ├── bashrc ├── build.sh ├── enableDebug.sh ├── gdbinit ├── generate-key.sh ├── generatemessages.sh ├── gpg-agent.conf ├── gpg.conf ├── imapd.conf ├── initrepositories.sh ├── keyconfig ├── kubeunlocked.sh ├── private-key ├── public-key ├── qt5ct │ └── qt5ct.conf ├── rsyslog.conf ├── run.sh ├── setupgoogletest.sh ├── setupkolabnowtest.sh ├── setupperformancetest.sh ├── startimap.sh └── view.sh ├── docs ├── design.md ├── index.md ├── project.md ├── requirements.md ├── setting-up-dev-env.md └── usecases.md ├── extensions ├── CMakeLists.txt ├── api │ ├── CMakeLists.txt │ ├── qmldir │ └── src │ │ ├── CMakeLists.txt │ │ ├── extensionapi.cpp │ │ ├── extensionapi.h │ │ ├── extensionapiplugin.cpp │ │ └── extensionapiplugin.h ├── fileasexpense │ └── qml │ │ └── main.qml └── gpg │ └── qml │ └── main.qml ├── framework ├── CMakeLists.txt ├── qml │ ├── AbstractButton.qml │ ├── AttachmentDelegate.qml │ ├── AutocompleteLineEdit.qml │ ├── Button.qml │ ├── CalendarSelector.qml │ ├── CheckBox.qml │ ├── Colors.qml │ ├── ComboBox.qml │ ├── Context.qml │ ├── ContextMenuOverlay.qml │ ├── ConversationListView.qml │ ├── ConversationView.qml │ ├── DelegateBackground.qml │ ├── EditAccount.qml │ ├── EntityComboBox.qml │ ├── EntitySelector.qml │ ├── ExtensionPoint.qml │ ├── FolderListView.qml │ ├── Font.qml │ ├── GenericListDelegate.qml │ ├── GridView.qml │ ├── HeaderField.qml │ ├── Heading.qml │ ├── HelpPopup.qml │ ├── Icon.qml │ ├── IconButton.qml │ ├── Icons.qml │ ├── InlineAccountSwitcher.qml │ ├── Label.qml │ ├── LeftSidebar.qml │ ├── ListDelegate.qml │ ├── ListView.qml │ ├── LoginAccount.qml │ ├── MailListDelegate.qml │ ├── MailListView.qml │ ├── MailViewer.qml │ ├── Messages.qml │ ├── ModelIndexRetriever.qml │ ├── NotificationPopup.qml │ ├── Notifications.qml │ ├── Outbox.qml │ ├── PasswordField.qml │ ├── Popup.qml │ ├── PositiveButton.qml │ ├── ProgressBar.qml │ ├── RequiredTextField.qml │ ├── ScrollBar.qml │ ├── ScrollHelper.qml │ ├── ScrollablePopup.qml │ ├── ScrollableTextArea.qml │ ├── SearchPopup.qml │ ├── SelectableItem.qml │ ├── SelectableLabel.qml │ ├── SeparatorLine.qml │ ├── StatusBar.qml │ ├── Switch.qml │ ├── TextArea.qml │ ├── TextButton.qml │ ├── TextEditor.qml │ ├── TextField.qml │ ├── TodoListDelegate.qml │ ├── ToolTip.qml │ ├── TreeView.qml │ ├── Units.qml │ ├── View.qml │ ├── mailpartview │ │ ├── ErrorPart.qml │ │ ├── HtmlPart.qml │ │ ├── ICalPart.qml │ │ ├── MailPart.qml │ │ ├── MailPartModel.qml │ │ ├── MailPartView.qml │ │ ├── TextPart.qml │ │ └── main.qml │ └── tests │ │ ├── CMakeLists.txt │ │ ├── kraken.eml │ │ ├── tst_icon.qml │ │ ├── tst_mailviewer.qml │ │ └── tst_texteditor.qml ├── qmldir └── src │ ├── CMakeLists.txt │ ├── accounts │ ├── accountfactory.cpp │ ├── accountfactory.h │ ├── accountsmodel.cpp │ ├── accountsmodel.h │ ├── gmailcontroller.cpp │ └── gmailcontroller.h │ ├── async.h │ ├── clipboardproxy.cpp │ ├── clipboardproxy.h │ ├── debouncer.h │ ├── domain │ ├── completer.cpp │ ├── completer.h │ ├── composercontroller.cpp │ ├── composercontroller.h │ ├── contactcontroller.cpp │ ├── contactcontroller.h │ ├── controller.cpp │ ├── controller.h │ ├── eventcontroller.cpp │ ├── eventcontroller.h │ ├── eventoccurrencemodel.cpp │ ├── eventoccurrencemodel.h │ ├── folderlistmodel.cpp │ ├── folderlistmodel.h │ ├── identitiesmodel.cpp │ ├── identitiesmodel.h │ ├── invitationcontroller.cpp │ ├── invitationcontroller.h │ ├── maillistmodel.cpp │ ├── maillistmodel.h │ ├── mime │ │ ├── CMakeLists.txt │ │ ├── attachmentmodel.cpp │ │ ├── attachmentmodel.h │ │ ├── htmlutils.cpp │ │ ├── htmlutils.h │ │ ├── mailcrypto.cpp │ │ ├── mailcrypto.h │ │ ├── mailtemplates.cpp │ │ ├── mailtemplates.h │ │ ├── messageparser.cpp │ │ ├── messageparser.h │ │ ├── partmodel.cpp │ │ ├── partmodel.h │ │ ├── testdata │ │ │ ├── 8bitencoded.mbox │ │ │ ├── README │ │ │ ├── alternative-notext.mbox │ │ │ ├── alternative-notext.mbox.html │ │ │ ├── alternative-notext.mbox.tree │ │ │ ├── alternative.mbox │ │ │ ├── alternative.mbox.html │ │ │ ├── alternative.mbox.tree │ │ │ ├── applehtmlwithattachments.mbox │ │ │ ├── applehtmlwithattachmentsmixed.mbox │ │ │ ├── attachment.mbox │ │ │ ├── cid-links-forwarded-inline.mbox │ │ │ ├── cid-links.mbox │ │ │ ├── crlf-encrypted-with-signature-multipart.mbox │ │ │ ├── crlf-encrypted-with-signature.mbox │ │ │ ├── details │ │ │ │ ├── forward-openpgp-signed-encrypted.mbox.html │ │ │ │ ├── openpgp-encoded.mbox.html │ │ │ │ ├── openpgp-encrypted+signed.mbox.html │ │ │ │ ├── openpgp-encrypted-attachment-and-non-encrypted-attachment.mbox.html │ │ │ │ ├── openpgp-encrypted-attachment.mbox.html │ │ │ │ ├── openpgp-encrypted-non-encrypted-attachment.mbox.html │ │ │ │ ├── openpgp-encrypted-partially-signed-attachments.mbox.html │ │ │ │ ├── openpgp-inline-charset-encrypted.mbox.html │ │ │ │ ├── openpgp-inline-signed.mbox.html │ │ │ │ ├── openpgp-signed-base64-mailman-footer.mbox.html │ │ │ │ ├── openpgp-signed-encrypted-two-attachments.mbox.html │ │ │ │ ├── openpgp-signed-encrypted.mbox.html │ │ │ │ ├── openpgp-signed-mailinglist+old.mbox.html │ │ │ │ ├── openpgp-signed-mailinglist.mbox.html │ │ │ │ ├── openpgp-signed-two-attachments.mbox.html │ │ │ │ ├── signed-forward-openpgp-signed-encrypted.mbox.html │ │ │ │ ├── smime-opaque-enc+sign.mbox.html │ │ │ │ ├── smime-opaque-sign.mbox.html │ │ │ │ └── smime-signed-encrypted.mbox.html │ │ │ ├── encapsulated-with-attachment.mbox │ │ │ ├── encapsulated-with-attachment.mbox.html │ │ │ ├── encapsulated-with-attachment.mbox.tree │ │ │ ├── forward-openpgp-signed-encrypted.mbox │ │ │ ├── forward-openpgp-signed-encrypted.mbox.html │ │ │ ├── forward-openpgp-signed-encrypted.mbox.tree │ │ │ ├── gmail-invitation.mbox │ │ │ ├── headeronly │ │ │ │ ├── openpgp-encrypted-attachment-and-non-encrypted-attachment.mbox.html │ │ │ │ ├── openpgp-encrypted-attachment.mbox.html │ │ │ │ ├── openpgp-encrypted-non-encrypted-attachment.mbox.html │ │ │ │ ├── openpgp-encrypted-partially-signed-attachments.mbox.html │ │ │ │ ├── openpgp-encrypted-two-attachments.mbox.html │ │ │ │ ├── openpgp-signed-apple.mbox.html │ │ │ │ ├── openpgp-signed-encrypted-two-attachments.mbox.html │ │ │ │ ├── openpgp-signed-mailinglist+additional-children.mbox.html │ │ │ │ ├── openpgp-signed-no-protocol.mbox.html │ │ │ │ ├── openpgp-signed-two-attachments.mbox.html │ │ │ │ └── smime-signed-apple.mbox.html │ │ │ ├── hidden │ │ │ │ ├── encapsulated-with-attachment.mbox.html │ │ │ │ ├── openpgp-encrypted-attachment-and-non-encrypted-attachment.mbox.html │ │ │ │ ├── openpgp-encrypted-attachment.mbox.html │ │ │ │ ├── openpgp-encrypted-noData.mbox.html │ │ │ │ ├── openpgp-encrypted-non-encrypted-attachment.mbox.html │ │ │ │ ├── openpgp-encrypted-partially-signed-attachments.mbox.html │ │ │ │ ├── openpgp-encrypted-two-attachments.mbox.html │ │ │ │ ├── openpgp-signed-apple.mbox.html │ │ │ │ ├── openpgp-signed-encrypted-two-attachments.mbox.html │ │ │ │ ├── openpgp-signed-mailinglist+additional-children.mbox.html │ │ │ │ ├── openpgp-signed-no-protocol.mbox.html │ │ │ │ ├── openpgp-signed-two-attachments.mbox.html │ │ │ │ └── smime-signed-apple.mbox.html │ │ │ ├── html-with-signature.mbox │ │ │ ├── html.mbox │ │ │ ├── html.mbox.html │ │ │ ├── html.mbox.tree │ │ │ ├── htmlonly.mbox │ │ │ ├── htmlonly.mbox.html │ │ │ ├── htmlonly.mbox.tree │ │ │ ├── htmlonlyexternal.mbox │ │ │ ├── iconic │ │ │ │ ├── openpgp-encrypted-partially-signed-attachments.mbox.html │ │ │ │ ├── openpgp-encrypted-two-attachments.mbox.html │ │ │ │ ├── openpgp-signed-encrypted-two-attachments.mbox.html │ │ │ │ └── openpgp-signed-two-attachments.mbox.html │ │ │ ├── inlined │ │ │ │ ├── encapsulated-with-attachment.mbox.html │ │ │ │ ├── openpgp-encrypted-attachment-and-non-encrypted-attachment.mbox.html │ │ │ │ ├── openpgp-encrypted-attachment.mbox.html │ │ │ │ ├── openpgp-encrypted-non-encrypted-attachment.mbox.html │ │ │ │ ├── openpgp-signed-apple.mbox.html │ │ │ │ ├── openpgp-signed-mailinglist+additional-children.mbox.html │ │ │ │ └── smime-signed-apple.mbox.html │ │ │ ├── inlinepgpencrypted-appendix.mbox │ │ │ ├── inlinepgpencrypted-appendix.mbox.html │ │ │ ├── inlinepgpencrypted-appendix.mbox.tree │ │ │ ├── inlinepgpencrypted-error.mbox │ │ │ ├── inlinepgpencrypted-error.mbox.html │ │ │ ├── inlinepgpencrypted-error.mbox.tree │ │ │ ├── inlinepgpencrypted.mbox │ │ │ ├── inlinepgpencrypted.mbox.html │ │ │ ├── inlinepgpencrypted.mbox.inProgress.html │ │ │ ├── inlinepgpencrypted.mbox.tree │ │ │ ├── inlinepgpgencrypted-error.mbox │ │ │ ├── invitation.mbox │ │ │ ├── listmessage.mbox │ │ │ ├── mailheader.css │ │ │ ├── multirecipients.mbox │ │ │ ├── no-content-type.mbox │ │ │ ├── no-content-type.mbox.html │ │ │ ├── no-content-type.mbox.tree │ │ │ ├── openpgp-encoded.mbox │ │ │ ├── openpgp-encoded.mbox.html │ │ │ ├── openpgp-encoded.mbox.tree │ │ │ ├── openpgp-encrypted+signed.mbox │ │ │ ├── openpgp-encrypted+signed.mbox.html │ │ │ ├── openpgp-encrypted+signed.mbox.tree │ │ │ ├── openpgp-encrypted-applemail.mbox │ │ │ ├── openpgp-encrypted-applemail.mbox.html │ │ │ ├── openpgp-encrypted-applemail.mbox.tree │ │ │ ├── openpgp-encrypted-attachment-and-non-encrypted-attachment.mbox │ │ │ ├── openpgp-encrypted-attachment-and-non-encrypted-attachment.mbox.html │ │ │ ├── openpgp-encrypted-attachment-and-non-encrypted-attachment.mbox.tree │ │ │ ├── openpgp-encrypted-attachment.mbox │ │ │ ├── openpgp-encrypted-attachment.mbox.html │ │ │ ├── openpgp-encrypted-attachment.mbox.tree │ │ │ ├── openpgp-encrypted-enigmail1.6.mbox │ │ │ ├── openpgp-encrypted-enigmail1.6.mbox.html │ │ │ ├── openpgp-encrypted-enigmail1.6.mbox.tree │ │ │ ├── openpgp-encrypted-memoryhole2.mbox │ │ │ ├── openpgp-encrypted-noData.mbox │ │ │ ├── openpgp-encrypted-noData.mbox.html │ │ │ ├── openpgp-encrypted-noData.mbox.tree │ │ │ ├── openpgp-encrypted-non-encrypted-attachment.mbox │ │ │ ├── openpgp-encrypted-non-encrypted-attachment.mbox.html │ │ │ ├── openpgp-encrypted-non-encrypted-attachment.mbox.tree │ │ │ ├── openpgp-encrypted-partially-signed-attachments.mbox │ │ │ ├── openpgp-encrypted-partially-signed-attachments.mbox.html │ │ │ ├── openpgp-encrypted-partially-signed-attachments.mbox.tree │ │ │ ├── openpgp-encrypted-two-attachments.mbox │ │ │ ├── openpgp-encrypted-two-attachments.mbox.html │ │ │ ├── openpgp-encrypted-two-attachments.mbox.tree │ │ │ ├── openpgp-encrypted.mbox │ │ │ ├── openpgp-encrypted.mbox.html │ │ │ ├── openpgp-encrypted.mbox.inProgress.html │ │ │ ├── openpgp-encrypted.mbox.tree │ │ │ ├── openpgp-inline-charset-encrypted.mbox │ │ │ ├── openpgp-inline-charset-encrypted.mbox.html │ │ │ ├── openpgp-inline-charset-encrypted.mbox.inProgress.html │ │ │ ├── openpgp-inline-charset-encrypted.mbox.tree │ │ │ ├── openpgp-inline-encrypted+nonenc.mbox │ │ │ ├── openpgp-inline-signed-broken.mbox │ │ │ ├── openpgp-inline-signed.mbox │ │ │ ├── openpgp-inline-signed.mbox.html │ │ │ ├── openpgp-inline-signed.mbox.inProgress.html │ │ │ ├── openpgp-inline-signed.mbox.tree │ │ │ ├── openpgp-inline-wrong-charset-encrypted.mbox │ │ │ ├── openpgp-inline-wrong-charset-encrypted.mbox.html │ │ │ ├── openpgp-inline-wrong-charset-encrypted.mbox.tree │ │ │ ├── openpgp-multipart-embedded-signed.mbox │ │ │ ├── openpgp-multipart-embedded.mbox │ │ │ ├── openpgp-signed-apple.mbox │ │ │ ├── openpgp-signed-apple.mbox.html │ │ │ ├── openpgp-signed-apple.mbox.inProgress.html │ │ │ ├── openpgp-signed-apple.mbox.tree │ │ │ ├── openpgp-signed-base64-mailman-footer.mbox │ │ │ ├── openpgp-signed-base64-mailman-footer.mbox.html │ │ │ ├── openpgp-signed-base64-mailman-footer.mbox.tree │ │ │ ├── openpgp-signed-encrypted-two-attachments.mbox │ │ │ ├── openpgp-signed-encrypted-two-attachments.mbox.html │ │ │ ├── openpgp-signed-encrypted-two-attachments.mbox.tree │ │ │ ├── openpgp-signed-encrypted.mbox │ │ │ ├── openpgp-signed-encrypted.mbox.html │ │ │ ├── openpgp-signed-encrypted.mbox.tree │ │ │ ├── openpgp-signed-mailinglist+additional-children.mbox │ │ │ ├── openpgp-signed-mailinglist+additional-children.mbox.html │ │ │ ├── openpgp-signed-mailinglist+additional-children.mbox.tree │ │ │ ├── openpgp-signed-mailinglist+old.mbox │ │ │ ├── openpgp-signed-mailinglist+old.mbox.html │ │ │ ├── openpgp-signed-mailinglist+old.mbox.tree │ │ │ ├── openpgp-signed-mailinglist.mbox │ │ │ ├── openpgp-signed-mailinglist.mbox.html │ │ │ ├── openpgp-signed-mailinglist.mbox.inProgress.html │ │ │ ├── openpgp-signed-mailinglist.mbox.tree │ │ │ ├── openpgp-signed-no-protocol.mbox │ │ │ ├── openpgp-signed-no-protocol.mbox.html │ │ │ ├── openpgp-signed-no-protocol.mbox.tree │ │ │ ├── openpgp-signed-two-attachments.mbox │ │ │ ├── openpgp-signed-two-attachments.mbox.html │ │ │ ├── openpgp-signed-two-attachments.mbox.tree │ │ │ ├── plaintext-with-signature.mbox │ │ │ ├── plaintext.mbox │ │ │ ├── plaintextattachment.mbox │ │ │ ├── signed-forward-openpgp-signed-encrypted.mbox │ │ │ ├── signed-forward-openpgp-signed-encrypted.mbox.html │ │ │ ├── signed-forward-openpgp-signed-encrypted.mbox.tree │ │ │ ├── smime-cert.mbox │ │ │ ├── smime-cert.mbox.html │ │ │ ├── smime-cert.mbox.tree │ │ │ ├── smime-encrypted-octet-stream.mbox │ │ │ ├── smime-encrypted-octet-stream.mbox.html │ │ │ ├── smime-encrypted-octet-stream.mbox.tree │ │ │ ├── smime-encrypted.mbox │ │ │ ├── smime-encrypted.mbox.html │ │ │ ├── smime-encrypted.mbox.inProgress.html │ │ │ ├── smime-encrypted.mbox.tree │ │ │ ├── smime-opaque-enc+sign.mbox │ │ │ ├── smime-opaque-enc+sign.mbox.html │ │ │ ├── smime-opaque-enc+sign.mbox.tree │ │ │ ├── smime-opaque-sign.mbox │ │ │ ├── smime-opaque-sign.mbox.html │ │ │ ├── smime-opaque-sign.mbox.inProgress.html │ │ │ ├── smime-opaque-sign.mbox.tree │ │ │ ├── smime-opaque-signed-encrypted-attachment.mbox │ │ │ ├── smime-signed-apple.mbox │ │ │ ├── smime-signed-apple.mbox.html │ │ │ ├── smime-signed-apple.mbox.inProgress.html │ │ │ ├── smime-signed-apple.mbox.tree │ │ │ ├── smime-signed-encrypted.mbox │ │ │ ├── smime-signed-encrypted.mbox.html │ │ │ ├── smime-signed-encrypted.mbox.tree │ │ │ ├── text+html-maillinglist.mbox │ │ │ ├── text+html-maillinglist.mbox.html │ │ │ └── text+html-maillinglist.mbox.tree │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── gnupg_home │ │ │ ├── .gpg-v21-migrated │ │ │ ├── CMakeLists.txt │ │ │ ├── dirmngr-cache.d │ │ │ │ ├── DIR.txt │ │ │ │ ├── crl-4E31CEB57DDD4A7B9991AB05507B1ED4293FF952.db │ │ │ │ └── crl-7F2A402CBB016A9146D613568C89D3596A4111AA.db │ │ │ ├── dirmngr.conf │ │ │ ├── gpg-agent.conf.in │ │ │ ├── gpg.conf │ │ │ ├── gpgsm.conf.in │ │ │ ├── pinentry-fake.sh │ │ │ ├── private-keys-v1.d │ │ │ │ ├── 01A7EA42DB00E28D85BB27378D7A47829B63FDB6.key │ │ │ │ ├── 1AA8BA52430E51AE249AF0DA97D59F869E4101A8.key │ │ │ │ ├── 3BD9080DE9C88A88A67965B8E49F677004D6F6B7.key │ │ │ │ ├── 53F70182AE3A9CFDDA3DA5B3A1742B875F43524B.key │ │ │ │ ├── 61A7BB3E7F89151CFB8B18AC27668585CE77A7A7.key │ │ │ │ ├── B8E914E1B03F0238FF0A999E69DE8C8D1FDFFFCD.key │ │ │ │ └── EC06D8C339EF73304D5B2CCF5363B437E0C915F2.key │ │ │ ├── pubring.gpg │ │ │ ├── pubring.kbx │ │ │ ├── random_seed │ │ │ ├── scdaemon.conf │ │ │ ├── secring.gpg │ │ │ ├── trustdb.gpg │ │ │ └── trustlist.txt │ │ │ └── mailtemplatetest.cpp │ ├── modeltest.cpp │ ├── modeltest.h │ ├── mouseproxy.cpp │ ├── mouseproxy.h │ ├── multidayeventmodel.cpp │ ├── multidayeventmodel.h │ ├── outboxmodel.cpp │ ├── outboxmodel.h │ ├── peoplemodel.cpp │ ├── peoplemodel.h │ ├── perioddayeventmodel.cpp │ ├── perioddayeventmodel.h │ ├── recepientautocompletionmodel.cpp │ ├── recepientautocompletionmodel.h │ ├── retriever.cpp │ ├── retriever.h │ ├── selector.cpp │ ├── selector.h │ ├── settings │ │ ├── accountsettings.cpp │ │ ├── accountsettings.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── settingstest.cpp │ ├── sinkutils.cpp │ ├── sinkutils.h │ ├── spellcheckhighlighter.cpp │ ├── spellcheckhighlighter.h │ ├── textdocumenthandler.cpp │ ├── textdocumenthandler.h │ ├── todocontroller.cpp │ ├── todocontroller.h │ ├── todomodel.cpp │ └── todomodel.h │ ├── domainobjectcontroller.cpp │ ├── domainobjectcontroller.h │ ├── entitycache.h │ ├── entitycontroller.cpp │ ├── entitycontroller.h │ ├── entitymodel.cpp │ ├── entitymodel.h │ ├── extensionmodel.cpp │ ├── extensionmodel.h │ ├── fabric.cpp │ ├── fabric.h │ ├── file.cpp │ ├── file.h │ ├── frameworkplugin.cpp │ ├── frameworkplugin.h │ ├── inboundmodel.cpp │ ├── inboundmodel.h │ ├── keyring.cpp │ ├── keyring.h │ ├── krecursivefilterproxymodel.cpp │ ├── krecursivefilterproxymodel.h │ ├── kubeimage.cpp │ ├── kubeimage.h │ ├── logmodel.cpp │ ├── logmodel.h │ ├── qquicktreemodeladaptor.cpp │ ├── qquicktreemodeladaptor.h │ ├── settings │ ├── settings.cpp │ └── settings.h │ ├── sinkfabric.cpp │ ├── sinkfabric.h │ ├── startupcheck.cpp │ ├── startupcheck.h │ ├── syntaxhighlighter.cpp │ ├── syntaxhighlighter.h │ ├── tests │ ├── CMakeLists.txt │ ├── entitycontrollertest.cpp │ ├── entitymodeltest.cpp │ ├── eventoccurrencemodeltest.cpp │ ├── folderlistmodeltest.cpp │ ├── inboundmodeltest.cpp │ ├── invitationcontrollertest.cpp │ ├── maillistmodeltest.cpp │ └── partmodeltest.cpp │ ├── viewhighlighter.cpp │ └── viewhighlighter.h ├── icons ├── .gitignore ├── 1024-apps-kube_icon.png ├── 128-apps-kube_icon.png ├── 16-apps-kube_icon.png ├── 256-apps-kube_icon.png ├── 32-apps-kube_icon.png ├── 48-apps-kube_icon.png ├── 512-apps-kube_icon.png ├── 64-apps-kube_icon.png ├── CMakeLists.txt ├── breeze │ ├── CMakeLists.txt │ ├── COPYING-ICONS │ ├── icons │ │ ├── actions │ │ │ ├── 16 │ │ │ │ ├── application-menu-inverted.svg │ │ │ │ ├── application-menu.svg │ │ │ │ ├── checkbox-inverted.svg │ │ │ │ ├── checkbox.svg │ │ │ │ ├── dialog-cancel-inverted.svg │ │ │ │ ├── dialog-cancel.svg │ │ │ │ ├── dialog-ok-apply-inverted.svg │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ ├── dialog-ok-inverted.svg │ │ │ │ ├── dialog-ok.svg │ │ │ │ ├── document-decrypt-inverted.svg │ │ │ │ ├── document-decrypt.svg │ │ │ │ ├── document-edit-inverted.svg │ │ │ │ ├── document-edit.svg │ │ │ │ ├── document-encrypt-inverted.svg │ │ │ │ ├── document-encrypt.svg │ │ │ │ ├── document-encrypted-inverted.svg │ │ │ │ ├── document-encrypted.svg │ │ │ │ ├── document-save-inverted.svg │ │ │ │ ├── document-save.svg │ │ │ │ ├── document-sign-inverted.svg │ │ │ │ ├── document-sign.svg │ │ │ │ ├── documentinfo-inverted.svg │ │ │ │ ├── documentinfo.svg │ │ │ │ ├── edit-copy-inverted.svg │ │ │ │ ├── edit-copy.svg │ │ │ │ ├── edit-delete-inverted.svg │ │ │ │ ├── edit-delete.svg │ │ │ │ ├── edit-find-inverted.svg │ │ │ │ ├── edit-find.svg │ │ │ │ ├── edit-undo-inverted.svg │ │ │ │ ├── edit-undo.svg │ │ │ │ ├── error-inverted.svg │ │ │ │ ├── error.svg │ │ │ │ ├── format-text-bold-inverted.svg │ │ │ │ ├── format-text-bold.svg │ │ │ │ ├── format-text-italic-inverted.svg │ │ │ │ ├── format-text-italic.svg │ │ │ │ ├── format-text-underline-inverted.svg │ │ │ │ ├── format-text-underline.svg │ │ │ │ ├── go-down-inverted.svg │ │ │ │ ├── go-down.svg │ │ │ │ ├── go-next-inverted.svg │ │ │ │ ├── go-next.svg │ │ │ │ ├── go-previous-inverted.svg │ │ │ │ ├── go-previous.svg │ │ │ │ ├── go-up-inverted.svg │ │ │ │ ├── go-up.svg │ │ │ │ ├── group-inverted.svg │ │ │ │ ├── group.svg │ │ │ │ ├── help-about-inverted.svg │ │ │ │ ├── help-about.svg │ │ │ │ ├── hint-inverted.svg │ │ │ │ ├── hint.svg │ │ │ │ ├── im-user-inverted.svg │ │ │ │ ├── im-user.svg │ │ │ │ ├── kdocumentinfo-inverted.svg │ │ │ │ ├── kdocumentinfo.svg │ │ │ │ ├── kube-list-remove-inverted.svg │ │ │ │ ├── list-add-inverted.svg │ │ │ │ ├── list-add.svg │ │ │ │ ├── list-remove-inverted.svg │ │ │ │ ├── list-remove.svg │ │ │ │ ├── mail-forward-inverted.svg │ │ │ │ ├── mail-forward.svg │ │ │ │ ├── mail-mark-important-inverted.svg │ │ │ │ ├── mail-mark-important.svg │ │ │ │ ├── mail-mark-read-inverted.svg │ │ │ │ ├── mail-mark-read.svg │ │ │ │ ├── mail-mark-task-inverted.svg │ │ │ │ ├── mail-mark-task.svg │ │ │ │ ├── mail-mark-unread-inverted.svg │ │ │ │ ├── mail-mark-unread-new-inverted.svg │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ ├── mail-message-inverted.svg │ │ │ │ ├── mail-message.svg │ │ │ │ ├── mail-reply-sender-inverted.svg │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ ├── mail-task-inverted.svg │ │ │ │ ├── mail-task.svg │ │ │ │ ├── network-disconnect-inverted.svg │ │ │ │ ├── network-disconnect.svg │ │ │ │ ├── notifications-disabled-inverted.svg │ │ │ │ ├── notifications-disabled.svg │ │ │ │ ├── notifications-inverted.svg │ │ │ │ ├── notifications.svg │ │ │ │ ├── overflow-menu-inverted.svg │ │ │ │ ├── overflow-menu.svg │ │ │ │ ├── password-show-off-inverted.svg │ │ │ │ ├── password-show-off.svg │ │ │ │ ├── password-show-on-inverted.svg │ │ │ │ ├── password-show-on.svg │ │ │ │ ├── user-group-new-inverted.svg │ │ │ │ ├── user-group-new.svg │ │ │ │ ├── view-calendar-inverted.svg │ │ │ │ ├── view-calendar.svg │ │ │ │ ├── view-refresh-inverted.svg │ │ │ │ ├── view-refresh.svg │ │ │ │ ├── visibility-inverted.svg │ │ │ │ └── visibility.svg │ │ │ ├── 22 │ │ │ │ ├── application-menu-inverted.svg │ │ │ │ ├── application-menu.svg │ │ │ │ ├── checkbox-inverted.svg │ │ │ │ ├── checkbox.svg │ │ │ │ ├── dialog-cancel-inverted.svg │ │ │ │ ├── dialog-cancel.svg │ │ │ │ ├── dialog-ok-apply-inverted.svg │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ ├── dialog-ok-inverted.svg │ │ │ │ ├── dialog-ok.svg │ │ │ │ ├── document-decrypt-inverted.svg │ │ │ │ ├── document-decrypt.svg │ │ │ │ ├── document-edit-inverted.svg │ │ │ │ ├── document-edit.svg │ │ │ │ ├── document-encrypt-inverted.svg │ │ │ │ ├── document-encrypt.svg │ │ │ │ ├── document-encrypted-inverted.svg │ │ │ │ ├── document-encrypted.svg │ │ │ │ ├── document-save-inverted.svg │ │ │ │ ├── document-save.svg │ │ │ │ ├── document-sign-inverted.svg │ │ │ │ ├── document-sign.svg │ │ │ │ ├── documentinfo-inverted.svg │ │ │ │ ├── documentinfo.svg │ │ │ │ ├── edit-copy-inverted.svg │ │ │ │ ├── edit-copy.svg │ │ │ │ ├── edit-delete-inverted.svg │ │ │ │ ├── edit-delete.svg │ │ │ │ ├── edit-find-inverted.svg │ │ │ │ ├── edit-find.svg │ │ │ │ ├── edit-undo-inverted.svg │ │ │ │ ├── edit-undo.svg │ │ │ │ ├── error-inverted.svg │ │ │ │ ├── error.svg │ │ │ │ ├── go-down-inverted.svg │ │ │ │ ├── go-down.svg │ │ │ │ ├── go-next-inverted.svg │ │ │ │ ├── go-next.svg │ │ │ │ ├── go-previous-inverted.svg │ │ │ │ ├── go-previous.svg │ │ │ │ ├── go-up-inverted.svg │ │ │ │ ├── go-up.svg │ │ │ │ ├── group-inverted.svg │ │ │ │ ├── group.svg │ │ │ │ ├── help-about-inverted.svg │ │ │ │ ├── help-about.svg │ │ │ │ ├── hint-inverted.svg │ │ │ │ ├── hint.svg │ │ │ │ ├── im-user-inverted.svg │ │ │ │ ├── im-user.svg │ │ │ │ ├── kdocumentinfo-inverted.svg │ │ │ │ ├── kdocumentinfo.svg │ │ │ │ ├── list-add-inverted.svg │ │ │ │ ├── list-add.svg │ │ │ │ ├── list-remove-inverted.svg │ │ │ │ ├── list-remove.svg │ │ │ │ ├── mail-forward-inverted.svg │ │ │ │ ├── mail-forward.svg │ │ │ │ ├── mail-mark-important-inverted.svg │ │ │ │ ├── mail-mark-important.svg │ │ │ │ ├── mail-mark-read-inverted.svg │ │ │ │ ├── mail-mark-read.svg │ │ │ │ ├── mail-mark-task-inverted.svg │ │ │ │ ├── mail-mark-task.svg │ │ │ │ ├── mail-mark-unread-inverted.svg │ │ │ │ ├── mail-mark-unread-new-inverted.svg │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ ├── mail-message-inverted.svg │ │ │ │ ├── mail-message.svg │ │ │ │ ├── mail-reply-sender-inverted.svg │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ ├── mail-task-inverted.svg │ │ │ │ ├── mail-task.svg │ │ │ │ ├── network-disconnect-inverted.svg │ │ │ │ ├── network-disconnect.svg │ │ │ │ ├── notifications-disabled-inverted.svg │ │ │ │ ├── notifications-disabled.svg │ │ │ │ ├── notifications-inverted.svg │ │ │ │ ├── notifications.svg │ │ │ │ ├── overflow-menu-inverted.svg │ │ │ │ ├── overflow-menu.svg │ │ │ │ ├── password-show-off-inverted.svg │ │ │ │ ├── password-show-off.svg │ │ │ │ ├── password-show-on-inverted.svg │ │ │ │ ├── password-show-on.svg │ │ │ │ ├── question-inverted.svg │ │ │ │ ├── question.svg │ │ │ │ ├── user-group-new-inverted.svg │ │ │ │ ├── user-group-new.svg │ │ │ │ ├── view-calendar-inverted.svg │ │ │ │ ├── view-calendar.svg │ │ │ │ ├── view-certificate-import-inverted.svg │ │ │ │ ├── view-certificate-import.svg │ │ │ │ ├── view-refresh-inverted.svg │ │ │ │ ├── view-refresh.svg │ │ │ │ ├── visibility-inverted.svg │ │ │ │ └── visibility.svg │ │ │ ├── 24 │ │ │ │ ├── application-menu-inverted.svg │ │ │ │ ├── application-menu.svg │ │ │ │ ├── checkbox-inverted.svg │ │ │ │ ├── checkbox.svg │ │ │ │ ├── dialog-cancel-inverted.svg │ │ │ │ ├── dialog-cancel.svg │ │ │ │ ├── dialog-ok-apply-inverted.svg │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ ├── dialog-ok-inverted.svg │ │ │ │ ├── dialog-ok.svg │ │ │ │ ├── document-decrypt-inverted.svg │ │ │ │ ├── document-decrypt.svg │ │ │ │ ├── document-edit-inverted.svg │ │ │ │ ├── document-edit.svg │ │ │ │ ├── document-encrypt-inverted.svg │ │ │ │ ├── document-encrypt.svg │ │ │ │ ├── document-encrypted-inverted.svg │ │ │ │ ├── document-encrypted.svg │ │ │ │ ├── document-save-inverted.svg │ │ │ │ ├── document-save.svg │ │ │ │ ├── document-sign-inverted.svg │ │ │ │ ├── document-sign.svg │ │ │ │ ├── documentinfo-inverted.svg │ │ │ │ ├── documentinfo.svg │ │ │ │ ├── edit-copy-inverted.svg │ │ │ │ ├── edit-copy.svg │ │ │ │ ├── edit-delete-inverted.svg │ │ │ │ ├── edit-delete.svg │ │ │ │ ├── edit-find-inverted.svg │ │ │ │ ├── edit-find.svg │ │ │ │ ├── edit-undo-inverted.svg │ │ │ │ ├── edit-undo.svg │ │ │ │ ├── go-down-inverted.svg │ │ │ │ ├── go-down.svg │ │ │ │ ├── go-next-inverted.svg │ │ │ │ ├── go-next.svg │ │ │ │ ├── go-previous-inverted.svg │ │ │ │ ├── go-previous.svg │ │ │ │ ├── go-up-inverted.svg │ │ │ │ ├── go-up.svg │ │ │ │ ├── help-about-inverted.svg │ │ │ │ ├── help-about.svg │ │ │ │ ├── hint-inverted.svg │ │ │ │ ├── hint.svg │ │ │ │ ├── im-user-inverted.svg │ │ │ │ ├── im-user.svg │ │ │ │ ├── kube-list-remove-inverted.svg │ │ │ │ ├── kubeimportant-inverted.svg │ │ │ │ ├── kubeimportant.svg │ │ │ │ ├── kuberead.svg │ │ │ │ ├── kubetrash.svg │ │ │ │ ├── kubeunimportant.svg │ │ │ │ ├── kubeunread.svg │ │ │ │ ├── list-add-inverted.svg │ │ │ │ ├── list-add.svg │ │ │ │ ├── list-remove-inverted.svg │ │ │ │ ├── list-remove.svg │ │ │ │ ├── mail-forward-inverted.svg │ │ │ │ ├── mail-forward.svg │ │ │ │ ├── mail-mark-important-inverted.svg │ │ │ │ ├── mail-mark-important.svg │ │ │ │ ├── mail-mark-read-inverted.svg │ │ │ │ ├── mail-mark-read.svg │ │ │ │ ├── mail-mark-unread-new-inverted.svg │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ ├── mail-reply-sender-inverted.svg │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ ├── network-disconnect-inverted.svg │ │ │ │ ├── network-disconnect.svg │ │ │ │ ├── overflow-menu-inverted.svg │ │ │ │ ├── overflow-menu.svg │ │ │ │ ├── password-show-off-inverted.svg │ │ │ │ ├── password-show-off.svg │ │ │ │ ├── password-show-on-inverted.svg │ │ │ │ ├── password-show-on.svg │ │ │ │ ├── view-calendar-inverted.svg │ │ │ │ ├── view-calendar.svg │ │ │ │ ├── view-certificate-import-inverted.svg │ │ │ │ ├── view-certificate-import.svg │ │ │ │ ├── view-refresh-inverted.svg │ │ │ │ ├── view-refresh.svg │ │ │ │ ├── visibility-inverted.svg │ │ │ │ └── visibility.svg │ │ │ ├── 32 │ │ │ │ ├── application-menu-inverted.svg │ │ │ │ ├── application-menu.svg │ │ │ │ ├── dialog-cancel-inverted.svg │ │ │ │ ├── dialog-cancel.svg │ │ │ │ ├── document-decrypt-inverted.svg │ │ │ │ ├── document-decrypt.svg │ │ │ │ ├── document-edit-inverted.svg │ │ │ │ ├── document-edit.svg │ │ │ │ ├── document-save-inverted.svg │ │ │ │ ├── document-save.svg │ │ │ │ ├── edit-delete-inverted.svg │ │ │ │ ├── edit-delete.svg │ │ │ │ ├── edit-undo-inverted.svg │ │ │ │ ├── edit-undo.svg │ │ │ │ ├── go-down-inverted.svg │ │ │ │ ├── go-down.svg │ │ │ │ ├── go-next-inverted.svg │ │ │ │ ├── go-next.svg │ │ │ │ ├── go-previous-inverted.svg │ │ │ │ ├── go-previous.svg │ │ │ │ ├── go-up-inverted.svg │ │ │ │ ├── go-up.svg │ │ │ │ ├── mail-forward-inverted.svg │ │ │ │ ├── mail-forward.svg │ │ │ │ ├── mail-mark-important-inverted.svg │ │ │ │ ├── mail-mark-important.svg │ │ │ │ ├── mail-mark-read-inverted.svg │ │ │ │ ├── mail-mark-read.svg │ │ │ │ ├── mail-mark-unread-inverted.svg │ │ │ │ ├── mail-mark-unread-new-inverted.svg │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ ├── mail-message-inverted.svg │ │ │ │ ├── mail-message.svg │ │ │ │ ├── mail-reply-sender-inverted.svg │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ ├── overflow-menu-inverted.svg │ │ │ │ ├── overflow-menu.svg │ │ │ │ ├── view-refresh-inverted.svg │ │ │ │ └── view-refresh.svg │ │ │ ├── 16@2x │ │ │ ├── 22@2x │ │ │ ├── 24@2x │ │ │ ├── 32@2x │ │ │ └── symbolic │ │ │ │ ├── format-text-bold-symbolic-inverted.svg │ │ │ │ ├── format-text-bold-symbolic.svg │ │ │ │ ├── format-text-italic-symbolic-inverted.svg │ │ │ │ ├── format-text-italic-symbolic.svg │ │ │ │ ├── format-text-underline-symbolic-inverted.svg │ │ │ │ ├── format-text-underline-symbolic.svg │ │ │ │ ├── list-remove-symbolic-inverted.svg │ │ │ │ └── list-remove-symbolic.svg │ │ ├── index.theme │ │ ├── mimetypes │ │ │ ├── 16 │ │ │ │ ├── android-package-archive-inverted.svg │ │ │ │ ├── android-package-archive.svg │ │ │ │ ├── application-atom+xml-inverted.svg │ │ │ │ ├── application-atom+xml.svg │ │ │ │ ├── application-certificate-inverted.svg │ │ │ │ ├── application-certificate.svg │ │ │ │ ├── application-dicom-inverted.svg │ │ │ │ ├── application-dicom.svg │ │ │ │ ├── application-epub+zip-inverted.svg │ │ │ │ ├── application-epub+zip.svg │ │ │ │ ├── application-illustrator-inverted.svg │ │ │ │ ├── application-illustrator.svg │ │ │ │ ├── application-javascript-inverted.svg │ │ │ │ ├── application-javascript.svg │ │ │ │ ├── application-json-inverted.svg │ │ │ │ ├── application-json.svg │ │ │ │ ├── application-mac-binhex40-inverted.svg │ │ │ │ ├── application-mac-binhex40.svg │ │ │ │ ├── application-msonenote-inverted.svg │ │ │ │ ├── application-msonenote.svg │ │ │ │ ├── application-msoutlook-inverted.svg │ │ │ │ ├── application-msoutlook.svg │ │ │ │ ├── application-msword-inverted.svg │ │ │ │ ├── application-msword-template-inverted.svg │ │ │ │ ├── application-msword-template.svg │ │ │ │ ├── application-msword.svg │ │ │ │ ├── application-octet-stream-inverted.svg │ │ │ │ ├── application-octet-stream.svg │ │ │ │ ├── application-ogg-inverted.svg │ │ │ │ ├── application-ogg.svg │ │ │ │ ├── application-pdf-inverted.svg │ │ │ │ ├── application-pdf.svg │ │ │ │ ├── application-pgp-encrypted-inverted.svg │ │ │ │ ├── application-pgp-encrypted.svg │ │ │ │ ├── application-pgp-inverted.svg │ │ │ │ ├── application-pgp-keys-inverted.svg │ │ │ │ ├── application-pgp-keys.svg │ │ │ │ ├── application-pgp-signature-inverted.svg │ │ │ │ ├── application-pgp-signature.svg │ │ │ │ ├── application-pgp.svg │ │ │ │ ├── application-pkcs7-mime-inverted.svg │ │ │ │ ├── application-pkcs7-mime.svg │ │ │ │ ├── application-pkcs7-signature-inverted.svg │ │ │ │ ├── application-pkcs7-signature.svg │ │ │ │ ├── application-pkix-cerl-inverted.svg │ │ │ │ ├── application-pkix-cerl.svg │ │ │ │ ├── application-pkix-cert-inverted.svg │ │ │ │ ├── application-pkix-cert.svg │ │ │ │ ├── application-postscript-inverted.svg │ │ │ │ ├── application-postscript.svg │ │ │ │ ├── application-relaxng-inverted.svg │ │ │ │ ├── application-relaxng.svg │ │ │ │ ├── application-rss+xml-inverted.svg │ │ │ │ ├── application-rss+xml.svg │ │ │ │ ├── application-rtf-inverted.svg │ │ │ │ ├── application-rtf.svg │ │ │ │ ├── application-sxw-inverted.svg │ │ │ │ ├── application-sxw.svg │ │ │ │ ├── application-vnd-google-earth-kml-inverted.svg │ │ │ │ ├── application-vnd-google-earth-kml.svg │ │ │ │ ├── application-vnd.android.package-archive-inverted.svg │ │ │ │ ├── application-vnd.android.package-archive.svg │ │ │ │ ├── application-vnd.iccprofile-inverted.svg │ │ │ │ ├── application-vnd.iccprofile.svg │ │ │ │ ├── application-vnd.ms-access-inverted.svg │ │ │ │ ├── application-vnd.ms-access.svg │ │ │ │ ├── application-vnd.ms-excel-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.addin.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.svg │ │ │ │ ├── application-vnd.ms-excel.template.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-infopath-inverted.svg │ │ │ │ ├── application-vnd.ms-infopath.svg │ │ │ │ ├── application-vnd.ms-powerpoint-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.svg │ │ │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-publisher-inverted.svg │ │ │ │ ├── application-vnd.ms-publisher.svg │ │ │ │ ├── application-vnd.ms-word-inverted.svg │ │ │ │ ├── application-vnd.ms-word.document.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-word.document.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-word.svg │ │ │ │ ├── application-vnd.ms-word.template.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-word.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.nintendo.snes.rom-inverted.svg │ │ │ │ ├── application-vnd.nintendo.snes.rom.svg │ │ │ │ ├── application-vnd.oasis.opendocument.chart-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.chart.svg │ │ │ │ ├── application-vnd.oasis.opendocument.database-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.database.svg │ │ │ │ ├── application-vnd.oasis.opendocument.draw.template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.draw.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula.svg │ │ │ │ ├── application-vnd.oasis.opendocument.graphics-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.graphics.svg │ │ │ │ ├── application-vnd.oasis.opendocument.image-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.image.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-master-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-master.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text.svg │ │ │ │ ├── application-vnd.oasis.opendocument.web-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.web-template.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet-inverted.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document-inverted.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg │ │ │ │ ├── application-vnd.rar-inverted.svg │ │ │ │ ├── application-vnd.rar.svg │ │ │ │ ├── application-vnd.rn-realmedia-inverted.svg │ │ │ │ ├── application-vnd.rn-realmedia.svg │ │ │ │ ├── application-vnd.scribus-inverted.svg │ │ │ │ ├── application-vnd.scribus.svg │ │ │ │ ├── application-vnd.stardivision.calc-inverted.svg │ │ │ │ ├── application-vnd.stardivision.calc.svg │ │ │ │ ├── application-vnd.stardivision.draw-inverted.svg │ │ │ │ ├── application-vnd.stardivision.draw.svg │ │ │ │ ├── application-vnd.stardivision.mail-inverted.svg │ │ │ │ ├── application-vnd.stardivision.mail.svg │ │ │ │ ├── application-vnd.stardivision.math-inverted.svg │ │ │ │ ├── application-vnd.stardivision.math.svg │ │ │ │ ├── application-vnd.sun.xml.calc-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.calc.svg │ │ │ │ ├── application-vnd.sun.xml.calc.template-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.calc.template.svg │ │ │ │ ├── application-vnd.sun.xml.draw-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.draw.svg │ │ │ │ ├── application-vnd.sun.xml.draw.template-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.draw.template.svg │ │ │ │ ├── application-vnd.sun.xml.impress-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.impress.svg │ │ │ │ ├── application-vnd.sun.xml.impress.template-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.impress.template.svg │ │ │ │ ├── application-vnd.sun.xml.math-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.math.svg │ │ │ │ ├── application-vnd.sun.xml.writer-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.writer.global-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.writer.global.svg │ │ │ │ ├── application-vnd.sun.xml.writer.svg │ │ │ │ ├── application-vnd.sun.xml.writer.template-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.writer.template.svg │ │ │ │ ├── application-vnd.visio-inverted.svg │ │ │ │ ├── application-vnd.visio.svg │ │ │ │ ├── application-vnd.wordperfect-inverted.svg │ │ │ │ ├── application-vnd.wordperfect.svg │ │ │ │ ├── application-wps-office.doc-inverted.svg │ │ │ │ ├── application-wps-office.doc.svg │ │ │ │ ├── application-wps-office.docx-inverted.svg │ │ │ │ ├── application-wps-office.docx.svg │ │ │ │ ├── application-wps-office.dot-inverted.svg │ │ │ │ ├── application-wps-office.dot.svg │ │ │ │ ├── application-wps-office.dotx-inverted.svg │ │ │ │ ├── application-wps-office.dotx.svg │ │ │ │ ├── application-wps-office.pot-inverted.svg │ │ │ │ ├── application-wps-office.pot.svg │ │ │ │ ├── application-wps-office.potx-inverted.svg │ │ │ │ ├── application-wps-office.potx.svg │ │ │ │ ├── application-wps-office.ppt-inverted.svg │ │ │ │ ├── application-wps-office.ppt.svg │ │ │ │ ├── application-wps-office.pptx-inverted.svg │ │ │ │ ├── application-wps-office.pptx.svg │ │ │ │ ├── application-wps-office.xls-inverted.svg │ │ │ │ ├── application-wps-office.xls.svg │ │ │ │ ├── application-wps-office.xlsx-inverted.svg │ │ │ │ ├── application-wps-office.xlsx.svg │ │ │ │ ├── application-wps-office.xlt-inverted.svg │ │ │ │ ├── application-wps-office.xlt.svg │ │ │ │ ├── application-wps-office.xltx-inverted.svg │ │ │ │ ├── application-wps-office.xltx.svg │ │ │ │ ├── application-x-7z-compressed-inverted.svg │ │ │ │ ├── application-x-7z-compressed.svg │ │ │ │ ├── application-x-abiword-inverted.svg │ │ │ │ ├── application-x-abiword.svg │ │ │ │ ├── application-x-ace-inverted.svg │ │ │ │ ├── application-x-ace.svg │ │ │ │ ├── application-x-apple-diskimage-inverted.svg │ │ │ │ ├── application-x-apple-diskimage.svg │ │ │ │ ├── application-x-applix-spreadsheet-inverted.svg │ │ │ │ ├── application-x-applix-spreadsheet.svg │ │ │ │ ├── application-x-applix-word-inverted.svg │ │ │ │ ├── application-x-applix-word.svg │ │ │ │ ├── application-x-ar-inverted.svg │ │ │ │ ├── application-x-ar.svg │ │ │ │ ├── application-x-arc-inverted.svg │ │ │ │ ├── application-x-arc.svg │ │ │ │ ├── application-x-archive-inverted.svg │ │ │ │ ├── application-x-archive.svg │ │ │ │ ├── application-x-arj-inverted.svg │ │ │ │ ├── application-x-arj.svg │ │ │ │ ├── application-x-awk-inverted.svg │ │ │ │ ├── application-x-awk.svg │ │ │ │ ├── application-x-bittorrent-inverted.svg │ │ │ │ ├── application-x-bittorrent.svg │ │ │ │ ├── application-x-blender-inverted.svg │ │ │ │ ├── application-x-blender.svg │ │ │ │ ├── application-x-bzdvi-inverted.svg │ │ │ │ ├── application-x-bzdvi.svg │ │ │ │ ├── application-x-bzip-compressed-tar-inverted.svg │ │ │ │ ├── application-x-bzip-compressed-tar.svg │ │ │ │ ├── application-x-bzip-inverted.svg │ │ │ │ ├── application-x-bzip.svg │ │ │ │ ├── application-x-cd-image-inverted.svg │ │ │ │ ├── application-x-cd-image.svg │ │ │ │ ├── application-x-cda-inverted.svg │ │ │ │ ├── application-x-cda.svg │ │ │ │ ├── application-x-chm-inverted.svg │ │ │ │ ├── application-x-chm.svg │ │ │ │ ├── application-x-compress-inverted.svg │ │ │ │ ├── application-x-compress.svg │ │ │ │ ├── application-x-compressed-tar-inverted.svg │ │ │ │ ├── application-x-compressed-tar.svg │ │ │ │ ├── application-x-cpio-inverted.svg │ │ │ │ ├── application-x-cpio.svg │ │ │ │ ├── application-x-cue-inverted.svg │ │ │ │ ├── application-x-cue.svg │ │ │ │ ├── application-x-deb-inverted.svg │ │ │ │ ├── application-x-deb.svg │ │ │ │ ├── application-x-designer-inverted.svg │ │ │ │ ├── application-x-designer.svg │ │ │ │ ├── application-x-desktop-inverted.svg │ │ │ │ ├── application-x-desktop.svg │ │ │ │ ├── application-x-egon-inverted.svg │ │ │ │ ├── application-x-egon.svg │ │ │ │ ├── application-x-executable-inverted.svg │ │ │ │ ├── application-x-executable-script-inverted.svg │ │ │ │ ├── application-x-executable-script.svg │ │ │ │ ├── application-x-executable.svg │ │ │ │ ├── application-x-flash-video-inverted.svg │ │ │ │ ├── application-x-flash-video.svg │ │ │ │ ├── application-x-font-afm-inverted.svg │ │ │ │ ├── application-x-font-afm.svg │ │ │ │ ├── application-x-font-bdf-inverted.svg │ │ │ │ ├── application-x-font-bdf.svg │ │ │ │ ├── application-x-font-otf-inverted.svg │ │ │ │ ├── application-x-font-otf.svg │ │ │ │ ├── application-x-font-pcf-inverted.svg │ │ │ │ ├── application-x-font-pcf.svg │ │ │ │ ├── application-x-font-snf-inverted.svg │ │ │ │ ├── application-x-font-snf.svg │ │ │ │ ├── application-x-font-ttf-inverted.svg │ │ │ │ ├── application-x-font-ttf.svg │ │ │ │ ├── application-x-font-type1-inverted.svg │ │ │ │ ├── application-x-font-type1.svg │ │ │ │ ├── application-x-gameboy-rom-inverted.svg │ │ │ │ ├── application-x-gameboy-rom.svg │ │ │ │ ├── application-x-gamecube-rom-inverted.svg │ │ │ │ ├── application-x-gamecube-rom.svg │ │ │ │ ├── application-x-gba-rom-inverted.svg │ │ │ │ ├── application-x-gba-rom.svg │ │ │ │ ├── application-x-gettext-translation-inverted.svg │ │ │ │ ├── application-x-gettext-translation.svg │ │ │ │ ├── application-x-gnumeric-inverted.svg │ │ │ │ ├── application-x-gnumeric.svg │ │ │ │ ├── application-x-gzdvi-inverted.svg │ │ │ │ ├── application-x-gzdvi.svg │ │ │ │ ├── application-x-gzip-inverted.svg │ │ │ │ ├── application-x-gzip.svg │ │ │ │ ├── application-x-gzpostscript-inverted.svg │ │ │ │ ├── application-x-gzpostscript.svg │ │ │ │ ├── application-x-iso-inverted.svg │ │ │ │ ├── application-x-iso.svg │ │ │ │ ├── application-x-it87-inverted.svg │ │ │ │ ├── application-x-it87.svg │ │ │ │ ├── application-x-jar-inverted.svg │ │ │ │ ├── application-x-jar.svg │ │ │ │ ├── application-x-java-applet-inverted.svg │ │ │ │ ├── application-x-java-applet.svg │ │ │ │ ├── application-x-java-archive-inverted.svg │ │ │ │ ├── application-x-java-archive.svg │ │ │ │ ├── application-x-java-inverted.svg │ │ │ │ ├── application-x-java.svg │ │ │ │ ├── application-x-javascript-inverted.svg │ │ │ │ ├── application-x-javascript.svg │ │ │ │ ├── application-x-k3b-inverted.svg │ │ │ │ ├── application-x-k3b.svg │ │ │ │ ├── application-x-kcsrc-inverted.svg │ │ │ │ ├── application-x-kcsrc.svg │ │ │ │ ├── application-x-kdenlivetitle-inverted.svg │ │ │ │ ├── application-x-kdenlivetitle.svg │ │ │ │ ├── application-x-kexi-connectiondata-inverted.svg │ │ │ │ ├── application-x-kexi-connectiondata.svg │ │ │ │ ├── application-x-kexiproject-shortcut-inverted.svg │ │ │ │ ├── application-x-kexiproject-shortcut.svg │ │ │ │ ├── application-x-kexiproject-sqlite-inverted.svg │ │ │ │ ├── application-x-kexiproject-sqlite.svg │ │ │ │ ├── application-x-kexiproject-sqlite2-inverted.svg │ │ │ │ ├── application-x-kexiproject-sqlite2.svg │ │ │ │ ├── application-x-kexiproject-sqlite3-inverted.svg │ │ │ │ ├── application-x-kexiproject-sqlite3.svg │ │ │ │ ├── application-x-kformula-inverted.svg │ │ │ │ ├── application-x-kformula.svg │ │ │ │ ├── application-x-kgetlist-inverted.svg │ │ │ │ ├── application-x-kgetlist.svg │ │ │ │ ├── application-x-kontour-inverted.svg │ │ │ │ ├── application-x-kontour.svg │ │ │ │ ├── application-x-kplato-inverted.svg │ │ │ │ ├── application-x-kplato.svg │ │ │ │ ├── application-x-krita-inverted.svg │ │ │ │ ├── application-x-krita.svg │ │ │ │ ├── application-x-kvtml-inverted.svg │ │ │ │ ├── application-x-kvtml.svg │ │ │ │ ├── application-x-kword-inverted.svg │ │ │ │ ├── application-x-kword.svg │ │ │ │ ├── application-x-lha-inverted.svg │ │ │ │ ├── application-x-lha.svg │ │ │ │ ├── application-x-lyx-inverted.svg │ │ │ │ ├── application-x-lyx.svg │ │ │ │ ├── application-x-lzma-compressed-tar-inverted.svg │ │ │ │ ├── application-x-lzma-compressed-tar.svg │ │ │ │ ├── application-x-lzop-inverted.svg │ │ │ │ ├── application-x-lzop.svg │ │ │ │ ├── application-x-m4-inverted.svg │ │ │ │ ├── application-x-m4.svg │ │ │ │ ├── application-x-macbinary-inverted.svg │ │ │ │ ├── application-x-macbinary.svg │ │ │ │ ├── application-x-marble-inverted.svg │ │ │ │ ├── application-x-marble.svg │ │ │ │ ├── application-x-mimearchive-inverted.svg │ │ │ │ ├── application-x-mimearchive.svg │ │ │ │ ├── application-x-mplayer2-inverted.svg │ │ │ │ ├── application-x-mplayer2.svg │ │ │ │ ├── application-x-ms-dos-executable-inverted.svg │ │ │ │ ├── application-x-ms-dos-executable.svg │ │ │ │ ├── application-x-ms-shortcut-inverted.svg │ │ │ │ ├── application-x-ms-shortcut.svg │ │ │ │ ├── application-x-mswinurl-inverted.svg │ │ │ │ ├── application-x-mswinurl.svg │ │ │ │ ├── application-x-mswrite-inverted.svg │ │ │ │ ├── application-x-mswrite.svg │ │ │ │ ├── application-x-n64-rom-inverted.svg │ │ │ │ ├── application-x-n64-rom.svg │ │ │ │ ├── application-x-nes-rom-inverted.svg │ │ │ │ ├── application-x-nes-rom.svg │ │ │ │ ├── application-x-nintendo-ds-rom-inverted.svg │ │ │ │ ├── application-x-nintendo-ds-rom.svg │ │ │ │ ├── application-x-nzb-inverted.svg │ │ │ │ ├── application-x-nzb.svg │ │ │ │ ├── application-x-object-inverted.svg │ │ │ │ ├── application-x-object.svg │ │ │ │ ├── application-x-pak-inverted.svg │ │ │ │ ├── application-x-pak.svg │ │ │ │ ├── application-x-partial-download-inverted.svg │ │ │ │ ├── application-x-partial-download.svg │ │ │ │ ├── application-x-pem-key-inverted.svg │ │ │ │ ├── application-x-pem-key.svg │ │ │ │ ├── application-x-perl-inverted.svg │ │ │ │ ├── application-x-perl.svg │ │ │ │ ├── application-x-php-inverted.svg │ │ │ │ ├── application-x-php.svg │ │ │ │ ├── application-x-pkcs12-inverted.svg │ │ │ │ ├── application-x-pkcs12.svg │ │ │ │ ├── application-x-pkcs7-certificates-inverted.svg │ │ │ │ ├── application-x-pkcs7-certificates.svg │ │ │ │ ├── application-x-plasma-inverted.svg │ │ │ │ ├── application-x-plasma.svg │ │ │ │ ├── application-x-python-bytecode-inverted.svg │ │ │ │ ├── application-x-python-bytecode.svg │ │ │ │ ├── application-x-qet-element-inverted.svg │ │ │ │ ├── application-x-qet-element.svg │ │ │ │ ├── application-x-qet-project-inverted.svg │ │ │ │ ├── application-x-qet-project.svg │ │ │ │ ├── application-x-quattropro-inverted.svg │ │ │ │ ├── application-x-quattropro.svg │ │ │ │ ├── application-x-rar-inverted.svg │ │ │ │ ├── application-x-rar.svg │ │ │ │ ├── application-x-raw-disk-image-inverted.svg │ │ │ │ ├── application-x-raw-disk-image.svg │ │ │ │ ├── application-x-rdata-inverted.svg │ │ │ │ ├── application-x-rdata.svg │ │ │ │ ├── application-x-rpm-inverted.svg │ │ │ │ ├── application-x-rpm.svg │ │ │ │ ├── application-x-ruby-inverted.svg │ │ │ │ ├── application-x-ruby.svg │ │ │ │ ├── application-x-sharedlib-inverted.svg │ │ │ │ ├── application-x-sharedlib.svg │ │ │ │ ├── application-x-shellscript-inverted.svg │ │ │ │ ├── application-x-shellscript.svg │ │ │ │ ├── application-x-shockwave-flash-inverted.svg │ │ │ │ ├── application-x-shockwave-flash.svg │ │ │ │ ├── application-x-siag-inverted.svg │ │ │ │ ├── application-x-siag.svg │ │ │ │ ├── application-x-sif-inverted.svg │ │ │ │ ├── application-x-sif.svg │ │ │ │ ├── application-x-skg-inverted.svg │ │ │ │ ├── application-x-skg.svg │ │ │ │ ├── application-x-skgc-inverted.svg │ │ │ │ ├── application-x-skgc.svg │ │ │ │ ├── application-x-smb-server-inverted.svg │ │ │ │ ├── application-x-smb-server.svg │ │ │ │ ├── application-x-smb-workgroup-inverted.svg │ │ │ │ ├── application-x-smb-workgroup.svg │ │ │ │ ├── application-x-source-rpm-inverted.svg │ │ │ │ ├── application-x-source-rpm.svg │ │ │ │ ├── application-x-sqlite2-inverted.svg │ │ │ │ ├── application-x-sqlite2.svg │ │ │ │ ├── application-x-sqlite3-inverted.svg │ │ │ │ ├── application-x-sqlite3.svg │ │ │ │ ├── application-x-srt-inverted.svg │ │ │ │ ├── application-x-srt.svg │ │ │ │ ├── application-x-srtrip-inverted.svg │ │ │ │ ├── application-x-srtrip.svg │ │ │ │ ├── application-x-subrip-inverted.svg │ │ │ │ ├── application-x-subrip.svg │ │ │ │ ├── application-x-tar-inverted.svg │ │ │ │ ├── application-x-tar.svg │ │ │ │ ├── application-x-tarz-inverted.svg │ │ │ │ ├── application-x-tarz.svg │ │ │ │ ├── application-x-tgif-inverted.svg │ │ │ │ ├── application-x-tgif.svg │ │ │ │ ├── application-x-theme-inverted.svg │ │ │ │ ├── application-x-theme.svg │ │ │ │ ├── application-x-trash-inverted.svg │ │ │ │ ├── application-x-trash.svg │ │ │ │ ├── application-x-troff-man-inverted.svg │ │ │ │ ├── application-x-troff-man.svg │ │ │ │ ├── application-x-tzo-inverted.svg │ │ │ │ ├── application-x-tzo.svg │ │ │ │ ├── application-x-wmf-inverted.svg │ │ │ │ ├── application-x-wmf.svg │ │ │ │ ├── application-x-x509-ca-cert-inverted.svg │ │ │ │ ├── application-x-x509-ca-cert.svg │ │ │ │ ├── application-x-x509-user-cert-inverted.svg │ │ │ │ ├── application-x-x509-user-cert.svg │ │ │ │ ├── application-x-xliff-inverted.svg │ │ │ │ ├── application-x-xliff.svg │ │ │ │ ├── application-x-xpinstall-inverted.svg │ │ │ │ ├── application-x-xpinstall.svg │ │ │ │ ├── application-x-xz-compressed-tar-inverted.svg │ │ │ │ ├── application-x-xz-compressed-tar.svg │ │ │ │ ├── application-x-xz-pkg-inverted.svg │ │ │ │ ├── application-x-xz-pkg.svg │ │ │ │ ├── application-x-zerosize-inverted.svg │ │ │ │ ├── application-x-zerosize.svg │ │ │ │ ├── application-x-zoo-inverted.svg │ │ │ │ ├── application-x-zoo.svg │ │ │ │ ├── application-xhtml+xml-inverted.svg │ │ │ │ ├── application-xhtml+xml.svg │ │ │ │ ├── application-xmind-inverted.svg │ │ │ │ ├── application-xmind.svg │ │ │ │ ├── application-xml-inverted.svg │ │ │ │ ├── application-xml.svg │ │ │ │ ├── application-xsd-inverted.svg │ │ │ │ ├── application-xsd.svg │ │ │ │ ├── application-xslt+xml-inverted.svg │ │ │ │ ├── application-xslt+xml.svg │ │ │ │ ├── application-zip-inverted.svg │ │ │ │ ├── application-zip.svg │ │ │ │ ├── audio-ac3-inverted.svg │ │ │ │ ├── audio-ac3.svg │ │ │ │ ├── audio-flac-inverted.svg │ │ │ │ ├── audio-flac.svg │ │ │ │ ├── audio-midi-inverted.svg │ │ │ │ ├── audio-midi.svg │ │ │ │ ├── audio-mp2-inverted.svg │ │ │ │ ├── audio-mp2.svg │ │ │ │ ├── audio-mp3-inverted.svg │ │ │ │ ├── audio-mp3.svg │ │ │ │ ├── audio-mp4-inverted.svg │ │ │ │ ├── audio-mp4.svg │ │ │ │ ├── audio-prs.sid-inverted.svg │ │ │ │ ├── audio-prs.sid.svg │ │ │ │ ├── audio-vn.rn-realmedia-inverted.svg │ │ │ │ ├── audio-vn.rn-realmedia.svg │ │ │ │ ├── audio-vnd.rn-realvideo-inverted.svg │ │ │ │ ├── audio-vnd.rn-realvideo.svg │ │ │ │ ├── audio-x-adpcm-inverted.svg │ │ │ │ ├── audio-x-adpcm.svg │ │ │ │ ├── audio-x-aiff-inverted.svg │ │ │ │ ├── audio-x-aiff.svg │ │ │ │ ├── audio-x-flac+ogg-inverted.svg │ │ │ │ ├── audio-x-flac+ogg.svg │ │ │ │ ├── audio-x-flac-inverted.svg │ │ │ │ ├── audio-x-flac.svg │ │ │ │ ├── audio-x-generic-inverted.svg │ │ │ │ ├── audio-x-generic.svg │ │ │ │ ├── audio-x-monkey-inverted.svg │ │ │ │ ├── audio-x-monkey.svg │ │ │ │ ├── audio-x-mp2-inverted.svg │ │ │ │ ├── audio-x-mp2.svg │ │ │ │ ├── audio-x-mpeg-inverted.svg │ │ │ │ ├── audio-x-mpeg.svg │ │ │ │ ├── audio-x-speex+ogg-inverted.svg │ │ │ │ ├── audio-x-speex+ogg.svg │ │ │ │ ├── audio-x-wav-inverted.svg │ │ │ │ ├── audio-x-wav.svg │ │ │ │ ├── audiobook-inverted.svg │ │ │ │ ├── audiobook.svg │ │ │ │ ├── encrypted-inverted.svg │ │ │ │ ├── encrypted.svg │ │ │ │ ├── font-ttf-inverted.svg │ │ │ │ ├── font-ttf.svg │ │ │ │ ├── fonts-package-inverted.svg │ │ │ │ ├── fonts-package.svg │ │ │ │ ├── image-bmp-inverted.svg │ │ │ │ ├── image-bmp.svg │ │ │ │ ├── image-gif-inverted.svg │ │ │ │ ├── image-gif.svg │ │ │ │ ├── image-ico-inverted.svg │ │ │ │ ├── image-ico.svg │ │ │ │ ├── image-jpeg-inverted.svg │ │ │ │ ├── image-jpeg.svg │ │ │ │ ├── image-jpeg2000-inverted.svg │ │ │ │ ├── image-jpeg2000.svg │ │ │ │ ├── image-png-inverted.svg │ │ │ │ ├── image-png.svg │ │ │ │ ├── image-svg+xml-compressed-inverted.svg │ │ │ │ ├── image-svg+xml-compressed.svg │ │ │ │ ├── image-svg+xml-inverted.svg │ │ │ │ ├── image-svg+xml.svg │ │ │ │ ├── image-tiff-inverted.svg │ │ │ │ ├── image-tiff.svg │ │ │ │ ├── image-vnd.dgn-inverted.svg │ │ │ │ ├── image-vnd.dgn.svg │ │ │ │ ├── image-vnd.djvu-inverted.svg │ │ │ │ ├── image-vnd.djvu.svg │ │ │ │ ├── image-vnd.dwg-inverted.svg │ │ │ │ ├── image-vnd.dwg.svg │ │ │ │ ├── image-vnd.microsoft.icon-inverted.svg │ │ │ │ ├── image-vnd.microsoft.icon.svg │ │ │ │ ├── image-x-adobe-dng-inverted.svg │ │ │ │ ├── image-x-adobe-dng.svg │ │ │ │ ├── image-x-compressed-xcf-inverted.svg │ │ │ │ ├── image-x-compressed-xcf.svg │ │ │ │ ├── image-x-emf-inverted.svg │ │ │ │ ├── image-x-emf.svg │ │ │ │ ├── image-x-eps-inverted.svg │ │ │ │ ├── image-x-eps.svg │ │ │ │ ├── image-x-generic-inverted.svg │ │ │ │ ├── image-x-generic.svg │ │ │ │ ├── image-x-ico-inverted.svg │ │ │ │ ├── image-x-ico.svg │ │ │ │ ├── image-x-icon-inverted.svg │ │ │ │ ├── image-x-icon.svg │ │ │ │ ├── image-x-krita-inverted.svg │ │ │ │ ├── image-x-krita.svg │ │ │ │ ├── image-x-portable-bitmap-inverted.svg │ │ │ │ ├── image-x-portable-bitmap.svg │ │ │ │ ├── image-x-psd-inverted.svg │ │ │ │ ├── image-x-psd.svg │ │ │ │ ├── image-x-psdimage-x-psd-inverted.svg │ │ │ │ ├── image-x-psdimage-x-psd.svg │ │ │ │ ├── image-x-svg+xml-inverted.svg │ │ │ │ ├── image-x-svg+xml.svg │ │ │ │ ├── image-x-tga-inverted.svg │ │ │ │ ├── image-x-tga.svg │ │ │ │ ├── image-x-vnd.trolltech.qpicture-inverted.svg │ │ │ │ ├── image-x-vnd.trolltech.qpicture.svg │ │ │ │ ├── image-x-win-bitmap-inverted.svg │ │ │ │ ├── image-x-win-bitmap.svg │ │ │ │ ├── image-x-win-bmp-inverted.svg │ │ │ │ ├── image-x-win-bmp.svg │ │ │ │ ├── image-x-wmf-inverted.svg │ │ │ │ ├── image-x-wmf.svg │ │ │ │ ├── image-x-xcf-inverted.svg │ │ │ │ ├── image-x-xcf.svg │ │ │ │ ├── image-x-xfig-inverted.svg │ │ │ │ ├── image-x-xfig.svg │ │ │ │ ├── inode-directory-inverted.svg │ │ │ │ ├── inode-directory.svg │ │ │ │ ├── libreoffice-database-inverted.svg │ │ │ │ ├── libreoffice-database.svg │ │ │ │ ├── libreoffice-drawing-inverted.svg │ │ │ │ ├── libreoffice-drawing-template-inverted.svg │ │ │ │ ├── libreoffice-drawing-template.svg │ │ │ │ ├── libreoffice-drawing.svg │ │ │ │ ├── libreoffice-extension-inverted.svg │ │ │ │ ├── libreoffice-extension.svg │ │ │ │ ├── libreoffice-formula-inverted.svg │ │ │ │ ├── libreoffice-formula.svg │ │ │ │ ├── libreoffice-master-document-inverted.svg │ │ │ │ ├── libreoffice-master-document.svg │ │ │ │ ├── libreoffice-oasis-database-inverted.svg │ │ │ │ ├── libreoffice-oasis-database.svg │ │ │ │ ├── libreoffice-oasis-drawing-inverted.svg │ │ │ │ ├── libreoffice-oasis-drawing-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-drawing-template.svg │ │ │ │ ├── libreoffice-oasis-drawing.svg │ │ │ │ ├── libreoffice-oasis-formula-inverted.svg │ │ │ │ ├── libreoffice-oasis-formula.svg │ │ │ │ ├── libreoffice-oasis-master-document-inverted.svg │ │ │ │ ├── libreoffice-oasis-master-document.svg │ │ │ │ ├── libreoffice-oasis-presentation-inverted.svg │ │ │ │ ├── libreoffice-oasis-presentation-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-presentation-template.svg │ │ │ │ ├── libreoffice-oasis-presentation.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-inverted.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-template.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet.svg │ │ │ │ ├── libreoffice-oasis-text-inverted.svg │ │ │ │ ├── libreoffice-oasis-text-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-text-template.svg │ │ │ │ ├── libreoffice-oasis-text.svg │ │ │ │ ├── libreoffice-oasis-web-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-web-template.svg │ │ │ │ ├── libreoffice-presentation-inverted.svg │ │ │ │ ├── libreoffice-presentation-template-inverted.svg │ │ │ │ ├── libreoffice-presentation-template.svg │ │ │ │ ├── libreoffice-presentation.svg │ │ │ │ ├── libreoffice-spreadsheet-inverted.svg │ │ │ │ ├── libreoffice-spreadsheet-template-inverted.svg │ │ │ │ ├── libreoffice-spreadsheet-template.svg │ │ │ │ ├── libreoffice-spreadsheet.svg │ │ │ │ ├── libreoffice-text-inverted.svg │ │ │ │ ├── libreoffice-text-template-inverted.svg │ │ │ │ ├── libreoffice-text-template.svg │ │ │ │ ├── libreoffice-text.svg │ │ │ │ ├── message-inverted.svg │ │ │ │ ├── message-news-inverted.svg │ │ │ │ ├── message-news.svg │ │ │ │ ├── message-partial-inverted.svg │ │ │ │ ├── message-partial.svg │ │ │ │ ├── message-rfc822-inverted.svg │ │ │ │ ├── message-rfc822.svg │ │ │ │ ├── message-x-gnu-rmail-inverted.svg │ │ │ │ ├── message-x-gnu-rmail.svg │ │ │ │ ├── message.svg │ │ │ │ ├── none-inverted.svg │ │ │ │ ├── none.svg │ │ │ │ ├── odf-inverted.svg │ │ │ │ ├── odf.svg │ │ │ │ ├── package-x-generic-inverted.svg │ │ │ │ ├── package-x-generic.svg │ │ │ │ ├── podcast-inverted.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── pplication-vnd.openxmlformats-officedocument.spreadsheetml.sheet-inverted.svg │ │ │ │ ├── pplication-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ │ │ ├── radio-inverted.svg │ │ │ │ ├── radio.svg │ │ │ │ ├── text-calendar-inverted.svg │ │ │ │ ├── text-calendar.svg │ │ │ │ ├── text-csharp-inverted.svg │ │ │ │ ├── text-csharp.svg │ │ │ │ ├── text-css-inverted.svg │ │ │ │ ├── text-css.svg │ │ │ │ ├── text-csv-inverted.svg │ │ │ │ ├── text-csv.svg │ │ │ │ ├── text-directory-inverted.svg │ │ │ │ ├── text-directory.svg │ │ │ │ ├── text-dockerfile-inverted.svg │ │ │ │ ├── text-dockerfile.svg │ │ │ │ ├── text-enriched-inverted.svg │ │ │ │ ├── text-enriched.svg │ │ │ │ ├── text-html-inverted.svg │ │ │ │ ├── text-html.svg │ │ │ │ ├── text-markdown-inverted.svg │ │ │ │ ├── text-markdown.svg │ │ │ │ ├── text-mathml-inverted.svg │ │ │ │ ├── text-mathml.svg │ │ │ │ ├── text-plain-inverted.svg │ │ │ │ ├── text-plain.svg │ │ │ │ ├── text-rdf+xml-inverted.svg │ │ │ │ ├── text-rdf+xml.svg │ │ │ │ ├── text-rdf-inverted.svg │ │ │ │ ├── text-rdf.svg │ │ │ │ ├── text-rtf-inverted.svg │ │ │ │ ├── text-rtf.svg │ │ │ │ ├── text-rust-inverted.svg │ │ │ │ ├── text-rust.svg │ │ │ │ ├── text-sgml-inverted.svg │ │ │ │ ├── text-sgml.svg │ │ │ │ ├── text-troff-inverted.svg │ │ │ │ ├── text-troff.svg │ │ │ │ ├── text-vcalendar-inverted.svg │ │ │ │ ├── text-vcalendar.svg │ │ │ │ ├── text-vnd.abc-inverted.svg │ │ │ │ ├── text-vnd.abc.svg │ │ │ │ ├── text-vnd.trolltech.linguist-inverted.svg │ │ │ │ ├── text-vnd.trolltech.linguist.svg │ │ │ │ ├── text-vnd.wap.wml-inverted.svg │ │ │ │ ├── text-vnd.wap.wml.svg │ │ │ │ ├── text-wiki-inverted.svg │ │ │ │ ├── text-wiki.svg │ │ │ │ ├── text-x-adasrc-inverted.svg │ │ │ │ ├── text-x-adasrc.svg │ │ │ │ ├── text-x-apport-inverted.svg │ │ │ │ ├── text-x-apport.svg │ │ │ │ ├── text-x-authors-inverted.svg │ │ │ │ ├── text-x-authors.svg │ │ │ │ ├── text-x-bibtex-inverted.svg │ │ │ │ ├── text-x-bibtex.svg │ │ │ │ ├── text-x-c++hdr-inverted.svg │ │ │ │ ├── text-x-c++hdr.svg │ │ │ │ ├── text-x-c++src-inverted.svg │ │ │ │ ├── text-x-c++src.svg │ │ │ │ ├── text-x-changelog-inverted.svg │ │ │ │ ├── text-x-changelog.svg │ │ │ │ ├── text-x-chdr-inverted.svg │ │ │ │ ├── text-x-chdr.svg │ │ │ │ ├── text-x-cmake-inverted.svg │ │ │ │ ├── text-x-cmake.svg │ │ │ │ ├── text-x-copying-inverted.svg │ │ │ │ ├── text-x-copying.svg │ │ │ │ ├── text-x-credits-inverted.svg │ │ │ │ ├── text-x-credits.svg │ │ │ │ ├── text-x-csharp-inverted.svg │ │ │ │ ├── text-x-csharp.svg │ │ │ │ ├── text-x-csrc-inverted.svg │ │ │ │ ├── text-x-csrc.svg │ │ │ │ ├── text-x-dtd-inverted.svg │ │ │ │ ├── text-x-dtd.svg │ │ │ │ ├── text-x-generic-inverted.svg │ │ │ │ ├── text-x-generic.svapplication-x-awk-inverted.svg │ │ │ │ ├── text-x-generic.svapplication-x-awk.svg │ │ │ │ ├── text-x-generic.svg │ │ │ │ ├── text-x-gettext-translation-inverted.svg │ │ │ │ ├── text-x-gettext-translation.svg │ │ │ │ ├── text-x-go-inverted.svg │ │ │ │ ├── text-x-go.svg │ │ │ │ ├── text-x-haskell-inverted.svg │ │ │ │ ├── text-x-haskell.svg │ │ │ │ ├── text-x-hex-inverted.svg │ │ │ │ ├── text-x-hex.svg │ │ │ │ ├── text-x-install-inverted.svg │ │ │ │ ├── text-x-install.svg │ │ │ │ ├── text-x-java-inverted.svg │ │ │ │ ├── text-x-java-source-inverted.svg │ │ │ │ ├── text-x-java-source.svg │ │ │ │ ├── text-x-java.svg │ │ │ │ ├── text-x-javascript-inverted.svg │ │ │ │ ├── text-x-javascript.svg │ │ │ │ ├── text-x-katefilelist-inverted.svg │ │ │ │ ├── text-x-katefilelist.svg │ │ │ │ ├── text-x-ldif-inverted.svg │ │ │ │ ├── text-x-ldif.svg │ │ │ │ ├── text-x-lilypond-inverted.svg │ │ │ │ ├── text-x-lilypond.svg │ │ │ │ ├── text-x-log-inverted.svg │ │ │ │ ├── text-x-log.svg │ │ │ │ ├── text-x-lua-inverted.svg │ │ │ │ ├── text-x-lua.svg │ │ │ │ ├── text-x-makefile-inverted.svg │ │ │ │ ├── text-x-makefile.svg │ │ │ │ ├── text-x-markdown-inverted.svg │ │ │ │ ├── text-x-markdown.svg │ │ │ │ ├── text-x-nfo-inverted.svg │ │ │ │ ├── text-x-nfo.svg │ │ │ │ ├── text-x-objchdr-inverted.svg │ │ │ │ ├── text-x-objchdr.svg │ │ │ │ ├── text-x-objcsrc-inverted.svg │ │ │ │ ├── text-x-objcsrc.svg │ │ │ │ ├── text-x-opml+xml-inverted.svg │ │ │ │ ├── text-x-opml+xml.svg │ │ │ │ ├── text-x-opml-inverted.svg │ │ │ │ ├── text-x-opml.svg │ │ │ │ ├── text-x-pascal-inverted.svg │ │ │ │ ├── text-x-pascal.svg │ │ │ │ ├── text-x-patch-inverted.svg │ │ │ │ ├── text-x-patch.svg │ │ │ │ ├── text-x-plain-inverted.svg │ │ │ │ ├── text-x-plain.svg │ │ │ │ ├── text-x-po-inverted.svg │ │ │ │ ├── text-x-po.svg │ │ │ │ ├── text-x-python-inverted.svg │ │ │ │ ├── text-x-python.svg │ │ │ │ ├── text-x-qml-inverted.svg │ │ │ │ ├── text-x-qml.svg │ │ │ │ ├── text-x-r-inverted.svg │ │ │ │ ├── text-x-r.svg │ │ │ │ ├── text-x-readme-inverted.svg │ │ │ │ ├── text-x-readme.svg │ │ │ │ ├── text-x-rpm-spec-inverted.svg │ │ │ │ ├── text-x-rpm-spec.svg │ │ │ │ ├── text-x-rust-inverted.svg │ │ │ │ ├── text-x-rust.svg │ │ │ │ ├── text-x-scala-inverted.svg │ │ │ │ ├── text-x-scala.svg │ │ │ │ ├── text-x-script-inverted.svg │ │ │ │ ├── text-x-script.svg │ │ │ │ ├── text-x-sql-inverted.svg │ │ │ │ ├── text-x-sql.svg │ │ │ │ ├── text-x-tcl-inverted.svg │ │ │ │ ├── text-x-tcl.svg │ │ │ │ ├── text-x-tex-inverted.svg │ │ │ │ ├── text-x-tex.svg │ │ │ │ ├── text-x-texinfo-inverted.svg │ │ │ │ ├── text-x-texinfo.svg │ │ │ │ ├── text-x-vcard-inverted.svg │ │ │ │ ├── text-x-vcard.svg │ │ │ │ ├── text-x-xslfo-inverted.svg │ │ │ │ ├── text-x-xslfo.svg │ │ │ │ ├── text-xmcd-inverted.svg │ │ │ │ ├── text-xmcd.svg │ │ │ │ ├── text-xml-inverted.svg │ │ │ │ ├── text-xml.svg │ │ │ │ ├── unknown-inverted.svg │ │ │ │ ├── unknown.svg │ │ │ │ ├── uri-mms-inverted.svg │ │ │ │ ├── uri-mms.svg │ │ │ │ ├── uri-mmst-inverted.svg │ │ │ │ ├── uri-mmst.svg │ │ │ │ ├── uri-pnm-inverted.svg │ │ │ │ ├── uri-pnm.svg │ │ │ │ ├── uri-rtspt-inverted.svg │ │ │ │ ├── uri-rtspt.svg │ │ │ │ ├── uri-rtspu-inverted.svg │ │ │ │ ├── uri-rtspu.svg │ │ │ │ ├── video-mlt-playlist-inverted.svg │ │ │ │ ├── video-mlt-playlist.svg │ │ │ │ ├── video-mp2t-inverted.svg │ │ │ │ ├── video-mp2t.svg │ │ │ │ ├── video-mp4-inverted.svg │ │ │ │ ├── video-mp4.svg │ │ │ │ ├── video-vivo-inverted.svg │ │ │ │ ├── video-vivo.svg │ │ │ │ ├── video-vnd.rn-realvideo-inverted.svg │ │ │ │ ├── video-vnd.rn-realvideo.svg │ │ │ │ ├── video-wavelet-inverted.svg │ │ │ │ ├── video-wavelet.svg │ │ │ │ ├── video-webm-inverted.svg │ │ │ │ ├── video-webm.svg │ │ │ │ ├── video-x-anim-inverted.svg │ │ │ │ ├── video-x-anim.svg │ │ │ │ ├── video-x-flic-inverted.svg │ │ │ │ ├── video-x-flic.svg │ │ │ │ ├── video-x-flv-inverted.svg │ │ │ │ ├── video-x-flv.svg │ │ │ │ ├── video-x-generic-inverted.svg │ │ │ │ ├── video-x-generic.svg │ │ │ │ ├── video-x-google-vlc-plugin-inverted.svg │ │ │ │ ├── video-x-google-vlc-plugin.svg │ │ │ │ ├── video-x-javafx-inverted.svg │ │ │ │ ├── video-x-javafx.svg │ │ │ │ ├── video-x-matroska-inverted.svg │ │ │ │ ├── video-x-matroska.svg │ │ │ │ ├── video-x-mng-inverted.svg │ │ │ │ ├── video-x-mng.svg │ │ │ │ ├── video-x-ms-wmp-inverted.svg │ │ │ │ ├── video-x-ms-wmp.svg │ │ │ │ ├── video-x-ms-wmv-inverted.svg │ │ │ │ ├── video-x-ms-wmv.svg │ │ │ │ ├── video-x-msvideo-inverted.svg │ │ │ │ ├── video-x-msvideo.svg │ │ │ │ ├── video-x-ogm+ogg-inverted.svg │ │ │ │ ├── video-x-ogm+ogg.svg │ │ │ │ ├── video-x-theora+ogg-inverted.svg │ │ │ │ ├── video-x-theora+ogg.svg │ │ │ │ ├── video-x-wmv-inverted.svg │ │ │ │ ├── video-x-wmv.svg │ │ │ │ ├── viewbib-inverted.svg │ │ │ │ ├── viewbib.svg │ │ │ │ ├── viewdvi-inverted.svg │ │ │ │ ├── viewdvi.svg │ │ │ │ ├── viewhtml-inverted.svg │ │ │ │ ├── viewhtml.svg │ │ │ │ ├── viewpdf-inverted.svg │ │ │ │ ├── viewpdf.svg │ │ │ │ ├── viewps-inverted.svg │ │ │ │ ├── viewps.svg │ │ │ │ ├── virtualbox-hdd-inverted.svg │ │ │ │ ├── virtualbox-hdd.svg │ │ │ │ ├── virtualbox-ova-inverted.svg │ │ │ │ ├── virtualbox-ova.svg │ │ │ │ ├── virtualbox-ovf-inverted.svg │ │ │ │ ├── virtualbox-ovf.svg │ │ │ │ ├── virtualbox-vbox-extpack-inverted.svg │ │ │ │ ├── virtualbox-vbox-extpack.svg │ │ │ │ ├── virtualbox-vbox-inverted.svg │ │ │ │ ├── virtualbox-vbox.svg │ │ │ │ ├── virtualbox-vdi-inverted.svg │ │ │ │ ├── virtualbox-vdi.svg │ │ │ │ ├── virtualbox-vhd-inverted.svg │ │ │ │ ├── virtualbox-vhd.svg │ │ │ │ ├── virtualbox-vmdk-inverted.svg │ │ │ │ ├── virtualbox-vmdk.svg │ │ │ │ ├── vnd.ms-publisher-inverted.svg │ │ │ │ ├── vnd.ms-publisher.svg │ │ │ │ ├── x-kde-nsplugin-generated-inverted.svg │ │ │ │ ├── x-kde-nsplugin-generated.svg │ │ │ │ ├── x-mail-distribution-list-inverted.svg │ │ │ │ ├── x-mail-distribution-list.svg │ │ │ │ ├── x-media-podcast-inverted.svg │ │ │ │ ├── x-media-podcast.svg │ │ │ │ ├── x-office-address-book-inverted.svg │ │ │ │ ├── x-office-address-book.svg │ │ │ │ ├── x-office-calendar-inverted.svg │ │ │ │ ├── x-office-calendar.svg │ │ │ │ ├── x-office-contact-inverted.svg │ │ │ │ ├── x-office-contact.svg │ │ │ │ ├── x-office-document-inverted.svg │ │ │ │ ├── x-office-document.svg │ │ │ │ ├── x-office-drawing-inverted.svg │ │ │ │ ├── x-office-drawing.svg │ │ │ │ ├── x-office-presentation-inverted.svg │ │ │ │ ├── x-office-presentation.svg │ │ │ │ ├── x-office-spreadsheet-inverted.svg │ │ │ │ └── x-office-spreadsheet.svg │ │ │ ├── 22 │ │ │ │ ├── android-package-archive-inverted.svg │ │ │ │ ├── android-package-archive.svg │ │ │ │ ├── application-atom+xml-inverted.svg │ │ │ │ ├── application-atom+xml.svg │ │ │ │ ├── application-certificate-inverted.svg │ │ │ │ ├── application-certificate.svg │ │ │ │ ├── application-dicom-inverted.svg │ │ │ │ ├── application-dicom.svg │ │ │ │ ├── application-epub+zip-inverted.svg │ │ │ │ ├── application-epub+zip.svg │ │ │ │ ├── application-illustrator-inverted.svg │ │ │ │ ├── application-illustrator.svg │ │ │ │ ├── application-javascript-inverted.svg │ │ │ │ ├── application-javascript.svg │ │ │ │ ├── application-json-inverted.svg │ │ │ │ ├── application-json.svg │ │ │ │ ├── application-mac-binhex40-inverted.svg │ │ │ │ ├── application-mac-binhex40.svg │ │ │ │ ├── application-msonenote-inverted.svg │ │ │ │ ├── application-msonenote.svg │ │ │ │ ├── application-msoutlook-inverted.svg │ │ │ │ ├── application-msoutlook.svg │ │ │ │ ├── application-msword-inverted.svg │ │ │ │ ├── application-msword-template-inverted.svg │ │ │ │ ├── application-msword-template.svg │ │ │ │ ├── application-msword.svg │ │ │ │ ├── application-octet-stream-inverted.svg │ │ │ │ ├── application-octet-stream.svg │ │ │ │ ├── application-ogg-inverted.svg │ │ │ │ ├── application-ogg.svg │ │ │ │ ├── application-pdf-inverted.svg │ │ │ │ ├── application-pdf.svg │ │ │ │ ├── application-pgp-encrypted-inverted.svg │ │ │ │ ├── application-pgp-encrypted.svg │ │ │ │ ├── application-pgp-inverted.svg │ │ │ │ ├── application-pgp-keys-inverted.svg │ │ │ │ ├── application-pgp-keys.svg │ │ │ │ ├── application-pgp-signature-inverted.svg │ │ │ │ ├── application-pgp-signature.svg │ │ │ │ ├── application-pgp.svg │ │ │ │ ├── application-pkcs7-mime-inverted.svg │ │ │ │ ├── application-pkcs7-mime.svg │ │ │ │ ├── application-pkcs7-signature-inverted.svg │ │ │ │ ├── application-pkcs7-signature.svg │ │ │ │ ├── application-pkix-cerl-inverted.svg │ │ │ │ ├── application-pkix-cerl.svg │ │ │ │ ├── application-pkix-cert-inverted.svg │ │ │ │ ├── application-pkix-cert.svg │ │ │ │ ├── application-postscript-inverted.svg │ │ │ │ ├── application-postscript.svg │ │ │ │ ├── application-relaxng-inverted.svg │ │ │ │ ├── application-relaxng.svg │ │ │ │ ├── application-rss+xml-inverted.svg │ │ │ │ ├── application-rss+xml.svg │ │ │ │ ├── application-rtf-inverted.svg │ │ │ │ ├── application-rtf.svg │ │ │ │ ├── application-sxw-inverted.svg │ │ │ │ ├── application-sxw.svg │ │ │ │ ├── application-vnd-google-earth-kml-inverted.svg │ │ │ │ ├── application-vnd-google-earth-kml.svg │ │ │ │ ├── application-vnd.android.package-archive-inverted.svg │ │ │ │ ├── application-vnd.android.package-archive.svg │ │ │ │ ├── application-vnd.iccprofile-inverted.svg │ │ │ │ ├── application-vnd.iccprofile.svg │ │ │ │ ├── application-vnd.ms-access-inverted.svg │ │ │ │ ├── application-vnd.ms-access.svg │ │ │ │ ├── application-vnd.ms-excel-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.addin.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.svg │ │ │ │ ├── application-vnd.ms-excel.template.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-infopath-inverted.svg │ │ │ │ ├── application-vnd.ms-infopath.svg │ │ │ │ ├── application-vnd.ms-powerpoint-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.svg │ │ │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-publisher-inverted.svg │ │ │ │ ├── application-vnd.ms-publisher.svg │ │ │ │ ├── application-vnd.ms-word-inverted.svg │ │ │ │ ├── application-vnd.ms-word.document.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-word.document.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-word.svg │ │ │ │ ├── application-vnd.ms-word.template.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-word.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.nintendo.snes.rom-inverted.svg │ │ │ │ ├── application-vnd.nintendo.snes.rom.svg │ │ │ │ ├── application-vnd.oasis.opendocument.chart-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.chart.svg │ │ │ │ ├── application-vnd.oasis.opendocument.database-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.database.svg │ │ │ │ ├── application-vnd.oasis.opendocument.draw.template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.draw.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula.svg │ │ │ │ ├── application-vnd.oasis.opendocument.graphics-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.graphics.svg │ │ │ │ ├── application-vnd.oasis.opendocument.image-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.image.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-master-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-master.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text.svg │ │ │ │ ├── application-vnd.oasis.opendocument.web-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.web-template.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet-inverted.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document-inverted.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg │ │ │ │ ├── application-vnd.rar-inverted.svg │ │ │ │ ├── application-vnd.rar.svg │ │ │ │ ├── application-vnd.rn-realmedia-inverted.svg │ │ │ │ ├── application-vnd.rn-realmedia.svg │ │ │ │ ├── application-vnd.scribus-inverted.svg │ │ │ │ ├── application-vnd.scribus.svg │ │ │ │ ├── application-vnd.stardivision.calc-inverted.svg │ │ │ │ ├── application-vnd.stardivision.calc.svg │ │ │ │ ├── application-vnd.stardivision.draw-inverted.svg │ │ │ │ ├── application-vnd.stardivision.draw.svg │ │ │ │ ├── application-vnd.stardivision.mail-inverted.svg │ │ │ │ ├── application-vnd.stardivision.mail.svg │ │ │ │ ├── application-vnd.stardivision.math-inverted.svg │ │ │ │ ├── application-vnd.stardivision.math.svg │ │ │ │ ├── application-vnd.sun.xml.calc-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.calc.svg │ │ │ │ ├── application-vnd.sun.xml.calc.template-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.calc.template.svg │ │ │ │ ├── application-vnd.sun.xml.draw-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.draw.svg │ │ │ │ ├── application-vnd.sun.xml.draw.template-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.draw.template.svg │ │ │ │ ├── application-vnd.sun.xml.impress-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.impress.svg │ │ │ │ ├── application-vnd.sun.xml.impress.template-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.impress.template.svg │ │ │ │ ├── application-vnd.sun.xml.math-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.math.svg │ │ │ │ ├── application-vnd.sun.xml.writer-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.writer.global-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.writer.global.svg │ │ │ │ ├── application-vnd.sun.xml.writer.svg │ │ │ │ ├── application-vnd.sun.xml.writer.template-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.writer.template.svg │ │ │ │ ├── application-vnd.visio-inverted.svg │ │ │ │ ├── application-vnd.visio.svg │ │ │ │ ├── application-vnd.wordperfect-inverted.svg │ │ │ │ ├── application-vnd.wordperfect.svg │ │ │ │ ├── application-wps-office.doc-inverted.svg │ │ │ │ ├── application-wps-office.doc.svg │ │ │ │ ├── application-wps-office.docx-inverted.svg │ │ │ │ ├── application-wps-office.docx.svg │ │ │ │ ├── application-wps-office.dot-inverted.svg │ │ │ │ ├── application-wps-office.dot.svg │ │ │ │ ├── application-wps-office.dotx-inverted.svg │ │ │ │ ├── application-wps-office.dotx.svg │ │ │ │ ├── application-wps-office.pot-inverted.svg │ │ │ │ ├── application-wps-office.pot.svg │ │ │ │ ├── application-wps-office.potx-inverted.svg │ │ │ │ ├── application-wps-office.potx.svg │ │ │ │ ├── application-wps-office.ppt-inverted.svg │ │ │ │ ├── application-wps-office.ppt.svg │ │ │ │ ├── application-wps-office.pptx-inverted.svg │ │ │ │ ├── application-wps-office.pptx.svg │ │ │ │ ├── application-wps-office.xls-inverted.svg │ │ │ │ ├── application-wps-office.xls.svg │ │ │ │ ├── application-wps-office.xlsx-inverted.svg │ │ │ │ ├── application-wps-office.xlsx.svg │ │ │ │ ├── application-wps-office.xlt-inverted.svg │ │ │ │ ├── application-wps-office.xlt.svg │ │ │ │ ├── application-wps-office.xltx-inverted.svg │ │ │ │ ├── application-wps-office.xltx.svg │ │ │ │ ├── application-x-7z-compressed-inverted.svg │ │ │ │ ├── application-x-7z-compressed.svg │ │ │ │ ├── application-x-abiword-inverted.svg │ │ │ │ ├── application-x-abiword.svg │ │ │ │ ├── application-x-ace-inverted.svg │ │ │ │ ├── application-x-ace.svg │ │ │ │ ├── application-x-apple-diskimage-inverted.svg │ │ │ │ ├── application-x-apple-diskimage.svg │ │ │ │ ├── application-x-applix-spreadsheet-inverted.svg │ │ │ │ ├── application-x-applix-spreadsheet.svg │ │ │ │ ├── application-x-applix-word-inverted.svg │ │ │ │ ├── application-x-applix-word.svg │ │ │ │ ├── application-x-ar-inverted.svg │ │ │ │ ├── application-x-ar.svg │ │ │ │ ├── application-x-arc-inverted.svg │ │ │ │ ├── application-x-arc.svg │ │ │ │ ├── application-x-archive-inverted.svg │ │ │ │ ├── application-x-archive.svg │ │ │ │ ├── application-x-arj-inverted.svg │ │ │ │ ├── application-x-arj.svg │ │ │ │ ├── application-x-awk-inverted.svg │ │ │ │ ├── application-x-awk.svg │ │ │ │ ├── application-x-bittorrent-inverted.svg │ │ │ │ ├── application-x-bittorrent.svg │ │ │ │ ├── application-x-blender-inverted.svg │ │ │ │ ├── application-x-blender.svg │ │ │ │ ├── application-x-bzdvi-inverted.svg │ │ │ │ ├── application-x-bzdvi.svg │ │ │ │ ├── application-x-bzip-compressed-tar-inverted.svg │ │ │ │ ├── application-x-bzip-compressed-tar.svg │ │ │ │ ├── application-x-bzip-inverted.svg │ │ │ │ ├── application-x-bzip.svg │ │ │ │ ├── application-x-cd-image-inverted.svg │ │ │ │ ├── application-x-cd-image.svg │ │ │ │ ├── application-x-cda-inverted.svg │ │ │ │ ├── application-x-cda.svg │ │ │ │ ├── application-x-chm-inverted.svg │ │ │ │ ├── application-x-chm.svg │ │ │ │ ├── application-x-compress-inverted.svg │ │ │ │ ├── application-x-compress.svg │ │ │ │ ├── application-x-compressed-tar-inverted.svg │ │ │ │ ├── application-x-compressed-tar.svg │ │ │ │ ├── application-x-cpio-inverted.svg │ │ │ │ ├── application-x-cpio.svg │ │ │ │ ├── application-x-cue-inverted.svg │ │ │ │ ├── application-x-cue.svg │ │ │ │ ├── application-x-deb-inverted.svg │ │ │ │ ├── application-x-deb.svg │ │ │ │ ├── application-x-designer-inverted.svg │ │ │ │ ├── application-x-designer.svg │ │ │ │ ├── application-x-desktop-inverted.svg │ │ │ │ ├── application-x-desktop.svg │ │ │ │ ├── application-x-egon-inverted.svg │ │ │ │ ├── application-x-egon.svg │ │ │ │ ├── application-x-executable-inverted.svg │ │ │ │ ├── application-x-executable-script-inverted.svg │ │ │ │ ├── application-x-executable-script.svg │ │ │ │ ├── application-x-executable.svg │ │ │ │ ├── application-x-flash-video-inverted.svg │ │ │ │ ├── application-x-flash-video.svg │ │ │ │ ├── application-x-font-afm-inverted.svg │ │ │ │ ├── application-x-font-afm.svg │ │ │ │ ├── application-x-font-bdf-inverted.svg │ │ │ │ ├── application-x-font-bdf.svg │ │ │ │ ├── application-x-font-otf-inverted.svg │ │ │ │ ├── application-x-font-otf.svg │ │ │ │ ├── application-x-font-pcf-inverted.svg │ │ │ │ ├── application-x-font-pcf.svg │ │ │ │ ├── application-x-font-snf-inverted.svg │ │ │ │ ├── application-x-font-snf.svg │ │ │ │ ├── application-x-font-ttf-inverted.svg │ │ │ │ ├── application-x-font-ttf.svg │ │ │ │ ├── application-x-font-type1-inverted.svg │ │ │ │ ├── application-x-font-type1.svg │ │ │ │ ├── application-x-gameboy-rom-inverted.svg │ │ │ │ ├── application-x-gameboy-rom.svg │ │ │ │ ├── application-x-gamecube-rom-inverted.svg │ │ │ │ ├── application-x-gamecube-rom.svg │ │ │ │ ├── application-x-gba-rom-inverted.svg │ │ │ │ ├── application-x-gba-rom.svg │ │ │ │ ├── application-x-gettext-translation-inverted.svg │ │ │ │ ├── application-x-gettext-translation.svg │ │ │ │ ├── application-x-gnumeric-inverted.svg │ │ │ │ ├── application-x-gnumeric.svg │ │ │ │ ├── application-x-gzdvi-inverted.svg │ │ │ │ ├── application-x-gzdvi.svg │ │ │ │ ├── application-x-gzip-inverted.svg │ │ │ │ ├── application-x-gzip.svg │ │ │ │ ├── application-x-gzpostscript-inverted.svg │ │ │ │ ├── application-x-gzpostscript.svg │ │ │ │ ├── application-x-iso-inverted.svg │ │ │ │ ├── application-x-iso.svg │ │ │ │ ├── application-x-it87-inverted.svg │ │ │ │ ├── application-x-it87.svg │ │ │ │ ├── application-x-jar-inverted.svg │ │ │ │ ├── application-x-jar.svg │ │ │ │ ├── application-x-java-applet-inverted.svg │ │ │ │ ├── application-x-java-applet.svg │ │ │ │ ├── application-x-java-archive-inverted.svg │ │ │ │ ├── application-x-java-archive.svg │ │ │ │ ├── application-x-java-inverted.svg │ │ │ │ ├── application-x-java.svg │ │ │ │ ├── application-x-javascript-inverted.svg │ │ │ │ ├── application-x-javascript.svg │ │ │ │ ├── application-x-k3b-inverted.svg │ │ │ │ ├── application-x-k3b.svg │ │ │ │ ├── application-x-kcsrc-inverted.svg │ │ │ │ ├── application-x-kcsrc.svg │ │ │ │ ├── application-x-kdenlivetitle-inverted.svg │ │ │ │ ├── application-x-kdenlivetitle.svg │ │ │ │ ├── application-x-kexi-connectiondata-inverted.svg │ │ │ │ ├── application-x-kexi-connectiondata.svg │ │ │ │ ├── application-x-kexiproject-shortcut-inverted.svg │ │ │ │ ├── application-x-kexiproject-shortcut.svg │ │ │ │ ├── application-x-kexiproject-sqlite-inverted.svg │ │ │ │ ├── application-x-kexiproject-sqlite.svg │ │ │ │ ├── application-x-kexiproject-sqlite2-inverted.svg │ │ │ │ ├── application-x-kexiproject-sqlite2.svg │ │ │ │ ├── application-x-kexiproject-sqlite3-inverted.svg │ │ │ │ ├── application-x-kexiproject-sqlite3.svg │ │ │ │ ├── application-x-kformula-inverted.svg │ │ │ │ ├── application-x-kformula.svg │ │ │ │ ├── application-x-kgetlist-inverted.svg │ │ │ │ ├── application-x-kgetlist.svg │ │ │ │ ├── application-x-kontour-inverted.svg │ │ │ │ ├── application-x-kontour.svg │ │ │ │ ├── application-x-kplato-inverted.svg │ │ │ │ ├── application-x-kplato.svg │ │ │ │ ├── application-x-krita-inverted.svg │ │ │ │ ├── application-x-krita.svg │ │ │ │ ├── application-x-kvtml-inverted.svg │ │ │ │ ├── application-x-kvtml.svg │ │ │ │ ├── application-x-kword-inverted.svg │ │ │ │ ├── application-x-kword.svg │ │ │ │ ├── application-x-lha-inverted.svg │ │ │ │ ├── application-x-lha.svg │ │ │ │ ├── application-x-lyx-inverted.svg │ │ │ │ ├── application-x-lyx.svg │ │ │ │ ├── application-x-lzma-compressed-tar-inverted.svg │ │ │ │ ├── application-x-lzma-compressed-tar.svg │ │ │ │ ├── application-x-lzop-inverted.svg │ │ │ │ ├── application-x-lzop.svg │ │ │ │ ├── application-x-m4-inverted.svg │ │ │ │ ├── application-x-m4.svg │ │ │ │ ├── application-x-macbinary-inverted.svg │ │ │ │ ├── application-x-macbinary.svg │ │ │ │ ├── application-x-marble-inverted.svg │ │ │ │ ├── application-x-marble.svg │ │ │ │ ├── application-x-mimearchive-inverted.svg │ │ │ │ ├── application-x-mimearchive.svg │ │ │ │ ├── application-x-mplayer2-inverted.svg │ │ │ │ ├── application-x-mplayer2.svg │ │ │ │ ├── application-x-ms-dos-executable-inverted.svg │ │ │ │ ├── application-x-ms-dos-executable.svg │ │ │ │ ├── application-x-ms-shortcut-inverted.svg │ │ │ │ ├── application-x-ms-shortcut.svg │ │ │ │ ├── application-x-mswinurl-inverted.svg │ │ │ │ ├── application-x-mswinurl.svg │ │ │ │ ├── application-x-mswrite-inverted.svg │ │ │ │ ├── application-x-mswrite.svg │ │ │ │ ├── application-x-n64-rom-inverted.svg │ │ │ │ ├── application-x-n64-rom.svg │ │ │ │ ├── application-x-nes-rom-inverted.svg │ │ │ │ ├── application-x-nes-rom.svg │ │ │ │ ├── application-x-nintendo-ds-rom-inverted.svg │ │ │ │ ├── application-x-nintendo-ds-rom.svg │ │ │ │ ├── application-x-nzb-inverted.svg │ │ │ │ ├── application-x-nzb.svg │ │ │ │ ├── application-x-object-inverted.svg │ │ │ │ ├── application-x-object.svg │ │ │ │ ├── application-x-pak-inverted.svg │ │ │ │ ├── application-x-pak.svg │ │ │ │ ├── application-x-partial-download-inverted.svg │ │ │ │ ├── application-x-partial-download.svg │ │ │ │ ├── application-x-pem-key-inverted.svg │ │ │ │ ├── application-x-pem-key.svg │ │ │ │ ├── application-x-perl-inverted.svg │ │ │ │ ├── application-x-perl.svg │ │ │ │ ├── application-x-php-inverted.svg │ │ │ │ ├── application-x-php.svg │ │ │ │ ├── application-x-pkcs12-inverted.svg │ │ │ │ ├── application-x-pkcs12.svg │ │ │ │ ├── application-x-pkcs7-certificates-inverted.svg │ │ │ │ ├── application-x-pkcs7-certificates.svg │ │ │ │ ├── application-x-plasma-inverted.svg │ │ │ │ ├── application-x-plasma.svg │ │ │ │ ├── application-x-python-bytecode-inverted.svg │ │ │ │ ├── application-x-python-bytecode.svg │ │ │ │ ├── application-x-qet-element-inverted.svg │ │ │ │ ├── application-x-qet-element.svg │ │ │ │ ├── application-x-qet-project-inverted.svg │ │ │ │ ├── application-x-qet-project.svg │ │ │ │ ├── application-x-quattropro-inverted.svg │ │ │ │ ├── application-x-quattropro.svg │ │ │ │ ├── application-x-rar-inverted.svg │ │ │ │ ├── application-x-rar.svg │ │ │ │ ├── application-x-raw-disk-image-inverted.svg │ │ │ │ ├── application-x-raw-disk-image.svg │ │ │ │ ├── application-x-rdata-inverted.svg │ │ │ │ ├── application-x-rdata.svg │ │ │ │ ├── application-x-rpm-inverted.svg │ │ │ │ ├── application-x-rpm.svg │ │ │ │ ├── application-x-ruby-inverted.svg │ │ │ │ ├── application-x-ruby.svg │ │ │ │ ├── application-x-sharedlib-inverted.svg │ │ │ │ ├── application-x-sharedlib.svg │ │ │ │ ├── application-x-shellscript-inverted.svg │ │ │ │ ├── application-x-shellscript.svg │ │ │ │ ├── application-x-shockwave-flash-inverted.svg │ │ │ │ ├── application-x-shockwave-flash.svg │ │ │ │ ├── application-x-siag-inverted.svg │ │ │ │ ├── application-x-siag.svg │ │ │ │ ├── application-x-sif-inverted.svg │ │ │ │ ├── application-x-sif.svg │ │ │ │ ├── application-x-skg-inverted.svg │ │ │ │ ├── application-x-skg.svg │ │ │ │ ├── application-x-skgc-inverted.svg │ │ │ │ ├── application-x-skgc.svg │ │ │ │ ├── application-x-smb-server-inverted.svg │ │ │ │ ├── application-x-smb-server.svg │ │ │ │ ├── application-x-smb-workgroup-inverted.svg │ │ │ │ ├── application-x-smb-workgroup.svg │ │ │ │ ├── application-x-source-rpm-inverted.svg │ │ │ │ ├── application-x-source-rpm.svg │ │ │ │ ├── application-x-sqlite2-inverted.svg │ │ │ │ ├── application-x-sqlite2.svg │ │ │ │ ├── application-x-sqlite3-inverted.svg │ │ │ │ ├── application-x-sqlite3.svg │ │ │ │ ├── application-x-srt-inverted.svg │ │ │ │ ├── application-x-srt.svg │ │ │ │ ├── application-x-srtrip-inverted.svg │ │ │ │ ├── application-x-srtrip.svg │ │ │ │ ├── application-x-subrip-inverted.svg │ │ │ │ ├── application-x-subrip.svg │ │ │ │ ├── application-x-tar-inverted.svg │ │ │ │ ├── application-x-tar.svg │ │ │ │ ├── application-x-tarz-inverted.svg │ │ │ │ ├── application-x-tarz.svg │ │ │ │ ├── application-x-tgif-inverted.svg │ │ │ │ ├── application-x-tgif.svg │ │ │ │ ├── application-x-theme-inverted.svg │ │ │ │ ├── application-x-theme.svg │ │ │ │ ├── application-x-trash-inverted.svg │ │ │ │ ├── application-x-trash.svg │ │ │ │ ├── application-x-troff-man-inverted.svg │ │ │ │ ├── application-x-troff-man.svg │ │ │ │ ├── application-x-tzo-inverted.svg │ │ │ │ ├── application-x-tzo.svg │ │ │ │ ├── application-x-wmf-inverted.svg │ │ │ │ ├── application-x-wmf.svg │ │ │ │ ├── application-x-x509-ca-cert-inverted.svg │ │ │ │ ├── application-x-x509-ca-cert.svg │ │ │ │ ├── application-x-x509-user-cert-inverted.svg │ │ │ │ ├── application-x-x509-user-cert.svg │ │ │ │ ├── application-x-xliff-inverted.svg │ │ │ │ ├── application-x-xliff.svg │ │ │ │ ├── application-x-xpinstall-inverted.svg │ │ │ │ ├── application-x-xpinstall.svg │ │ │ │ ├── application-x-xz-compressed-tar-inverted.svg │ │ │ │ ├── application-x-xz-compressed-tar.svg │ │ │ │ ├── application-x-xz-pkg-inverted.svg │ │ │ │ ├── application-x-xz-pkg.svg │ │ │ │ ├── application-x-zerosize-inverted.svg │ │ │ │ ├── application-x-zerosize.svg │ │ │ │ ├── application-x-zoo-inverted.svg │ │ │ │ ├── application-x-zoo.svg │ │ │ │ ├── application-xhtml+xml-inverted.svg │ │ │ │ ├── application-xhtml+xml.svg │ │ │ │ ├── application-xmind-inverted.svg │ │ │ │ ├── application-xmind.svg │ │ │ │ ├── application-xml-inverted.svg │ │ │ │ ├── application-xml.svg │ │ │ │ ├── application-xsd-inverted.svg │ │ │ │ ├── application-xsd.svg │ │ │ │ ├── application-xslt+xml-inverted.svg │ │ │ │ ├── application-xslt+xml.svg │ │ │ │ ├── application-zip-inverted.svg │ │ │ │ ├── application-zip.svg │ │ │ │ ├── audio-ac3-inverted.svg │ │ │ │ ├── audio-ac3.svg │ │ │ │ ├── audio-flac-inverted.svg │ │ │ │ ├── audio-flac.svg │ │ │ │ ├── audio-midi-inverted.svg │ │ │ │ ├── audio-midi.svg │ │ │ │ ├── audio-mp2-inverted.svg │ │ │ │ ├── audio-mp2.svg │ │ │ │ ├── audio-mp3-inverted.svg │ │ │ │ ├── audio-mp3.svg │ │ │ │ ├── audio-mp4-inverted.svg │ │ │ │ ├── audio-mp4.svg │ │ │ │ ├── audio-prs.sid-inverted.svg │ │ │ │ ├── audio-prs.sid.svg │ │ │ │ ├── audio-vn.rn-realmedia-inverted.svg │ │ │ │ ├── audio-vn.rn-realmedia.svg │ │ │ │ ├── audio-vnd.rn-realvideo-inverted.svg │ │ │ │ ├── audio-vnd.rn-realvideo.svg │ │ │ │ ├── audio-x-adpcm-inverted.svg │ │ │ │ ├── audio-x-adpcm.svg │ │ │ │ ├── audio-x-aiff-inverted.svg │ │ │ │ ├── audio-x-aiff.svg │ │ │ │ ├── audio-x-flac+ogg-inverted.svg │ │ │ │ ├── audio-x-flac+ogg.svg │ │ │ │ ├── audio-x-flac-inverted.svg │ │ │ │ ├── audio-x-flac.svg │ │ │ │ ├── audio-x-generic-inverted.svg │ │ │ │ ├── audio-x-generic.svg │ │ │ │ ├── audio-x-monkey-inverted.svg │ │ │ │ ├── audio-x-monkey.svg │ │ │ │ ├── audio-x-mp2-inverted.svg │ │ │ │ ├── audio-x-mp2.svg │ │ │ │ ├── audio-x-mpeg-inverted.svg │ │ │ │ ├── audio-x-mpeg.svg │ │ │ │ ├── audio-x-speex+ogg-inverted.svg │ │ │ │ ├── audio-x-speex+ogg.svg │ │ │ │ ├── audio-x-wav-inverted.svg │ │ │ │ ├── audio-x-wav.svg │ │ │ │ ├── audiobook-inverted.svg │ │ │ │ ├── audiobook.svg │ │ │ │ ├── encrypted-inverted.svg │ │ │ │ ├── encrypted.svg │ │ │ │ ├── font-ttf-inverted.svg │ │ │ │ ├── font-ttf.svg │ │ │ │ ├── fonts-package-inverted.svg │ │ │ │ ├── fonts-package.svg │ │ │ │ ├── image-bmp-inverted.svg │ │ │ │ ├── image-bmp.svg │ │ │ │ ├── image-gif-inverted.svg │ │ │ │ ├── image-gif.svg │ │ │ │ ├── image-ico-inverted.svg │ │ │ │ ├── image-ico.svg │ │ │ │ ├── image-jpeg-inverted.svg │ │ │ │ ├── image-jpeg.svg │ │ │ │ ├── image-jpeg2000-inverted.svg │ │ │ │ ├── image-jpeg2000.svg │ │ │ │ ├── image-png-inverted.svg │ │ │ │ ├── image-png.svg │ │ │ │ ├── image-svg+xml-compressed-inverted.svg │ │ │ │ ├── image-svg+xml-compressed.svg │ │ │ │ ├── image-svg+xml-inverted.svg │ │ │ │ ├── image-svg+xml.svg │ │ │ │ ├── image-tiff-inverted.svg │ │ │ │ ├── image-tiff.svg │ │ │ │ ├── image-vnd.dgn-inverted.svg │ │ │ │ ├── image-vnd.dgn.svg │ │ │ │ ├── image-vnd.djvu-inverted.svg │ │ │ │ ├── image-vnd.djvu.svg │ │ │ │ ├── image-vnd.dwg-inverted.svg │ │ │ │ ├── image-vnd.dwg.svg │ │ │ │ ├── image-vnd.microsoft.icon-inverted.svg │ │ │ │ ├── image-vnd.microsoft.icon.svg │ │ │ │ ├── image-x-adobe-dng-inverted.svg │ │ │ │ ├── image-x-adobe-dng.svg │ │ │ │ ├── image-x-compressed-xcf-inverted.svg │ │ │ │ ├── image-x-compressed-xcf.svg │ │ │ │ ├── image-x-emf-inverted.svg │ │ │ │ ├── image-x-emf.svg │ │ │ │ ├── image-x-eps-inverted.svg │ │ │ │ ├── image-x-eps.svg │ │ │ │ ├── image-x-generic-inverted.svg │ │ │ │ ├── image-x-generic.svg │ │ │ │ ├── image-x-ico-inverted.svg │ │ │ │ ├── image-x-ico.svg │ │ │ │ ├── image-x-icon-inverted.svg │ │ │ │ ├── image-x-icon.svg │ │ │ │ ├── image-x-krita-inverted.svg │ │ │ │ ├── image-x-krita.svg │ │ │ │ ├── image-x-portable-bitmap-inverted.svg │ │ │ │ ├── image-x-portable-bitmap.svg │ │ │ │ ├── image-x-psd-inverted.svg │ │ │ │ ├── image-x-psd.svg │ │ │ │ ├── image-x-psdimage-x-psd-inverted.svg │ │ │ │ ├── image-x-psdimage-x-psd.svg │ │ │ │ ├── image-x-svg+xml-inverted.svg │ │ │ │ ├── image-x-svg+xml.svg │ │ │ │ ├── image-x-tga-inverted.svg │ │ │ │ ├── image-x-tga.svg │ │ │ │ ├── image-x-vnd.trolltech.qpicture-inverted.svg │ │ │ │ ├── image-x-vnd.trolltech.qpicture.svg │ │ │ │ ├── image-x-win-bitmap-inverted.svg │ │ │ │ ├── image-x-win-bitmap.svg │ │ │ │ ├── image-x-win-bmp-inverted.svg │ │ │ │ ├── image-x-win-bmp.svg │ │ │ │ ├── image-x-wmf-inverted.svg │ │ │ │ ├── image-x-wmf.svg │ │ │ │ ├── image-x-xcf-inverted.svg │ │ │ │ ├── image-x-xcf.svg │ │ │ │ ├── image-x-xfig-inverted.svg │ │ │ │ ├── image-x-xfig.svg │ │ │ │ ├── inode-directory-inverted.svg │ │ │ │ ├── inode-directory.svg │ │ │ │ ├── libreoffice-database-inverted.svg │ │ │ │ ├── libreoffice-database.svg │ │ │ │ ├── libreoffice-drawing-inverted.svg │ │ │ │ ├── libreoffice-drawing-template-inverted.svg │ │ │ │ ├── libreoffice-drawing-template.svg │ │ │ │ ├── libreoffice-drawing.svg │ │ │ │ ├── libreoffice-extension-inverted.svg │ │ │ │ ├── libreoffice-extension.svg │ │ │ │ ├── libreoffice-formula-inverted.svg │ │ │ │ ├── libreoffice-formula.svg │ │ │ │ ├── libreoffice-master-document-inverted.svg │ │ │ │ ├── libreoffice-master-document.svg │ │ │ │ ├── libreoffice-oasis-database-inverted.svg │ │ │ │ ├── libreoffice-oasis-database.svg │ │ │ │ ├── libreoffice-oasis-drawing-inverted.svg │ │ │ │ ├── libreoffice-oasis-drawing-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-drawing-template.svg │ │ │ │ ├── libreoffice-oasis-drawing.svg │ │ │ │ ├── libreoffice-oasis-formula-inverted.svg │ │ │ │ ├── libreoffice-oasis-formula.svg │ │ │ │ ├── libreoffice-oasis-master-document-inverted.svg │ │ │ │ ├── libreoffice-oasis-master-document.svg │ │ │ │ ├── libreoffice-oasis-presentation-inverted.svg │ │ │ │ ├── libreoffice-oasis-presentation-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-presentation-template.svg │ │ │ │ ├── libreoffice-oasis-presentation.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-inverted.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-template.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet.svg │ │ │ │ ├── libreoffice-oasis-text-inverted.svg │ │ │ │ ├── libreoffice-oasis-text-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-text-template.svg │ │ │ │ ├── libreoffice-oasis-text.svg │ │ │ │ ├── libreoffice-oasis-web-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-web-template.svg │ │ │ │ ├── libreoffice-presentation-inverted.svg │ │ │ │ ├── libreoffice-presentation-template-inverted.svg │ │ │ │ ├── libreoffice-presentation-template.svg │ │ │ │ ├── libreoffice-presentation.svg │ │ │ │ ├── libreoffice-spreadsheet-inverted.svg │ │ │ │ ├── libreoffice-spreadsheet-template-inverted.svg │ │ │ │ ├── libreoffice-spreadsheet-template.svg │ │ │ │ ├── libreoffice-spreadsheet.svg │ │ │ │ ├── libreoffice-text-inverted.svg │ │ │ │ ├── libreoffice-text-template-inverted.svg │ │ │ │ ├── libreoffice-text-template.svg │ │ │ │ ├── libreoffice-text.svg │ │ │ │ ├── message-inverted.svg │ │ │ │ ├── message-news-inverted.svg │ │ │ │ ├── message-news.svg │ │ │ │ ├── message-partial-inverted.svg │ │ │ │ ├── message-partial.svg │ │ │ │ ├── message-rfc822-inverted.svg │ │ │ │ ├── message-rfc822.svg │ │ │ │ ├── message-x-gnu-rmail-inverted.svg │ │ │ │ ├── message-x-gnu-rmail.svg │ │ │ │ ├── message.svg │ │ │ │ ├── none-inverted.svg │ │ │ │ ├── none.svg │ │ │ │ ├── odf-inverted.svg │ │ │ │ ├── odf.svg │ │ │ │ ├── package-x-generic-inverted.svg │ │ │ │ ├── package-x-generic.svg │ │ │ │ ├── podcast-inverted.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── pplication-vnd.openxmlformats-officedocument.spreadsheetml.sheet-inverted.svg │ │ │ │ ├── pplication-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ │ │ ├── text-calendar-inverted.svg │ │ │ │ ├── text-calendar.svg │ │ │ │ ├── text-csharp-inverted.svg │ │ │ │ ├── text-csharp.svg │ │ │ │ ├── text-css-inverted.svg │ │ │ │ ├── text-css.svg │ │ │ │ ├── text-csv-inverted.svg │ │ │ │ ├── text-csv.svg │ │ │ │ ├── text-directory-inverted.svg │ │ │ │ ├── text-directory.svg │ │ │ │ ├── text-dockerfile-inverted.svg │ │ │ │ ├── text-dockerfile.svg │ │ │ │ ├── text-enriched-inverted.svg │ │ │ │ ├── text-enriched.svg │ │ │ │ ├── text-html-inverted.svg │ │ │ │ ├── text-html.svg │ │ │ │ ├── text-markdown-inverted.svg │ │ │ │ ├── text-markdown.svg │ │ │ │ ├── text-mathml-inverted.svg │ │ │ │ ├── text-mathml.svg │ │ │ │ ├── text-plain-inverted.svg │ │ │ │ ├── text-plain.svg │ │ │ │ ├── text-rdf+xml-inverted.svg │ │ │ │ ├── text-rdf+xml.svg │ │ │ │ ├── text-rdf-inverted.svg │ │ │ │ ├── text-rdf.svg │ │ │ │ ├── text-rtf-inverted.svg │ │ │ │ ├── text-rtf.svg │ │ │ │ ├── text-rust-inverted.svg │ │ │ │ ├── text-rust.svg │ │ │ │ ├── text-sgml-inverted.svg │ │ │ │ ├── text-sgml.svg │ │ │ │ ├── text-troff-inverted.svg │ │ │ │ ├── text-troff.svg │ │ │ │ ├── text-vcalendar-inverted.svg │ │ │ │ ├── text-vcalendar.svg │ │ │ │ ├── text-vnd.abc-inverted.svg │ │ │ │ ├── text-vnd.abc.svg │ │ │ │ ├── text-vnd.trolltech.linguist-inverted.svg │ │ │ │ ├── text-vnd.trolltech.linguist.svg │ │ │ │ ├── text-vnd.wap.wml-inverted.svg │ │ │ │ ├── text-vnd.wap.wml.svg │ │ │ │ ├── text-wiki-inverted.svg │ │ │ │ ├── text-wiki.svg │ │ │ │ ├── text-x-adasrc-inverted.svg │ │ │ │ ├── text-x-adasrc.svg │ │ │ │ ├── text-x-apport-inverted.svg │ │ │ │ ├── text-x-apport.svg │ │ │ │ ├── text-x-authors-inverted.svg │ │ │ │ ├── text-x-authors.svg │ │ │ │ ├── text-x-bibtex-inverted.svg │ │ │ │ ├── text-x-bibtex.svg │ │ │ │ ├── text-x-c++hdr-inverted.svg │ │ │ │ ├── text-x-c++hdr.svg │ │ │ │ ├── text-x-c++src-inverted.svg │ │ │ │ ├── text-x-c++src.svg │ │ │ │ ├── text-x-changelog-inverted.svg │ │ │ │ ├── text-x-changelog.svg │ │ │ │ ├── text-x-chdr-inverted.svg │ │ │ │ ├── text-x-chdr.svg │ │ │ │ ├── text-x-cmake-inverted.svg │ │ │ │ ├── text-x-cmake.svg │ │ │ │ ├── text-x-copying-inverted.svg │ │ │ │ ├── text-x-copying.svg │ │ │ │ ├── text-x-credits-inverted.svg │ │ │ │ ├── text-x-credits.svg │ │ │ │ ├── text-x-csharp-inverted.svg │ │ │ │ ├── text-x-csharp.svg │ │ │ │ ├── text-x-csrc-inverted.svg │ │ │ │ ├── text-x-csrc.svg │ │ │ │ ├── text-x-dtd-inverted.svg │ │ │ │ ├── text-x-dtd.svg │ │ │ │ ├── text-x-generic-inverted.svg │ │ │ │ ├── text-x-generic.svapplication-x-awk-inverted.svg │ │ │ │ ├── text-x-generic.svapplication-x-awk.svg │ │ │ │ ├── text-x-generic.svg │ │ │ │ ├── text-x-gettext-translation-inverted.svg │ │ │ │ ├── text-x-gettext-translation.svg │ │ │ │ ├── text-x-go-inverted.svg │ │ │ │ ├── text-x-go.svg │ │ │ │ ├── text-x-haskell-inverted.svg │ │ │ │ ├── text-x-haskell.svg │ │ │ │ ├── text-x-hex-inverted.svg │ │ │ │ ├── text-x-hex.svg │ │ │ │ ├── text-x-install-inverted.svg │ │ │ │ ├── text-x-install.svg │ │ │ │ ├── text-x-java-inverted.svg │ │ │ │ ├── text-x-java-source-inverted.svg │ │ │ │ ├── text-x-java-source.svg │ │ │ │ ├── text-x-java.svg │ │ │ │ ├── text-x-javascript-inverted.svg │ │ │ │ ├── text-x-javascript.svg │ │ │ │ ├── text-x-katefilelist-inverted.svg │ │ │ │ ├── text-x-katefilelist.svg │ │ │ │ ├── text-x-ldif-inverted.svg │ │ │ │ ├── text-x-ldif.svg │ │ │ │ ├── text-x-lilypond-inverted.svg │ │ │ │ ├── text-x-lilypond.svg │ │ │ │ ├── text-x-log-inverted.svg │ │ │ │ ├── text-x-log.svg │ │ │ │ ├── text-x-lua-inverted.svg │ │ │ │ ├── text-x-lua.svg │ │ │ │ ├── text-x-makefile-inverted.svg │ │ │ │ ├── text-x-makefile.svg │ │ │ │ ├── text-x-markdown-inverted.svg │ │ │ │ ├── text-x-markdown.svg │ │ │ │ ├── text-x-nfo-inverted.svg │ │ │ │ ├── text-x-nfo.svg │ │ │ │ ├── text-x-objchdr-inverted.svg │ │ │ │ ├── text-x-objchdr.svg │ │ │ │ ├── text-x-objcsrc-inverted.svg │ │ │ │ ├── text-x-objcsrc.svg │ │ │ │ ├── text-x-opml+xml-inverted.svg │ │ │ │ ├── text-x-opml+xml.svg │ │ │ │ ├── text-x-opml-inverted.svg │ │ │ │ ├── text-x-opml.svg │ │ │ │ ├── text-x-pascal-inverted.svg │ │ │ │ ├── text-x-pascal.svg │ │ │ │ ├── text-x-patch-inverted.svg │ │ │ │ ├── text-x-patch.svg │ │ │ │ ├── text-x-plain-inverted.svg │ │ │ │ ├── text-x-plain.svg │ │ │ │ ├── text-x-po-inverted.svg │ │ │ │ ├── text-x-po.svg │ │ │ │ ├── text-x-python-inverted.svg │ │ │ │ ├── text-x-python.svg │ │ │ │ ├── text-x-qml-inverted.svg │ │ │ │ ├── text-x-qml.svg │ │ │ │ ├── text-x-r-inverted.svg │ │ │ │ ├── text-x-r.svg │ │ │ │ ├── text-x-readme-inverted.svg │ │ │ │ ├── text-x-readme.svg │ │ │ │ ├── text-x-rpm-spec-inverted.svg │ │ │ │ ├── text-x-rpm-spec.svg │ │ │ │ ├── text-x-rust-inverted.svg │ │ │ │ ├── text-x-rust.svg │ │ │ │ ├── text-x-scala-inverted.svg │ │ │ │ ├── text-x-scala.svg │ │ │ │ ├── text-x-script-inverted.svg │ │ │ │ ├── text-x-script.svg │ │ │ │ ├── text-x-sql-inverted.svg │ │ │ │ ├── text-x-sql.svg │ │ │ │ ├── text-x-tcl-inverted.svg │ │ │ │ ├── text-x-tcl.svg │ │ │ │ ├── text-x-tex-inverted.svg │ │ │ │ ├── text-x-tex.svg │ │ │ │ ├── text-x-texinfo-inverted.svg │ │ │ │ ├── text-x-texinfo.svg │ │ │ │ ├── text-x-vcard-inverted.svg │ │ │ │ ├── text-x-vcard.svg │ │ │ │ ├── text-x-xslfo-inverted.svg │ │ │ │ ├── text-x-xslfo.svg │ │ │ │ ├── text-xmcd-inverted.svg │ │ │ │ ├── text-xmcd.svg │ │ │ │ ├── text-xml-inverted.svg │ │ │ │ ├── text-xml.svg │ │ │ │ ├── unknown-inverted.svg │ │ │ │ ├── unknown.svg │ │ │ │ ├── uri-mms-inverted.svg │ │ │ │ ├── uri-mms.svg │ │ │ │ ├── uri-mmst-inverted.svg │ │ │ │ ├── uri-mmst.svg │ │ │ │ ├── uri-pnm-inverted.svg │ │ │ │ ├── uri-pnm.svg │ │ │ │ ├── uri-rtspt-inverted.svg │ │ │ │ ├── uri-rtspt.svg │ │ │ │ ├── uri-rtspu-inverted.svg │ │ │ │ ├── uri-rtspu.svg │ │ │ │ ├── video-mlt-playlist-inverted.svg │ │ │ │ ├── video-mlt-playlist.svg │ │ │ │ ├── video-mp2t-inverted.svg │ │ │ │ ├── video-mp2t.svg │ │ │ │ ├── video-mp4-inverted.svg │ │ │ │ ├── video-mp4.svg │ │ │ │ ├── video-vivo-inverted.svg │ │ │ │ ├── video-vivo.svg │ │ │ │ ├── video-vnd.rn-realvideo-inverted.svg │ │ │ │ ├── video-vnd.rn-realvideo.svg │ │ │ │ ├── video-wavelet-inverted.svg │ │ │ │ ├── video-wavelet.svg │ │ │ │ ├── video-webm-inverted.svg │ │ │ │ ├── video-webm.svg │ │ │ │ ├── video-x-anim-inverted.svg │ │ │ │ ├── video-x-anim.svg │ │ │ │ ├── video-x-flic-inverted.svg │ │ │ │ ├── video-x-flic.svg │ │ │ │ ├── video-x-flv-inverted.svg │ │ │ │ ├── video-x-flv.svg │ │ │ │ ├── video-x-generic-inverted.svg │ │ │ │ ├── video-x-generic.svg │ │ │ │ ├── video-x-google-vlc-plugin-inverted.svg │ │ │ │ ├── video-x-google-vlc-plugin.svg │ │ │ │ ├── video-x-javafx-inverted.svg │ │ │ │ ├── video-x-javafx.svg │ │ │ │ ├── video-x-matroska-inverted.svg │ │ │ │ ├── video-x-matroska.svg │ │ │ │ ├── video-x-mng-inverted.svg │ │ │ │ ├── video-x-mng.svg │ │ │ │ ├── video-x-ms-wmp-inverted.svg │ │ │ │ ├── video-x-ms-wmp.svg │ │ │ │ ├── video-x-ms-wmv-inverted.svg │ │ │ │ ├── video-x-ms-wmv.svg │ │ │ │ ├── video-x-msvideo-inverted.svg │ │ │ │ ├── video-x-msvideo.svg │ │ │ │ ├── video-x-ogm+ogg-inverted.svg │ │ │ │ ├── video-x-ogm+ogg.svg │ │ │ │ ├── video-x-theora+ogg-inverted.svg │ │ │ │ ├── video-x-theora+ogg.svg │ │ │ │ ├── video-x-wmv-inverted.svg │ │ │ │ ├── video-x-wmv.svg │ │ │ │ ├── viewbib-inverted.svg │ │ │ │ ├── viewbib.svg │ │ │ │ ├── viewdvi-inverted.svg │ │ │ │ ├── viewdvi.svg │ │ │ │ ├── viewhtml-inverted.svg │ │ │ │ ├── viewhtml.svg │ │ │ │ ├── viewpdf-inverted.svg │ │ │ │ ├── viewpdf.svg │ │ │ │ ├── viewps-inverted.svg │ │ │ │ ├── viewps.svg │ │ │ │ ├── virtualbox-hdd-inverted.svg │ │ │ │ ├── virtualbox-hdd.svg │ │ │ │ ├── virtualbox-ova-inverted.svg │ │ │ │ ├── virtualbox-ova.svg │ │ │ │ ├── virtualbox-ovf-inverted.svg │ │ │ │ ├── virtualbox-ovf.svg │ │ │ │ ├── virtualbox-vbox-extpack-inverted.svg │ │ │ │ ├── virtualbox-vbox-extpack.svg │ │ │ │ ├── virtualbox-vbox-inverted.svg │ │ │ │ ├── virtualbox-vbox.svg │ │ │ │ ├── virtualbox-vdi-inverted.svg │ │ │ │ ├── virtualbox-vdi.svg │ │ │ │ ├── virtualbox-vhd-inverted.svg │ │ │ │ ├── virtualbox-vhd.svg │ │ │ │ ├── virtualbox-vmdk-inverted.svg │ │ │ │ ├── virtualbox-vmdk.svg │ │ │ │ ├── vnd.ms-publisher-inverted.svg │ │ │ │ ├── vnd.ms-publisher.svg │ │ │ │ ├── x-kde-nsplugin-generated-inverted.svg │ │ │ │ ├── x-kde-nsplugin-generated.svg │ │ │ │ ├── x-mail-distribution-list-inverted.svg │ │ │ │ ├── x-mail-distribution-list.svg │ │ │ │ ├── x-media-podcast-inverted.svg │ │ │ │ ├── x-media-podcast.svg │ │ │ │ ├── x-office-address-book-inverted.svg │ │ │ │ ├── x-office-address-book.svg │ │ │ │ ├── x-office-calendar-inverted.svg │ │ │ │ ├── x-office-calendar.svg │ │ │ │ ├── x-office-contact-inverted.svg │ │ │ │ ├── x-office-contact.svg │ │ │ │ ├── x-office-document-inverted.svg │ │ │ │ ├── x-office-document.svg │ │ │ │ ├── x-office-drawing-inverted.svg │ │ │ │ ├── x-office-drawing.svg │ │ │ │ ├── x-office-presentation-inverted.svg │ │ │ │ ├── x-office-presentation.svg │ │ │ │ ├── x-office-spreadsheet-inverted.svg │ │ │ │ └── x-office-spreadsheet.svg │ │ │ ├── 32 │ │ │ │ ├── android-package-archive-inverted.svg │ │ │ │ ├── android-package-archive.svg │ │ │ │ ├── application-atom+xml-inverted.svg │ │ │ │ ├── application-atom+xml.svg │ │ │ │ ├── application-certificate-inverted.svg │ │ │ │ ├── application-certificate.svg │ │ │ │ ├── application-dicom-inverted.svg │ │ │ │ ├── application-dicom.svg │ │ │ │ ├── application-epub+zip-inverted.svg │ │ │ │ ├── application-epub+zip.svg │ │ │ │ ├── application-illustrator-inverted.svg │ │ │ │ ├── application-illustrator.svg │ │ │ │ ├── application-javascript-inverted.svg │ │ │ │ ├── application-javascript.svg │ │ │ │ ├── application-json-inverted.svg │ │ │ │ ├── application-json.svg │ │ │ │ ├── application-mac-binhex40-inverted.svg │ │ │ │ ├── application-mac-binhex40.svg │ │ │ │ ├── application-msonenote-inverted.svg │ │ │ │ ├── application-msonenote.svg │ │ │ │ ├── application-msoutlook-inverted.svg │ │ │ │ ├── application-msoutlook.svg │ │ │ │ ├── application-msword-inverted.svg │ │ │ │ ├── application-msword-template-inverted.svg │ │ │ │ ├── application-msword-template.svg │ │ │ │ ├── application-msword.svg │ │ │ │ ├── application-octet-stream-inverted.svg │ │ │ │ ├── application-octet-stream.svg │ │ │ │ ├── application-ogg-inverted.svg │ │ │ │ ├── application-ogg.svg │ │ │ │ ├── application-pdf-inverted.svg │ │ │ │ ├── application-pdf.svg │ │ │ │ ├── application-pgp-encrypted-inverted.svg │ │ │ │ ├── application-pgp-encrypted.svg │ │ │ │ ├── application-pgp-inverted.svg │ │ │ │ ├── application-pgp-keys-inverted.svg │ │ │ │ ├── application-pgp-keys.svg │ │ │ │ ├── application-pgp-signature-inverted.svg │ │ │ │ ├── application-pgp-signature.svg │ │ │ │ ├── application-pgp.svg │ │ │ │ ├── application-pkcs7-mime-inverted.svg │ │ │ │ ├── application-pkcs7-mime.svg │ │ │ │ ├── application-pkcs7-signature-inverted.svg │ │ │ │ ├── application-pkcs7-signature.svg │ │ │ │ ├── application-pkix-cerl-inverted.svg │ │ │ │ ├── application-pkix-cerl.svg │ │ │ │ ├── application-pkix-cert-inverted.svg │ │ │ │ ├── application-pkix-cert.svg │ │ │ │ ├── application-postscript-inverted.svg │ │ │ │ ├── application-postscript.svg │ │ │ │ ├── application-relaxng-inverted.svg │ │ │ │ ├── application-relaxng.svg │ │ │ │ ├── application-rss+xml-inverted.svg │ │ │ │ ├── application-rss+xml.svg │ │ │ │ ├── application-rtf-inverted.svg │ │ │ │ ├── application-rtf.svg │ │ │ │ ├── application-sxw-inverted.svg │ │ │ │ ├── application-sxw.svg │ │ │ │ ├── application-vnd-google-earth-kml-inverted.svg │ │ │ │ ├── application-vnd-google-earth-kml.svg │ │ │ │ ├── application-vnd.android.package-archive-inverted.svg │ │ │ │ ├── application-vnd.android.package-archive.svg │ │ │ │ ├── application-vnd.iccprofile-inverted.svg │ │ │ │ ├── application-vnd.iccprofile.svg │ │ │ │ ├── application-vnd.ms-access-inverted.svg │ │ │ │ ├── application-vnd.ms-access.svg │ │ │ │ ├── application-vnd.ms-excel-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.addin.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.svg │ │ │ │ ├── application-vnd.ms-excel.template.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-infopath-inverted.svg │ │ │ │ ├── application-vnd.ms-infopath.svg │ │ │ │ ├── application-vnd.ms-powerpoint-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.svg │ │ │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-publisher-inverted.svg │ │ │ │ ├── application-vnd.ms-publisher.svg │ │ │ │ ├── application-vnd.ms-word-inverted.svg │ │ │ │ ├── application-vnd.ms-word.document.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-word.document.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-word.svg │ │ │ │ ├── application-vnd.ms-word.template.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-word.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.nintendo.snes.rom-inverted.svg │ │ │ │ ├── application-vnd.nintendo.snes.rom.svg │ │ │ │ ├── application-vnd.oasis.opendocument.chart-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.chart.svg │ │ │ │ ├── application-vnd.oasis.opendocument.database-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.database.svg │ │ │ │ ├── application-vnd.oasis.opendocument.draw.template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.draw.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula.svg │ │ │ │ ├── application-vnd.oasis.opendocument.graphics-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.graphics.svg │ │ │ │ ├── application-vnd.oasis.opendocument.image-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.image.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-master-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-master.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text.svg │ │ │ │ ├── application-vnd.oasis.opendocument.web-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.web-template.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet-inverted.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document-inverted.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg │ │ │ │ ├── application-vnd.rar-inverted.svg │ │ │ │ ├── application-vnd.rar.svg │ │ │ │ ├── application-vnd.rn-realmedia-inverted.svg │ │ │ │ ├── application-vnd.rn-realmedia.svg │ │ │ │ ├── application-vnd.scribus-inverted.svg │ │ │ │ ├── application-vnd.scribus.svg │ │ │ │ ├── application-vnd.stardivision.calc-inverted.svg │ │ │ │ ├── application-vnd.stardivision.calc.svg │ │ │ │ ├── application-vnd.stardivision.draw-inverted.svg │ │ │ │ ├── application-vnd.stardivision.draw.svg │ │ │ │ ├── application-vnd.stardivision.mail-inverted.svg │ │ │ │ ├── application-vnd.stardivision.mail.svg │ │ │ │ ├── application-vnd.stardivision.math-inverted.svg │ │ │ │ ├── application-vnd.stardivision.math.svg │ │ │ │ ├── application-vnd.sun.xml.calc-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.calc.svg │ │ │ │ ├── application-vnd.sun.xml.calc.template-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.calc.template.svg │ │ │ │ ├── application-vnd.sun.xml.draw-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.draw.svg │ │ │ │ ├── application-vnd.sun.xml.draw.template-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.draw.template.svg │ │ │ │ ├── application-vnd.sun.xml.impress-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.impress.svg │ │ │ │ ├── application-vnd.sun.xml.impress.template-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.impress.template.svg │ │ │ │ ├── application-vnd.sun.xml.math-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.math.svg │ │ │ │ ├── application-vnd.sun.xml.writer-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.writer.global-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.writer.global.svg │ │ │ │ ├── application-vnd.sun.xml.writer.svg │ │ │ │ ├── application-vnd.sun.xml.writer.template-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.writer.template.svg │ │ │ │ ├── application-vnd.visio-inverted.svg │ │ │ │ ├── application-vnd.visio.svg │ │ │ │ ├── application-vnd.wordperfect-inverted.svg │ │ │ │ ├── application-vnd.wordperfect.svg │ │ │ │ ├── application-wps-office.doc-inverted.svg │ │ │ │ ├── application-wps-office.doc.svg │ │ │ │ ├── application-wps-office.docx-inverted.svg │ │ │ │ ├── application-wps-office.docx.svg │ │ │ │ ├── application-wps-office.dot-inverted.svg │ │ │ │ ├── application-wps-office.dot.svg │ │ │ │ ├── application-wps-office.dotx-inverted.svg │ │ │ │ ├── application-wps-office.dotx.svg │ │ │ │ ├── application-wps-office.pot-inverted.svg │ │ │ │ ├── application-wps-office.pot.svg │ │ │ │ ├── application-wps-office.potx-inverted.svg │ │ │ │ ├── application-wps-office.potx.svg │ │ │ │ ├── application-wps-office.ppt-inverted.svg │ │ │ │ ├── application-wps-office.ppt.svg │ │ │ │ ├── application-wps-office.pptx-inverted.svg │ │ │ │ ├── application-wps-office.pptx.svg │ │ │ │ ├── application-wps-office.xls-inverted.svg │ │ │ │ ├── application-wps-office.xls.svg │ │ │ │ ├── application-wps-office.xlsx-inverted.svg │ │ │ │ ├── application-wps-office.xlsx.svg │ │ │ │ ├── application-wps-office.xlt-inverted.svg │ │ │ │ ├── application-wps-office.xlt.svg │ │ │ │ ├── application-wps-office.xltx-inverted.svg │ │ │ │ ├── application-wps-office.xltx.svg │ │ │ │ ├── application-x-7z-compressed-inverted.svg │ │ │ │ ├── application-x-7z-compressed.svg │ │ │ │ ├── application-x-abiword-inverted.svg │ │ │ │ ├── application-x-abiword.svg │ │ │ │ ├── application-x-ace-inverted.svg │ │ │ │ ├── application-x-ace.svg │ │ │ │ ├── application-x-apple-diskimage-inverted.svg │ │ │ │ ├── application-x-apple-diskimage.svg │ │ │ │ ├── application-x-applix-spreadsheet-inverted.svg │ │ │ │ ├── application-x-applix-spreadsheet.svg │ │ │ │ ├── application-x-applix-word-inverted.svg │ │ │ │ ├── application-x-applix-word.svg │ │ │ │ ├── application-x-ar-inverted.svg │ │ │ │ ├── application-x-ar.svg │ │ │ │ ├── application-x-arc-inverted.svg │ │ │ │ ├── application-x-arc.svg │ │ │ │ ├── application-x-archive-inverted.svg │ │ │ │ ├── application-x-archive.svg │ │ │ │ ├── application-x-arj-inverted.svg │ │ │ │ ├── application-x-arj.svg │ │ │ │ ├── application-x-awk-inverted.svg │ │ │ │ ├── application-x-awk.svg │ │ │ │ ├── application-x-bittorrent-inverted.svg │ │ │ │ ├── application-x-bittorrent.svg │ │ │ │ ├── application-x-blender-inverted.svg │ │ │ │ ├── application-x-blender.svg │ │ │ │ ├── application-x-bzdvi-inverted.svg │ │ │ │ ├── application-x-bzdvi.svg │ │ │ │ ├── application-x-bzip-compressed-tar-inverted.svg │ │ │ │ ├── application-x-bzip-compressed-tar.svg │ │ │ │ ├── application-x-bzip-inverted.svg │ │ │ │ ├── application-x-bzip.svg │ │ │ │ ├── application-x-cd-image-inverted.svg │ │ │ │ ├── application-x-cd-image.svg │ │ │ │ ├── application-x-cda-inverted.svg │ │ │ │ ├── application-x-cda.svg │ │ │ │ ├── application-x-chm-inverted.svg │ │ │ │ ├── application-x-chm.svg │ │ │ │ ├── application-x-compress-inverted.svg │ │ │ │ ├── application-x-compress.svg │ │ │ │ ├── application-x-compressed-tar-inverted.svg │ │ │ │ ├── application-x-compressed-tar.svg │ │ │ │ ├── application-x-cpio-inverted.svg │ │ │ │ ├── application-x-cpio.svg │ │ │ │ ├── application-x-cue-inverted.svg │ │ │ │ ├── application-x-cue.svg │ │ │ │ ├── application-x-deb-inverted.svg │ │ │ │ ├── application-x-deb.svg │ │ │ │ ├── application-x-designer-inverted.svg │ │ │ │ ├── application-x-designer.svg │ │ │ │ ├── application-x-desktop-inverted.svg │ │ │ │ ├── application-x-desktop.svg │ │ │ │ ├── application-x-egon-inverted.svg │ │ │ │ ├── application-x-egon.svg │ │ │ │ ├── application-x-executable-inverted.svg │ │ │ │ ├── application-x-executable-script-inverted.svg │ │ │ │ ├── application-x-executable-script.svg │ │ │ │ ├── application-x-executable.svg │ │ │ │ ├── application-x-flash-video-inverted.svg │ │ │ │ ├── application-x-flash-video.svg │ │ │ │ ├── application-x-font-afm-inverted.svg │ │ │ │ ├── application-x-font-afm.svg │ │ │ │ ├── application-x-font-bdf-inverted.svg │ │ │ │ ├── application-x-font-bdf.svg │ │ │ │ ├── application-x-font-otf-inverted.svg │ │ │ │ ├── application-x-font-otf.svg │ │ │ │ ├── application-x-font-pcf-inverted.svg │ │ │ │ ├── application-x-font-pcf.svg │ │ │ │ ├── application-x-font-snf-inverted.svg │ │ │ │ ├── application-x-font-snf.svg │ │ │ │ ├── application-x-font-ttf-inverted.svg │ │ │ │ ├── application-x-font-ttf.svg │ │ │ │ ├── application-x-font-type1-inverted.svg │ │ │ │ ├── application-x-font-type1.svg │ │ │ │ ├── application-x-gameboy-rom-inverted.svg │ │ │ │ ├── application-x-gameboy-rom.svg │ │ │ │ ├── application-x-gamecube-rom-inverted.svg │ │ │ │ ├── application-x-gamecube-rom.svg │ │ │ │ ├── application-x-gba-rom-inverted.svg │ │ │ │ ├── application-x-gba-rom.svg │ │ │ │ ├── application-x-gettext-translation-inverted.svg │ │ │ │ ├── application-x-gettext-translation.svg │ │ │ │ ├── application-x-gnumeric-inverted.svg │ │ │ │ ├── application-x-gnumeric.svg │ │ │ │ ├── application-x-gzdvi-inverted.svg │ │ │ │ ├── application-x-gzdvi.svg │ │ │ │ ├── application-x-gzip-inverted.svg │ │ │ │ ├── application-x-gzip.svg │ │ │ │ ├── application-x-gzpostscript-inverted.svg │ │ │ │ ├── application-x-gzpostscript.svg │ │ │ │ ├── application-x-iso-inverted.svg │ │ │ │ ├── application-x-iso.svg │ │ │ │ ├── application-x-it87-inverted.svg │ │ │ │ ├── application-x-it87.svg │ │ │ │ ├── application-x-jar-inverted.svg │ │ │ │ ├── application-x-jar.svg │ │ │ │ ├── application-x-java-applet-inverted.svg │ │ │ │ ├── application-x-java-applet.svg │ │ │ │ ├── application-x-java-archive-inverted.svg │ │ │ │ ├── application-x-java-archive.svg │ │ │ │ ├── application-x-java-inverted.svg │ │ │ │ ├── application-x-java.svg │ │ │ │ ├── application-x-javascript-inverted.svg │ │ │ │ ├── application-x-javascript.svg │ │ │ │ ├── application-x-k3b-inverted.svg │ │ │ │ ├── application-x-k3b.svg │ │ │ │ ├── application-x-kcsrc-inverted.svg │ │ │ │ ├── application-x-kcsrc.svg │ │ │ │ ├── application-x-kdenlivetitle-inverted.svg │ │ │ │ ├── application-x-kdenlivetitle.svg │ │ │ │ ├── application-x-kexi-connectiondata-inverted.svg │ │ │ │ ├── application-x-kexi-connectiondata.svg │ │ │ │ ├── application-x-kexiproject-shortcut-inverted.svg │ │ │ │ ├── application-x-kexiproject-shortcut.svg │ │ │ │ ├── application-x-kexiproject-sqlite-inverted.svg │ │ │ │ ├── application-x-kexiproject-sqlite.svg │ │ │ │ ├── application-x-kexiproject-sqlite2-inverted.svg │ │ │ │ ├── application-x-kexiproject-sqlite2.svg │ │ │ │ ├── application-x-kexiproject-sqlite3-inverted.svg │ │ │ │ ├── application-x-kexiproject-sqlite3.svg │ │ │ │ ├── application-x-kformula-inverted.svg │ │ │ │ ├── application-x-kformula.svg │ │ │ │ ├── application-x-kgetlist-inverted.svg │ │ │ │ ├── application-x-kgetlist.svg │ │ │ │ ├── application-x-kontour-inverted.svg │ │ │ │ ├── application-x-kontour.svg │ │ │ │ ├── application-x-kplato-inverted.svg │ │ │ │ ├── application-x-kplato.svg │ │ │ │ ├── application-x-krita-inverted.svg │ │ │ │ ├── application-x-krita.svg │ │ │ │ ├── application-x-kvtml-inverted.svg │ │ │ │ ├── application-x-kvtml.svg │ │ │ │ ├── application-x-kword-inverted.svg │ │ │ │ ├── application-x-kword.svg │ │ │ │ ├── application-x-lha-inverted.svg │ │ │ │ ├── application-x-lha.svg │ │ │ │ ├── application-x-lyx-inverted.svg │ │ │ │ ├── application-x-lyx.svg │ │ │ │ ├── application-x-lzma-compressed-tar-inverted.svg │ │ │ │ ├── application-x-lzma-compressed-tar.svg │ │ │ │ ├── application-x-lzop-inverted.svg │ │ │ │ ├── application-x-lzop.svg │ │ │ │ ├── application-x-m4-inverted.svg │ │ │ │ ├── application-x-m4.svg │ │ │ │ ├── application-x-macbinary-inverted.svg │ │ │ │ ├── application-x-macbinary.svg │ │ │ │ ├── application-x-marble-inverted.svg │ │ │ │ ├── application-x-marble.svg │ │ │ │ ├── application-x-mimearchive-inverted.svg │ │ │ │ ├── application-x-mimearchive.svg │ │ │ │ ├── application-x-mplayer2-inverted.svg │ │ │ │ ├── application-x-mplayer2.svg │ │ │ │ ├── application-x-ms-dos-executable-inverted.svg │ │ │ │ ├── application-x-ms-dos-executable.svg │ │ │ │ ├── application-x-ms-shortcut-inverted.svg │ │ │ │ ├── application-x-ms-shortcut.svg │ │ │ │ ├── application-x-mswinurl-inverted.svg │ │ │ │ ├── application-x-mswinurl.svg │ │ │ │ ├── application-x-mswrite-inverted.svg │ │ │ │ ├── application-x-mswrite.svg │ │ │ │ ├── application-x-n64-rom-inverted.svg │ │ │ │ ├── application-x-n64-rom.svg │ │ │ │ ├── application-x-nes-rom-inverted.svg │ │ │ │ ├── application-x-nes-rom.svg │ │ │ │ ├── application-x-nintendo-ds-rom-inverted.svg │ │ │ │ ├── application-x-nintendo-ds-rom.svg │ │ │ │ ├── application-x-nzb-inverted.svg │ │ │ │ ├── application-x-nzb.svg │ │ │ │ ├── application-x-object-inverted.svg │ │ │ │ ├── application-x-object.svg │ │ │ │ ├── application-x-pak-inverted.svg │ │ │ │ ├── application-x-pak.svg │ │ │ │ ├── application-x-partial-download-inverted.svg │ │ │ │ ├── application-x-partial-download.svg │ │ │ │ ├── application-x-pem-key-inverted.svg │ │ │ │ ├── application-x-pem-key.svg │ │ │ │ ├── application-x-perl-inverted.svg │ │ │ │ ├── application-x-perl.svg │ │ │ │ ├── application-x-php-inverted.svg │ │ │ │ ├── application-x-php.svg │ │ │ │ ├── application-x-pkcs12-inverted.svg │ │ │ │ ├── application-x-pkcs12.svg │ │ │ │ ├── application-x-pkcs7-certificates-inverted.svg │ │ │ │ ├── application-x-pkcs7-certificates.svg │ │ │ │ ├── application-x-plasma-inverted.svg │ │ │ │ ├── application-x-plasma.svg │ │ │ │ ├── application-x-python-bytecode-inverted.svg │ │ │ │ ├── application-x-python-bytecode.svg │ │ │ │ ├── application-x-qet-element-inverted.svg │ │ │ │ ├── application-x-qet-element.svg │ │ │ │ ├── application-x-qet-project-inverted.svg │ │ │ │ ├── application-x-qet-project.svg │ │ │ │ ├── application-x-quattropro-inverted.svg │ │ │ │ ├── application-x-quattropro.svg │ │ │ │ ├── application-x-rar-inverted.svg │ │ │ │ ├── application-x-rar.svg │ │ │ │ ├── application-x-raw-disk-image-inverted.svg │ │ │ │ ├── application-x-raw-disk-image.svg │ │ │ │ ├── application-x-rdata-inverted.svg │ │ │ │ ├── application-x-rdata.svg │ │ │ │ ├── application-x-rpm-inverted.svg │ │ │ │ ├── application-x-rpm.svg │ │ │ │ ├── application-x-ruby-inverted.svg │ │ │ │ ├── application-x-ruby.svg │ │ │ │ ├── application-x-sharedlib-inverted.svg │ │ │ │ ├── application-x-sharedlib.svg │ │ │ │ ├── application-x-shellscript-inverted.svg │ │ │ │ ├── application-x-shellscript.svg │ │ │ │ ├── application-x-shockwave-flash-inverted.svg │ │ │ │ ├── application-x-shockwave-flash.svg │ │ │ │ ├── application-x-siag-inverted.svg │ │ │ │ ├── application-x-siag.svg │ │ │ │ ├── application-x-sif-inverted.svg │ │ │ │ ├── application-x-sif.svg │ │ │ │ ├── application-x-skg-inverted.svg │ │ │ │ ├── application-x-skg.svg │ │ │ │ ├── application-x-skgc-inverted.svg │ │ │ │ ├── application-x-skgc.svg │ │ │ │ ├── application-x-smb-server-inverted.svg │ │ │ │ ├── application-x-smb-server.svg │ │ │ │ ├── application-x-smb-workgroup-inverted.svg │ │ │ │ ├── application-x-smb-workgroup.svg │ │ │ │ ├── application-x-source-rpm-inverted.svg │ │ │ │ ├── application-x-source-rpm.svg │ │ │ │ ├── application-x-sqlite2-inverted.svg │ │ │ │ ├── application-x-sqlite2.svg │ │ │ │ ├── application-x-sqlite3-inverted.svg │ │ │ │ ├── application-x-sqlite3.svg │ │ │ │ ├── application-x-srt-inverted.svg │ │ │ │ ├── application-x-srt.svg │ │ │ │ ├── application-x-srtrip-inverted.svg │ │ │ │ ├── application-x-srtrip.svg │ │ │ │ ├── application-x-subrip-inverted.svg │ │ │ │ ├── application-x-subrip.svg │ │ │ │ ├── application-x-tar-inverted.svg │ │ │ │ ├── application-x-tar.svg │ │ │ │ ├── application-x-tarz-inverted.svg │ │ │ │ ├── application-x-tarz.svg │ │ │ │ ├── application-x-tgif-inverted.svg │ │ │ │ ├── application-x-tgif.svg │ │ │ │ ├── application-x-theme-inverted.svg │ │ │ │ ├── application-x-theme.svg │ │ │ │ ├── application-x-trash-inverted.svg │ │ │ │ ├── application-x-trash.svg │ │ │ │ ├── application-x-troff-man-inverted.svg │ │ │ │ ├── application-x-troff-man.svg │ │ │ │ ├── application-x-tzo-inverted.svg │ │ │ │ ├── application-x-tzo.svg │ │ │ │ ├── application-x-wmf-inverted.svg │ │ │ │ ├── application-x-wmf.svg │ │ │ │ ├── application-x-x509-ca-cert-inverted.svg │ │ │ │ ├── application-x-x509-ca-cert.svg │ │ │ │ ├── application-x-x509-user-cert-inverted.svg │ │ │ │ ├── application-x-x509-user-cert.svg │ │ │ │ ├── application-x-xliff-inverted.svg │ │ │ │ ├── application-x-xliff.svg │ │ │ │ ├── application-x-xpinstall-inverted.svg │ │ │ │ ├── application-x-xpinstall.svg │ │ │ │ ├── application-x-xz-compressed-tar-inverted.svg │ │ │ │ ├── application-x-xz-compressed-tar.svg │ │ │ │ ├── application-x-xz-pkg-inverted.svg │ │ │ │ ├── application-x-xz-pkg.svg │ │ │ │ ├── application-x-zerosize-inverted.svg │ │ │ │ ├── application-x-zerosize.svg │ │ │ │ ├── application-x-zoo-inverted.svg │ │ │ │ ├── application-x-zoo.svg │ │ │ │ ├── application-xhtml+xml-inverted.svg │ │ │ │ ├── application-xhtml+xml.svg │ │ │ │ ├── application-xmind-inverted.svg │ │ │ │ ├── application-xmind.svg │ │ │ │ ├── application-xml-inverted.svg │ │ │ │ ├── application-xml.svg │ │ │ │ ├── application-xsd-inverted.svg │ │ │ │ ├── application-xsd.svg │ │ │ │ ├── application-xslt+xml-inverted.svg │ │ │ │ ├── application-xslt+xml.svg │ │ │ │ ├── application-zip-inverted.svg │ │ │ │ ├── application-zip.svg │ │ │ │ ├── audio-ac3-inverted.svg │ │ │ │ ├── audio-ac3.svg │ │ │ │ ├── audio-flac-inverted.svg │ │ │ │ ├── audio-flac.svg │ │ │ │ ├── audio-midi-inverted.svg │ │ │ │ ├── audio-midi.svg │ │ │ │ ├── audio-mp2-inverted.svg │ │ │ │ ├── audio-mp2.svg │ │ │ │ ├── audio-mp3-inverted.svg │ │ │ │ ├── audio-mp3.svg │ │ │ │ ├── audio-mp4-inverted.svg │ │ │ │ ├── audio-mp4.svg │ │ │ │ ├── audio-prs.sid-inverted.svg │ │ │ │ ├── audio-prs.sid.svg │ │ │ │ ├── audio-vn.rn-realmedia-inverted.svg │ │ │ │ ├── audio-vn.rn-realmedia.svg │ │ │ │ ├── audio-vnd.rn-realvideo-inverted.svg │ │ │ │ ├── audio-vnd.rn-realvideo.svg │ │ │ │ ├── audio-x-adpcm-inverted.svg │ │ │ │ ├── audio-x-adpcm.svg │ │ │ │ ├── audio-x-aiff-inverted.svg │ │ │ │ ├── audio-x-aiff.svg │ │ │ │ ├── audio-x-flac+ogg-inverted.svg │ │ │ │ ├── audio-x-flac+ogg.svg │ │ │ │ ├── audio-x-flac-inverted.svg │ │ │ │ ├── audio-x-flac.svg │ │ │ │ ├── audio-x-generic-inverted.svg │ │ │ │ ├── audio-x-generic.svg │ │ │ │ ├── audio-x-monkey-inverted.svg │ │ │ │ ├── audio-x-monkey.svg │ │ │ │ ├── audio-x-mp2-inverted.svg │ │ │ │ ├── audio-x-mp2.svg │ │ │ │ ├── audio-x-mpeg-inverted.svg │ │ │ │ ├── audio-x-mpeg.svg │ │ │ │ ├── audio-x-speex+ogg-inverted.svg │ │ │ │ ├── audio-x-speex+ogg.svg │ │ │ │ ├── audio-x-wav-inverted.svg │ │ │ │ ├── audio-x-wav.svg │ │ │ │ ├── audiobook-inverted.svg │ │ │ │ ├── audiobook.svg │ │ │ │ ├── encrypted-inverted.svg │ │ │ │ ├── encrypted.svg │ │ │ │ ├── font-ttf-inverted.svg │ │ │ │ ├── font-ttf.svg │ │ │ │ ├── fonts-package-inverted.svg │ │ │ │ ├── fonts-package.svg │ │ │ │ ├── image-bmp-inverted.svg │ │ │ │ ├── image-bmp.svg │ │ │ │ ├── image-gif-inverted.svg │ │ │ │ ├── image-gif.svg │ │ │ │ ├── image-ico-inverted.svg │ │ │ │ ├── image-ico.svg │ │ │ │ ├── image-jpeg-inverted.svg │ │ │ │ ├── image-jpeg.svg │ │ │ │ ├── image-jpeg2000-inverted.svg │ │ │ │ ├── image-jpeg2000.svg │ │ │ │ ├── image-png-inverted.svg │ │ │ │ ├── image-png.svg │ │ │ │ ├── image-svg+xml-compressed-inverted.svg │ │ │ │ ├── image-svg+xml-compressed.svg │ │ │ │ ├── image-svg+xml-inverted.svg │ │ │ │ ├── image-svg+xml.svg │ │ │ │ ├── image-tiff-inverted.svg │ │ │ │ ├── image-tiff.svg │ │ │ │ ├── image-vnd.dgn-inverted.svg │ │ │ │ ├── image-vnd.dgn.svg │ │ │ │ ├── image-vnd.djvu-inverted.svg │ │ │ │ ├── image-vnd.djvu.svg │ │ │ │ ├── image-vnd.dwg-inverted.svg │ │ │ │ ├── image-vnd.dwg.svg │ │ │ │ ├── image-vnd.microsoft.icon-inverted.svg │ │ │ │ ├── image-vnd.microsoft.icon.svg │ │ │ │ ├── image-x-adobe-dng-inverted.svg │ │ │ │ ├── image-x-adobe-dng.svg │ │ │ │ ├── image-x-compressed-xcf-inverted.svg │ │ │ │ ├── image-x-compressed-xcf.svg │ │ │ │ ├── image-x-emf-inverted.svg │ │ │ │ ├── image-x-emf.svg │ │ │ │ ├── image-x-eps-inverted.svg │ │ │ │ ├── image-x-eps.svg │ │ │ │ ├── image-x-generic-inverted.svg │ │ │ │ ├── image-x-generic.svg │ │ │ │ ├── image-x-ico-inverted.svg │ │ │ │ ├── image-x-ico.svg │ │ │ │ ├── image-x-icon-inverted.svg │ │ │ │ ├── image-x-icon.svg │ │ │ │ ├── image-x-krita-inverted.svg │ │ │ │ ├── image-x-krita.svg │ │ │ │ ├── image-x-portable-bitmap-inverted.svg │ │ │ │ ├── image-x-portable-bitmap.svg │ │ │ │ ├── image-x-psd-inverted.svg │ │ │ │ ├── image-x-psd.svg │ │ │ │ ├── image-x-psdimage-x-psd-inverted.svg │ │ │ │ ├── image-x-psdimage-x-psd.svg │ │ │ │ ├── image-x-svg+xml-inverted.svg │ │ │ │ ├── image-x-svg+xml.svg │ │ │ │ ├── image-x-tga-inverted.svg │ │ │ │ ├── image-x-tga.svg │ │ │ │ ├── image-x-vnd.trolltech.qpicture-inverted.svg │ │ │ │ ├── image-x-vnd.trolltech.qpicture.svg │ │ │ │ ├── image-x-win-bitmap-inverted.svg │ │ │ │ ├── image-x-win-bitmap.svg │ │ │ │ ├── image-x-win-bmp-inverted.svg │ │ │ │ ├── image-x-win-bmp.svg │ │ │ │ ├── image-x-wmf-inverted.svg │ │ │ │ ├── image-x-wmf.svg │ │ │ │ ├── image-x-xcf-inverted.svg │ │ │ │ ├── image-x-xcf.svg │ │ │ │ ├── image-x-xfig-inverted.svg │ │ │ │ ├── image-x-xfig.svg │ │ │ │ ├── inode-directory-inverted.svg │ │ │ │ ├── inode-directory.svg │ │ │ │ ├── libreoffice-database-inverted.svg │ │ │ │ ├── libreoffice-database.svg │ │ │ │ ├── libreoffice-drawing-inverted.svg │ │ │ │ ├── libreoffice-drawing-template-inverted.svg │ │ │ │ ├── libreoffice-drawing-template.svg │ │ │ │ ├── libreoffice-drawing.svg │ │ │ │ ├── libreoffice-extension-inverted.svg │ │ │ │ ├── libreoffice-extension.svg │ │ │ │ ├── libreoffice-formula-inverted.svg │ │ │ │ ├── libreoffice-formula.svg │ │ │ │ ├── libreoffice-master-document-inverted.svg │ │ │ │ ├── libreoffice-master-document.svg │ │ │ │ ├── libreoffice-oasis-database-inverted.svg │ │ │ │ ├── libreoffice-oasis-database.svg │ │ │ │ ├── libreoffice-oasis-drawing-inverted.svg │ │ │ │ ├── libreoffice-oasis-drawing-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-drawing-template.svg │ │ │ │ ├── libreoffice-oasis-drawing.svg │ │ │ │ ├── libreoffice-oasis-formula-inverted.svg │ │ │ │ ├── libreoffice-oasis-formula.svg │ │ │ │ ├── libreoffice-oasis-master-document-inverted.svg │ │ │ │ ├── libreoffice-oasis-master-document.svg │ │ │ │ ├── libreoffice-oasis-presentation-inverted.svg │ │ │ │ ├── libreoffice-oasis-presentation-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-presentation-template.svg │ │ │ │ ├── libreoffice-oasis-presentation.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-inverted.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-template.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet.svg │ │ │ │ ├── libreoffice-oasis-text-inverted.svg │ │ │ │ ├── libreoffice-oasis-text-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-text-template.svg │ │ │ │ ├── libreoffice-oasis-text.svg │ │ │ │ ├── libreoffice-oasis-web-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-web-template.svg │ │ │ │ ├── libreoffice-presentation-inverted.svg │ │ │ │ ├── libreoffice-presentation-template-inverted.svg │ │ │ │ ├── libreoffice-presentation-template.svg │ │ │ │ ├── libreoffice-presentation.svg │ │ │ │ ├── libreoffice-spreadsheet-inverted.svg │ │ │ │ ├── libreoffice-spreadsheet-template-inverted.svg │ │ │ │ ├── libreoffice-spreadsheet-template.svg │ │ │ │ ├── libreoffice-spreadsheet.svg │ │ │ │ ├── libreoffice-text-inverted.svg │ │ │ │ ├── libreoffice-text-template-inverted.svg │ │ │ │ ├── libreoffice-text-template.svg │ │ │ │ ├── libreoffice-text.svg │ │ │ │ ├── message-inverted.svg │ │ │ │ ├── message-news-inverted.svg │ │ │ │ ├── message-news.svg │ │ │ │ ├── message-partial-inverted.svg │ │ │ │ ├── message-partial.svg │ │ │ │ ├── message-rfc822-inverted.svg │ │ │ │ ├── message-rfc822.svg │ │ │ │ ├── message-x-gnu-rmail-inverted.svg │ │ │ │ ├── message-x-gnu-rmail.svg │ │ │ │ ├── message.svg │ │ │ │ ├── none-inverted.svg │ │ │ │ ├── none.svg │ │ │ │ ├── odf-inverted.svg │ │ │ │ ├── odf.svg │ │ │ │ ├── package-x-generic-inverted.svg │ │ │ │ ├── package-x-generic.svg │ │ │ │ ├── podcast-inverted.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── pplication-vnd.openxmlformats-officedocument.spreadsheetml.sheet-inverted.svg │ │ │ │ ├── pplication-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ │ │ ├── text-calendar-inverted.svg │ │ │ │ ├── text-calendar.svg │ │ │ │ ├── text-csharp-inverted.svg │ │ │ │ ├── text-csharp.svg │ │ │ │ ├── text-css-inverted.svg │ │ │ │ ├── text-css.svg │ │ │ │ ├── text-csv-inverted.svg │ │ │ │ ├── text-csv.svg │ │ │ │ ├── text-directory-inverted.svg │ │ │ │ ├── text-directory.svg │ │ │ │ ├── text-dockerfile-inverted.svg │ │ │ │ ├── text-dockerfile.svg │ │ │ │ ├── text-enriched-inverted.svg │ │ │ │ ├── text-enriched.svg │ │ │ │ ├── text-html-inverted.svg │ │ │ │ ├── text-html.svg │ │ │ │ ├── text-markdown-inverted.svg │ │ │ │ ├── text-markdown.svg │ │ │ │ ├── text-mathml-inverted.svg │ │ │ │ ├── text-mathml.svg │ │ │ │ ├── text-plain-inverted.svg │ │ │ │ ├── text-plain.svg │ │ │ │ ├── text-rdf+xml-inverted.svg │ │ │ │ ├── text-rdf+xml.svg │ │ │ │ ├── text-rdf-inverted.svg │ │ │ │ ├── text-rdf.svg │ │ │ │ ├── text-rtf-inverted.svg │ │ │ │ ├── text-rtf.svg │ │ │ │ ├── text-rust-inverted.svg │ │ │ │ ├── text-rust.svg │ │ │ │ ├── text-sgml-inverted.svg │ │ │ │ ├── text-sgml.svg │ │ │ │ ├── text-troff-inverted.svg │ │ │ │ ├── text-troff.svg │ │ │ │ ├── text-vcalendar-inverted.svg │ │ │ │ ├── text-vcalendar.svg │ │ │ │ ├── text-vnd.abc-inverted.svg │ │ │ │ ├── text-vnd.abc.svg │ │ │ │ ├── text-vnd.trolltech.linguist-inverted.svg │ │ │ │ ├── text-vnd.trolltech.linguist.svg │ │ │ │ ├── text-vnd.wap.wml-inverted.svg │ │ │ │ ├── text-vnd.wap.wml.svg │ │ │ │ ├── text-wiki-inverted.svg │ │ │ │ ├── text-wiki.svg │ │ │ │ ├── text-x-adasrc-inverted.svg │ │ │ │ ├── text-x-adasrc.svg │ │ │ │ ├── text-x-apport-inverted.svg │ │ │ │ ├── text-x-apport.svg │ │ │ │ ├── text-x-authors-inverted.svg │ │ │ │ ├── text-x-authors.svg │ │ │ │ ├── text-x-bibtex-inverted.svg │ │ │ │ ├── text-x-bibtex.svg │ │ │ │ ├── text-x-c++hdr-inverted.svg │ │ │ │ ├── text-x-c++hdr.svg │ │ │ │ ├── text-x-c++src-inverted.svg │ │ │ │ ├── text-x-c++src.svg │ │ │ │ ├── text-x-changelog-inverted.svg │ │ │ │ ├── text-x-changelog.svg │ │ │ │ ├── text-x-chdr-inverted.svg │ │ │ │ ├── text-x-chdr.svg │ │ │ │ ├── text-x-cmake-inverted.svg │ │ │ │ ├── text-x-cmake.svg │ │ │ │ ├── text-x-copying-inverted.svg │ │ │ │ ├── text-x-copying.svg │ │ │ │ ├── text-x-credits-inverted.svg │ │ │ │ ├── text-x-credits.svg │ │ │ │ ├── text-x-csharp-inverted.svg │ │ │ │ ├── text-x-csharp.svg │ │ │ │ ├── text-x-csrc-inverted.svg │ │ │ │ ├── text-x-csrc.svg │ │ │ │ ├── text-x-dtd-inverted.svg │ │ │ │ ├── text-x-dtd.svg │ │ │ │ ├── text-x-generic-inverted.svg │ │ │ │ ├── text-x-generic.svapplication-x-awk-inverted.svg │ │ │ │ ├── text-x-generic.svapplication-x-awk.svg │ │ │ │ ├── text-x-generic.svg │ │ │ │ ├── text-x-gettext-translation-inverted.svg │ │ │ │ ├── text-x-gettext-translation.svg │ │ │ │ ├── text-x-go-inverted.svg │ │ │ │ ├── text-x-go.svg │ │ │ │ ├── text-x-haskell-inverted.svg │ │ │ │ ├── text-x-haskell.svg │ │ │ │ ├── text-x-hex-inverted.svg │ │ │ │ ├── text-x-hex.svg │ │ │ │ ├── text-x-install-inverted.svg │ │ │ │ ├── text-x-install.svg │ │ │ │ ├── text-x-java-inverted.svg │ │ │ │ ├── text-x-java-source-inverted.svg │ │ │ │ ├── text-x-java-source.svg │ │ │ │ ├── text-x-java.svg │ │ │ │ ├── text-x-javascript-inverted.svg │ │ │ │ ├── text-x-javascript.svg │ │ │ │ ├── text-x-katefilelist-inverted.svg │ │ │ │ ├── text-x-katefilelist.svg │ │ │ │ ├── text-x-ldif-inverted.svg │ │ │ │ ├── text-x-ldif.svg │ │ │ │ ├── text-x-lilypond-inverted.svg │ │ │ │ ├── text-x-lilypond.svg │ │ │ │ ├── text-x-log-inverted.svg │ │ │ │ ├── text-x-log.svg │ │ │ │ ├── text-x-lua-inverted.svg │ │ │ │ ├── text-x-lua.svg │ │ │ │ ├── text-x-makefile-inverted.svg │ │ │ │ ├── text-x-makefile.svg │ │ │ │ ├── text-x-markdown-inverted.svg │ │ │ │ ├── text-x-markdown.svg │ │ │ │ ├── text-x-nfo-inverted.svg │ │ │ │ ├── text-x-nfo.svg │ │ │ │ ├── text-x-objchdr-inverted.svg │ │ │ │ ├── text-x-objchdr.svg │ │ │ │ ├── text-x-objcsrc-inverted.svg │ │ │ │ ├── text-x-objcsrc.svg │ │ │ │ ├── text-x-opml+xml-inverted.svg │ │ │ │ ├── text-x-opml+xml.svg │ │ │ │ ├── text-x-opml-inverted.svg │ │ │ │ ├── text-x-opml.svg │ │ │ │ ├── text-x-pascal-inverted.svg │ │ │ │ ├── text-x-pascal.svg │ │ │ │ ├── text-x-patch-inverted.svg │ │ │ │ ├── text-x-patch.svg │ │ │ │ ├── text-x-plain-inverted.svg │ │ │ │ ├── text-x-plain.svg │ │ │ │ ├── text-x-po-inverted.svg │ │ │ │ ├── text-x-po.svg │ │ │ │ ├── text-x-python-inverted.svg │ │ │ │ ├── text-x-python.svg │ │ │ │ ├── text-x-qml-inverted.svg │ │ │ │ ├── text-x-qml.svg │ │ │ │ ├── text-x-r-inverted.svg │ │ │ │ ├── text-x-r.svg │ │ │ │ ├── text-x-readme-inverted.svg │ │ │ │ ├── text-x-readme.svg │ │ │ │ ├── text-x-rpm-spec-inverted.svg │ │ │ │ ├── text-x-rpm-spec.svg │ │ │ │ ├── text-x-rust-inverted.svg │ │ │ │ ├── text-x-rust.svg │ │ │ │ ├── text-x-scala-inverted.svg │ │ │ │ ├── text-x-scala.svg │ │ │ │ ├── text-x-script-inverted.svg │ │ │ │ ├── text-x-script.svg │ │ │ │ ├── text-x-sql-inverted.svg │ │ │ │ ├── text-x-sql.svg │ │ │ │ ├── text-x-tcl-inverted.svg │ │ │ │ ├── text-x-tcl.svg │ │ │ │ ├── text-x-tex-inverted.svg │ │ │ │ ├── text-x-tex.svg │ │ │ │ ├── text-x-texinfo-inverted.svg │ │ │ │ ├── text-x-texinfo.svg │ │ │ │ ├── text-x-vcard-inverted.svg │ │ │ │ ├── text-x-vcard.svg │ │ │ │ ├── text-x-xslfo-inverted.svg │ │ │ │ ├── text-x-xslfo.svg │ │ │ │ ├── text-xmcd-inverted.svg │ │ │ │ ├── text-xmcd.svg │ │ │ │ ├── text-xml-inverted.svg │ │ │ │ ├── text-xml.svg │ │ │ │ ├── unknown-inverted.svg │ │ │ │ ├── unknown.svg │ │ │ │ ├── uri-mms-inverted.svg │ │ │ │ ├── uri-mms.svg │ │ │ │ ├── uri-mmst-inverted.svg │ │ │ │ ├── uri-mmst.svg │ │ │ │ ├── uri-pnm-inverted.svg │ │ │ │ ├── uri-pnm.svg │ │ │ │ ├── uri-rtspt-inverted.svg │ │ │ │ ├── uri-rtspt.svg │ │ │ │ ├── uri-rtspu-inverted.svg │ │ │ │ ├── uri-rtspu.svg │ │ │ │ ├── video-mlt-playlist-inverted.svg │ │ │ │ ├── video-mlt-playlist.svg │ │ │ │ ├── video-mp2t-inverted.svg │ │ │ │ ├── video-mp2t.svg │ │ │ │ ├── video-mp4-inverted.svg │ │ │ │ ├── video-mp4.svg │ │ │ │ ├── video-vivo-inverted.svg │ │ │ │ ├── video-vivo.svg │ │ │ │ ├── video-vnd.rn-realvideo-inverted.svg │ │ │ │ ├── video-vnd.rn-realvideo.svg │ │ │ │ ├── video-wavelet-inverted.svg │ │ │ │ ├── video-wavelet.svg │ │ │ │ ├── video-webm-inverted.svg │ │ │ │ ├── video-webm.svg │ │ │ │ ├── video-x-anim-inverted.svg │ │ │ │ ├── video-x-anim.svg │ │ │ │ ├── video-x-flic-inverted.svg │ │ │ │ ├── video-x-flic.svg │ │ │ │ ├── video-x-flv-inverted.svg │ │ │ │ ├── video-x-flv.svg │ │ │ │ ├── video-x-generic-inverted.svg │ │ │ │ ├── video-x-generic.svg │ │ │ │ ├── video-x-google-vlc-plugin-inverted.svg │ │ │ │ ├── video-x-google-vlc-plugin.svg │ │ │ │ ├── video-x-javafx-inverted.svg │ │ │ │ ├── video-x-javafx.svg │ │ │ │ ├── video-x-matroska-inverted.svg │ │ │ │ ├── video-x-matroska.svg │ │ │ │ ├── video-x-mng-inverted.svg │ │ │ │ ├── video-x-mng.svg │ │ │ │ ├── video-x-ms-wmp-inverted.svg │ │ │ │ ├── video-x-ms-wmp.svg │ │ │ │ ├── video-x-ms-wmv-inverted.svg │ │ │ │ ├── video-x-ms-wmv.svg │ │ │ │ ├── video-x-msvideo-inverted.svg │ │ │ │ ├── video-x-msvideo.svg │ │ │ │ ├── video-x-ogm+ogg-inverted.svg │ │ │ │ ├── video-x-ogm+ogg.svg │ │ │ │ ├── video-x-theora+ogg-inverted.svg │ │ │ │ ├── video-x-theora+ogg.svg │ │ │ │ ├── video-x-wmv-inverted.svg │ │ │ │ ├── video-x-wmv.svg │ │ │ │ ├── viewbib-inverted.svg │ │ │ │ ├── viewbib.svg │ │ │ │ ├── viewdvi-inverted.svg │ │ │ │ ├── viewdvi.svg │ │ │ │ ├── viewhtml-inverted.svg │ │ │ │ ├── viewhtml.svg │ │ │ │ ├── viewpdf-inverted.svg │ │ │ │ ├── viewpdf.svg │ │ │ │ ├── viewps-inverted.svg │ │ │ │ ├── viewps.svg │ │ │ │ ├── virtualbox-hdd-inverted.svg │ │ │ │ ├── virtualbox-hdd.svg │ │ │ │ ├── virtualbox-ova-inverted.svg │ │ │ │ ├── virtualbox-ova.svg │ │ │ │ ├── virtualbox-ovf-inverted.svg │ │ │ │ ├── virtualbox-ovf.svg │ │ │ │ ├── virtualbox-vbox-extpack-inverted.svg │ │ │ │ ├── virtualbox-vbox-extpack.svg │ │ │ │ ├── virtualbox-vbox-inverted.svg │ │ │ │ ├── virtualbox-vbox.svg │ │ │ │ ├── virtualbox-vdi-inverted.svg │ │ │ │ ├── virtualbox-vdi.svg │ │ │ │ ├── virtualbox-vhd-inverted.svg │ │ │ │ ├── virtualbox-vhd.svg │ │ │ │ ├── virtualbox-vmdk-inverted.svg │ │ │ │ ├── virtualbox-vmdk.svg │ │ │ │ ├── vnd.ms-publisher-inverted.svg │ │ │ │ ├── vnd.ms-publisher.svg │ │ │ │ ├── x-kde-nsplugin-generated-inverted.svg │ │ │ │ ├── x-kde-nsplugin-generated.svg │ │ │ │ ├── x-mail-distribution-list-inverted.svg │ │ │ │ ├── x-mail-distribution-list.svg │ │ │ │ ├── x-media-podcast-inverted.svg │ │ │ │ ├── x-media-podcast.svg │ │ │ │ ├── x-office-address-book-inverted.svg │ │ │ │ ├── x-office-address-book.svg │ │ │ │ ├── x-office-calendar-inverted.svg │ │ │ │ ├── x-office-calendar.svg │ │ │ │ ├── x-office-contact-inverted.svg │ │ │ │ ├── x-office-contact.svg │ │ │ │ ├── x-office-document-inverted.svg │ │ │ │ ├── x-office-document.svg │ │ │ │ ├── x-office-drawing-inverted.svg │ │ │ │ ├── x-office-drawing.svg │ │ │ │ ├── x-office-presentation-inverted.svg │ │ │ │ ├── x-office-presentation.svg │ │ │ │ ├── x-office-spreadsheet-inverted.svg │ │ │ │ └── x-office-spreadsheet.svg │ │ │ ├── 64 │ │ │ │ ├── android-package-archive-inverted.svg │ │ │ │ ├── android-package-archive.svg │ │ │ │ ├── application-atom+xml-inverted.svg │ │ │ │ ├── application-atom+xml.svg │ │ │ │ ├── application-certificate-inverted.svg │ │ │ │ ├── application-certificate.svg │ │ │ │ ├── application-dicom-inverted.svg │ │ │ │ ├── application-dicom.svg │ │ │ │ ├── application-epub+zip-inverted.svg │ │ │ │ ├── application-epub+zip.svg │ │ │ │ ├── application-illustrator-inverted.svg │ │ │ │ ├── application-illustrator.svg │ │ │ │ ├── application-javascript-inverted.svg │ │ │ │ ├── application-javascript.svg │ │ │ │ ├── application-json-inverted.svg │ │ │ │ ├── application-json.svg │ │ │ │ ├── application-mac-binhex40-inverted.svg │ │ │ │ ├── application-mac-binhex40.svg │ │ │ │ ├── application-msonenote-inverted.svg │ │ │ │ ├── application-msonenote.svg │ │ │ │ ├── application-msoutlook-inverted.svg │ │ │ │ ├── application-msoutlook.svg │ │ │ │ ├── application-msword-inverted.svg │ │ │ │ ├── application-msword-template-inverted.svg │ │ │ │ ├── application-msword-template.svg │ │ │ │ ├── application-msword.svg │ │ │ │ ├── application-octet-stream-inverted.svg │ │ │ │ ├── application-octet-stream.svg │ │ │ │ ├── application-ogg-inverted.svg │ │ │ │ ├── application-ogg.svg │ │ │ │ ├── application-pdf-inverted.svg │ │ │ │ ├── application-pdf.svg │ │ │ │ ├── application-pgp-encrypted-inverted.svg │ │ │ │ ├── application-pgp-encrypted.svg │ │ │ │ ├── application-pgp-inverted.svg │ │ │ │ ├── application-pgp-keys-inverted.svg │ │ │ │ ├── application-pgp-keys.svg │ │ │ │ ├── application-pgp-signature-inverted.svg │ │ │ │ ├── application-pgp-signature.svg │ │ │ │ ├── application-pgp.svg │ │ │ │ ├── application-pkcs7-mime-inverted.svg │ │ │ │ ├── application-pkcs7-mime.svg │ │ │ │ ├── application-pkcs7-signature-inverted.svg │ │ │ │ ├── application-pkcs7-signature.svg │ │ │ │ ├── application-pkix-cerl-inverted.svg │ │ │ │ ├── application-pkix-cerl.svg │ │ │ │ ├── application-pkix-cert-inverted.svg │ │ │ │ ├── application-pkix-cert.svg │ │ │ │ ├── application-postscript-inverted.svg │ │ │ │ ├── application-postscript.svg │ │ │ │ ├── application-relaxng-inverted.svg │ │ │ │ ├── application-relaxng.svg │ │ │ │ ├── application-rss+xml-inverted.svg │ │ │ │ ├── application-rss+xml.svg │ │ │ │ ├── application-rtf-inverted.svg │ │ │ │ ├── application-rtf.svg │ │ │ │ ├── application-sxw-inverted.svg │ │ │ │ ├── application-sxw.svg │ │ │ │ ├── application-vnd-google-earth-kml-inverted.svg │ │ │ │ ├── application-vnd-google-earth-kml.svg │ │ │ │ ├── application-vnd.android.package-archive-inverted.svg │ │ │ │ ├── application-vnd.android.package-archive.svg │ │ │ │ ├── application-vnd.iccprofile-inverted.svg │ │ │ │ ├── application-vnd.iccprofile.svg │ │ │ │ ├── application-vnd.ms-access-inverted.svg │ │ │ │ ├── application-vnd.ms-access.svg │ │ │ │ ├── application-vnd.ms-excel-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.addin.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-excel.svg │ │ │ │ ├── application-vnd.ms-excel.template.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-excel.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-infopath-inverted.svg │ │ │ │ ├── application-vnd.ms-infopath.svg │ │ │ │ ├── application-vnd.ms-powerpoint-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-powerpoint.svg │ │ │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-publisher-inverted.svg │ │ │ │ ├── application-vnd.ms-publisher.svg │ │ │ │ ├── application-vnd.ms-word-inverted.svg │ │ │ │ ├── application-vnd.ms-word.document.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-word.document.macroenabled.12.svg │ │ │ │ ├── application-vnd.ms-word.svg │ │ │ │ ├── application-vnd.ms-word.template.macroenabled.12-inverted.svg │ │ │ │ ├── application-vnd.ms-word.template.macroenabled.12.svg │ │ │ │ ├── application-vnd.nintendo.snes.rom-inverted.svg │ │ │ │ ├── application-vnd.nintendo.snes.rom.svg │ │ │ │ ├── application-vnd.oasis.opendocument.chart-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.chart.svg │ │ │ │ ├── application-vnd.oasis.opendocument.database-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.database.svg │ │ │ │ ├── application-vnd.oasis.opendocument.draw.template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.draw.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.formula.svg │ │ │ │ ├── application-vnd.oasis.opendocument.graphics-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.graphics.svg │ │ │ │ ├── application-vnd.oasis.opendocument.image-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.image.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.presentation.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-master-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-master.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text-template.svg │ │ │ │ ├── application-vnd.oasis.opendocument.text.svg │ │ │ │ ├── application-vnd.oasis.opendocument.web-template-inverted.svg │ │ │ │ ├── application-vnd.oasis.opendocument.web-template.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet-inverted.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document-inverted.svg │ │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg │ │ │ │ ├── application-vnd.rar-inverted.svg │ │ │ │ ├── application-vnd.rar.svg │ │ │ │ ├── application-vnd.rn-realmedia-inverted.svg │ │ │ │ ├── application-vnd.rn-realmedia.svg │ │ │ │ ├── application-vnd.scribus-inverted.svg │ │ │ │ ├── application-vnd.scribus.svg │ │ │ │ ├── application-vnd.stardivision.calc-inverted.svg │ │ │ │ ├── application-vnd.stardivision.calc.svg │ │ │ │ ├── application-vnd.stardivision.draw-inverted.svg │ │ │ │ ├── application-vnd.stardivision.draw.svg │ │ │ │ ├── application-vnd.stardivision.mail-inverted.svg │ │ │ │ ├── application-vnd.stardivision.mail.svg │ │ │ │ ├── application-vnd.stardivision.math-inverted.svg │ │ │ │ ├── application-vnd.stardivision.math.svg │ │ │ │ ├── application-vnd.sun.xml.calc-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.calc.svg │ │ │ │ ├── application-vnd.sun.xml.calc.template-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.calc.template.svg │ │ │ │ ├── application-vnd.sun.xml.draw-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.draw.svg │ │ │ │ ├── application-vnd.sun.xml.draw.template-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.draw.template.svg │ │ │ │ ├── application-vnd.sun.xml.impress-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.impress.svg │ │ │ │ ├── application-vnd.sun.xml.impress.template-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.impress.template.svg │ │ │ │ ├── application-vnd.sun.xml.math-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.math.svg │ │ │ │ ├── application-vnd.sun.xml.writer-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.writer.global-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.writer.global.svg │ │ │ │ ├── application-vnd.sun.xml.writer.svg │ │ │ │ ├── application-vnd.sun.xml.writer.template-inverted.svg │ │ │ │ ├── application-vnd.sun.xml.writer.template.svg │ │ │ │ ├── application-vnd.visio-inverted.svg │ │ │ │ ├── application-vnd.visio.svg │ │ │ │ ├── application-vnd.wordperfect-inverted.svg │ │ │ │ ├── application-vnd.wordperfect.svg │ │ │ │ ├── application-wps-office.doc-inverted.svg │ │ │ │ ├── application-wps-office.doc.svg │ │ │ │ ├── application-wps-office.docx-inverted.svg │ │ │ │ ├── application-wps-office.docx.svg │ │ │ │ ├── application-wps-office.dot-inverted.svg │ │ │ │ ├── application-wps-office.dot.svg │ │ │ │ ├── application-wps-office.dotx-inverted.svg │ │ │ │ ├── application-wps-office.dotx.svg │ │ │ │ ├── application-wps-office.pot-inverted.svg │ │ │ │ ├── application-wps-office.pot.svg │ │ │ │ ├── application-wps-office.potx-inverted.svg │ │ │ │ ├── application-wps-office.potx.svg │ │ │ │ ├── application-wps-office.ppt-inverted.svg │ │ │ │ ├── application-wps-office.ppt.svg │ │ │ │ ├── application-wps-office.pptx-inverted.svg │ │ │ │ ├── application-wps-office.pptx.svg │ │ │ │ ├── application-wps-office.xls-inverted.svg │ │ │ │ ├── application-wps-office.xls.svg │ │ │ │ ├── application-wps-office.xlsx-inverted.svg │ │ │ │ ├── application-wps-office.xlsx.svg │ │ │ │ ├── application-wps-office.xlt-inverted.svg │ │ │ │ ├── application-wps-office.xlt.svg │ │ │ │ ├── application-wps-office.xltx-inverted.svg │ │ │ │ ├── application-wps-office.xltx.svg │ │ │ │ ├── application-x-7z-compressed-inverted.svg │ │ │ │ ├── application-x-7z-compressed.svg │ │ │ │ ├── application-x-abiword-inverted.svg │ │ │ │ ├── application-x-abiword.svg │ │ │ │ ├── application-x-ace-inverted.svg │ │ │ │ ├── application-x-ace.svg │ │ │ │ ├── application-x-apple-diskimage-inverted.svg │ │ │ │ ├── application-x-apple-diskimage.svg │ │ │ │ ├── application-x-applix-spreadsheet-inverted.svg │ │ │ │ ├── application-x-applix-spreadsheet.svg │ │ │ │ ├── application-x-applix-word-inverted.svg │ │ │ │ ├── application-x-applix-word.svg │ │ │ │ ├── application-x-ar-inverted.svg │ │ │ │ ├── application-x-ar.svg │ │ │ │ ├── application-x-arc-inverted.svg │ │ │ │ ├── application-x-arc.svg │ │ │ │ ├── application-x-archive-inverted.svg │ │ │ │ ├── application-x-archive.svg │ │ │ │ ├── application-x-arj-inverted.svg │ │ │ │ ├── application-x-arj.svg │ │ │ │ ├── application-x-awk-inverted.svg │ │ │ │ ├── application-x-awk.svg │ │ │ │ ├── application-x-bittorrent-inverted.svg │ │ │ │ ├── application-x-bittorrent.svg │ │ │ │ ├── application-x-blender-inverted.svg │ │ │ │ ├── application-x-blender.svg │ │ │ │ ├── application-x-bzdvi-inverted.svg │ │ │ │ ├── application-x-bzdvi.svg │ │ │ │ ├── application-x-bzip-compressed-tar-inverted.svg │ │ │ │ ├── application-x-bzip-compressed-tar.svg │ │ │ │ ├── application-x-bzip-inverted.svg │ │ │ │ ├── application-x-bzip.svg │ │ │ │ ├── application-x-cd-image-inverted.svg │ │ │ │ ├── application-x-cd-image.svg │ │ │ │ ├── application-x-cda-inverted.svg │ │ │ │ ├── application-x-cda.svg │ │ │ │ ├── application-x-chm-inverted.svg │ │ │ │ ├── application-x-chm.svg │ │ │ │ ├── application-x-compress-inverted.svg │ │ │ │ ├── application-x-compress.svg │ │ │ │ ├── application-x-compressed-tar-inverted.svg │ │ │ │ ├── application-x-compressed-tar.svg │ │ │ │ ├── application-x-cpio-inverted.svg │ │ │ │ ├── application-x-cpio.svg │ │ │ │ ├── application-x-cue-inverted.svg │ │ │ │ ├── application-x-cue.svg │ │ │ │ ├── application-x-deb-inverted.svg │ │ │ │ ├── application-x-deb.svg │ │ │ │ ├── application-x-designer-inverted.svg │ │ │ │ ├── application-x-designer.svg │ │ │ │ ├── application-x-desktop-inverted.svg │ │ │ │ ├── application-x-desktop.svg │ │ │ │ ├── application-x-egon-inverted.svg │ │ │ │ ├── application-x-egon.svg │ │ │ │ ├── application-x-executable-inverted.svg │ │ │ │ ├── application-x-executable-script-inverted.svg │ │ │ │ ├── application-x-executable-script.svg │ │ │ │ ├── application-x-executable.svg │ │ │ │ ├── application-x-flash-video-inverted.svg │ │ │ │ ├── application-x-flash-video.svg │ │ │ │ ├── application-x-font-afm-inverted.svg │ │ │ │ ├── application-x-font-afm.svg │ │ │ │ ├── application-x-font-bdf-inverted.svg │ │ │ │ ├── application-x-font-bdf.svg │ │ │ │ ├── application-x-font-otf-inverted.svg │ │ │ │ ├── application-x-font-otf.svg │ │ │ │ ├── application-x-font-pcf-inverted.svg │ │ │ │ ├── application-x-font-pcf.svg │ │ │ │ ├── application-x-font-snf-inverted.svg │ │ │ │ ├── application-x-font-snf.svg │ │ │ │ ├── application-x-font-ttf-inverted.svg │ │ │ │ ├── application-x-font-ttf.svg │ │ │ │ ├── application-x-font-type1-inverted.svg │ │ │ │ ├── application-x-font-type1.svg │ │ │ │ ├── application-x-gameboy-rom-inverted.svg │ │ │ │ ├── application-x-gameboy-rom.svg │ │ │ │ ├── application-x-gamecube-rom-inverted.svg │ │ │ │ ├── application-x-gamecube-rom.svg │ │ │ │ ├── application-x-gba-rom-inverted.svg │ │ │ │ ├── application-x-gba-rom.svg │ │ │ │ ├── application-x-gettext-translation-inverted.svg │ │ │ │ ├── application-x-gettext-translation.svg │ │ │ │ ├── application-x-gnumeric-inverted.svg │ │ │ │ ├── application-x-gnumeric.svg │ │ │ │ ├── application-x-gzdvi-inverted.svg │ │ │ │ ├── application-x-gzdvi.svg │ │ │ │ ├── application-x-gzip-inverted.svg │ │ │ │ ├── application-x-gzip.svg │ │ │ │ ├── application-x-gzpostscript-inverted.svg │ │ │ │ ├── application-x-gzpostscript.svg │ │ │ │ ├── application-x-iso-inverted.svg │ │ │ │ ├── application-x-iso.svg │ │ │ │ ├── application-x-it87-inverted.svg │ │ │ │ ├── application-x-it87.svg │ │ │ │ ├── application-x-jar-inverted.svg │ │ │ │ ├── application-x-jar.svg │ │ │ │ ├── application-x-java-applet-inverted.svg │ │ │ │ ├── application-x-java-applet.svg │ │ │ │ ├── application-x-java-archive-inverted.svg │ │ │ │ ├── application-x-java-archive.svg │ │ │ │ ├── application-x-java-inverted.svg │ │ │ │ ├── application-x-java.svg │ │ │ │ ├── application-x-javascript-inverted.svg │ │ │ │ ├── application-x-javascript.svg │ │ │ │ ├── application-x-k3b-inverted.svg │ │ │ │ ├── application-x-k3b.svg │ │ │ │ ├── application-x-kcsrc-inverted.svg │ │ │ │ ├── application-x-kcsrc.svg │ │ │ │ ├── application-x-kdenlivetitle-inverted.svg │ │ │ │ ├── application-x-kdenlivetitle.svg │ │ │ │ ├── application-x-kexi-connectiondata-inverted.svg │ │ │ │ ├── application-x-kexi-connectiondata.svg │ │ │ │ ├── application-x-kexiproject-shortcut-inverted.svg │ │ │ │ ├── application-x-kexiproject-shortcut.svg │ │ │ │ ├── application-x-kexiproject-sqlite-inverted.svg │ │ │ │ ├── application-x-kexiproject-sqlite.svg │ │ │ │ ├── application-x-kexiproject-sqlite2-inverted.svg │ │ │ │ ├── application-x-kexiproject-sqlite2.svg │ │ │ │ ├── application-x-kexiproject-sqlite3-inverted.svg │ │ │ │ ├── application-x-kexiproject-sqlite3.svg │ │ │ │ ├── application-x-kformula-inverted.svg │ │ │ │ ├── application-x-kformula.svg │ │ │ │ ├── application-x-kgetlist-inverted.svg │ │ │ │ ├── application-x-kgetlist.svg │ │ │ │ ├── application-x-kontour-inverted.svg │ │ │ │ ├── application-x-kontour.svg │ │ │ │ ├── application-x-kplato-inverted.svg │ │ │ │ ├── application-x-kplato.svg │ │ │ │ ├── application-x-krita-inverted.svg │ │ │ │ ├── application-x-krita.svg │ │ │ │ ├── application-x-kvtml-inverted.svg │ │ │ │ ├── application-x-kvtml.svg │ │ │ │ ├── application-x-kword-inverted.svg │ │ │ │ ├── application-x-kword.svg │ │ │ │ ├── application-x-lha-inverted.svg │ │ │ │ ├── application-x-lha.svg │ │ │ │ ├── application-x-lyx-inverted.svg │ │ │ │ ├── application-x-lyx.svg │ │ │ │ ├── application-x-lzma-compressed-tar-inverted.svg │ │ │ │ ├── application-x-lzma-compressed-tar.svg │ │ │ │ ├── application-x-lzop-inverted.svg │ │ │ │ ├── application-x-lzop.svg │ │ │ │ ├── application-x-m4-inverted.svg │ │ │ │ ├── application-x-m4.svg │ │ │ │ ├── application-x-macbinary-inverted.svg │ │ │ │ ├── application-x-macbinary.svg │ │ │ │ ├── application-x-marble-inverted.svg │ │ │ │ ├── application-x-marble.svg │ │ │ │ ├── application-x-mimearchive-inverted.svg │ │ │ │ ├── application-x-mimearchive.svg │ │ │ │ ├── application-x-mplayer2-inverted.svg │ │ │ │ ├── application-x-mplayer2.svg │ │ │ │ ├── application-x-ms-dos-executable-inverted.svg │ │ │ │ ├── application-x-ms-dos-executable.svg │ │ │ │ ├── application-x-ms-shortcut-inverted.svg │ │ │ │ ├── application-x-ms-shortcut.svg │ │ │ │ ├── application-x-mswinurl-inverted.svg │ │ │ │ ├── application-x-mswinurl.svg │ │ │ │ ├── application-x-mswrite-inverted.svg │ │ │ │ ├── application-x-mswrite.svg │ │ │ │ ├── application-x-n64-rom-inverted.svg │ │ │ │ ├── application-x-n64-rom.svg │ │ │ │ ├── application-x-nes-rom-inverted.svg │ │ │ │ ├── application-x-nes-rom.svg │ │ │ │ ├── application-x-nintendo-ds-rom-inverted.svg │ │ │ │ ├── application-x-nintendo-ds-rom.svg │ │ │ │ ├── application-x-nzb-inverted.svg │ │ │ │ ├── application-x-nzb.svg │ │ │ │ ├── application-x-object-inverted.svg │ │ │ │ ├── application-x-object.svg │ │ │ │ ├── application-x-pak-inverted.svg │ │ │ │ ├── application-x-pak.svg │ │ │ │ ├── application-x-partial-download-inverted.svg │ │ │ │ ├── application-x-partial-download.svg │ │ │ │ ├── application-x-pem-key-inverted.svg │ │ │ │ ├── application-x-pem-key.svg │ │ │ │ ├── application-x-perl-inverted.svg │ │ │ │ ├── application-x-perl.svg │ │ │ │ ├── application-x-php-inverted.svg │ │ │ │ ├── application-x-php.svg │ │ │ │ ├── application-x-pkcs12-inverted.svg │ │ │ │ ├── application-x-pkcs12.svg │ │ │ │ ├── application-x-pkcs7-certificates-inverted.svg │ │ │ │ ├── application-x-pkcs7-certificates.svg │ │ │ │ ├── application-x-plasma-inverted.svg │ │ │ │ ├── application-x-plasma.svg │ │ │ │ ├── application-x-python-bytecode-inverted.svg │ │ │ │ ├── application-x-python-bytecode.svg │ │ │ │ ├── application-x-qet-element-inverted.svg │ │ │ │ ├── application-x-qet-element.svg │ │ │ │ ├── application-x-qet-project-inverted.svg │ │ │ │ ├── application-x-qet-project.svg │ │ │ │ ├── application-x-quattropro-inverted.svg │ │ │ │ ├── application-x-quattropro.svg │ │ │ │ ├── application-x-rar-inverted.svg │ │ │ │ ├── application-x-rar.svg │ │ │ │ ├── application-x-raw-disk-image-inverted.svg │ │ │ │ ├── application-x-raw-disk-image.svg │ │ │ │ ├── application-x-rdata-inverted.svg │ │ │ │ ├── application-x-rdata.svg │ │ │ │ ├── application-x-rpm-inverted.svg │ │ │ │ ├── application-x-rpm.svg │ │ │ │ ├── application-x-ruby-inverted.svg │ │ │ │ ├── application-x-ruby.svg │ │ │ │ ├── application-x-sharedlib-inverted.svg │ │ │ │ ├── application-x-sharedlib.svg │ │ │ │ ├── application-x-shellscript-inverted.svg │ │ │ │ ├── application-x-shellscript.svg │ │ │ │ ├── application-x-shockwave-flash-inverted.svg │ │ │ │ ├── application-x-shockwave-flash.svg │ │ │ │ ├── application-x-siag-inverted.svg │ │ │ │ ├── application-x-siag.svg │ │ │ │ ├── application-x-sif-inverted.svg │ │ │ │ ├── application-x-sif.svg │ │ │ │ ├── application-x-skg-inverted.svg │ │ │ │ ├── application-x-skg.svg │ │ │ │ ├── application-x-skgc-inverted.svg │ │ │ │ ├── application-x-skgc.svg │ │ │ │ ├── application-x-smb-server-inverted.svg │ │ │ │ ├── application-x-smb-server.svg │ │ │ │ ├── application-x-smb-workgroup-inverted.svg │ │ │ │ ├── application-x-smb-workgroup.svg │ │ │ │ ├── application-x-source-rpm-inverted.svg │ │ │ │ ├── application-x-source-rpm.svg │ │ │ │ ├── application-x-sqlite2-inverted.svg │ │ │ │ ├── application-x-sqlite2.svg │ │ │ │ ├── application-x-sqlite3-inverted.svg │ │ │ │ ├── application-x-sqlite3.svg │ │ │ │ ├── application-x-srt-inverted.svg │ │ │ │ ├── application-x-srt.svg │ │ │ │ ├── application-x-srtrip-inverted.svg │ │ │ │ ├── application-x-srtrip.svg │ │ │ │ ├── application-x-subrip-inverted.svg │ │ │ │ ├── application-x-subrip.svg │ │ │ │ ├── application-x-tar-inverted.svg │ │ │ │ ├── application-x-tar.svg │ │ │ │ ├── application-x-tarz-inverted.svg │ │ │ │ ├── application-x-tarz.svg │ │ │ │ ├── application-x-tgif-inverted.svg │ │ │ │ ├── application-x-tgif.svg │ │ │ │ ├── application-x-theme-inverted.svg │ │ │ │ ├── application-x-theme.svg │ │ │ │ ├── application-x-trash-inverted.svg │ │ │ │ ├── application-x-trash.svg │ │ │ │ ├── application-x-troff-man-inverted.svg │ │ │ │ ├── application-x-troff-man.svg │ │ │ │ ├── application-x-tzo-inverted.svg │ │ │ │ ├── application-x-tzo.svg │ │ │ │ ├── application-x-wmf-inverted.svg │ │ │ │ ├── application-x-wmf.svg │ │ │ │ ├── application-x-x509-ca-cert-inverted.svg │ │ │ │ ├── application-x-x509-ca-cert.svg │ │ │ │ ├── application-x-x509-user-cert-inverted.svg │ │ │ │ ├── application-x-x509-user-cert.svg │ │ │ │ ├── application-x-xliff-inverted.svg │ │ │ │ ├── application-x-xliff.svg │ │ │ │ ├── application-x-xpinstall-inverted.svg │ │ │ │ ├── application-x-xpinstall.svg │ │ │ │ ├── application-x-xz-compressed-tar-inverted.svg │ │ │ │ ├── application-x-xz-compressed-tar.svg │ │ │ │ ├── application-x-xz-pkg-inverted.svg │ │ │ │ ├── application-x-xz-pkg.svg │ │ │ │ ├── application-x-zerosize-inverted.svg │ │ │ │ ├── application-x-zerosize.svg │ │ │ │ ├── application-x-zoo-inverted.svg │ │ │ │ ├── application-x-zoo.svg │ │ │ │ ├── application-xhtml+xml-inverted.svg │ │ │ │ ├── application-xhtml+xml.svg │ │ │ │ ├── application-xmind-inverted.svg │ │ │ │ ├── application-xmind.svg │ │ │ │ ├── application-xml-inverted.svg │ │ │ │ ├── application-xml.svg │ │ │ │ ├── application-xsd-inverted.svg │ │ │ │ ├── application-xsd.svg │ │ │ │ ├── application-xslt+xml-inverted.svg │ │ │ │ ├── application-xslt+xml.svg │ │ │ │ ├── application-zip-inverted.svg │ │ │ │ ├── application-zip.svg │ │ │ │ ├── audio-ac3-inverted.svg │ │ │ │ ├── audio-ac3.svg │ │ │ │ ├── audio-flac-inverted.svg │ │ │ │ ├── audio-flac.svg │ │ │ │ ├── audio-midi-inverted.svg │ │ │ │ ├── audio-midi.svg │ │ │ │ ├── audio-mp2-inverted.svg │ │ │ │ ├── audio-mp2.svg │ │ │ │ ├── audio-mp3-inverted.svg │ │ │ │ ├── audio-mp3.svg │ │ │ │ ├── audio-mp4-inverted.svg │ │ │ │ ├── audio-mp4.svg │ │ │ │ ├── audio-prs.sid-inverted.svg │ │ │ │ ├── audio-prs.sid.svg │ │ │ │ ├── audio-vn.rn-realmedia-inverted.svg │ │ │ │ ├── audio-vn.rn-realmedia.svg │ │ │ │ ├── audio-vnd.rn-realvideo-inverted.svg │ │ │ │ ├── audio-vnd.rn-realvideo.svg │ │ │ │ ├── audio-x-adpcm-inverted.svg │ │ │ │ ├── audio-x-adpcm.svg │ │ │ │ ├── audio-x-aiff-inverted.svg │ │ │ │ ├── audio-x-aiff.svg │ │ │ │ ├── audio-x-flac+ogg-inverted.svg │ │ │ │ ├── audio-x-flac+ogg.svg │ │ │ │ ├── audio-x-flac-inverted.svg │ │ │ │ ├── audio-x-flac.svg │ │ │ │ ├── audio-x-generic-inverted.svg │ │ │ │ ├── audio-x-generic.svg │ │ │ │ ├── audio-x-monkey-inverted.svg │ │ │ │ ├── audio-x-monkey.svg │ │ │ │ ├── audio-x-mp2-inverted.svg │ │ │ │ ├── audio-x-mp2.svg │ │ │ │ ├── audio-x-mpeg-inverted.svg │ │ │ │ ├── audio-x-mpeg.svg │ │ │ │ ├── audio-x-speex+ogg-inverted.svg │ │ │ │ ├── audio-x-speex+ogg.svg │ │ │ │ ├── audio-x-wav-inverted.svg │ │ │ │ ├── audio-x-wav.svg │ │ │ │ ├── audiobook-inverted.svg │ │ │ │ ├── audiobook.svg │ │ │ │ ├── encrypted-inverted.svg │ │ │ │ ├── encrypted.svg │ │ │ │ ├── font-ttf-inverted.svg │ │ │ │ ├── font-ttf.svg │ │ │ │ ├── fonts-package-inverted.svg │ │ │ │ ├── fonts-package.svg │ │ │ │ ├── image-bmp-inverted.svg │ │ │ │ ├── image-bmp.svg │ │ │ │ ├── image-gif-inverted.svg │ │ │ │ ├── image-gif.svg │ │ │ │ ├── image-ico-inverted.svg │ │ │ │ ├── image-ico.svg │ │ │ │ ├── image-jpeg-inverted.svg │ │ │ │ ├── image-jpeg.svg │ │ │ │ ├── image-jpeg2000-inverted.svg │ │ │ │ ├── image-jpeg2000.svg │ │ │ │ ├── image-png-inverted.svg │ │ │ │ ├── image-png.svg │ │ │ │ ├── image-svg+xml-compressed-inverted.svg │ │ │ │ ├── image-svg+xml-compressed.svg │ │ │ │ ├── image-svg+xml-inverted.svg │ │ │ │ ├── image-svg+xml.svg │ │ │ │ ├── image-tiff-inverted.svg │ │ │ │ ├── image-tiff.svg │ │ │ │ ├── image-vnd.dgn-inverted.svg │ │ │ │ ├── image-vnd.dgn.svg │ │ │ │ ├── image-vnd.djvu-inverted.svg │ │ │ │ ├── image-vnd.djvu.svg │ │ │ │ ├── image-vnd.dwg-inverted.svg │ │ │ │ ├── image-vnd.dwg.svg │ │ │ │ ├── image-vnd.microsoft.icon-inverted.svg │ │ │ │ ├── image-vnd.microsoft.icon.svg │ │ │ │ ├── image-x-adobe-dng-inverted.svg │ │ │ │ ├── image-x-adobe-dng.svg │ │ │ │ ├── image-x-compressed-xcf-inverted.svg │ │ │ │ ├── image-x-compressed-xcf.svg │ │ │ │ ├── image-x-emf-inverted.svg │ │ │ │ ├── image-x-emf.svg │ │ │ │ ├── image-x-eps-inverted.svg │ │ │ │ ├── image-x-eps.svg │ │ │ │ ├── image-x-generic-inverted.svg │ │ │ │ ├── image-x-generic.svg │ │ │ │ ├── image-x-ico-inverted.svg │ │ │ │ ├── image-x-ico.svg │ │ │ │ ├── image-x-icon-inverted.svg │ │ │ │ ├── image-x-icon.svg │ │ │ │ ├── image-x-krita-inverted.svg │ │ │ │ ├── image-x-krita.svg │ │ │ │ ├── image-x-portable-bitmap-inverted.svg │ │ │ │ ├── image-x-portable-bitmap.svg │ │ │ │ ├── image-x-psd-inverted.svg │ │ │ │ ├── image-x-psd.svg │ │ │ │ ├── image-x-psdimage-x-psd-inverted.svg │ │ │ │ ├── image-x-psdimage-x-psd.svg │ │ │ │ ├── image-x-svg+xml-inverted.svg │ │ │ │ ├── image-x-svg+xml.svg │ │ │ │ ├── image-x-tga-inverted.svg │ │ │ │ ├── image-x-tga.svg │ │ │ │ ├── image-x-vnd.trolltech.qpicture-inverted.svg │ │ │ │ ├── image-x-vnd.trolltech.qpicture.svg │ │ │ │ ├── image-x-win-bitmap-inverted.svg │ │ │ │ ├── image-x-win-bitmap.svg │ │ │ │ ├── image-x-win-bmp-inverted.svg │ │ │ │ ├── image-x-win-bmp.svg │ │ │ │ ├── image-x-wmf-inverted.svg │ │ │ │ ├── image-x-wmf.svg │ │ │ │ ├── image-x-xcf-inverted.svg │ │ │ │ ├── image-x-xcf.svg │ │ │ │ ├── image-x-xfig-inverted.svg │ │ │ │ ├── image-x-xfig.svg │ │ │ │ ├── inode-directory-inverted.svg │ │ │ │ ├── inode-directory.svg │ │ │ │ ├── libreoffice-database-inverted.svg │ │ │ │ ├── libreoffice-database.svg │ │ │ │ ├── libreoffice-drawing-inverted.svg │ │ │ │ ├── libreoffice-drawing-template-inverted.svg │ │ │ │ ├── libreoffice-drawing-template.svg │ │ │ │ ├── libreoffice-drawing.svg │ │ │ │ ├── libreoffice-extension-inverted.svg │ │ │ │ ├── libreoffice-extension.svg │ │ │ │ ├── libreoffice-formula-inverted.svg │ │ │ │ ├── libreoffice-formula.svg │ │ │ │ ├── libreoffice-master-document-inverted.svg │ │ │ │ ├── libreoffice-master-document.svg │ │ │ │ ├── libreoffice-oasis-database-inverted.svg │ │ │ │ ├── libreoffice-oasis-database.svg │ │ │ │ ├── libreoffice-oasis-drawing-inverted.svg │ │ │ │ ├── libreoffice-oasis-drawing-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-drawing-template.svg │ │ │ │ ├── libreoffice-oasis-drawing.svg │ │ │ │ ├── libreoffice-oasis-formula-inverted.svg │ │ │ │ ├── libreoffice-oasis-formula.svg │ │ │ │ ├── libreoffice-oasis-master-document-inverted.svg │ │ │ │ ├── libreoffice-oasis-master-document.svg │ │ │ │ ├── libreoffice-oasis-presentation-inverted.svg │ │ │ │ ├── libreoffice-oasis-presentation-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-presentation-template.svg │ │ │ │ ├── libreoffice-oasis-presentation.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-inverted.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet-template.svg │ │ │ │ ├── libreoffice-oasis-spreadsheet.svg │ │ │ │ ├── libreoffice-oasis-text-inverted.svg │ │ │ │ ├── libreoffice-oasis-text-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-text-template.svg │ │ │ │ ├── libreoffice-oasis-text.svg │ │ │ │ ├── libreoffice-oasis-web-template-inverted.svg │ │ │ │ ├── libreoffice-oasis-web-template.svg │ │ │ │ ├── libreoffice-presentation-inverted.svg │ │ │ │ ├── libreoffice-presentation-template-inverted.svg │ │ │ │ ├── libreoffice-presentation-template.svg │ │ │ │ ├── libreoffice-presentation.svg │ │ │ │ ├── libreoffice-spreadsheet-inverted.svg │ │ │ │ ├── libreoffice-spreadsheet-template-inverted.svg │ │ │ │ ├── libreoffice-spreadsheet-template.svg │ │ │ │ ├── libreoffice-spreadsheet.svg │ │ │ │ ├── libreoffice-text-inverted.svg │ │ │ │ ├── libreoffice-text-template-inverted.svg │ │ │ │ ├── libreoffice-text-template.svg │ │ │ │ ├── libreoffice-text.svg │ │ │ │ ├── message-inverted.svg │ │ │ │ ├── message-news-inverted.svg │ │ │ │ ├── message-news.svg │ │ │ │ ├── message-partial-inverted.svg │ │ │ │ ├── message-partial.svg │ │ │ │ ├── message-rfc822-inverted.svg │ │ │ │ ├── message-rfc822.svg │ │ │ │ ├── message-x-gnu-rmail-inverted.svg │ │ │ │ ├── message-x-gnu-rmail.svg │ │ │ │ ├── message.svg │ │ │ │ ├── none-inverted.svg │ │ │ │ ├── none.svg │ │ │ │ ├── odf-inverted.svg │ │ │ │ ├── odf.svg │ │ │ │ ├── package-x-generic-inverted.svg │ │ │ │ ├── package-x-generic.svg │ │ │ │ ├── podcast-inverted.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── pplication-vnd.openxmlformats-officedocument.spreadsheetml.sheet-inverted.svg │ │ │ │ ├── pplication-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ │ │ ├── text-calendar-inverted.svg │ │ │ │ ├── text-calendar.svg │ │ │ │ ├── text-csharp-inverted.svg │ │ │ │ ├── text-csharp.svg │ │ │ │ ├── text-css-inverted.svg │ │ │ │ ├── text-css.svg │ │ │ │ ├── text-csv-inverted.svg │ │ │ │ ├── text-csv.svg │ │ │ │ ├── text-directory-inverted.svg │ │ │ │ ├── text-directory.svg │ │ │ │ ├── text-dockerfile-inverted.svg │ │ │ │ ├── text-dockerfile.svg │ │ │ │ ├── text-enriched-inverted.svg │ │ │ │ ├── text-enriched.svg │ │ │ │ ├── text-html-inverted.svg │ │ │ │ ├── text-html.svg │ │ │ │ ├── text-markdown-inverted.svg │ │ │ │ ├── text-markdown.svg │ │ │ │ ├── text-mathml-inverted.svg │ │ │ │ ├── text-mathml.svg │ │ │ │ ├── text-plain-inverted.svg │ │ │ │ ├── text-plain.svg │ │ │ │ ├── text-rdf+xml-inverted.svg │ │ │ │ ├── text-rdf+xml.svg │ │ │ │ ├── text-rdf-inverted.svg │ │ │ │ ├── text-rdf.svg │ │ │ │ ├── text-rtf-inverted.svg │ │ │ │ ├── text-rtf.svg │ │ │ │ ├── text-rust-inverted.svg │ │ │ │ ├── text-rust.svg │ │ │ │ ├── text-sgml-inverted.svg │ │ │ │ ├── text-sgml.svg │ │ │ │ ├── text-troff-inverted.svg │ │ │ │ ├── text-troff.svg │ │ │ │ ├── text-vcalendar-inverted.svg │ │ │ │ ├── text-vcalendar.svg │ │ │ │ ├── text-vnd.abc-inverted.svg │ │ │ │ ├── text-vnd.abc.svg │ │ │ │ ├── text-vnd.trolltech.linguist-inverted.svg │ │ │ │ ├── text-vnd.trolltech.linguist.svg │ │ │ │ ├── text-vnd.wap.wml-inverted.svg │ │ │ │ ├── text-vnd.wap.wml.svg │ │ │ │ ├── text-wiki-inverted.svg │ │ │ │ ├── text-wiki.svg │ │ │ │ ├── text-x-adasrc-inverted.svg │ │ │ │ ├── text-x-adasrc.svg │ │ │ │ ├── text-x-apport-inverted.svg │ │ │ │ ├── text-x-apport.svg │ │ │ │ ├── text-x-authors-inverted.svg │ │ │ │ ├── text-x-authors.svg │ │ │ │ ├── text-x-bibtex-inverted.svg │ │ │ │ ├── text-x-bibtex.svg │ │ │ │ ├── text-x-c++hdr-inverted.svg │ │ │ │ ├── text-x-c++hdr.svg │ │ │ │ ├── text-x-c++src-inverted.svg │ │ │ │ ├── text-x-c++src.svg │ │ │ │ ├── text-x-changelog-inverted.svg │ │ │ │ ├── text-x-changelog.svg │ │ │ │ ├── text-x-chdr-inverted.svg │ │ │ │ ├── text-x-chdr.svg │ │ │ │ ├── text-x-cmake-inverted.svg │ │ │ │ ├── text-x-cmake.svg │ │ │ │ ├── text-x-copying-inverted.svg │ │ │ │ ├── text-x-copying.svg │ │ │ │ ├── text-x-credits-inverted.svg │ │ │ │ ├── text-x-credits.svg │ │ │ │ ├── text-x-csharp-inverted.svg │ │ │ │ ├── text-x-csharp.svg │ │ │ │ ├── text-x-csrc-inverted.svg │ │ │ │ ├── text-x-csrc.svg │ │ │ │ ├── text-x-dtd-inverted.svg │ │ │ │ ├── text-x-dtd.svg │ │ │ │ ├── text-x-generic-inverted.svg │ │ │ │ ├── text-x-generic.svapplication-x-awk-inverted.svg │ │ │ │ ├── text-x-generic.svapplication-x-awk.svg │ │ │ │ ├── text-x-generic.svg │ │ │ │ ├── text-x-gettext-translation-inverted.svg │ │ │ │ ├── text-x-gettext-translation.svg │ │ │ │ ├── text-x-go-inverted.svg │ │ │ │ ├── text-x-go.svg │ │ │ │ ├── text-x-haskell-inverted.svg │ │ │ │ ├── text-x-haskell.svg │ │ │ │ ├── text-x-hex-inverted.svg │ │ │ │ ├── text-x-hex.svg │ │ │ │ ├── text-x-install-inverted.svg │ │ │ │ ├── text-x-install.svg │ │ │ │ ├── text-x-java-inverted.svg │ │ │ │ ├── text-x-java-source-inverted.svg │ │ │ │ ├── text-x-java-source.svg │ │ │ │ ├── text-x-java.svg │ │ │ │ ├── text-x-javascript-inverted.svg │ │ │ │ ├── text-x-javascript.svg │ │ │ │ ├── text-x-katefilelist-inverted.svg │ │ │ │ ├── text-x-katefilelist.svg │ │ │ │ ├── text-x-ldif-inverted.svg │ │ │ │ ├── text-x-ldif.svg │ │ │ │ ├── text-x-lilypond-inverted.svg │ │ │ │ ├── text-x-lilypond.svg │ │ │ │ ├── text-x-log-inverted.svg │ │ │ │ ├── text-x-log.svg │ │ │ │ ├── text-x-lua-inverted.svg │ │ │ │ ├── text-x-lua.svg │ │ │ │ ├── text-x-makefile-inverted.svg │ │ │ │ ├── text-x-makefile.svg │ │ │ │ ├── text-x-markdown-inverted.svg │ │ │ │ ├── text-x-markdown.svg │ │ │ │ ├── text-x-nfo-inverted.svg │ │ │ │ ├── text-x-nfo.svg │ │ │ │ ├── text-x-objchdr-inverted.svg │ │ │ │ ├── text-x-objchdr.svg │ │ │ │ ├── text-x-objcsrc-inverted.svg │ │ │ │ ├── text-x-objcsrc.svg │ │ │ │ ├── text-x-opml+xml-inverted.svg │ │ │ │ ├── text-x-opml+xml.svg │ │ │ │ ├── text-x-opml-inverted.svg │ │ │ │ ├── text-x-opml.svg │ │ │ │ ├── text-x-pascal-inverted.svg │ │ │ │ ├── text-x-pascal.svg │ │ │ │ ├── text-x-patch-inverted.svg │ │ │ │ ├── text-x-patch.svg │ │ │ │ ├── text-x-plain-inverted.svg │ │ │ │ ├── text-x-plain.svg │ │ │ │ ├── text-x-po-inverted.svg │ │ │ │ ├── text-x-po.svg │ │ │ │ ├── text-x-python-inverted.svg │ │ │ │ ├── text-x-python.svg │ │ │ │ ├── text-x-qml-inverted.svg │ │ │ │ ├── text-x-qml.svg │ │ │ │ ├── text-x-r-inverted.svg │ │ │ │ ├── text-x-r.svg │ │ │ │ ├── text-x-readme-inverted.svg │ │ │ │ ├── text-x-readme.svg │ │ │ │ ├── text-x-rpm-spec-inverted.svg │ │ │ │ ├── text-x-rpm-spec.svg │ │ │ │ ├── text-x-rust-inverted.svg │ │ │ │ ├── text-x-rust.svg │ │ │ │ ├── text-x-sass-inverted.svg │ │ │ │ ├── text-x-sass.svg │ │ │ │ ├── text-x-scala-inverted.svg │ │ │ │ ├── text-x-scala.svg │ │ │ │ ├── text-x-script-inverted.svg │ │ │ │ ├── text-x-script.svg │ │ │ │ ├── text-x-scss-inverted.svg │ │ │ │ ├── text-x-scss.svg │ │ │ │ ├── text-x-sql-inverted.svg │ │ │ │ ├── text-x-sql.svg │ │ │ │ ├── text-x-tcl-inverted.svg │ │ │ │ ├── text-x-tcl.svg │ │ │ │ ├── text-x-tex-inverted.svg │ │ │ │ ├── text-x-tex.svg │ │ │ │ ├── text-x-texinfo-inverted.svg │ │ │ │ ├── text-x-texinfo.svg │ │ │ │ ├── text-x-vcard-inverted.svg │ │ │ │ ├── text-x-vcard.svg │ │ │ │ ├── text-x-xslfo-inverted.svg │ │ │ │ ├── text-x-xslfo.svg │ │ │ │ ├── text-xmcd-inverted.svg │ │ │ │ ├── text-xmcd.svg │ │ │ │ ├── text-xml-inverted.svg │ │ │ │ ├── text-xml.svg │ │ │ │ ├── unknown-inverted.svg │ │ │ │ ├── unknown.svg │ │ │ │ ├── uri-mms-inverted.svg │ │ │ │ ├── uri-mms.svg │ │ │ │ ├── uri-mmst-inverted.svg │ │ │ │ ├── uri-mmst.svg │ │ │ │ ├── uri-pnm-inverted.svg │ │ │ │ ├── uri-pnm.svg │ │ │ │ ├── uri-rtspt-inverted.svg │ │ │ │ ├── uri-rtspt.svg │ │ │ │ ├── uri-rtspu-inverted.svg │ │ │ │ ├── uri-rtspu.svg │ │ │ │ ├── video-mlt-playlist-inverted.svg │ │ │ │ ├── video-mlt-playlist.svg │ │ │ │ ├── video-mp2t-inverted.svg │ │ │ │ ├── video-mp2t.svg │ │ │ │ ├── video-mp4-inverted.svg │ │ │ │ ├── video-mp4.svg │ │ │ │ ├── video-vivo-inverted.svg │ │ │ │ ├── video-vivo.svg │ │ │ │ ├── video-vnd.rn-realvideo-inverted.svg │ │ │ │ ├── video-vnd.rn-realvideo.svg │ │ │ │ ├── video-wavelet-inverted.svg │ │ │ │ ├── video-wavelet.svg │ │ │ │ ├── video-webm-inverted.svg │ │ │ │ ├── video-webm.svg │ │ │ │ ├── video-x-anim-inverted.svg │ │ │ │ ├── video-x-anim.svg │ │ │ │ ├── video-x-flic-inverted.svg │ │ │ │ ├── video-x-flic.svg │ │ │ │ ├── video-x-flv-inverted.svg │ │ │ │ ├── video-x-flv.svg │ │ │ │ ├── video-x-generic-inverted.svg │ │ │ │ ├── video-x-generic.svg │ │ │ │ ├── video-x-google-vlc-plugin-inverted.svg │ │ │ │ ├── video-x-google-vlc-plugin.svg │ │ │ │ ├── video-x-javafx-inverted.svg │ │ │ │ ├── video-x-javafx.svg │ │ │ │ ├── video-x-matroska-inverted.svg │ │ │ │ ├── video-x-matroska.svg │ │ │ │ ├── video-x-mng-inverted.svg │ │ │ │ ├── video-x-mng.svg │ │ │ │ ├── video-x-ms-wmp-inverted.svg │ │ │ │ ├── video-x-ms-wmp.svg │ │ │ │ ├── video-x-ms-wmv-inverted.svg │ │ │ │ ├── video-x-ms-wmv.svg │ │ │ │ ├── video-x-msvideo-inverted.svg │ │ │ │ ├── video-x-msvideo.svg │ │ │ │ ├── video-x-ogm+ogg-inverted.svg │ │ │ │ ├── video-x-ogm+ogg.svg │ │ │ │ ├── video-x-theora+ogg-inverted.svg │ │ │ │ ├── video-x-theora+ogg.svg │ │ │ │ ├── video-x-wmv-inverted.svg │ │ │ │ ├── video-x-wmv.svg │ │ │ │ ├── viewbib-inverted.svg │ │ │ │ ├── viewbib.svg │ │ │ │ ├── viewdvi-inverted.svg │ │ │ │ ├── viewdvi.svg │ │ │ │ ├── viewhtml-inverted.svg │ │ │ │ ├── viewhtml.svg │ │ │ │ ├── viewpdf-inverted.svg │ │ │ │ ├── viewpdf.svg │ │ │ │ ├── viewps-inverted.svg │ │ │ │ ├── viewps.svg │ │ │ │ ├── virtualbox-hdd-inverted.svg │ │ │ │ ├── virtualbox-hdd.svg │ │ │ │ ├── virtualbox-ova-inverted.svg │ │ │ │ ├── virtualbox-ova.svg │ │ │ │ ├── virtualbox-ovf-inverted.svg │ │ │ │ ├── virtualbox-ovf.svg │ │ │ │ ├── virtualbox-vbox-extpack-inverted.svg │ │ │ │ ├── virtualbox-vbox-extpack.svg │ │ │ │ ├── virtualbox-vbox-inverted.svg │ │ │ │ ├── virtualbox-vbox.svg │ │ │ │ ├── virtualbox-vdi-inverted.svg │ │ │ │ ├── virtualbox-vdi.svg │ │ │ │ ├── virtualbox-vhd-inverted.svg │ │ │ │ ├── virtualbox-vhd.svg │ │ │ │ ├── virtualbox-vmdk-inverted.svg │ │ │ │ ├── virtualbox-vmdk.svg │ │ │ │ ├── vnd.ms-publisher-inverted.svg │ │ │ │ ├── vnd.ms-publisher.svg │ │ │ │ ├── x-kde-nsplugin-generated-inverted.svg │ │ │ │ ├── x-kde-nsplugin-generated.svg │ │ │ │ ├── x-mail-distribution-list-inverted.svg │ │ │ │ ├── x-mail-distribution-list.svg │ │ │ │ ├── x-media-podcast-inverted.svg │ │ │ │ ├── x-media-podcast.svg │ │ │ │ ├── x-office-address-book-inverted.svg │ │ │ │ ├── x-office-address-book.svg │ │ │ │ ├── x-office-calendar-inverted.svg │ │ │ │ ├── x-office-calendar.svg │ │ │ │ ├── x-office-contact-inverted.svg │ │ │ │ ├── x-office-contact.svg │ │ │ │ ├── x-office-document-inverted.svg │ │ │ │ ├── x-office-document.svg │ │ │ │ ├── x-office-drawing-inverted.svg │ │ │ │ ├── x-office-drawing.svg │ │ │ │ ├── x-office-presentation-inverted.svg │ │ │ │ ├── x-office-presentation.svg │ │ │ │ ├── x-office-spreadsheet-inverted.svg │ │ │ │ └── x-office-spreadsheet.svg │ │ │ ├── 16@2x │ │ │ ├── 22@2x │ │ │ ├── 32@2x │ │ │ └── 64@2x │ │ └── places │ │ │ ├── 16 │ │ │ ├── folder-inverted.svg │ │ │ ├── folder.svg │ │ │ ├── mail-folder-inbox-inverted.svg │ │ │ ├── mail-folder-inbox.svg │ │ │ ├── mail-folder-outbox-inverted.svg │ │ │ ├── mail-folder-outbox.svg │ │ │ ├── mail-message-inverted.svg │ │ │ └── mail-message.svg │ │ │ ├── 22 │ │ │ ├── folder-inverted.svg │ │ │ ├── folder.svg │ │ │ ├── mail-folder-inbox-inverted.svg │ │ │ ├── mail-folder-inbox.svg │ │ │ ├── mail-folder-outbox-inverted.svg │ │ │ ├── mail-folder-outbox.svg │ │ │ ├── mail-message-inverted.svg │ │ │ └── mail-message.svg │ │ │ ├── 32 │ │ │ ├── folder-inverted.svg │ │ │ └── folder.svg │ │ │ ├── 64 │ │ │ ├── folder-inverted.svg │ │ │ └── folder.svg │ │ │ ├── 16@2x │ │ │ ├── 22@2x │ │ │ ├── 32@2x │ │ │ └── 64@2x │ └── qrcAlias.cpp ├── copybreeze.sh ├── sc-apps-kube_icon.svg ├── sc-apps-kube_logo.svg └── sc-apps-kube_symbol.svg ├── kube_version.h.in ├── mkdocs.yml ├── poqm ├── ar │ └── kube_qt.po ├── ca │ └── kube_qt.po ├── ca@valencia │ └── kube_qt.po ├── cs │ └── kube_qt.po ├── de │ └── kube_qt.po ├── en │ └── kube_qt.po ├── en_GB │ └── kube_qt.po ├── eo │ └── kube_qt.po ├── es │ └── kube_qt.po ├── et │ └── kube_qt.po ├── eu │ └── kube_qt.po ├── fi │ └── kube_qt.po ├── fr │ └── kube_qt.po ├── gl │ └── kube_qt.po ├── he │ └── kube_qt.po ├── it │ └── kube_qt.po ├── ja │ └── kube_qt.po ├── ka │ └── kube_qt.po ├── ko │ └── kube_qt.po ├── lt │ └── kube_qt.po ├── nl │ └── kube_qt.po ├── nn │ └── kube_qt.po ├── pl │ └── kube_qt.po ├── pt │ └── kube_qt.po ├── pt_BR │ └── kube_qt.po ├── ru │ └── kube_qt.po ├── sk │ └── kube_qt.po ├── sl │ └── kube_qt.po ├── sv │ └── kube_qt.po ├── tr │ └── kube_qt.po ├── uk │ └── kube_qt.po ├── zh_CN │ └── kube_qt.po └── zh_TW │ └── kube_qt.po ├── tests ├── CMakeLists.txt ├── kubetestrunner.cpp ├── qml │ └── ViewTestCase.qml ├── qmldir ├── runinnamespace.sh ├── testplugin.cpp ├── teststore.cpp └── teststore.h └── views ├── CMakeLists.txt ├── accounts ├── metadata.json ├── qml │ └── View.qml └── tests │ └── tst_accountsview.qml ├── calendar ├── main.qml ├── metadata.json ├── qml │ ├── AttendeeListEditor.qml │ ├── DateRangeChooser.qml │ ├── DateSelector.qml │ ├── DateTimeChooser.qml │ ├── DateView.qml │ ├── DayLabels.qml │ ├── EventEditor.qml │ ├── EventView.qml │ ├── MonthView.qml │ ├── MultiDayView.qml │ ├── TimeSelector.qml │ ├── View.qml │ ├── WeekView.qml │ └── dateutils.js └── tests │ ├── tst_calendar.qml │ └── tst_eventeditor.qml ├── composer ├── main.qml ├── metadata.json ├── qml │ ├── AddresseeListEditor.qml │ ├── EditorPage.qml │ └── View.qml └── tests │ └── tst_composerview.qml ├── conversation ├── main.qml ├── metadata.json ├── qml │ └── View.qml └── tests │ └── tst_conversationview.qml ├── inbound ├── main.qml ├── metadata.json ├── qml │ ├── EventView.qml │ ├── View.qml │ └── dateutils.js └── tests │ └── tst_inboundview.qml ├── inboxcrusher ├── main.qml ├── metadata.json ├── qml │ └── View.qml └── tests │ └── tst_inboxcrusher.qml ├── log ├── main.qml ├── metadata.json ├── qml │ └── View.qml └── tests │ └── tst_logview.qml ├── people ├── main.qml ├── metadata.json ├── qml │ ├── MailListEditor.qml │ ├── People.qml │ ├── PersonComposer.qml │ ├── PersonPage.qml │ ├── PhoneListEditor.qml │ └── View.qml └── tests │ └── tst_peopleview.qml ├── search ├── main.qml ├── metadata.json ├── qml │ ├── View.qml │ └── View_new.qml └── tests │ └── tst_searchview.qml └── todo ├── main.qml ├── metadata.json ├── qml ├── TodoEditor.qml └── View.qml └── tests └── tst_todo.qml /.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/.arcconfig -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.kde-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/.kde-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/install-gpg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/.travis/install-gpg.sh -------------------------------------------------------------------------------- /.travis/install-kde.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/.travis/install-kde.sh -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/Messages.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/README.md -------------------------------------------------------------------------------- /accounts/fastmail/qmldir: -------------------------------------------------------------------------------- 1 | module org.kube.accounts.fastmail 2 | -------------------------------------------------------------------------------- /accounts/gmail/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/accounts/gmail/qmldir -------------------------------------------------------------------------------- /accounts/imap/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/accounts/imap/qmldir -------------------------------------------------------------------------------- /applications/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(kube) 2 | -------------------------------------------------------------------------------- /components/kube/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/components/kube/qmldir -------------------------------------------------------------------------------- /dist/flatpak/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/dist/flatpak/README -------------------------------------------------------------------------------- /dist/flatpak/qt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/dist/flatpak/qt.json -------------------------------------------------------------------------------- /dist/kube.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/dist/kube.spec -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docker/Makefile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docker/bashrc -------------------------------------------------------------------------------- /docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docker/build.sh -------------------------------------------------------------------------------- /docker/enableDebug.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | export QT_LOGGING_RULES="*.debug=true" 3 | -------------------------------------------------------------------------------- /docker/gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docker/gdbinit -------------------------------------------------------------------------------- /docker/generate-key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docker/generate-key.sh -------------------------------------------------------------------------------- /docker/gpg-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docker/gpg-agent.conf -------------------------------------------------------------------------------- /docker/gpg.conf: -------------------------------------------------------------------------------- 1 | utf8-strings 2 | keyserver hkp://pgp.mit.edu 3 | debug-level basic 4 | -------------------------------------------------------------------------------- /docker/imapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docker/imapd.conf -------------------------------------------------------------------------------- /docker/keyconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docker/keyconfig -------------------------------------------------------------------------------- /docker/kubeunlocked.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docker/kubeunlocked.sh -------------------------------------------------------------------------------- /docker/private-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docker/private-key -------------------------------------------------------------------------------- /docker/public-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docker/public-key -------------------------------------------------------------------------------- /docker/rsyslog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docker/rsyslog.conf -------------------------------------------------------------------------------- /docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docker/run.sh -------------------------------------------------------------------------------- /docker/startimap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docker/startimap.sh -------------------------------------------------------------------------------- /docker/view.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | qmlscene /src/kube/views/$1/main.qml 4 | -------------------------------------------------------------------------------- /docs/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docs/design.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docs/project.md -------------------------------------------------------------------------------- /docs/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docs/requirements.md -------------------------------------------------------------------------------- /docs/usecases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/docs/usecases.md -------------------------------------------------------------------------------- /extensions/api/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/extensions/api/qmldir -------------------------------------------------------------------------------- /framework/qml/Font.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/framework/qml/Font.qml -------------------------------------------------------------------------------- /framework/qml/Icon.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/framework/qml/Icon.qml -------------------------------------------------------------------------------- /framework/qml/View.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/framework/qml/View.qml -------------------------------------------------------------------------------- /framework/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/framework/qmldir -------------------------------------------------------------------------------- /framework/src/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/framework/src/async.h -------------------------------------------------------------------------------- /framework/src/domain/mime/tests/gnupg_home/.gpg-v21-migrated: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/src/fabric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/framework/src/fabric.h -------------------------------------------------------------------------------- /framework/src/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/framework/src/file.cpp -------------------------------------------------------------------------------- /framework/src/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/framework/src/file.h -------------------------------------------------------------------------------- /icons/.gitignore: -------------------------------------------------------------------------------- 1 | upstreamBreeze 2 | -------------------------------------------------------------------------------- /icons/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/icons/CMakeLists.txt -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/checkbox-inverted.svg: -------------------------------------------------------------------------------- 1 | dialog-ok-apply-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/checkbox.svg: -------------------------------------------------------------------------------- 1 | dialog-ok-apply.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/dialog-ok-inverted.svg: -------------------------------------------------------------------------------- 1 | dialog-ok-apply-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/dialog-ok.svg: -------------------------------------------------------------------------------- 1 | dialog-ok-apply.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/document-encrypt.svg: -------------------------------------------------------------------------------- 1 | document-encrypted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/document-sign-inverted.svg: -------------------------------------------------------------------------------- 1 | document-edit-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/document-sign.svg: -------------------------------------------------------------------------------- 1 | document-edit.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/documentinfo-inverted.svg: -------------------------------------------------------------------------------- 1 | help-about-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/documentinfo.svg: -------------------------------------------------------------------------------- 1 | help-about.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/error-inverted.svg: -------------------------------------------------------------------------------- 1 | dialog-cancel-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/error.svg: -------------------------------------------------------------------------------- 1 | dialog-cancel.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/group-inverted.svg: -------------------------------------------------------------------------------- 1 | user-group-new-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/group.svg: -------------------------------------------------------------------------------- 1 | user-group-new.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/kdocumentinfo-inverted.svg: -------------------------------------------------------------------------------- 1 | help-about-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/kdocumentinfo.svg: -------------------------------------------------------------------------------- 1 | help-about.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/mail-message-inverted.svg: -------------------------------------------------------------------------------- 1 | mail-mark-unread-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/mail-message.svg: -------------------------------------------------------------------------------- 1 | mail-mark-unread.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/mail-task-inverted.svg: -------------------------------------------------------------------------------- 1 | mail-mark-task-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/mail-task.svg: -------------------------------------------------------------------------------- 1 | mail-mark-task.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/password-show-off-inverted.svg: -------------------------------------------------------------------------------- 1 | hint-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/password-show-off.svg: -------------------------------------------------------------------------------- 1 | hint.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/password-show-on-inverted.svg: -------------------------------------------------------------------------------- 1 | visibility-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16/password-show-on.svg: -------------------------------------------------------------------------------- 1 | visibility.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/16@2x: -------------------------------------------------------------------------------- 1 | 16 -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/checkbox-inverted.svg: -------------------------------------------------------------------------------- 1 | dialog-ok-apply-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/checkbox.svg: -------------------------------------------------------------------------------- 1 | dialog-ok-apply.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/dialog-ok-inverted.svg: -------------------------------------------------------------------------------- 1 | dialog-ok-apply-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/dialog-ok.svg: -------------------------------------------------------------------------------- 1 | dialog-ok-apply.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/document-encrypt.svg: -------------------------------------------------------------------------------- 1 | document-encrypted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/document-sign-inverted.svg: -------------------------------------------------------------------------------- 1 | document-edit-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/document-sign.svg: -------------------------------------------------------------------------------- 1 | document-edit.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/documentinfo-inverted.svg: -------------------------------------------------------------------------------- 1 | help-about-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/documentinfo.svg: -------------------------------------------------------------------------------- 1 | help-about.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/error-inverted.svg: -------------------------------------------------------------------------------- 1 | dialog-cancel-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/error.svg: -------------------------------------------------------------------------------- 1 | dialog-cancel.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/group-inverted.svg: -------------------------------------------------------------------------------- 1 | user-group-new-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/group.svg: -------------------------------------------------------------------------------- 1 | user-group-new.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/kdocumentinfo-inverted.svg: -------------------------------------------------------------------------------- 1 | help-about-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/kdocumentinfo.svg: -------------------------------------------------------------------------------- 1 | help-about.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/mail-message-inverted.svg: -------------------------------------------------------------------------------- 1 | mail-mark-unread-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/mail-message.svg: -------------------------------------------------------------------------------- 1 | mail-mark-unread.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/mail-task-inverted.svg: -------------------------------------------------------------------------------- 1 | mail-mark-task-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/mail-task.svg: -------------------------------------------------------------------------------- 1 | mail-mark-task.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/password-show-off-inverted.svg: -------------------------------------------------------------------------------- 1 | hint-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/password-show-off.svg: -------------------------------------------------------------------------------- 1 | hint.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/password-show-on-inverted.svg: -------------------------------------------------------------------------------- 1 | visibility-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22/password-show-on.svg: -------------------------------------------------------------------------------- 1 | visibility.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/22@2x: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /icons/breeze/icons/actions/24/checkbox-inverted.svg: -------------------------------------------------------------------------------- 1 | dialog-ok-apply-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/24/checkbox.svg: -------------------------------------------------------------------------------- 1 | dialog-ok-apply.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/24/dialog-ok-inverted.svg: -------------------------------------------------------------------------------- 1 | dialog-ok-apply-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/24/dialog-ok.svg: -------------------------------------------------------------------------------- 1 | dialog-ok-apply.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/24/document-encrypt.svg: -------------------------------------------------------------------------------- 1 | document-encrypted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/24/document-sign-inverted.svg: -------------------------------------------------------------------------------- 1 | document-edit-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/24/document-sign.svg: -------------------------------------------------------------------------------- 1 | document-edit.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/24/documentinfo-inverted.svg: -------------------------------------------------------------------------------- 1 | help-about-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/24/documentinfo.svg: -------------------------------------------------------------------------------- 1 | help-about.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/24/password-show-off-inverted.svg: -------------------------------------------------------------------------------- 1 | hint-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/24/password-show-off.svg: -------------------------------------------------------------------------------- 1 | hint.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/24/password-show-on-inverted.svg: -------------------------------------------------------------------------------- 1 | visibility-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/24/password-show-on.svg: -------------------------------------------------------------------------------- 1 | visibility.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/24@2x: -------------------------------------------------------------------------------- 1 | 24 -------------------------------------------------------------------------------- /icons/breeze/icons/actions/32/mail-message-inverted.svg: -------------------------------------------------------------------------------- 1 | mail-mark-unread-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/32/mail-message.svg: -------------------------------------------------------------------------------- 1 | mail-mark-unread.svg -------------------------------------------------------------------------------- /icons/breeze/icons/actions/32@2x: -------------------------------------------------------------------------------- 1 | 32 -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-javascript.svg: -------------------------------------------------------------------------------- 1 | application-x-javascript.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-mac-binhex40.svg: -------------------------------------------------------------------------------- 1 | application-x-macbinary.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-pgp-keys.svg: -------------------------------------------------------------------------------- 1 | application-x-pem-key.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-pgp.svg: -------------------------------------------------------------------------------- 1 | application-pgp-signature.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-pkcs7-mime.svg: -------------------------------------------------------------------------------- 1 | application-x-pem-key.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-pkix-cerl.svg: -------------------------------------------------------------------------------- 1 | application-certificate.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-pkix-cert.svg: -------------------------------------------------------------------------------- 1 | application-certificate.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-relaxng-inverted.svg: -------------------------------------------------------------------------------- 1 | text-html-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-relaxng.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-rss+xml.svg: -------------------------------------------------------------------------------- 1 | application-atom+xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-rtf-inverted.svg: -------------------------------------------------------------------------------- 1 | text-rtf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-rtf.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-sxw.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-vnd-google-earth-kml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-vnd.ms-word.svg: -------------------------------------------------------------------------------- 1 | application-msword.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-vnd.rar.svg: -------------------------------------------------------------------------------- 1 | ./application-x-tar.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-vnd.rn-realmedia.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-vnd.scribus.svg: -------------------------------------------------------------------------------- 1 | vnd.ms-publisher.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-vnd.stardivision.mail.svg: -------------------------------------------------------------------------------- 1 | message-rfc822.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-vnd.sun.xml.calc.svg: -------------------------------------------------------------------------------- 1 | x-office-spreadsheet.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-vnd.sun.xml.draw.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-vnd.sun.xml.writer.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-vnd.wordperfect.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-wps-office.doc.svg: -------------------------------------------------------------------------------- 1 | application-msword.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-wps-office.docx.svg: -------------------------------------------------------------------------------- 1 | application-msword.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-7z-compressed.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-abiword.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-applix-word.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-archive.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-awk-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-script-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-awk.svg: -------------------------------------------------------------------------------- 1 | text-x-script.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-compress.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-cpio.svg: -------------------------------------------------------------------------------- 1 | application-x-arj.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-cue.svg: -------------------------------------------------------------------------------- 1 | application-x-cd-image.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-egon.svg: -------------------------------------------------------------------------------- 1 | image-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-executable-script.svg: -------------------------------------------------------------------------------- 1 | text-x-script.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-font-pcf.svg: -------------------------------------------------------------------------------- 1 | application-x-font-bdf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-font-snf.svg: -------------------------------------------------------------------------------- 1 | application-x-font-bdf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-gnumeric.svg: -------------------------------------------------------------------------------- 1 | x-office-spreadsheet.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-gzdvi.svg: -------------------------------------------------------------------------------- 1 | application-x-arj.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-iso.svg: -------------------------------------------------------------------------------- 1 | application-x-cd-image.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-it87.svg: -------------------------------------------------------------------------------- 1 | application-vnd.iccprofile.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-jar.svg: -------------------------------------------------------------------------------- 1 | application-x-java-archive.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-java-applet.svg: -------------------------------------------------------------------------------- 1 | application-x-java.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-k3b.svg: -------------------------------------------------------------------------------- 1 | application-x-cd-image.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-kcsrc.svg: -------------------------------------------------------------------------------- 1 | application-vnd.iccprofile.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-kgetlist.svg: -------------------------------------------------------------------------------- 1 | application-x-bittorrent.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-kontour.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-kword.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-mimearchive.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-mplayer2.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-mswinurl.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-mswrite.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-nzb.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-pak.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-pkcs12.svg: -------------------------------------------------------------------------------- 1 | application-certificate.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-qet-element.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-qet-project.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-rar.svg: -------------------------------------------------------------------------------- 1 | ./application-x-tar.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-shellscript.svg: -------------------------------------------------------------------------------- 1 | text-x-script.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-sif.svg: -------------------------------------------------------------------------------- 1 | application-x-wmf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-source-rpm.svg: -------------------------------------------------------------------------------- 1 | application-x-rpm.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-srtrip.svg: -------------------------------------------------------------------------------- 1 | application-x-srt.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-subrip.svg: -------------------------------------------------------------------------------- 1 | application-x-srt.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-tgif.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-troff-man.svg: -------------------------------------------------------------------------------- 1 | application-epub+zip.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-xz-pkg.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-x-zoo.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-xhtml+xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-xml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-xsd-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-xsd.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/application-xslt+xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-ac3-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-ac3.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-flac-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-flac-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-flac.svg: -------------------------------------------------------------------------------- 1 | audio-x-flac.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-mp2-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-mp2.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-mp3-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-mp3.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-mp4-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-mp4.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-prs.sid-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-midi-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-prs.sid.svg: -------------------------------------------------------------------------------- 1 | audio-midi.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-vn.rn-realmedia.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-vnd.rn-realvideo.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-x-adpcm-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-wav-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-x-adpcm.svg: -------------------------------------------------------------------------------- 1 | audio-x-wav.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-x-aiff.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-x-flac+ogg.svg: -------------------------------------------------------------------------------- 1 | application-ogg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-x-monkey.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-x-mp2-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-x-mp2.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audio-x-speex+ogg.svg: -------------------------------------------------------------------------------- 1 | application-ogg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/audiobook.svg: -------------------------------------------------------------------------------- 1 | application-epub+zip.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/encrypted.svg: -------------------------------------------------------------------------------- 1 | application-pgp-encrypted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/font-ttf.svg: -------------------------------------------------------------------------------- 1 | application-x-font-ttf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/fonts-package.svg: -------------------------------------------------------------------------------- 1 | application-x-font-ttf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-ico-inverted.svg: -------------------------------------------------------------------------------- 1 | image-x-ico-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-ico.svg: -------------------------------------------------------------------------------- 1 | image-x-ico.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-jpeg2000-inverted.svg: -------------------------------------------------------------------------------- 1 | image-jpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-jpeg2000.svg: -------------------------------------------------------------------------------- 1 | image-jpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-svg+xml.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-vnd.microsoft.icon.svg: -------------------------------------------------------------------------------- 1 | image-x-ico.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-x-compressed-xcf.svg: -------------------------------------------------------------------------------- 1 | image-x-xcf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-x-emf.svg: -------------------------------------------------------------------------------- 1 | application-x-wmf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-x-eps.svg: -------------------------------------------------------------------------------- 1 | application-postscript.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-x-icon-inverted.svg: -------------------------------------------------------------------------------- 1 | image-x-ico-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-x-icon.svg: -------------------------------------------------------------------------------- 1 | image-x-ico.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-x-krita.svg: -------------------------------------------------------------------------------- 1 | application-x-krita.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-x-portable-bitmap.svg: -------------------------------------------------------------------------------- 1 | image-bmp.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-x-psdimage-x-psd.svg: -------------------------------------------------------------------------------- 1 | image-x-psd.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-x-svg+xml.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-x-win-bitmap.svg: -------------------------------------------------------------------------------- 1 | image-bmp.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-x-win-bmp-inverted.svg: -------------------------------------------------------------------------------- 1 | image-bmp-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-x-win-bmp.svg: -------------------------------------------------------------------------------- 1 | image-bmp.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-x-wmf.svg: -------------------------------------------------------------------------------- 1 | application-x-wmf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/image-x-xfig.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/inode-directory.svg: -------------------------------------------------------------------------------- 1 | ../../places/16/folder.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/libreoffice-text.svg: -------------------------------------------------------------------------------- 1 | libreoffice-oasis-text.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/message-inverted.svg: -------------------------------------------------------------------------------- 1 | message-rfc822-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/message-x-gnu-rmail.svg: -------------------------------------------------------------------------------- 1 | message-rfc822.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/message.svg: -------------------------------------------------------------------------------- 1 | message-rfc822.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/none.svg: -------------------------------------------------------------------------------- 1 | application-x-zerosize.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/odf-inverted.svg: -------------------------------------------------------------------------------- 1 | x-office-document-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/odf.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/podcast-inverted.svg: -------------------------------------------------------------------------------- 1 | x-media-podcast-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/podcast.svg: -------------------------------------------------------------------------------- 1 | x-media-podcast.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-calendar.svg: -------------------------------------------------------------------------------- 1 | x-office-calendar.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-csharp-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-csharp-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-csharp.svg: -------------------------------------------------------------------------------- 1 | text-x-csharp.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-directory.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-enriched-inverted.svg: -------------------------------------------------------------------------------- 1 | text-rtf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-enriched.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-markdown.svg: -------------------------------------------------------------------------------- 1 | text-x-markdown.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-mathml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-mathml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-plain-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-plain.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-rdf+xml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-rdf+xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-rdf-inverted.svg: -------------------------------------------------------------------------------- 1 | text-rtf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-rdf.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-sgml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-sgml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-troff.svg: -------------------------------------------------------------------------------- 1 | application-epub+zip.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-vcalendar.svg: -------------------------------------------------------------------------------- 1 | x-office-calendar.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-vnd.abc-inverted.svg: -------------------------------------------------------------------------------- 1 | text-rtf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-vnd.abc.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-vnd.wap.wml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-vnd.wap.wml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-bibtex-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-tex-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-bibtex.svg: -------------------------------------------------------------------------------- 1 | text-x-tex.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-copying.svg: -------------------------------------------------------------------------------- 1 | text-x-authors.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-credits.svg: -------------------------------------------------------------------------------- 1 | text-x-authors.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-dtd.svg: -------------------------------------------------------------------------------- 1 | text-vnd.wap.wml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-java-source.svg: -------------------------------------------------------------------------------- 1 | application-x-java.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-java.svg: -------------------------------------------------------------------------------- 1 | application-x-java.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-javascript.svg: -------------------------------------------------------------------------------- 1 | application-x-javascript.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-katefilelist.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-ldif.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-lilypond.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-log-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-log.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-makefile.svg: -------------------------------------------------------------------------------- 1 | application-x-m4.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-nfo-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-texinfo-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-nfo.svg: -------------------------------------------------------------------------------- 1 | text-x-texinfo.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-objchdr-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-chdr-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-objchdr.svg: -------------------------------------------------------------------------------- 1 | text-x-chdr.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-objcsrc-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-csrc-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-objcsrc.svg: -------------------------------------------------------------------------------- 1 | text-x-csrc.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-opml+xml.svg: -------------------------------------------------------------------------------- 1 | application-atom+xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-opml.svg: -------------------------------------------------------------------------------- 1 | text-x-opml+xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-plain-inverted.svg: -------------------------------------------------------------------------------- 1 | text-plain-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-plain.svg: -------------------------------------------------------------------------------- 1 | text-plain.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-python.svg: -------------------------------------------------------------------------------- 1 | application-x-python-bytecode.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-readme.svg: -------------------------------------------------------------------------------- 1 | text-x-texinfo.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-rust-inverted.svg: -------------------------------------------------------------------------------- 1 | ./text-rust-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-rust.svg: -------------------------------------------------------------------------------- 1 | ./text-rust.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-vcard.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-xslfo-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-x-xslfo.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/text-xmcd.svg: -------------------------------------------------------------------------------- 1 | application-x-cda.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/unknown.svg: -------------------------------------------------------------------------------- 1 | application-x-zerosize.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/uri-mms-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/uri-mms.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/uri-mmst-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/uri-mmst.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/uri-pnm-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/uri-pnm.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/uri-rtspt-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/uri-rtspt.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/uri-rtspu-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/uri-rtspu.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-mlt-playlist.svg: -------------------------------------------------------------------------------- 1 | video-webm.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-mp2t-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-mp2t.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-vivo-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-vivo.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-vnd.rn-realvideo.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-wavelet.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-x-anim.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-x-flic.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-x-flv.svg: -------------------------------------------------------------------------------- 1 | application-x-shockwave-flash.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-x-google-vlc-plugin.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-x-javafx.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-x-mng-inverted.svg: -------------------------------------------------------------------------------- 1 | image-png-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-x-mng.svg: -------------------------------------------------------------------------------- 1 | image-png.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-x-ms-wmp-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-x-ms-wmp.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-x-ms-wmv-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-x-ms-wmv.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-x-msvideo.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/video-x-ogm+ogg.svg: -------------------------------------------------------------------------------- 1 | video-x-theora+ogg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/viewbib-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-tex-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/viewbib.svg: -------------------------------------------------------------------------------- 1 | text-x-tex.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/viewdvi.svg: -------------------------------------------------------------------------------- 1 | application-x-bzdvi.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/viewhtml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-html-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/viewhtml.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/viewpdf-inverted.svg: -------------------------------------------------------------------------------- 1 | application-pdf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/viewpdf.svg: -------------------------------------------------------------------------------- 1 | application-pdf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/viewps.svg: -------------------------------------------------------------------------------- 1 | application-postscript.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/virtualbox-vhd.svg: -------------------------------------------------------------------------------- 1 | application-x-smb-workgroup.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16/x-mail-distribution-list.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/16@2x: -------------------------------------------------------------------------------- 1 | 16 -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-pgp-keys.svg: -------------------------------------------------------------------------------- 1 | application-x-pem-key.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-pgp.svg: -------------------------------------------------------------------------------- 1 | application-pgp-signature.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-pkcs7-mime.svg: -------------------------------------------------------------------------------- 1 | application-x-pem-key.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-relaxng.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-rss+xml.svg: -------------------------------------------------------------------------------- 1 | application-atom+xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-rtf-inverted.svg: -------------------------------------------------------------------------------- 1 | text-rtf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-rtf.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-sxw.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-vnd-google-earth-kml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-vnd.ms-word.svg: -------------------------------------------------------------------------------- 1 | application-msword.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-vnd.rar.svg: -------------------------------------------------------------------------------- 1 | ./application-x-tar.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-vnd.rn-realmedia.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-vnd.scribus.svg: -------------------------------------------------------------------------------- 1 | vnd.ms-publisher.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-abiword.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-applix-word.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-archive.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-awk.svg: -------------------------------------------------------------------------------- 1 | text-x-script.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-compress.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-cpio.svg: -------------------------------------------------------------------------------- 1 | application-x-arj.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-cue.svg: -------------------------------------------------------------------------------- 1 | application-x-cd-image.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-egon.svg: -------------------------------------------------------------------------------- 1 | image-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-gnumeric.svg: -------------------------------------------------------------------------------- 1 | x-office-spreadsheet.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-gzdvi.svg: -------------------------------------------------------------------------------- 1 | application-x-arj.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-iso.svg: -------------------------------------------------------------------------------- 1 | application-x-cd-image.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-jar.svg: -------------------------------------------------------------------------------- 1 | application-x-java-archive.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-java-applet.svg: -------------------------------------------------------------------------------- 1 | application-x-java.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-k3b.svg: -------------------------------------------------------------------------------- 1 | application-x-cd-image.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-kontour.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-kword.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-mimearchive.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-mplayer2.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-mswinurl.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-mswrite.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-nzb.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-pak.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-pkcs12.svg: -------------------------------------------------------------------------------- 1 | application-certificate.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-qet-element.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-qet-project.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-rar.svg: -------------------------------------------------------------------------------- 1 | ./application-x-tar.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-shellscript.svg: -------------------------------------------------------------------------------- 1 | text-x-script.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-sif.svg: -------------------------------------------------------------------------------- 1 | application-x-wmf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-source-rpm.svg: -------------------------------------------------------------------------------- 1 | application-x-rpm.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-srtrip.svg: -------------------------------------------------------------------------------- 1 | application-x-srt.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-subrip.svg: -------------------------------------------------------------------------------- 1 | application-x-srt.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-tgif.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-troff-man.svg: -------------------------------------------------------------------------------- 1 | application-epub+zip.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-xz-pkg.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-x-zoo.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-xhtml+xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-xml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-xsd-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-xsd.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/application-xslt+xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-ac3-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-ac3.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-flac-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-flac-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-flac.svg: -------------------------------------------------------------------------------- 1 | audio-x-flac.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-mp2-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-mp2.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-mp3-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-mp3.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-mp4-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-mp4.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-prs.sid-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-midi-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-prs.sid.svg: -------------------------------------------------------------------------------- 1 | audio-midi.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-vn.rn-realmedia.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-vnd.rn-realvideo.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-x-adpcm-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-wav-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-x-adpcm.svg: -------------------------------------------------------------------------------- 1 | audio-x-wav.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-x-aiff.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-x-flac+ogg.svg: -------------------------------------------------------------------------------- 1 | application-ogg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-x-monkey.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-x-mp2-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-x-mp2.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audio-x-speex+ogg.svg: -------------------------------------------------------------------------------- 1 | application-ogg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/audiobook.svg: -------------------------------------------------------------------------------- 1 | application-epub+zip.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/encrypted.svg: -------------------------------------------------------------------------------- 1 | application-pgp-encrypted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/font-ttf.svg: -------------------------------------------------------------------------------- 1 | application-x-font-ttf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/fonts-package.svg: -------------------------------------------------------------------------------- 1 | application-x-font-ttf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-ico-inverted.svg: -------------------------------------------------------------------------------- 1 | image-x-ico-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-ico.svg: -------------------------------------------------------------------------------- 1 | image-x-ico.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-jpeg2000-inverted.svg: -------------------------------------------------------------------------------- 1 | image-jpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-jpeg2000.svg: -------------------------------------------------------------------------------- 1 | image-jpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-svg+xml.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-vnd.microsoft.icon.svg: -------------------------------------------------------------------------------- 1 | image-x-ico.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-x-compressed-xcf.svg: -------------------------------------------------------------------------------- 1 | image-x-xcf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-x-emf.svg: -------------------------------------------------------------------------------- 1 | application-x-wmf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-x-eps.svg: -------------------------------------------------------------------------------- 1 | application-postscript.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-x-icon-inverted.svg: -------------------------------------------------------------------------------- 1 | image-x-ico-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-x-icon.svg: -------------------------------------------------------------------------------- 1 | image-x-ico.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-x-krita.svg: -------------------------------------------------------------------------------- 1 | application-x-krita.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-x-portable-bitmap.svg: -------------------------------------------------------------------------------- 1 | image-bmp.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-x-psdimage-x-psd.svg: -------------------------------------------------------------------------------- 1 | image-x-psd.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-x-svg+xml.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-x-win-bitmap.svg: -------------------------------------------------------------------------------- 1 | image-bmp.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-x-win-bmp-inverted.svg: -------------------------------------------------------------------------------- 1 | image-bmp-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-x-win-bmp.svg: -------------------------------------------------------------------------------- 1 | image-bmp.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-x-wmf.svg: -------------------------------------------------------------------------------- 1 | application-x-wmf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/image-x-xfig.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/inode-directory.svg: -------------------------------------------------------------------------------- 1 | ../../places/22/folder.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/libreoffice-text.svg: -------------------------------------------------------------------------------- 1 | libreoffice-oasis-text.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/message-inverted.svg: -------------------------------------------------------------------------------- 1 | message-rfc822-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/message-x-gnu-rmail.svg: -------------------------------------------------------------------------------- 1 | message-rfc822.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/message.svg: -------------------------------------------------------------------------------- 1 | message-rfc822.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/none.svg: -------------------------------------------------------------------------------- 1 | application-x-zerosize.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/odf-inverted.svg: -------------------------------------------------------------------------------- 1 | x-office-document-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/odf.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/podcast-inverted.svg: -------------------------------------------------------------------------------- 1 | x-media-podcast-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/podcast.svg: -------------------------------------------------------------------------------- 1 | x-media-podcast.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-calendar.svg: -------------------------------------------------------------------------------- 1 | x-office-calendar.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-csharp-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-csharp-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-csharp.svg: -------------------------------------------------------------------------------- 1 | text-x-csharp.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-directory.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-enriched-inverted.svg: -------------------------------------------------------------------------------- 1 | text-rtf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-enriched.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-markdown.svg: -------------------------------------------------------------------------------- 1 | text-x-markdown.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-mathml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-mathml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-plain-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-plain.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-rdf+xml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-rdf+xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-rdf-inverted.svg: -------------------------------------------------------------------------------- 1 | text-rtf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-rdf.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-sgml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-sgml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-troff.svg: -------------------------------------------------------------------------------- 1 | application-epub+zip.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-vcalendar.svg: -------------------------------------------------------------------------------- 1 | x-office-calendar.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-vnd.abc-inverted.svg: -------------------------------------------------------------------------------- 1 | text-rtf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-vnd.abc.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-vnd.wap.wml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-vnd.wap.wml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-bibtex-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-tex-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-bibtex.svg: -------------------------------------------------------------------------------- 1 | text-x-tex.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-copying.svg: -------------------------------------------------------------------------------- 1 | text-x-authors.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-credits.svg: -------------------------------------------------------------------------------- 1 | text-x-authors.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-dtd.svg: -------------------------------------------------------------------------------- 1 | text-vnd.wap.wml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-java-source.svg: -------------------------------------------------------------------------------- 1 | application-x-java.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-java.svg: -------------------------------------------------------------------------------- 1 | application-x-java.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-javascript.svg: -------------------------------------------------------------------------------- 1 | application-x-javascript.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-katefilelist.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-ldif.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-lilypond.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-log-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-log.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-makefile.svg: -------------------------------------------------------------------------------- 1 | application-x-m4.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-nfo-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-texinfo-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-nfo.svg: -------------------------------------------------------------------------------- 1 | text-x-texinfo.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-objchdr-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-chdr-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-objchdr.svg: -------------------------------------------------------------------------------- 1 | text-x-chdr.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-objcsrc-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-csrc-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-objcsrc.svg: -------------------------------------------------------------------------------- 1 | text-x-csrc.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-opml+xml.svg: -------------------------------------------------------------------------------- 1 | application-atom+xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-opml.svg: -------------------------------------------------------------------------------- 1 | text-x-opml+xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-plain-inverted.svg: -------------------------------------------------------------------------------- 1 | text-plain-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-plain.svg: -------------------------------------------------------------------------------- 1 | text-plain.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-python.svg: -------------------------------------------------------------------------------- 1 | application-x-python-bytecode.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-readme.svg: -------------------------------------------------------------------------------- 1 | text-x-texinfo.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-rust-inverted.svg: -------------------------------------------------------------------------------- 1 | ./text-rust-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-rust.svg: -------------------------------------------------------------------------------- 1 | ./text-rust.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-vcard.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-xslfo-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-x-xslfo.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/text-xmcd.svg: -------------------------------------------------------------------------------- 1 | application-x-cda.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/unknown.svg: -------------------------------------------------------------------------------- 1 | application-x-zerosize.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/uri-mms-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/uri-mms.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/uri-mmst-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/uri-mmst.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/uri-pnm-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/uri-pnm.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/uri-rtspt-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/uri-rtspt.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/uri-rtspu-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/uri-rtspu.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-mlt-playlist.svg: -------------------------------------------------------------------------------- 1 | video-webm.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-mp2t-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-mp2t.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-vivo-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-vivo.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-vnd.rn-realvideo.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-wavelet.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-x-anim.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-x-flic.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-x-flv.svg: -------------------------------------------------------------------------------- 1 | application-x-shockwave-flash.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-x-google-vlc-plugin.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-x-javafx.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-x-mng-inverted.svg: -------------------------------------------------------------------------------- 1 | image-png-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-x-mng.svg: -------------------------------------------------------------------------------- 1 | image-png.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-x-ms-wmp-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-x-ms-wmp.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-x-ms-wmv-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-x-ms-wmv.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-x-msvideo.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/video-x-ogm+ogg.svg: -------------------------------------------------------------------------------- 1 | video-x-theora+ogg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/viewbib-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-tex-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/viewbib.svg: -------------------------------------------------------------------------------- 1 | text-x-tex.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/viewdvi.svg: -------------------------------------------------------------------------------- 1 | application-x-bzdvi.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/viewhtml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-html-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/viewhtml.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/viewpdf-inverted.svg: -------------------------------------------------------------------------------- 1 | application-pdf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/viewpdf.svg: -------------------------------------------------------------------------------- 1 | application-pdf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/viewps.svg: -------------------------------------------------------------------------------- 1 | application-postscript.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/virtualbox-vhd.svg: -------------------------------------------------------------------------------- 1 | application-x-smb-workgroup.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22/x-mail-distribution-list.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/22@2x: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-pgp-keys.svg: -------------------------------------------------------------------------------- 1 | application-x-pem-key.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-pgp.svg: -------------------------------------------------------------------------------- 1 | application-pgp-signature.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-pkcs7-mime.svg: -------------------------------------------------------------------------------- 1 | application-x-pem-key.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-relaxng.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-rss+xml.svg: -------------------------------------------------------------------------------- 1 | application-atom+xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-rtf-inverted.svg: -------------------------------------------------------------------------------- 1 | text-rtf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-rtf.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-sxw.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-vnd-google-earth-kml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-vnd.ms-word.svg: -------------------------------------------------------------------------------- 1 | application-msword.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-vnd.rar.svg: -------------------------------------------------------------------------------- 1 | ./application-x-tar.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-vnd.rn-realmedia.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-vnd.scribus.svg: -------------------------------------------------------------------------------- 1 | vnd.ms-publisher.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-abiword.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-applix-word.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-archive.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-awk.svg: -------------------------------------------------------------------------------- 1 | text-x-script.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-compress.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-cpio.svg: -------------------------------------------------------------------------------- 1 | application-x-arj.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-cue.svg: -------------------------------------------------------------------------------- 1 | application-x-cd-image.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-egon.svg: -------------------------------------------------------------------------------- 1 | image-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-gnumeric.svg: -------------------------------------------------------------------------------- 1 | x-office-spreadsheet.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-gzdvi.svg: -------------------------------------------------------------------------------- 1 | application-x-arj.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-iso.svg: -------------------------------------------------------------------------------- 1 | application-x-cd-image.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-jar.svg: -------------------------------------------------------------------------------- 1 | application-x-java-archive.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-java-applet.svg: -------------------------------------------------------------------------------- 1 | application-x-java.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-k3b.svg: -------------------------------------------------------------------------------- 1 | application-x-cd-image.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-kontour.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-kword.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-mimearchive.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-mplayer2.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-mswinurl.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-mswrite.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-nzb.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-pak.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-pkcs12.svg: -------------------------------------------------------------------------------- 1 | application-certificate.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-qet-element.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-qet-project.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-rar.svg: -------------------------------------------------------------------------------- 1 | ./application-x-tar.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-rdata.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-shellscript.svg: -------------------------------------------------------------------------------- 1 | text-x-script.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-sif.svg: -------------------------------------------------------------------------------- 1 | application-x-wmf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-source-rpm.svg: -------------------------------------------------------------------------------- 1 | application-x-rpm.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-srtrip.svg: -------------------------------------------------------------------------------- 1 | application-x-srt.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-subrip.svg: -------------------------------------------------------------------------------- 1 | application-x-srt.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-tgif.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-troff-man.svg: -------------------------------------------------------------------------------- 1 | application-epub+zip.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-xz-pkg.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-x-zoo.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-xhtml+xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-xml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-xsd-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-xsd.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/application-xslt+xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-ac3-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-ac3.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-flac-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-flac-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-flac.svg: -------------------------------------------------------------------------------- 1 | audio-x-flac.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-mp2-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-mp2.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-mp3-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-mp3.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-mp4-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-mp4.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-prs.sid-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-midi-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-prs.sid.svg: -------------------------------------------------------------------------------- 1 | audio-midi.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-vn.rn-realmedia.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-vnd.rn-realvideo.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-x-adpcm-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-wav-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-x-adpcm.svg: -------------------------------------------------------------------------------- 1 | audio-x-wav.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-x-aiff.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-x-flac+ogg.svg: -------------------------------------------------------------------------------- 1 | application-ogg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-x-monkey.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-x-mp2-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-x-mp2.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audio-x-speex+ogg.svg: -------------------------------------------------------------------------------- 1 | application-ogg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/audiobook.svg: -------------------------------------------------------------------------------- 1 | application-epub+zip.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/encrypted.svg: -------------------------------------------------------------------------------- 1 | application-pgp-encrypted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/font-ttf.svg: -------------------------------------------------------------------------------- 1 | application-x-font-ttf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/fonts-package.svg: -------------------------------------------------------------------------------- 1 | application-x-font-ttf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-ico-inverted.svg: -------------------------------------------------------------------------------- 1 | image-x-ico-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-ico.svg: -------------------------------------------------------------------------------- 1 | image-x-ico.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-jpeg2000-inverted.svg: -------------------------------------------------------------------------------- 1 | image-jpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-jpeg2000.svg: -------------------------------------------------------------------------------- 1 | image-jpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-svg+xml.svg: -------------------------------------------------------------------------------- 1 | ./x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-vnd.microsoft.icon.svg: -------------------------------------------------------------------------------- 1 | image-x-ico.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-x-compressed-xcf.svg: -------------------------------------------------------------------------------- 1 | image-x-xcf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-x-emf.svg: -------------------------------------------------------------------------------- 1 | application-x-wmf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-x-eps.svg: -------------------------------------------------------------------------------- 1 | application-postscript.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-x-icon-inverted.svg: -------------------------------------------------------------------------------- 1 | image-x-ico-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-x-icon.svg: -------------------------------------------------------------------------------- 1 | image-x-ico.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-x-krita.svg: -------------------------------------------------------------------------------- 1 | application-x-krita.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-x-portable-bitmap.svg: -------------------------------------------------------------------------------- 1 | image-bmp.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-x-psdimage-x-psd.svg: -------------------------------------------------------------------------------- 1 | image-x-psd.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-x-svg+xml.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-x-win-bitmap.svg: -------------------------------------------------------------------------------- 1 | image-bmp.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-x-win-bmp-inverted.svg: -------------------------------------------------------------------------------- 1 | image-bmp-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-x-win-bmp.svg: -------------------------------------------------------------------------------- 1 | image-bmp.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-x-wmf.svg: -------------------------------------------------------------------------------- 1 | application-x-wmf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/image-x-xfig.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/inode-directory.svg: -------------------------------------------------------------------------------- 1 | ../../places/32/folder.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/libreoffice-text.svg: -------------------------------------------------------------------------------- 1 | libreoffice-oasis-text.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/message-inverted.svg: -------------------------------------------------------------------------------- 1 | message-rfc822-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/message-x-gnu-rmail.svg: -------------------------------------------------------------------------------- 1 | message-rfc822.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/message.svg: -------------------------------------------------------------------------------- 1 | message-rfc822.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/none.svg: -------------------------------------------------------------------------------- 1 | application-x-zerosize.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/odf-inverted.svg: -------------------------------------------------------------------------------- 1 | x-office-document-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/odf.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/podcast-inverted.svg: -------------------------------------------------------------------------------- 1 | x-media-podcast-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/podcast.svg: -------------------------------------------------------------------------------- 1 | x-media-podcast.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-calendar.svg: -------------------------------------------------------------------------------- 1 | x-office-calendar.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-csharp-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-csharp-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-csharp.svg: -------------------------------------------------------------------------------- 1 | text-x-csharp.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-directory.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-enriched-inverted.svg: -------------------------------------------------------------------------------- 1 | text-rtf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-enriched.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-markdown.svg: -------------------------------------------------------------------------------- 1 | text-x-markdown.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-mathml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-mathml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-plain-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-plain.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-rdf+xml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-rdf+xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-rdf-inverted.svg: -------------------------------------------------------------------------------- 1 | text-rtf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-rdf.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-sgml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-sgml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-troff.svg: -------------------------------------------------------------------------------- 1 | application-epub+zip.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-vcalendar.svg: -------------------------------------------------------------------------------- 1 | x-office-calendar.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-vnd.abc-inverted.svg: -------------------------------------------------------------------------------- 1 | text-rtf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-vnd.abc.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-vnd.wap.wml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-vnd.wap.wml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-bibtex-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-tex-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-bibtex.svg: -------------------------------------------------------------------------------- 1 | text-x-tex.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-copying.svg: -------------------------------------------------------------------------------- 1 | text-x-authors.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-credits.svg: -------------------------------------------------------------------------------- 1 | text-x-authors.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-dtd.svg: -------------------------------------------------------------------------------- 1 | text-vnd.wap.wml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-java-source.svg: -------------------------------------------------------------------------------- 1 | application-x-java.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-java.svg: -------------------------------------------------------------------------------- 1 | application-x-java.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-javascript.svg: -------------------------------------------------------------------------------- 1 | application-x-javascript.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-katefilelist.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-ldif.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-lilypond.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-log-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-log.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-makefile.svg: -------------------------------------------------------------------------------- 1 | application-x-m4.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-nfo-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-texinfo-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-nfo.svg: -------------------------------------------------------------------------------- 1 | text-x-texinfo.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-objchdr-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-chdr-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-objchdr.svg: -------------------------------------------------------------------------------- 1 | text-x-chdr.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-objcsrc-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-csrc-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-objcsrc.svg: -------------------------------------------------------------------------------- 1 | text-x-csrc.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-opml+xml.svg: -------------------------------------------------------------------------------- 1 | application-atom+xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-opml.svg: -------------------------------------------------------------------------------- 1 | text-x-opml+xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-plain-inverted.svg: -------------------------------------------------------------------------------- 1 | text-plain-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-plain.svg: -------------------------------------------------------------------------------- 1 | text-plain.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-python.svg: -------------------------------------------------------------------------------- 1 | application-x-python-bytecode.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-readme.svg: -------------------------------------------------------------------------------- 1 | text-x-texinfo.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-rust-inverted.svg: -------------------------------------------------------------------------------- 1 | ./text-rust-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-rust.svg: -------------------------------------------------------------------------------- 1 | ./text-rust.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-vcard.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-xslfo-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-x-xslfo.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/text-xmcd.svg: -------------------------------------------------------------------------------- 1 | application-x-cda.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/unknown.svg: -------------------------------------------------------------------------------- 1 | application-x-zerosize.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/uri-mms-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/uri-mms.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/uri-mmst-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/uri-mmst.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/uri-pnm-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/uri-pnm.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/uri-rtspt-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/uri-rtspt.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/uri-rtspu-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/uri-rtspu.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-mlt-playlist.svg: -------------------------------------------------------------------------------- 1 | video-webm.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-mp2t-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-mp2t.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-vivo-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-vivo.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-vnd.rn-realvideo.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-wavelet.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-x-anim.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-x-flic.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-x-flv.svg: -------------------------------------------------------------------------------- 1 | application-x-shockwave-flash.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-x-google-vlc-plugin.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-x-javafx.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-x-mng-inverted.svg: -------------------------------------------------------------------------------- 1 | image-png-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-x-mng.svg: -------------------------------------------------------------------------------- 1 | image-png.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-x-ms-wmp-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-x-ms-wmp.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-x-ms-wmv-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-x-ms-wmv.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-x-msvideo.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/video-x-ogm+ogg.svg: -------------------------------------------------------------------------------- 1 | video-x-theora+ogg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/viewbib-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-tex-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/viewbib.svg: -------------------------------------------------------------------------------- 1 | text-x-tex.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/viewdvi.svg: -------------------------------------------------------------------------------- 1 | application-x-bzdvi.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/viewhtml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-html-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/viewhtml.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/viewpdf-inverted.svg: -------------------------------------------------------------------------------- 1 | application-pdf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/viewpdf.svg: -------------------------------------------------------------------------------- 1 | application-pdf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/viewps.svg: -------------------------------------------------------------------------------- 1 | application-postscript.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/virtualbox-vhd.svg: -------------------------------------------------------------------------------- 1 | application-x-smb-workgroup.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32/x-mail-distribution-list.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/32@2x: -------------------------------------------------------------------------------- 1 | 32 -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-pgp-keys.svg: -------------------------------------------------------------------------------- 1 | application-x-pem-key.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-pgp.svg: -------------------------------------------------------------------------------- 1 | application-pgp-signature.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-pkcs7-mime.svg: -------------------------------------------------------------------------------- 1 | application-x-pem-key.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-relaxng.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-rss+xml.svg: -------------------------------------------------------------------------------- 1 | application-atom+xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-rtf-inverted.svg: -------------------------------------------------------------------------------- 1 | text-rtf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-rtf.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-sxw.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-vnd-google-earth-kml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-vnd.ms-word.svg: -------------------------------------------------------------------------------- 1 | application-msword.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-vnd.rar.svg: -------------------------------------------------------------------------------- 1 | ./application-x-tar.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-vnd.rn-realmedia.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-vnd.scribus.svg: -------------------------------------------------------------------------------- 1 | vnd.ms-publisher.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-abiword.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-applix-word.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-archive.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-awk.svg: -------------------------------------------------------------------------------- 1 | text-x-script.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-compress.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-cpio.svg: -------------------------------------------------------------------------------- 1 | application-x-arj.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-cue.svg: -------------------------------------------------------------------------------- 1 | application-x-cd-image.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-egon.svg: -------------------------------------------------------------------------------- 1 | image-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-gnumeric.svg: -------------------------------------------------------------------------------- 1 | x-office-spreadsheet.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-gzdvi.svg: -------------------------------------------------------------------------------- 1 | application-x-arj.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-iso.svg: -------------------------------------------------------------------------------- 1 | application-x-cd-image.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-jar.svg: -------------------------------------------------------------------------------- 1 | application-x-java-archive.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-java-applet.svg: -------------------------------------------------------------------------------- 1 | application-x-java.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-k3b.svg: -------------------------------------------------------------------------------- 1 | application-x-cd-image.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-kontour.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-kword.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-mimearchive.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-mplayer2.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-mswinurl.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-mswrite.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-nzb.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-pak.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-pkcs12.svg: -------------------------------------------------------------------------------- 1 | application-certificate.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-qet-element.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-qet-project.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-rar.svg: -------------------------------------------------------------------------------- 1 | ./application-x-tar.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-rdata.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-shellscript.svg: -------------------------------------------------------------------------------- 1 | text-x-script.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-sif.svg: -------------------------------------------------------------------------------- 1 | application-x-wmf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-source-rpm.svg: -------------------------------------------------------------------------------- 1 | application-x-rpm.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-srtrip.svg: -------------------------------------------------------------------------------- 1 | application-x-srt.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-subrip.svg: -------------------------------------------------------------------------------- 1 | application-x-srt.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-tgif.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-troff-man.svg: -------------------------------------------------------------------------------- 1 | application-epub+zip.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-xz-pkg.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-x-zoo.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-xhtml+xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-xml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-xsd-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-xsd.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/application-xslt+xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-ac3-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-ac3.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-flac-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-flac-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-flac.svg: -------------------------------------------------------------------------------- 1 | audio-x-flac.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-mp2-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-mp2.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-mp3-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-mp3.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-mp4-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-mp4.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-prs.sid-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-midi-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-prs.sid.svg: -------------------------------------------------------------------------------- 1 | audio-midi.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-vn.rn-realmedia.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-vnd.rn-realvideo.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-x-adpcm-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-wav-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-x-adpcm.svg: -------------------------------------------------------------------------------- 1 | audio-x-wav.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-x-aiff.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-x-flac+ogg.svg: -------------------------------------------------------------------------------- 1 | application-ogg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-x-monkey.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-x-mp2-inverted.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-x-mp2.svg: -------------------------------------------------------------------------------- 1 | audio-x-mpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audio-x-speex+ogg.svg: -------------------------------------------------------------------------------- 1 | application-ogg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/audiobook.svg: -------------------------------------------------------------------------------- 1 | application-epub+zip.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/encrypted.svg: -------------------------------------------------------------------------------- 1 | application-pgp-encrypted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/font-ttf.svg: -------------------------------------------------------------------------------- 1 | application-x-font-ttf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/fonts-package.svg: -------------------------------------------------------------------------------- 1 | application-x-font-ttf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-ico-inverted.svg: -------------------------------------------------------------------------------- 1 | image-x-ico-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-ico.svg: -------------------------------------------------------------------------------- 1 | image-x-ico.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-jpeg2000-inverted.svg: -------------------------------------------------------------------------------- 1 | image-jpeg-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-jpeg2000.svg: -------------------------------------------------------------------------------- 1 | image-jpeg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-svg+xml.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-vnd.microsoft.icon.svg: -------------------------------------------------------------------------------- 1 | image-x-ico.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-x-compressed-xcf.svg: -------------------------------------------------------------------------------- 1 | image-x-xcf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-x-emf.svg: -------------------------------------------------------------------------------- 1 | application-x-wmf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-x-eps.svg: -------------------------------------------------------------------------------- 1 | application-postscript.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-x-icon-inverted.svg: -------------------------------------------------------------------------------- 1 | image-x-ico-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-x-icon.svg: -------------------------------------------------------------------------------- 1 | image-x-ico.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-x-krita.svg: -------------------------------------------------------------------------------- 1 | application-x-krita.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-x-portable-bitmap.svg: -------------------------------------------------------------------------------- 1 | image-bmp.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-x-psdimage-x-psd.svg: -------------------------------------------------------------------------------- 1 | image-x-psd.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-x-svg+xml.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-x-win-bitmap.svg: -------------------------------------------------------------------------------- 1 | image-bmp.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-x-win-bmp-inverted.svg: -------------------------------------------------------------------------------- 1 | image-bmp-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-x-win-bmp.svg: -------------------------------------------------------------------------------- 1 | image-bmp.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-x-wmf.svg: -------------------------------------------------------------------------------- 1 | application-x-wmf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/image-x-xfig.svg: -------------------------------------------------------------------------------- 1 | x-office-drawing.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/inode-directory.svg: -------------------------------------------------------------------------------- 1 | ../../places/64/folder.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/libreoffice-text.svg: -------------------------------------------------------------------------------- 1 | libreoffice-oasis-text.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/message-inverted.svg: -------------------------------------------------------------------------------- 1 | message-rfc822-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/message-x-gnu-rmail.svg: -------------------------------------------------------------------------------- 1 | message-rfc822.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/message.svg: -------------------------------------------------------------------------------- 1 | message-rfc822.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/none.svg: -------------------------------------------------------------------------------- 1 | application-x-zerosize.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/odf-inverted.svg: -------------------------------------------------------------------------------- 1 | x-office-document-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/odf.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/podcast-inverted.svg: -------------------------------------------------------------------------------- 1 | x-media-podcast-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/podcast.svg: -------------------------------------------------------------------------------- 1 | x-media-podcast.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-calendar.svg: -------------------------------------------------------------------------------- 1 | x-office-calendar.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-csharp-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-csharp-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-csharp.svg: -------------------------------------------------------------------------------- 1 | text-x-csharp.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-directory.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-enriched-inverted.svg: -------------------------------------------------------------------------------- 1 | text-rtf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-enriched.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-markdown.svg: -------------------------------------------------------------------------------- 1 | text-x-markdown.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-mathml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-mathml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-plain-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-plain.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-rdf+xml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-rdf+xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-rdf-inverted.svg: -------------------------------------------------------------------------------- 1 | text-rtf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-rdf.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-sgml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-sgml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-troff.svg: -------------------------------------------------------------------------------- 1 | application-epub+zip.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-vcalendar.svg: -------------------------------------------------------------------------------- 1 | x-office-calendar.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-vnd.abc-inverted.svg: -------------------------------------------------------------------------------- 1 | text-rtf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-vnd.abc.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-vnd.wap.wml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-vnd.wap.wml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-bibtex-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-tex-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-bibtex.svg: -------------------------------------------------------------------------------- 1 | text-x-tex.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-copying.svg: -------------------------------------------------------------------------------- 1 | text-x-authors.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-credits.svg: -------------------------------------------------------------------------------- 1 | text-x-authors.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-dtd.svg: -------------------------------------------------------------------------------- 1 | text-vnd.wap.wml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-java-source.svg: -------------------------------------------------------------------------------- 1 | application-x-java.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-java.svg: -------------------------------------------------------------------------------- 1 | application-x-java.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-javascript.svg: -------------------------------------------------------------------------------- 1 | application-x-javascript.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-katefilelist.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-ldif.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-lilypond.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-log-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-log.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-makefile.svg: -------------------------------------------------------------------------------- 1 | application-x-m4.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-nfo-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-texinfo-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-nfo.svg: -------------------------------------------------------------------------------- 1 | text-x-texinfo.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-objchdr-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-chdr-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-objchdr.svg: -------------------------------------------------------------------------------- 1 | text-x-chdr.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-objcsrc-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-csrc-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-objcsrc.svg: -------------------------------------------------------------------------------- 1 | text-x-csrc.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-opml+xml.svg: -------------------------------------------------------------------------------- 1 | application-atom+xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-opml.svg: -------------------------------------------------------------------------------- 1 | text-x-opml+xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-plain-inverted.svg: -------------------------------------------------------------------------------- 1 | text-plain-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-plain.svg: -------------------------------------------------------------------------------- 1 | text-plain.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-python.svg: -------------------------------------------------------------------------------- 1 | application-x-python-bytecode.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-readme.svg: -------------------------------------------------------------------------------- 1 | text-x-texinfo.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-rust-inverted.svg: -------------------------------------------------------------------------------- 1 | ./text-rust-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-rust.svg: -------------------------------------------------------------------------------- 1 | ./text-rust.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-scss-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-sass-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-scss.svg: -------------------------------------------------------------------------------- 1 | text-x-sass.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-vcard.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-xslfo-inverted.svg: -------------------------------------------------------------------------------- 1 | text-xml-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-x-xslfo.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/text-xmcd.svg: -------------------------------------------------------------------------------- 1 | application-x-cda.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/unknown.svg: -------------------------------------------------------------------------------- 1 | application-x-zerosize.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/uri-mms-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/uri-mms.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/uri-mmst-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/uri-mmst.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/uri-pnm-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/uri-pnm.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/uri-rtspt-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/uri-rtspt.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/uri-rtspu-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/uri-rtspu.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-mlt-playlist.svg: -------------------------------------------------------------------------------- 1 | video-webm.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-mp2t-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-mp2t.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-vivo-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-generic-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-vivo.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-vnd.rn-realvideo.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-wavelet.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-x-anim.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-x-flic.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-x-flv.svg: -------------------------------------------------------------------------------- 1 | application-x-shockwave-flash.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-x-google-vlc-plugin.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-x-javafx.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-x-mng-inverted.svg: -------------------------------------------------------------------------------- 1 | image-png-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-x-mng.svg: -------------------------------------------------------------------------------- 1 | image-png.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-x-ms-wmp-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-x-ms-wmp.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-x-ms-wmv-inverted.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-x-ms-wmv.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-x-msvideo.svg: -------------------------------------------------------------------------------- 1 | video-x-wmv.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/video-x-ogm+ogg.svg: -------------------------------------------------------------------------------- 1 | video-x-theora+ogg.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/viewbib-inverted.svg: -------------------------------------------------------------------------------- 1 | text-x-tex-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/viewbib.svg: -------------------------------------------------------------------------------- 1 | text-x-tex.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/viewdvi.svg: -------------------------------------------------------------------------------- 1 | application-x-bzdvi.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/viewhtml-inverted.svg: -------------------------------------------------------------------------------- 1 | text-html-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/viewhtml.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/viewpdf-inverted.svg: -------------------------------------------------------------------------------- 1 | application-pdf-inverted.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/viewpdf.svg: -------------------------------------------------------------------------------- 1 | application-pdf.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/viewps.svg: -------------------------------------------------------------------------------- 1 | application-postscript.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/virtualbox-vhd.svg: -------------------------------------------------------------------------------- 1 | application-x-smb-workgroup.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64/x-mail-distribution-list.svg: -------------------------------------------------------------------------------- 1 | x-office-contact.svg -------------------------------------------------------------------------------- /icons/breeze/icons/mimetypes/64@2x: -------------------------------------------------------------------------------- 1 | 64 -------------------------------------------------------------------------------- /icons/breeze/icons/places/16@2x: -------------------------------------------------------------------------------- 1 | 16 -------------------------------------------------------------------------------- /icons/breeze/icons/places/22@2x: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /icons/breeze/icons/places/32@2x: -------------------------------------------------------------------------------- 1 | 32 -------------------------------------------------------------------------------- /icons/breeze/icons/places/64@2x: -------------------------------------------------------------------------------- 1 | 64 -------------------------------------------------------------------------------- /icons/copybreeze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/icons/copybreeze.sh -------------------------------------------------------------------------------- /kube_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/kube_version.h.in -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /poqm/ar/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/ar/kube_qt.po -------------------------------------------------------------------------------- /poqm/ca/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/ca/kube_qt.po -------------------------------------------------------------------------------- /poqm/cs/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/cs/kube_qt.po -------------------------------------------------------------------------------- /poqm/de/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/de/kube_qt.po -------------------------------------------------------------------------------- /poqm/en/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/en/kube_qt.po -------------------------------------------------------------------------------- /poqm/eo/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/eo/kube_qt.po -------------------------------------------------------------------------------- /poqm/es/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/es/kube_qt.po -------------------------------------------------------------------------------- /poqm/et/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/et/kube_qt.po -------------------------------------------------------------------------------- /poqm/eu/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/eu/kube_qt.po -------------------------------------------------------------------------------- /poqm/fi/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/fi/kube_qt.po -------------------------------------------------------------------------------- /poqm/fr/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/fr/kube_qt.po -------------------------------------------------------------------------------- /poqm/gl/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/gl/kube_qt.po -------------------------------------------------------------------------------- /poqm/he/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/he/kube_qt.po -------------------------------------------------------------------------------- /poqm/it/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/it/kube_qt.po -------------------------------------------------------------------------------- /poqm/ja/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/ja/kube_qt.po -------------------------------------------------------------------------------- /poqm/ka/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/ka/kube_qt.po -------------------------------------------------------------------------------- /poqm/ko/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/ko/kube_qt.po -------------------------------------------------------------------------------- /poqm/lt/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/lt/kube_qt.po -------------------------------------------------------------------------------- /poqm/nl/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/nl/kube_qt.po -------------------------------------------------------------------------------- /poqm/nn/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/nn/kube_qt.po -------------------------------------------------------------------------------- /poqm/pl/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/pl/kube_qt.po -------------------------------------------------------------------------------- /poqm/pt/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/pt/kube_qt.po -------------------------------------------------------------------------------- /poqm/ru/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/ru/kube_qt.po -------------------------------------------------------------------------------- /poqm/sk/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/sk/kube_qt.po -------------------------------------------------------------------------------- /poqm/sl/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/sl/kube_qt.po -------------------------------------------------------------------------------- /poqm/sv/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/sv/kube_qt.po -------------------------------------------------------------------------------- /poqm/tr/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/tr/kube_qt.po -------------------------------------------------------------------------------- /poqm/uk/kube_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/poqm/uk/kube_qt.po -------------------------------------------------------------------------------- /tests/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/tests/qmldir -------------------------------------------------------------------------------- /tests/teststore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/tests/teststore.cpp -------------------------------------------------------------------------------- /tests/teststore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/tests/teststore.h -------------------------------------------------------------------------------- /views/log/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/views/log/main.qml -------------------------------------------------------------------------------- /views/todo/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kube/HEAD/views/todo/main.qml --------------------------------------------------------------------------------