├── .circleci └── config.yml ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .travis.yml ├── Cartfile ├── Cartfile.resolved ├── Gemfile ├── LICENSE ├── NotificationExtension ├── DateUtils.h ├── ExceptionCatcher.h ├── Extension-Bridging-Header.h ├── Info.plist ├── NotificationExtension.entitlements └── NotificationService.swift ├── Readme.md ├── ShareExtension ├── Base.lproj │ ├── ComposerUIView.xib │ ├── MainInterface.storyboard │ └── PasscodeLockView.xib ├── ComposerUIView.swift ├── ECKeyPair+KeyPairOpenPrivate.h ├── ExceptionCatcher.h ├── Extension-Bridging-Header.h ├── Info.plist ├── LightPasscodeLockView.xib ├── LightPasscodeViewController.swift ├── PasscodeLockView.xib ├── ShareExtension.entitlements ├── ShareViewController.swift ├── de.lproj │ ├── ComposerUIView.strings │ ├── MainInterface.strings │ └── PasscodeLockView.strings ├── en.lproj │ ├── ComposerUIView.strings │ ├── MainInterface.strings │ └── PasscodeLockView.strings ├── es.lproj │ ├── ComposerUIView.strings │ ├── MainInterface.strings │ └── PasscodeLockView.strings ├── fr.lproj │ ├── ComposerUIView.strings │ ├── MainInterface.strings │ └── PasscodeLockView.strings └── ru.lproj │ ├── ComposerUIView.strings │ ├── MainInterface.strings │ └── PasscodeLockView.strings ├── carthage-build.sh ├── fastlane └── fastfile ├── iOS-Email-Client.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── iOS-Email-Client.xcscheme ├── iOS-Email-Client ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x-1.png │ │ ├── Icon-App-20x20@2x-2.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x-1.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@2x-1.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ ├── Icon-App-835x835@2x.png │ │ └── appIcon.png │ ├── AppIcon.support.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ └── iTunesArtwork@2x.png │ ├── Attachment Icons │ │ ├── Contents.json │ │ ├── attachment_audio.imageset │ │ │ ├── Contents.json │ │ │ ├── audio.png │ │ │ ├── audio@2.png │ │ │ └── audio@3.png │ │ ├── attachment_excel.imageset │ │ │ ├── Contents.json │ │ │ ├── attachment_excel.png │ │ │ ├── attachment_excel@2x.png │ │ │ └── attachment_excel@3x.png │ │ ├── attachment_expired.imageset │ │ │ ├── Contents.json │ │ │ ├── expired_doc.png │ │ │ ├── expired_doc@2x.png │ │ │ └── expired_doc@3x.png │ │ ├── attachment_generic.imageset │ │ │ ├── Contents.json │ │ │ ├── attachment_generic.png │ │ │ ├── attachment_generic@2x.png │ │ │ └── attachment_generic@3x.png │ │ ├── attachment_image.imageset │ │ │ ├── Contents.json │ │ │ ├── attachment_image.png │ │ │ ├── attachment_image@2x.png │ │ │ └── attachment_image@3x.png │ │ ├── attachment_pdf.imageset │ │ │ ├── Contents.json │ │ │ ├── attachment_pdf.png │ │ │ ├── attachment_pdf@2x.png │ │ │ └── attachment_pdf@3x.png │ │ ├── attachment_ppt.imageset │ │ │ ├── Contents.json │ │ │ ├── attachment_ppt.png │ │ │ ├── attachment_ppt@2x.png │ │ │ └── attachment_ppt@3x.png │ │ ├── attachment_regular.imageset │ │ │ ├── Contents.json │ │ │ ├── regular-attachment-icon.png │ │ │ ├── regular-attachment-icon@2x.png │ │ │ └── regular-attachment-icon@3x.png │ │ ├── attachment_secure.imageset │ │ │ ├── Contents.json │ │ │ ├── secure-attachment-icon.png │ │ │ ├── secure-attachment-icon@2x.png │ │ │ └── secure-attachment-icon@3x.png │ │ ├── attachment_video.imageset │ │ │ ├── Contents.json │ │ │ ├── video.png │ │ │ ├── video@2x.png │ │ │ └── video@3x.png │ │ ├── attachment_word.imageset │ │ │ ├── Contents.json │ │ │ ├── attachment_word.png │ │ │ ├── attachment_word@2x.png │ │ │ └── attachment_word@3x.png │ │ ├── attachment_zip.imageset │ │ │ ├── Contents.json │ │ │ ├── zip.png │ │ │ ├── zip@2x.png │ │ │ └── zip@3x.png │ │ ├── sent-attach-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── sent-attach-icon.png │ │ │ ├── sent-attach-icon@2x.png │ │ │ └── sent-attach-icon@3x.png │ │ ├── sent-lock-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── sent-lock-icon.png │ │ │ ├── sent-lock-icon@2x.png │ │ │ └── sent-lock-icon@3x.png │ │ └── sent-timer-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── sent-timer-icon.png │ │ │ ├── sent-timer-icon@2x.png │ │ │ └── sent-timer-icon@3x.png │ ├── Contents.json │ ├── Slider Menu │ │ ├── Contents.json │ │ ├── my_account.imageset │ │ │ ├── Contents.json │ │ │ ├── ic-myaccountx1.png │ │ │ ├── ic-myaccountx2.png │ │ │ └── ic-myaccountx3.png │ │ ├── settings.imageset │ │ │ ├── Contents.json │ │ │ ├── settings.png │ │ │ ├── settings@2x.png │ │ │ └── settings@3x.png │ │ ├── slider_allmail.imageset │ │ │ ├── 1-Allmail.png │ │ │ ├── 2-Allmail.png │ │ │ ├── 3-Allmail.png │ │ │ └── Contents.json │ │ ├── slider_criptext.imageset │ │ │ ├── Contents.json │ │ │ ├── slider_criptext.png │ │ │ ├── slider_criptext@2x.png │ │ │ └── slider_criptext@3x.png │ │ ├── slider_draft.imageset │ │ │ ├── Contents.json │ │ │ ├── draft.png │ │ │ ├── draft@2x.png │ │ │ └── draft@3x.png │ │ ├── slider_friend.imageset │ │ │ ├── Contents.json │ │ │ ├── slider_friend.png │ │ │ ├── slider_friend@2x.png │ │ │ └── slider_friend@3x.png │ │ ├── slider_header.imageset │ │ │ ├── Contents.json │ │ │ ├── slider_header.png │ │ │ ├── slider_header@2x.png │ │ │ └── slider_header@3x.png │ │ ├── slider_inbox.imageset │ │ │ ├── 1-Inbox.png │ │ │ ├── 2-Inbox.png │ │ │ ├── 3-Inbox.png │ │ │ └── Contents.json │ │ ├── slider_junk.imageset │ │ │ ├── Contents.json │ │ │ ├── spam.png │ │ │ ├── spam@2x.png │ │ │ └── spam@3x.png │ │ ├── slider_logout.imageset │ │ │ ├── Contents.json │ │ │ ├── slider_logout.png │ │ │ ├── slider_logout@2x.png │ │ │ └── slider_logout@3x.png │ │ ├── slider_sent.imageset │ │ │ ├── Contents.json │ │ │ ├── sent.png │ │ │ ├── sent@2x.png │ │ │ └── sent@3x.png │ │ ├── slider_signature.imageset │ │ │ ├── Contents.json │ │ │ ├── slider_signature.png │ │ │ ├── slider_signature@2x.png │ │ │ └── slider_signature@3x.png │ │ ├── slider_support.imageset │ │ │ ├── Contents.json │ │ │ ├── support.png │ │ │ ├── support@2x.png │ │ │ └── support@3x.png │ │ ├── slider_trash.imageset │ │ │ ├── Contents.json │ │ │ ├── trash.png │ │ │ ├── trash@2x.png │ │ │ └── trash@3x.png │ │ ├── slider_upgrade.imageset │ │ │ ├── Contents.json │ │ │ ├── slider_upgrade.png │ │ │ ├── slider_upgrade@2x.png │ │ │ └── slider_upgrade@3x.png │ │ └── starred.imageset │ │ │ ├── Contents.json │ │ │ ├── starred.png │ │ │ ├── starred@2x.png │ │ │ └── starred@3x.png │ ├── Snackbar Icons │ │ ├── Contents.json │ │ ├── double-check.imageset │ │ │ ├── Contents.json │ │ │ ├── DoubleCheck@1.png │ │ │ ├── DoubleCheck@2.png │ │ │ └── DoubleCheck@3.png │ │ ├── down-arrow.imageset │ │ │ ├── Contents.json │ │ │ ├── DownArrow@1.png │ │ │ ├── DownArrow@2.png │ │ │ └── DownArrow@3.png │ │ ├── load-arrow.imageset │ │ │ ├── Contents.json │ │ │ ├── LoadArrow@1.png │ │ │ ├── LoadArrow@2.png │ │ │ └── LoadArrow@3.png │ │ └── lock.imageset │ │ │ ├── Contents.json │ │ │ ├── Lock@1.png │ │ │ ├── Lock@2.png │ │ │ └── Lock@3.png │ ├── activity.imageset │ │ ├── Contents.json │ │ ├── activityFeed.png │ │ ├── activityFeed@2x.png │ │ └── activityFeed@3x.png │ ├── archive-icon.imageset │ │ ├── Contents.json │ │ ├── archive.png │ │ ├── archive@2x.png │ │ └── archive@3x.png │ ├── arrow-back.imageset │ │ ├── Contents.json │ │ ├── fill1.png │ │ ├── fill1@2x.png │ │ └── fill1@3x.png │ ├── arrow-down.imageset │ │ ├── Contents.json │ │ ├── arrow-down.png │ │ ├── arrow-down@2x.png │ │ └── arrow-down@3x.png │ ├── arrow-next.imageset │ │ ├── Contents.json │ │ ├── arrow-next.png │ │ ├── arrow-next@2x.png │ │ └── arrow-next@3x.png │ ├── arrow-up.imageset │ │ ├── Contents.json │ │ ├── arrow-up.png │ │ ├── arrow-up@2x.png │ │ └── arrow-up@3x.png │ ├── attachment.imageset │ │ ├── Contents.json │ │ ├── attachment.png │ │ ├── attachment@2x.png │ │ └── attachment@3x.png │ ├── attachment_camera.imageset │ │ ├── Contents.json │ │ ├── attachment_camera.png │ │ ├── attachment_camera@2x.png │ │ └── attachment_camera@3x.png │ ├── attachment_docproviders.imageset │ │ ├── Attachment_docproviders.png │ │ ├── Attachment_docproviders2x.png │ │ ├── Attachment_docproviders3x.png │ │ └── Contents.json │ ├── attachment_inbox.imageset │ │ ├── Contents.json │ │ ├── attachment_inbox.png │ │ ├── attachment_inbox@2x.png │ │ └── attachment_inbox@3x.png │ ├── attachment_photolibrary.imageset │ │ ├── Contents.json │ │ ├── attachment_photolibrary.png │ │ ├── attachment_photolibrary@2x.png │ │ └── attachment_photolibrary@3x.png │ ├── belldark.imageset │ │ ├── Contents.json │ │ ├── belldark.png │ │ ├── belldark@2x.png │ │ └── belldark@3x.png │ ├── beta.imageset │ │ ├── Contents.json │ │ ├── beta.png │ │ ├── betax2.png │ │ └── betax3.png │ ├── billing-settings.imageset │ │ ├── Contents.json │ │ ├── img_billingsett1x.png │ │ ├── img_billingsett2x.png │ │ └── img_billingsett3x.png │ ├── border-gold.imageset │ │ ├── Contents.json │ │ ├── img_halo1x.png │ │ ├── img_halo2x.png │ │ └── img_halo3x.png │ ├── camera.imageset │ │ ├── Contents.json │ │ ├── camera.png │ │ ├── camera@2x.png │ │ └── camera@3x.png │ ├── check-gold.imageset │ │ ├── Contents.json │ │ ├── ic_goldcheck1x.png │ │ ├── ic_goldcheck2x.png │ │ └── ic_goldcheck3x.png │ ├── check.imageset │ │ ├── Contents.json │ │ ├── check_2.png │ │ ├── check_2@2x.png │ │ └── check_2@3x.png │ ├── close-rounded.imageset │ │ ├── Contents.json │ │ ├── close.png │ │ ├── close@2x.png │ │ └── close@3x.png │ ├── close.imageset │ │ ├── Contents.json │ │ ├── x_2.png │ │ ├── x_2@2x.png │ │ └── x_2@3x.png │ ├── cloud-big.imageset │ │ ├── Contents.json │ │ ├── restoreCloud.png │ │ ├── restoreCloud@2x.png │ │ └── restoreCloud@3x.png │ ├── cloud-fail.imageset │ │ ├── Contents.json │ │ ├── noCloud.png │ │ ├── noCloud@2x.png │ │ └── noCloud@3x.png │ ├── cloud-medium.imageset │ │ ├── Contents.json │ │ ├── mediumRestoreCloud.png │ │ ├── mediumRestoreCloud@2x.png │ │ └── mediumRestoreCloud@3x.png │ ├── cloud-rip.imageset │ │ ├── Contents.json │ │ ├── noCloud.png │ │ ├── noCloud@2x.png │ │ └── noCloud@3x.png │ ├── cloud-small.imageset │ │ ├── Contents.json │ │ ├── smallCloud.png │ │ ├── smallCloud@2x.png │ │ └── smallCloud@3x.png │ ├── cloud-success.imageset │ │ ├── Contents.json │ │ ├── smallCheckCloud.png │ │ ├── smallCheckCloud@2x.png │ │ └── smallCheckCloud@3x.png │ ├── color-bell.imageset │ │ ├── Contents.json │ │ ├── campanita.png │ │ ├── campanita@2x.png │ │ └── campanita@3x.png │ ├── composer.imageset │ │ ├── Contents.json │ │ ├── composer.png │ │ ├── composer@2x.png │ │ └── composer@3x.png │ ├── criptext-logo.imageset │ │ ├── Contents.json │ │ ├── logo.png │ │ ├── logo@2x.png │ │ └── logo@3x.png │ ├── delete-icon.imageset │ │ ├── Contents.json │ │ ├── trash.png │ │ ├── trash@2x.png │ │ └── trash@3x.png │ ├── device-alert.imageset │ │ ├── Contents.json │ │ ├── deviceAlert.png │ │ ├── deviceAlert@2x.png │ │ └── deviceAlert@3x.png │ ├── device-desktop-app.imageset │ │ ├── Contents.json │ │ ├── icLaptoplimit.png │ │ ├── icLaptoplimit@2x.png │ │ └── icLaptoplimit@3x.png │ ├── device-desktop.imageset │ │ ├── Contents.json │ │ ├── Group.png │ │ ├── Group@2x.png │ │ └── Group@3x.png │ ├── device-mobile-app.imageset │ │ ├── Contents.json │ │ ├── icMobilelimit.png │ │ ├── icMobilelimit@2x.png │ │ └── icMobilelimit@3x.png │ ├── device-mobile.imageset │ │ ├── Contents.json │ │ ├── icon.png │ │ ├── icon@2x.png │ │ └── icon@3x.png │ ├── device-remove.imageset │ │ ├── Contents.json │ │ ├── icLogout.png │ │ ├── icLogout@2x.png │ │ └── icLogout@3x.png │ ├── dots-options.imageset │ │ ├── Contents.json │ │ ├── dots.png │ │ ├── dots@2x.png │ │ └── dots@3x.png │ ├── dots.imageset │ │ ├── Contents.json │ │ ├── dots.png │ │ ├── dots@2x.png │ │ └── dots@3x.png │ ├── draft_dark.imageset │ │ ├── Contents.json │ │ ├── draftDark.png │ │ ├── draftDark@2x.png │ │ └── draftDark@3x.png │ ├── draft_light.imageset │ │ ├── Contents.json │ │ ├── draftLight.png │ │ ├── draftLight@2x.png │ │ └── draftLight@3x.png │ ├── envelope.imageset │ │ ├── Contents.json │ │ ├── Env elope.png │ │ ├── Env elope@2x.png │ │ └── Env elope@3x.png │ ├── expiration-email-icon.imageset │ │ ├── Contents.json │ │ ├── clock.png │ │ ├── clock@2x.png │ │ └── clock@3x.png │ ├── faceID.imageset │ │ ├── Contents.json │ │ ├── logofaceid.png │ │ ├── logofaceid@2x.png │ │ └── logofaceid@3x.png │ ├── filter.imageset │ │ ├── Contents.json │ │ ├── filter.png │ │ ├── filter@2x.png │ │ └── filter@3x.png │ ├── footer_beta.imageset │ │ ├── Contents.json │ │ └── footer_beta.png │ ├── formatting.imageset │ │ ├── Contents.json │ │ ├── group.png │ │ ├── group@2x.png │ │ └── group@3x.png │ ├── google-g-icon.imageset │ │ ├── Contents.json │ │ ├── google-g-icon.png │ │ ├── google-g-icon@2x.png │ │ └── google-g-icon@3x.png │ ├── got-plus.imageset │ │ ├── Contents.json │ │ ├── img_gotplus.png │ │ ├── img_gotplus2x.png │ │ └── img_gotplus3x.png │ ├── icArrow.imageset │ │ ├── Contents.json │ │ ├── icArrow.png │ │ ├── icArrow@2x.png │ │ └── icArrow@3x.png │ ├── icHelp.imageset │ │ ├── Contents.json │ │ ├── icHelp.png │ │ ├── icHelp@2x.png │ │ └── icHelp@3x.png │ ├── icSecinb.imageset │ │ ├── Contents.json │ │ ├── icSecinb.png │ │ ├── icSecinb@2x.png │ │ └── icSecinb@3x.png │ ├── icon-allmail.imageset │ │ ├── 3 copy 3.png │ │ ├── 3 copy 3@2x.png │ │ ├── 3 copy 3@3x.png │ │ └── Contents.json │ ├── icon-down.imageset │ │ ├── Contents.json │ │ ├── downArrow.png │ │ ├── downArrow@2x.png │ │ └── downArrow@3x.png │ ├── icon-download.imageset │ │ ├── Contents.json │ │ ├── download.png │ │ ├── download@2x.png │ │ └── download@3x.png │ ├── icon-draft.imageset │ │ ├── Contents.json │ │ ├── draft.png │ │ ├── draft@2x.png │ │ └── draft@3x.png │ ├── icon-edit.imageset │ │ ├── Contents.json │ │ ├── edit.png │ │ ├── edit@2x.png │ │ └── edit@3x.png │ ├── icon-forward.imageset │ │ ├── Contents.json │ │ ├── Page 1.png │ │ ├── Page 1@2x.png │ │ └── Page 1@3x.png │ ├── icon-important-fill.imageset │ │ ├── Contents.json │ │ ├── important2.png │ │ ├── important2@2x.png │ │ └── important2@3x.png │ ├── icon-inbox.imageset │ │ ├── Contents.json │ │ ├── fill1.png │ │ ├── fill1@2x.png │ │ └── fill1@3x.png │ ├── icon-invite.imageset │ │ ├── Contents.json │ │ ├── invite.png │ │ ├── invite@2x.png │ │ └── invite@3x.png │ ├── icon-label.imageset │ │ ├── Contents.json │ │ ├── label.png │ │ ├── label@2x.png │ │ └── label@3x.png │ ├── icon-plus.imageset │ │ ├── Combined Shape.png │ │ ├── Combined Shape@2x.png │ │ ├── Combined Shape@3x.png │ │ └── Contents.json │ ├── icon-refresh.imageset │ │ ├── Contents.json │ │ ├── shuffleIcCopy2.png │ │ ├── shuffleIcCopy2@2x.png │ │ └── shuffleIcCopy2@3x.png │ ├── icon-reply-all.imageset │ │ ├── Combined Shape.png │ │ ├── Combined Shape@2x.png │ │ ├── Combined Shape@3x.png │ │ └── Contents.json │ ├── icon-reply.imageset │ │ ├── Contents.json │ │ ├── Fill 1.png │ │ ├── Fill 1@2x.png │ │ └── Fill 1@3x.png │ ├── icon-settings.imageset │ │ ├── Contents.json │ │ ├── settings.png │ │ ├── settings@2x.png │ │ └── settings@3x.png │ ├── icon-spam.imageset │ │ ├── Contents.json │ │ ├── spam.png │ │ ├── spam@2x.png │ │ └── spam@3x.png │ ├── icon-starred.imageset │ │ ├── Contents.json │ │ ├── starred.png │ │ ├── starred@2x.png │ │ └── starred@3x.png │ ├── icon-support.imageset │ │ ├── Contents.json │ │ ├── support.png │ │ ├── support@2x.png │ │ └── support@3x.png │ ├── icon-up.imageset │ │ ├── Contents.json │ │ ├── upArrow.png │ │ ├── upArrow@2x.png │ │ └── upArrow@3x.png │ ├── imgCard.imageset │ │ ├── Contents.json │ │ ├── imgCard.png │ │ ├── imgCard@2x.png │ │ └── imgCard@3x.png │ ├── imgLogo.imageset │ │ ├── Contents.json │ │ ├── imgLogo.png │ │ ├── imgLogo@2x.png │ │ └── imgLogo@3x.png │ ├── imgProfile.imageset │ │ ├── Contents.json │ │ ├── imgProfile.png │ │ ├── imgProfile@2x.png │ │ └── imgProfile@3x.png │ ├── imgRestorefail.imageset │ │ ├── Contents.json │ │ ├── imgRestorefail.png │ │ ├── imgRestorefail@2x.png │ │ └── imgRestorefail@3x.png │ ├── imgRestoremail.imageset │ │ ├── Contents.json │ │ ├── imgRestoremail.png │ │ ├── imgRestoremail@2x.png │ │ └── imgRestoremail@3x.png │ ├── imgSubtitle.imageset │ │ ├── Contents.json │ │ ├── imgSubtitle.png │ │ ├── imgSubtitle@2x.png │ │ └── imgSubtitle@3x.png │ ├── imgYaycustom.imageset │ │ ├── Contents.json │ │ ├── imgYaycustom.png │ │ ├── imgYaycustom@2x.png │ │ └── imgYaycustom@3x.png │ ├── import-check.imageset │ │ ├── Contents.json │ │ ├── imgImportlaptop.png │ │ ├── imgImportlaptop@2x.png │ │ └── imgImportlaptop@3x.png │ ├── import-downloading-mailbox.imageset │ │ ├── Contents.json │ │ ├── imgDownlimport.png │ │ ├── imgDownlimport@2x.png │ │ └── imgDownlimport@3x.png │ ├── import-not-found.imageset │ │ ├── Contents.json │ │ ├── imgNobackup.png │ │ ├── imgNobackup@2x.png │ │ └── imgNobackup@3x.png │ ├── import-odd.imageset │ │ ├── Contents.json │ │ ├── imgSomethingbackup.png │ │ ├── imgSomethingbackup@2x.png │ │ └── imgSomethingbackup@3x.png │ ├── import-ready.imageset │ │ ├── Contents.json │ │ ├── imgReadyimport.png │ │ ├── imgReadyimport@2x.png │ │ └── imgReadyimport@3x.png │ ├── import-rejected.imageset │ │ ├── Contents.json │ │ ├── imgRejectimport.png │ │ ├── imgRejectimport@2x.png │ │ └── imgRejectimport@3x.png │ ├── import-restore.imageset │ │ ├── Contents.json │ │ ├── imgRestoreimport.png │ │ ├── imgRestoreimport@2x.png │ │ └── imgRestoreimport@3x.png │ ├── import-search.imageset │ │ ├── Contents.json │ │ ├── imgSearchbackup.png │ │ ├── imgSearchbackup@2x.png │ │ └── imgSearchbackup@3x.png │ ├── import-sending-keys.imageset │ │ ├── Contents.json │ │ ├── imgKeysimport.png │ │ ├── imgKeysimport@2x.png │ │ └── imgKeysimport@3x.png │ ├── import-waiting-mailbox.imageset │ │ ├── Contents.json │ │ ├── imgWaitingimport.png │ │ ├── imgWaitingimport@2x.png │ │ └── imgWaitingimport@3x.png │ ├── inbox-forward-icon.imageset │ │ ├── Contents.json │ │ ├── inbox-forward-icon.png │ │ ├── inbox-forward-icon@2x.png │ │ └── inbox-forward-icon@3x.png │ ├── inbox-reply-icon.imageset │ │ ├── Contents.json │ │ ├── inbox-reply-icon.png │ │ ├── inbox-reply-icon@2x.png │ │ └── inbox-reply-icon@3x.png │ ├── inbox_dark.imageset │ │ ├── Contents.json │ │ ├── inboxDark.png │ │ ├── inboxDark@2x.png │ │ └── inboxDark@3x.png │ ├── inbox_light.imageset │ │ ├── Contents.json │ │ ├── inboxLight.png │ │ ├── inboxLight@2x.png │ │ └── inboxLight@3x.png │ ├── label.imageset │ │ ├── Contents.json │ │ ├── label.png │ │ ├── label@2x.png │ │ └── label@3x.png │ ├── loading-hourglass.imageset │ │ ├── Contents.json │ │ ├── cargando.png │ │ ├── cargando@2x.png │ │ └── cargando@3x.png │ ├── location.imageset │ │ ├── Contents.json │ │ ├── locationx1.png │ │ ├── locationx2.png │ │ └── locationx3.png │ ├── mark-error.imageset │ │ ├── Contents.json │ │ ├── x.png │ │ ├── x@2x.png │ │ └── x@3x.png │ ├── mark-success.imageset │ │ ├── Contents.json │ │ ├── check.png │ │ ├── check@2x.png │ │ └── check@3x.png │ ├── mark_read.imageset │ │ ├── Contents.json │ │ ├── icMailOpened.png │ │ ├── icMailOpened2x.png │ │ └── icMailOpened3x.png │ ├── mark_unread.imageset │ │ ├── Contents.json │ │ ├── icMailClosed.png │ │ ├── icMailClosed2x.png │ │ └── icMailClosed3x.png │ ├── menu-back.imageset │ │ ├── Contents.json │ │ ├── back.png │ │ ├── back@2x.png │ │ └── back@3x.png │ ├── menu_white.imageset │ │ ├── Contents.json │ │ ├── menu.png │ │ ├── menu@2x.png │ │ └── menu@3x.png │ ├── muted.imageset │ │ ├── Contents.json │ │ ├── mute.png │ │ ├── mute@2x.png │ │ └── mute@3x.png │ ├── new-arrow-down.imageset │ │ ├── Contents.json │ │ ├── fill1.png │ │ ├── fill1@2x.png │ │ └── fill1@3x.png │ ├── new-arrow-up.imageset │ │ ├── Contents.json │ │ ├── fill1.png │ │ ├── fill1@2x.png │ │ └── fill1@3x.png │ ├── new-logo-dark.imageset │ │ ├── Contents.json │ │ ├── imgLogoDm.png │ │ ├── imgLogoDm@2x.png │ │ └── imgLogoDm@3x.png │ ├── new-logo.imageset │ │ ├── Contents.json │ │ ├── imgLogo.png │ │ ├── imgLogo@2x.png │ │ └── imgLogo@3x.png │ ├── not-timer.imageset │ │ ├── Contents.json │ │ ├── nottimer-x1.png │ │ ├── nottimer-x2.png │ │ └── nottimer-x3.png │ ├── password-icon.imageset │ │ ├── Contents.json │ │ ├── password-icon.png │ │ ├── password-icon@2x.png │ │ └── password-icon@3x.png │ ├── plus-alias.imageset │ │ ├── Contents.json │ │ ├── img-aliases.png │ │ ├── img-aliases@2x.png │ │ └── img-aliases@3x.png │ ├── plus-crown.imageset │ │ ├── Contents.json │ │ ├── ic-crown.png │ │ ├── ic-crown2x.png │ │ └── ic-crown3x.png │ ├── plus-devices.imageset │ │ ├── Contents.json │ │ ├── img-devices.png │ │ ├── img-devices@2x.png │ │ └── img-devices@3x.png │ ├── plus-domains.imageset │ │ ├── Contents.json │ │ ├── img-domain.png │ │ ├── img-domain@2x.png │ │ └── img-domain@3x.png │ ├── plus-ohno.imageset │ │ ├── Contents.json │ │ ├── imgConnectionlost.png │ │ ├── imgConnectionlost@2x.png │ │ └── imgConnectionlost@3x.png │ ├── read-only-eye.imageset │ │ ├── Contents.json │ │ ├── read-only-eye.png │ │ ├── read-only-eye@2x.png │ │ └── read-only-eye@3x.png │ ├── read.imageset │ │ ├── Contents.json │ │ ├── read.png │ │ ├── read@2x.png │ │ └── read@3x.png │ ├── remove.imageset │ │ ├── Contents.json │ │ ├── remove.png │ │ ├── remove@2x.png │ │ └── remove@3x.png │ ├── resend-warning.imageset │ │ ├── Contents.json │ │ ├── imgResendios.png │ │ ├── imgResendios@2x.png │ │ └── imgResendios@3x.png │ ├── search.imageset │ │ ├── Contents.json │ │ ├── search.png │ │ ├── search@2x.png │ │ └── search@3x.png │ ├── searchSadDark.imageset │ │ ├── Contents.json │ │ ├── searchSadDark.png │ │ ├── searchSadDark@2x.png │ │ └── searchSadDark@3x.png │ ├── search_sad.imageset │ │ ├── Contents.json │ │ ├── search_sad.png │ │ ├── search_sad2x.png │ │ └── search_sad3x.png │ ├── send.imageset │ │ ├── Contents.json │ │ ├── sent.png │ │ ├── sent@2x.png │ │ └── sent@3x.png │ ├── send_secure.imageset │ │ ├── Contents.json │ │ ├── send_secure.png │ │ ├── send_secure@2x.png │ │ └── send_secure@3x.png │ ├── sent_dark.imageset │ │ ├── Contents.json │ │ ├── sentDark.png │ │ ├── sentDark@2x.png │ │ └── sentDark@3x.png │ ├── sent_light.imageset │ │ ├── Contents.json │ │ ├── sentLight.png │ │ ├── sentLight@2x.png │ │ └── sentLight@3x.png │ ├── show-images.imageset │ │ ├── Contents.json │ │ ├── showImages1x.png │ │ ├── showImages2x.png │ │ └── showImages3x.png │ ├── single-check-icon.imageset │ │ ├── Contents.json │ │ ├── Read Copy.png │ │ ├── Read Copy@2x.png │ │ └── Read Copy@3x.png │ ├── slogan-dark.imageset │ │ ├── Contents.json │ │ ├── imgSubtitleDm.png │ │ ├── imgSubtitleDm@2x.png │ │ └── imgSubtitleDm@3x.png │ ├── slogan.imageset │ │ ├── Contents.json │ │ ├── imgSubtitle.png │ │ ├── imgSubtitle@2x.png │ │ └── imgSubtitle@3x.png │ ├── spam_dark.imageset │ │ ├── Contents.json │ │ ├── spamDark.png │ │ ├── spamDark@2x.png │ │ └── spamDark@3x.png │ ├── spam_light.imageset │ │ ├── Contents.json │ │ ├── spamLight.png │ │ ├── spamLight@2x.png │ │ └── spamLight@3x.png │ ├── starred_dark.imageset │ │ ├── Contents.json │ │ ├── starredDark.png │ │ ├── starredDark@2x.png │ │ └── starredDark@3x.png │ ├── starred_empty.imageset │ │ ├── Contents.json │ │ ├── starred_empty.png │ │ ├── starred_empty@2x.png │ │ └── starred_empty@3x.png │ ├── starred_full.imageset │ │ ├── Contents.json │ │ ├── starred.png │ │ ├── starred@2x.png │ │ └── starred@3x.png │ ├── starred_light.imageset │ │ ├── Contents.json │ │ ├── starredLight.png │ │ ├── starredLight@2x.png │ │ └── starredLight@3x.png │ ├── switch_locked_off.imageset │ │ ├── Contents.json │ │ ├── switch_locked_off.png │ │ ├── switch_locked_off@2.png │ │ └── switch_locked_off@x3.png │ ├── switch_locked_on.imageset │ │ ├── Contents.json │ │ ├── switch_locked_on.png │ │ ├── switch_locked_on@2x.png │ │ └── switch_locked_on@3x.png │ ├── sync.imageset │ │ ├── Contents.json │ │ ├── sync.png │ │ ├── sync@2x.png │ │ └── sync@3x.png │ ├── toolbar-trash.imageset │ │ ├── Contents.json │ │ ├── trash.png │ │ ├── trash@2x.png │ │ └── trash@3x.png │ ├── toolbar_all_mail.imageset │ │ ├── Contents.json │ │ ├── all_mail.png │ │ ├── all_mail@2x.png │ │ └── all_mail@3x.png │ ├── toolbar_move.imageset │ │ ├── Contents.json │ │ ├── move_to.png │ │ ├── move_to@2x.png │ │ └── move_to@3x.png │ ├── toolbar_trash_permanent.imageset │ │ ├── Contents.json │ │ ├── trash_permanent.png │ │ ├── trash_permanent@2x.png │ │ └── trash_permanent@3x.png │ ├── touchID.imageset │ │ ├── Contents.json │ │ ├── logotouchid.png │ │ ├── logotouchid@2x.png │ │ └── logotouchid@3x.png │ ├── trash-action.imageset │ │ ├── Contents.json │ │ ├── trash-action.png │ │ ├── trash-action2x.png │ │ └── trash-action3x.png │ ├── trash_dark.imageset │ │ ├── Contents.json │ │ ├── trashDark.png │ │ ├── trashDark@2x.png │ │ └── trashDark@3x.png │ ├── trash_light.imageset │ │ ├── Contents.json │ │ ├── trashLight.png │ │ ├── trashLight@2x.png │ │ └── trashLight@3x.png │ ├── unmuted.imageset │ │ ├── Contents.json │ │ ├── activityFeed.png │ │ ├── activityFeed@2x.png │ │ └── activityFeed@3x.png │ ├── unsend-icon.imageset │ │ ├── Contents.json │ │ ├── unSent.png │ │ ├── unSent@2x.png │ │ └── unSent@3x.png │ ├── unsend-label.imageset │ │ ├── Contents.json │ │ ├── unsend-x1.png │ │ ├── unsend-x2.png │ │ └── unsend-x3.png │ ├── unsend.imageset │ │ ├── Contents.json │ │ ├── unsend-x1.png │ │ ├── unsend-x2.png │ │ └── unsend-x3.png │ ├── unsend_btn.imageset │ │ ├── Contents.json │ │ ├── btn-unsend1.png │ │ ├── btn-unsend2.png │ │ └── btn-unsend3.png │ ├── unsent_btn.imageset │ │ ├── Contents.json │ │ ├── btn-unsent1.png │ │ ├── btn-unsent2.png │ │ └── btn-unsent3.png │ ├── upload-cloud.imageset │ │ ├── Contents.json │ │ ├── group32.png │ │ ├── group32@2x.png │ │ └── group32@3x.png │ ├── waiting-icon.imageset │ │ ├── Clock.png │ │ ├── Clock@2x.png │ │ ├── Clock@3x.png │ │ └── Contents.json │ └── white-logo.imageset │ │ ├── Contents.json │ │ ├── logo2.png │ │ ├── logo2@2x.png │ │ └── logo2@3x.png ├── AsyncTasks │ ├── CIDSchemeHandler.swift │ ├── CreateCustomJSONFileAsyncTask.swift │ ├── DeleteThreadsAsyncTask.swift │ ├── GetBadgeCounterAsyncTask.swift │ ├── GetBadgeCountersAsyncTask.swift │ ├── GetThreadsAsyncTask.swift │ ├── MarkThreadsAsyncTask.swift │ ├── RestoreDBAsyncTask.swift │ ├── RetrieveContactsTask.swift │ ├── SendMailAsyncTask.swift │ └── ThreadsLabelsAsyncTask.swift ├── AxolotlStore │ ├── CriptextAxolotlStore.swift │ ├── CriptextIdentityKeyStore.swift │ ├── CriptextPreKeyStore.swift │ ├── CriptextSessionStore.swift │ ├── CriptextSignedPreKeyStore.swift │ └── DBAxolotl.swift ├── Base.lproj │ ├── LaunchScreen.storyboard │ ├── Login.storyboard │ └── Main.storyboard ├── Constants.swift ├── Controllers │ ├── AddAliasUIPopover.swift │ ├── AliasViewController.swift │ ├── BackupViewController.swift │ ├── BaseUIPopover.swift │ ├── ChangePassViewController.swift │ ├── ComposeViewController.swift │ ├── ConnectUploadViewController.swift │ ├── CriptextDrawerController.swift │ ├── CustomDomainEntryViewController.swift │ ├── CustomDomainViewController.swift │ ├── CustomPasscodeViewController.swift │ ├── EmailDetailViewController.swift │ ├── EmailSetPasswordViewController.swift │ ├── EmailSourceViewController.swift │ ├── FeedViewController.swift │ ├── GenericAlertUIPopover.swift │ ├── GenericSingleInputPopover.swift │ ├── InboxViewController.swift │ ├── InboxViewControllerSendMailExtension.swift │ ├── Login │ │ ├── ChangePasswordLoginViewController.swift │ │ ├── ConnectDeviceViewController.swift │ │ ├── CreatingAccountViewController.swift │ │ ├── GetPlusUIPopover.swift │ │ ├── LoginDeviceViewController.swift │ │ ├── NewLoginViewController.swift │ │ ├── RemoveDevicesViewController.swift │ │ ├── ResetDeviceViewController.swift │ │ └── SignUpViewController.swift │ ├── ManualSyncUIPopover.swift │ ├── ManualSyncViewController.swift │ ├── MembershipWebViewController.swift │ ├── MenuViewController.swift │ ├── NavTabsController.swift │ ├── New Login │ │ ├── DevicesLimitViewController.swift │ │ ├── ImportOptionsViewController.swift │ │ ├── LoginViewController.swift │ │ ├── PasswordChangeLoginViewController.swift │ │ ├── ResetPasswordViewController.swift │ │ ├── RestoreBackupViewController.swift │ │ ├── SetSettingsViewController.swift │ │ ├── SuccessResetViewController.swift │ │ ├── SyncRequestViewController.swift │ │ ├── SyncViewController.swift │ │ └── TwoFactorAuthViewController.swift │ ├── OptionsPickerUIPopover.swift │ ├── PasswordUIPopover.swift │ ├── PlusViewController.swift │ ├── ProfileEditorViewController.swift │ ├── RecoveryEmailViewController.swift │ ├── RegisterDomainStepOneViewController.swift │ ├── RegisterDomainStepThreeViewController.swift │ ├── RegisterDomainStepTwoViewController.swift │ ├── RemoveAliasUIPopover.swift │ ├── RemoveDeviceUIPopover.swift │ ├── ReplyToEditorViewController.swift │ ├── RestoreUIPopover.swift │ ├── RestoreViewController.swift │ ├── SecurityPrivacyViewController.swift │ ├── SettingsDevicesViewController.swift │ ├── SettingsGeneralViewController.swift │ ├── SettingsLabelsViewController.swift │ ├── Sign Up │ │ ├── CustomizeAccountCreatedViewController.swift │ │ ├── CustomizePermissionViewController.swift │ │ ├── CustomizeProfilePictureViewController.swift │ │ ├── CustomizeRecoveryEmailViewController.swift │ │ ├── CustomizeThemeViewController.swift │ │ ├── CustomizeiCloudViewController.swift │ │ ├── LaunchViewController.swift │ │ ├── SignUpConfirmPasswordViewController.swift │ │ ├── SignUpNameViewController.swift │ │ ├── SignUpPasswordViewController.swift │ │ ├── SignUpRecoveryEmailViewController.swift │ │ ├── SignUpTermsAndConditionsViewController.swift │ │ └── SignUpUserNameViewController.swift │ ├── SignInVerificationUIPopover.swift │ ├── SignInWarningPopoverViewController.swift │ ├── SignatureEditorViewController.swift │ ├── SignatureViewController.swift │ ├── SingleTextInputViewController.swift │ └── WelcomeTourViewController.swift ├── Extensions.swift ├── FileParser │ ├── LinkFileHandlerVersion6.swift │ └── LinkFileMiddleware.swift ├── Fonts │ ├── NunitoSans-Black.ttf │ ├── NunitoSans-BlackItalic.ttf │ ├── NunitoSans-Bold.ttf │ ├── NunitoSans-BoldItalic.ttf │ ├── NunitoSans-ExtraBold.ttf │ ├── NunitoSans-ExtraBoldItalic.ttf │ ├── NunitoSans-ExtraLight.ttf │ ├── NunitoSans-ExtraLightItalic.ttf │ ├── NunitoSans-Italic.ttf │ ├── NunitoSans-Light.ttf │ ├── NunitoSans-LightItalic.ttf │ ├── NunitoSans-Regular.ttf │ ├── NunitoSans-SemiBold.ttf │ └── NunitoSans-SemiBoldItalic.ttf ├── GoogleService-Info-Support.plist ├── GoogleService-Info.plist ├── Info.plist ├── Interfaces │ ├── AccountOptionsInterface.swift │ ├── EmailDetailContentOptionsInterface.swift │ ├── EmailDetailOptionsInterface.swift │ ├── EmailMoreOptionsInterface.swift │ ├── LabelOptionsInterface.swift │ └── MailboxOptionsInterface.swift ├── Libs │ ├── AESCipher.swift │ ├── CriptextDefaults.swift │ ├── CriptextError.swift │ ├── DLRadioButton.h │ ├── DLRadioButton.m │ ├── DateString.swift │ ├── DateUtils.h │ ├── DateUtils.m │ ├── ECKeyPair+KeyPairOpenPrivate.h │ ├── ECKeyPair+KeyPairOpenPrivate.m │ ├── Env.swift │ ├── EventHandler.swift │ ├── EventParser.swift │ ├── ExceptionCatcher.h │ ├── FileUtils.swift │ ├── InitialsImageView.swift │ ├── LinkDBMaps.swift │ ├── PasscodeConfig.swift │ ├── ScheduleWorker.swift │ ├── SignalHandler.swift │ ├── SingleWebSocket.swift │ ├── StreamReader.swift │ ├── Time.swift │ ├── UIUtils.swift │ ├── Utils.swift │ ├── ValidateString.swift │ └── iOS-Email-Client-Bridging-Header.h ├── LogIn.storyboard ├── Lottie │ ├── Arm.json │ ├── Email.json │ ├── ExportDesktop.json │ ├── ExportingMobile.json │ ├── ImportingDesktop.json │ ├── ImportingMobile.json │ ├── Lock.json │ ├── WaitingCloud.json │ ├── WaitingDesktop.json │ └── Waitingmobile.json ├── MCOMessageViewScript.js ├── Managers │ ├── APIManager.swift │ ├── BackupManager.swift │ ├── CloudRestorer.swift │ ├── ContactManager.swift │ ├── CriptextFileManager.swift │ ├── DBManager.swift │ ├── LoginManager.swift │ ├── RequestManager.swift │ ├── ThemeManager.swift │ └── WebSocketManager.swift ├── Model │ ├── AcceptData.swift │ ├── AccountAlias.swift │ ├── AliasSettingsData.swift │ ├── CRBundle.swift │ ├── ComposerData.swift │ ├── ControllerMessage.swift │ ├── CustomDomainSettingsData.swift │ ├── DB │ │ ├── Account.swift │ │ ├── AccountContact.swift │ │ ├── Alias.swift │ │ ├── CRPreKeyRecord.swift │ │ ├── CRSessionRecord.swift │ │ ├── CRSignedPreKeyRecord.swift │ │ ├── CRTrustedDevice.swift │ │ ├── Contact.swift │ │ ├── CustomDomain.swift │ │ ├── DummySession.swift │ │ ├── Email.swift │ │ ├── EmailContact.swift │ │ ├── FeedItem.swift │ │ ├── File.swift │ │ ├── FileKey.swift │ │ ├── Label.swift │ │ └── QueueItem.swift │ ├── Device.swift │ ├── DeviceSettingsData.swift │ ├── Dummy.swift │ ├── EmailDetailData.swift │ ├── EventData.swift │ ├── FeedsData.swift │ ├── GeneralSettingsData.swift │ ├── LinkData.swift │ ├── LinkFileHeaderData.swift │ ├── LoginData.swift │ ├── LoginParams.swift │ ├── MXRecord.swift │ ├── MailboxData.swift │ ├── MenuData.swift │ ├── PreviewItem.swift │ ├── ResponseData.swift │ ├── SendEmailData.swift │ ├── ShareActivityItemProvider.swift │ ├── SignUpData.swift │ ├── TempSignUpData.swift │ ├── Theme.swift │ └── Thread.swift ├── Shared │ ├── AppStoreReviewManager.swift │ ├── ContactUtils.swift │ ├── NewEmail.swift │ ├── NewEmailHandler.swift │ ├── SharedAPI.swift │ ├── SharedDB.swift │ ├── SharedExtensions.swift │ └── SharedUtils.swift ├── SignUp.storyboard ├── Snackbar │ ├── CriptextSnackbar.swift │ ├── CriptextSnackbarController.swift │ └── PaddingUILabel.swift ├── Views │ ├── AccountCollectionCell.swift │ ├── AccountCollectionCell.xib │ ├── AccountFromCell.swift │ ├── AccountFromCell.xib │ ├── AccountTableCell.swift │ ├── AccountsFooterCell.swift │ ├── AccountsFooterCell.xib │ ├── AddAliasTableViewCell.swift │ ├── AliasTableViewCell.swift │ ├── AlreadyPlusUIView.swift │ ├── AttachmentHistoryTableCell.swift │ ├── AttachmentHistoryTableCell.xib │ ├── AttachmentHistoryUIPopover.swift │ ├── AttachmentOptionsContainerView.swift │ ├── AttachmentTableCell.swift │ ├── AttachmentTableViewCell.swift │ ├── AttachmentTableViewCell.xib │ ├── BackupHeaderView.swift │ ├── Base.lproj │ │ ├── BackupHeaderView.xib │ │ ├── ComposerVerifyRecoveryUIPopup.xib │ │ ├── ConnectView.xib │ │ ├── ContactsDetailUIPopover.xib │ │ ├── EmailDetailTableCell.xib │ │ ├── EmailSetPasswordUIPopover.xib │ │ ├── EmailTableFooterView.xib │ │ ├── EnableAutoBackupUIPopover.xib │ │ ├── LabelsFooterTableViewCell.xib │ │ ├── LabelsHeaderTableViewCell.xib │ │ ├── LabelsUIPopover.xib │ │ ├── MXRecordsUIView.xib │ │ ├── MailboxHeaderUITableCell.xib │ │ ├── ManualSyncUIPopover.xib │ │ ├── MoreOptionsUIView.xib │ │ ├── OptionsPickerUIPopover.xib │ │ ├── PasscodeLockView.xib │ │ ├── PasswordUIPopover.xib │ │ ├── RemoveDeviceUIPopover.xib │ │ ├── RestoreUIPopover.xib │ │ ├── SignInVerificationUIPopover.xib │ │ ├── SignInWarningUIPopover.xib │ │ ├── SingleTextInputUIPopover.xib │ │ └── WelcomeTourView.xib │ ├── CheckMarkUIView.swift │ ├── CircleBackButton.swift │ ├── CircleLoaderUIView.swift │ ├── CircleProgressBarUIView.swift │ ├── ComposerVerifyRecoveryUIPopup.swift │ ├── ConnectUIView.swift │ ├── ContactShareTableViewCell.swift │ ├── ContactShareTableViewCell.xib │ ├── ContactTableViewCell.swift │ ├── ContactTableViewCell.xib │ ├── ContactsDetailUIPopover.swift │ ├── CounterLabelUIView.swift │ ├── CreatingAccountLoadingUIView.swift │ ├── CreatingAccountLoadingUIView.xib │ ├── CustomDomainTableViewCell.swift │ ├── CustomLabelTableViewCell.swift │ ├── DeviceLimitTableViewCell.swift │ ├── DotsProgressUIView.swift │ ├── EmailDetailFooterCell.swift │ ├── EmailDetailHeaderCell.swift │ ├── EmailTableHeaderView.xib │ ├── EmailTableViewCell.swift │ ├── EnableAutoBackupUIPopover.swift │ ├── FeedHeaderTitleUIView.swift │ ├── FeedTableViewCell.swift │ ├── FilterUIPopover.swift │ ├── FilterUIPopover.xib │ ├── GeneralHeaderTableViewCell.swift │ ├── GeneralSwitchTableViewCell.swift │ ├── GeneralTapTableCellView.swift │ ├── GeneralVersionTableViewCell.swift │ ├── GenericAlertUIPopover.xib │ ├── GenericDualAnswerUIPopover.swift │ ├── GenericDualAnswerUIPopover.xib │ ├── GenericSingleInputPopover.xib │ ├── GetPlusUIPopover.xib │ ├── GradientUIView.swift │ ├── HintUIView.swift │ ├── HintUIView.xib │ ├── HistoryUIPopover.swift │ ├── HistoryUIPopover.xib │ ├── InboxHeaderUITableCell.swift │ ├── InboxTableViewCell.swift │ ├── LabelTableViewCell.swift │ ├── LabelTableViewCell.xib │ ├── LabelsFooterViewCell.swift │ ├── LabelsHeaderCellView.swift │ ├── LabelsLabelTableViewCell.swift │ ├── LabelsUIPopover.swift │ ├── LinkDeviceUIPopover.swift │ ├── LinkDeviceUIPopover.xib │ ├── LogIn │ │ ├── SyncDeniedUIView.swift │ │ └── SyncRequestUIView.swift │ ├── MXRecordsUIView.swift │ ├── MailboxNewsHeaderUIView.swift │ ├── MailboxNewsHeaderUIView.xib │ ├── MenuItemUIView.swift │ ├── MenuItemUIView.xib │ ├── MoreOptionsUIView.swift │ ├── PlainContactTableViewCell.swift │ ├── ProgressAnimatedUIView.swift │ ├── ProgressArrowUIView.swift │ ├── ReadHistoryUIPopover.xib │ ├── ReplyDetailUIView.swift │ ├── RestoreUIView.swift │ ├── SetSettingsTableViewCell.swift │ ├── SettingsDeviceTableViewCell.swift │ ├── SettingsGeneralHeaderView.swift │ ├── SettingsGeneralHeaderView.xib │ ├── SettingsOptionCell.swift │ ├── SettingsOptionTableCell.xib │ ├── StatusTextField.swift │ ├── SwingingLoaderUIView.swift │ ├── TableEndViewCell.swift │ ├── TableEndViewCell.xib │ ├── TipUIView.swift │ ├── Toolbars │ │ ├── HeaderBarUIView.swift │ │ ├── HeaderBarUIView.xib │ │ ├── TopbarUIView.swift │ │ └── TopbarUIView.xib │ ├── UnsentUIPopover.swift │ ├── UnsentUIPopover.xib │ ├── UpgradePlusUIView.swift │ ├── YayUIPopover.swift │ ├── YayUIPopover.xib │ ├── de.lproj │ │ ├── BackupHeaderView.strings │ │ ├── ComposerVerifyRecoveryUIPopup.strings │ │ ├── ConnectView.strings │ │ ├── ContactsDetailUIPopover.strings │ │ ├── EmailDetailTableCell.strings │ │ ├── EmailSetPasswordUIPopover.strings │ │ ├── EmailTableFooterView.strings │ │ ├── EnableAutoBackupUIPopover.strings │ │ ├── LabelsFooterTableViewCell.strings │ │ ├── LabelsHeaderTableViewCell.strings │ │ ├── LabelsUIPopover.strings │ │ ├── MailboxHeaderUITableCell.strings │ │ ├── ManualSyncUIPopover.strings │ │ ├── MoreOptionsUIView.strings │ │ ├── OptionsPickerUIPopover.strings │ │ ├── PasscodeLockView.strings │ │ ├── PasswordUIPopover.strings │ │ ├── RemoveDeviceUIPopover.strings │ │ ├── RestoreUIPopover.strings │ │ ├── SignInVerificationUIPopover.strings │ │ ├── SignInWarningUIPopover.strings │ │ ├── SingleTextInputUIPopover.strings │ │ └── WelcomeTourView.strings │ ├── en.lproj │ │ ├── BackupHeaderView.strings │ │ ├── ComposerVerifyRecoveryUIPopup.strings │ │ ├── ConnectView.strings │ │ ├── ContactsDetailUIPopover.strings │ │ ├── EmailDetailTableCell.strings │ │ ├── EmailSetPasswordUIPopover.strings │ │ ├── EmailTableFooterView.strings │ │ ├── EnableAutoBackupUIPopover.strings │ │ ├── LabelsFooterTableViewCell.strings │ │ ├── LabelsHeaderTableViewCell.strings │ │ ├── LabelsUIPopover.strings │ │ ├── MXRecordsUIView.strings │ │ ├── MailboxHeaderUITableCell.strings │ │ ├── ManualSyncUIPopover.strings │ │ ├── MoreOptionsUIView.strings │ │ ├── OptionsPickerUIPopover.strings │ │ ├── PasscodeLockView.strings │ │ ├── PasswordUIPopover.strings │ │ ├── RemoveDeviceUIPopover.strings │ │ ├── RestoreUIPopover.strings │ │ ├── SignInVerificationUIPopover.strings │ │ ├── SignInWarningUIPopover.strings │ │ ├── SingleTextInputUIPopover.strings │ │ └── WelcomeTourView.strings │ ├── es.lproj │ │ ├── BackupHeaderView.strings │ │ ├── ComposerVerifyRecoveryUIPopup.strings │ │ ├── ConnectView.strings │ │ ├── ContactsDetailUIPopover.strings │ │ ├── EmailDetailTableCell.strings │ │ ├── EmailSetPasswordUIPopover.strings │ │ ├── EmailTableFooterView.strings │ │ ├── EnableAutoBackupUIPopover.strings │ │ ├── LabelsFooterTableViewCell.strings │ │ ├── LabelsHeaderTableViewCell.strings │ │ ├── LabelsUIPopover.strings │ │ ├── MXRecordsUIView.strings │ │ ├── MailboxHeaderUITableCell.strings │ │ ├── ManualSyncUIPopover.strings │ │ ├── MoreOptionsUIView.strings │ │ ├── OptionsPickerUIPopover.strings │ │ ├── PasscodeLockView.strings │ │ ├── PasswordUIPopover.strings │ │ ├── RemoveDeviceUIPopover.strings │ │ ├── RestoreUIPopover.strings │ │ ├── SignInVerificationUIPopover.strings │ │ ├── SignInWarningUIPopover.strings │ │ ├── SingleTextInputUIPopover.strings │ │ └── WelcomeTourView.strings │ ├── fr.lproj │ │ ├── BackupHeaderView.strings │ │ ├── ComposerVerifyRecoveryUIPopup.strings │ │ ├── ConnectView.strings │ │ ├── ContactsDetailUIPopover.strings │ │ ├── EmailDetailTableCell.strings │ │ ├── EmailSetPasswordUIPopover.strings │ │ ├── EmailTableFooterView.strings │ │ ├── EnableAutoBackupUIPopover.strings │ │ ├── LabelsFooterTableViewCell.strings │ │ ├── LabelsHeaderTableViewCell.strings │ │ ├── LabelsUIPopover.strings │ │ ├── MailboxHeaderUITableCell.strings │ │ ├── ManualSyncUIPopover.strings │ │ ├── MoreOptionsUIView.strings │ │ ├── OptionsPickerUIPopover.strings │ │ ├── PasscodeLockView.strings │ │ ├── PasswordUIPopover.strings │ │ ├── RemoveDeviceUIPopover.strings │ │ ├── RestoreUIPopover.strings │ │ ├── SignInVerificationUIPopover.strings │ │ ├── SignInWarningUIPopover.strings │ │ ├── SingleTextInputUIPopover.strings │ │ └── WelcomeTourView.strings │ ├── iOS-Email-Client │ │ └── Views │ │ │ ├── Base.lproj │ │ │ └── RemoveAliasUIPopover.xib │ │ │ ├── iOS-Email-Client │ │ │ └── Views │ │ │ │ ├── Base.lproj │ │ │ │ └── AddAliasUIPopover.xib │ │ │ │ ├── de.lproj │ │ │ │ └── AddAliasUIPopover.strings │ │ │ │ ├── en.lproj │ │ │ │ └── AddAliasUIPopover.strings │ │ │ │ ├── es.lproj │ │ │ │ └── AddAliasUIPopover.strings │ │ │ │ ├── fr.lproj │ │ │ │ └── AddAliasUIPopover.strings │ │ │ │ └── ru.lproj │ │ │ │ └── AddAliasUIPopover.strings │ │ │ └── ru.lproj │ │ │ └── RemoveAliasUIPopover.strings │ └── ru.lproj │ │ ├── BackupHeaderView.strings │ │ ├── ComposerVerifyRecoveryUIPopup.strings │ │ ├── ConnectView.strings │ │ ├── ContactsDetailUIPopover.strings │ │ ├── EmailDetailTableCell.strings │ │ ├── EmailSetPasswordUIPopover.strings │ │ ├── EmailTableFooterView.strings │ │ ├── EnableAutoBackupUIPopover.strings │ │ ├── LabelsFooterTableViewCell.strings │ │ ├── LabelsHeaderTableViewCell.strings │ │ ├── LabelsUIPopover.strings │ │ ├── MailboxHeaderUITableCell.strings │ │ ├── ManualSyncUIPopover.strings │ │ ├── MoreOptionsUIView.strings │ │ ├── OptionsPickerUIPopover.strings │ │ ├── PasscodeLockView.strings │ │ ├── PasswordUIPopover.strings │ │ ├── RemoveDeviceUIPopover.strings │ │ ├── RestoreUIPopover.strings │ │ ├── SignInVerificationUIPopover.strings │ │ ├── SignInWarningUIPopover.strings │ │ ├── SingleTextInputUIPopover.strings │ │ └── WelcomeTourView.strings ├── attachments.gif ├── dark-showmore.png ├── de.lproj │ ├── CriptextLocalizable.strings │ ├── LaunchScreen.strings │ ├── Login.strings │ ├── Main.strings │ └── PasscodeLock.strings ├── editor-style.css ├── en.lproj │ ├── CriptextLocalizable.strings │ ├── LaunchScreen.strings │ ├── Login.strings │ ├── Main.strings │ └── PasscodeLock.strings ├── es.lproj │ ├── CriptextLocalizable.strings │ ├── LaunchScreen.strings │ ├── Login.strings │ ├── Main.strings │ └── PasscodeLock.strings ├── fr.lproj │ ├── CriptextLocalizable.strings │ ├── LaunchScreen.strings │ ├── Login.strings │ ├── Main.strings │ └── PasscodeLock.strings ├── iOS-Email-Client.entitlements ├── icon_sent_chat.png ├── mark_read.png ├── mark_unread.png ├── ru.lproj │ ├── CriptextLocalizable.strings │ ├── LaunchScreen.strings │ ├── Login.strings │ ├── Main.strings │ └── PasscodeLock.strings ├── showmore-dark-opened.png ├── showmore-light-opened.png └── showmore.png ├── iOS-Email-ClientTests ├── Cases │ ├── AESCipherTests.swift │ ├── ComposerViewControllerTests.swift │ ├── CreateCustomJSONFileTests.swift │ ├── EventHandlerTests.swift │ ├── FileManagerTests.swift │ ├── GZipTests.swift │ ├── SearchTests.swift │ ├── SendEmailTests.swift │ ├── SignUpTests.swift │ ├── SignalTests.swift │ ├── ThreadTests.swift │ └── UtilsTests.swift ├── Info.plist ├── Libs │ └── ValidateStringTests.swift ├── Supporting Files │ ├── APIManagerSpy.swift │ ├── DBFactory.swift │ ├── FileManagerSpyDelegate.swift │ ├── FindKeybundleSpyApiManager.swift │ ├── MockAPIManager.swift │ ├── MockSignalHandler.swift │ └── TestSignalHandler.swift ├── compressed.gz ├── criptextlogo.png ├── gunzipped.txt └── iOS_Email_ClientTests.swift ├── realm-cocoa.json └── scripts ├── bootstrap.sh ├── cartfile-diff-install.sh ├── firebase.sh ├── intelligent-bootstrap.sh ├── run └── upload-symbols /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" -------------------------------------------------------------------------------- /ShareExtension/de.lproj/ComposerUIView.strings: -------------------------------------------------------------------------------- 1 | "KxY-Rb-6fc.placeholder" = "Betreff"; 2 | "lGj-g1-km4.title" = "Neue sichere E-Mail"; 3 | -------------------------------------------------------------------------------- /ShareExtension/de.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | "0qN-Co-q96.title" = "Root View Controller"; 2 | -------------------------------------------------------------------------------- /ShareExtension/en.lproj/ComposerUIView.strings: -------------------------------------------------------------------------------- 1 | "KxY-Rb-6fc.placeholder" = "Subject"; 2 | "lGj-g1-km4.title" = "New Secure Email"; 3 | -------------------------------------------------------------------------------- /ShareExtension/en.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | "0qN-Co-q96.title" = "Root View Controller"; 2 | -------------------------------------------------------------------------------- /ShareExtension/es.lproj/ComposerUIView.strings: -------------------------------------------------------------------------------- 1 | "KxY-Rb-6fc.placeholder" = "Asunto"; 2 | "lGj-g1-km4.title" = "Nuevo Correo Seguro"; 3 | -------------------------------------------------------------------------------- /ShareExtension/es.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | "0qN-Co-q96.title" = "Root View Controller"; 2 | -------------------------------------------------------------------------------- /ShareExtension/fr.lproj/ComposerUIView.strings: -------------------------------------------------------------------------------- 1 | "KxY-Rb-6fc.placeholder" = "Objet"; 2 | "lGj-g1-km4.title" = "Nouvel Email Sécurisé"; 3 | -------------------------------------------------------------------------------- /ShareExtension/fr.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | "0qN-Co-q96.title" = "Root View Controller"; 2 | -------------------------------------------------------------------------------- /ShareExtension/ru.lproj/ComposerUIView.strings: -------------------------------------------------------------------------------- 1 | "KxY-Rb-6fc.placeholder" = "Тема"; 2 | "lGj-g1-km4.title" = "Новое Защищенное Письмо"; 3 | -------------------------------------------------------------------------------- /ShareExtension/ru.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | "0qN-Co-q96.title" = "Root View Controller"; 2 | -------------------------------------------------------------------------------- /iOS-Email-Client.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x-1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x-2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x-1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x-1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-835x835@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/Icon-App-835x835@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/appIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.appiconset/appIcon.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/AppIcon.support.appiconset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Attachment Icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_audio.imageset/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_audio.imageset/audio.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_audio.imageset/audio@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_audio.imageset/audio@2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_audio.imageset/audio@3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_audio.imageset/audio@3.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_video.imageset/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_video.imageset/video.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_video.imageset/video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_video.imageset/video@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_video.imageset/video@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_video.imageset/video@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_zip.imageset/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_zip.imageset/zip.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_zip.imageset/zip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_zip.imageset/zip@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_zip.imageset/zip@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Attachment Icons/attachment_zip.imageset/zip@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/my_account.imageset/ic-myaccountx1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/my_account.imageset/ic-myaccountx1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/my_account.imageset/ic-myaccountx2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/my_account.imageset/ic-myaccountx2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/my_account.imageset/ic-myaccountx3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/my_account.imageset/ic-myaccountx3.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/settings.imageset/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/settings.imageset/settings.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/settings.imageset/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/settings.imageset/settings@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/settings.imageset/settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/settings.imageset/settings@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_allmail.imageset/1-Allmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_allmail.imageset/1-Allmail.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_allmail.imageset/2-Allmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_allmail.imageset/2-Allmail.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_allmail.imageset/3-Allmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_allmail.imageset/3-Allmail.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_draft.imageset/draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_draft.imageset/draft.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_draft.imageset/draft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_draft.imageset/draft@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_draft.imageset/draft@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_draft.imageset/draft@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_friend.imageset/slider_friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_friend.imageset/slider_friend.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_friend.imageset/slider_friend@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_friend.imageset/slider_friend@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_friend.imageset/slider_friend@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_friend.imageset/slider_friend@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_header.imageset/slider_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_header.imageset/slider_header.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_header.imageset/slider_header@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_header.imageset/slider_header@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_header.imageset/slider_header@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_header.imageset/slider_header@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_inbox.imageset/1-Inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_inbox.imageset/1-Inbox.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_inbox.imageset/2-Inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_inbox.imageset/2-Inbox.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_inbox.imageset/3-Inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_inbox.imageset/3-Inbox.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_junk.imageset/spam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_junk.imageset/spam.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_junk.imageset/spam@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_junk.imageset/spam@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_junk.imageset/spam@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_junk.imageset/spam@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_logout.imageset/slider_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_logout.imageset/slider_logout.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_logout.imageset/slider_logout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_logout.imageset/slider_logout@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_logout.imageset/slider_logout@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_logout.imageset/slider_logout@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_sent.imageset/sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_sent.imageset/sent.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_sent.imageset/sent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_sent.imageset/sent@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_sent.imageset/sent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_sent.imageset/sent@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_support.imageset/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_support.imageset/support.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_support.imageset/support@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_support.imageset/support@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_support.imageset/support@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_support.imageset/support@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_trash.imageset/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_trash.imageset/trash.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_trash.imageset/trash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_trash.imageset/trash@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_trash.imageset/trash@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_trash.imageset/trash@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/slider_upgrade.imageset/slider_upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/slider_upgrade.imageset/slider_upgrade.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/starred.imageset/starred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/starred.imageset/starred.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/starred.imageset/starred@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/starred.imageset/starred@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Slider Menu/starred.imageset/starred@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Slider Menu/starred.imageset/starred@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Snackbar Icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Snackbar Icons/double-check.imageset/DoubleCheck@1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Snackbar Icons/double-check.imageset/DoubleCheck@1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Snackbar Icons/double-check.imageset/DoubleCheck@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Snackbar Icons/double-check.imageset/DoubleCheck@2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Snackbar Icons/double-check.imageset/DoubleCheck@3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Snackbar Icons/double-check.imageset/DoubleCheck@3.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Snackbar Icons/down-arrow.imageset/DownArrow@1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Snackbar Icons/down-arrow.imageset/DownArrow@1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Snackbar Icons/down-arrow.imageset/DownArrow@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Snackbar Icons/down-arrow.imageset/DownArrow@2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Snackbar Icons/down-arrow.imageset/DownArrow@3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Snackbar Icons/down-arrow.imageset/DownArrow@3.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Snackbar Icons/load-arrow.imageset/LoadArrow@1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Snackbar Icons/load-arrow.imageset/LoadArrow@1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Snackbar Icons/load-arrow.imageset/LoadArrow@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Snackbar Icons/load-arrow.imageset/LoadArrow@2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Snackbar Icons/load-arrow.imageset/LoadArrow@3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Snackbar Icons/load-arrow.imageset/LoadArrow@3.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Snackbar Icons/lock.imageset/Lock@1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Snackbar Icons/lock.imageset/Lock@1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Snackbar Icons/lock.imageset/Lock@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Snackbar Icons/lock.imageset/Lock@2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/Snackbar Icons/lock.imageset/Lock@3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/Snackbar Icons/lock.imageset/Lock@3.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/activity.imageset/activityFeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/activity.imageset/activityFeed.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/activity.imageset/activityFeed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/activity.imageset/activityFeed@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/activity.imageset/activityFeed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/activity.imageset/activityFeed@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/archive-icon.imageset/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/archive-icon.imageset/archive.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/archive-icon.imageset/archive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/archive-icon.imageset/archive@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/archive-icon.imageset/archive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/archive-icon.imageset/archive@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/arrow-back.imageset/fill1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/arrow-back.imageset/fill1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/arrow-back.imageset/fill1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/arrow-back.imageset/fill1@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/arrow-back.imageset/fill1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/arrow-back.imageset/fill1@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/arrow-down.imageset/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/arrow-down.imageset/arrow-down.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/arrow-down.imageset/arrow-down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/arrow-down.imageset/arrow-down@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/arrow-down.imageset/arrow-down@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/arrow-down.imageset/arrow-down@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/arrow-next.imageset/arrow-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/arrow-next.imageset/arrow-next.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/arrow-next.imageset/arrow-next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/arrow-next.imageset/arrow-next@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/arrow-next.imageset/arrow-next@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/arrow-next.imageset/arrow-next@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/arrow-up.imageset/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/arrow-up.imageset/arrow-up.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/arrow-up.imageset/arrow-up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/arrow-up.imageset/arrow-up@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/arrow-up.imageset/arrow-up@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/arrow-up.imageset/arrow-up@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/attachment.imageset/attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/attachment.imageset/attachment.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/attachment.imageset/attachment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/attachment.imageset/attachment@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/attachment.imageset/attachment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/attachment.imageset/attachment@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/attachment_camera.imageset/attachment_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/attachment_camera.imageset/attachment_camera.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/attachment_camera.imageset/attachment_camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/attachment_camera.imageset/attachment_camera@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/attachment_camera.imageset/attachment_camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/attachment_camera.imageset/attachment_camera@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/attachment_inbox.imageset/attachment_inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/attachment_inbox.imageset/attachment_inbox.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/attachment_inbox.imageset/attachment_inbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/attachment_inbox.imageset/attachment_inbox@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/attachment_inbox.imageset/attachment_inbox@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/attachment_inbox.imageset/attachment_inbox@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/belldark.imageset/belldark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/belldark.imageset/belldark.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/belldark.imageset/belldark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/belldark.imageset/belldark@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/belldark.imageset/belldark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/belldark.imageset/belldark@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/beta.imageset/beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/beta.imageset/beta.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/beta.imageset/betax2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/beta.imageset/betax2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/beta.imageset/betax3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/beta.imageset/betax3.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/billing-settings.imageset/img_billingsett1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/billing-settings.imageset/img_billingsett1x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/billing-settings.imageset/img_billingsett2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/billing-settings.imageset/img_billingsett2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/billing-settings.imageset/img_billingsett3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/billing-settings.imageset/img_billingsett3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/border-gold.imageset/img_halo1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/border-gold.imageset/img_halo1x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/border-gold.imageset/img_halo2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/border-gold.imageset/img_halo2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/border-gold.imageset/img_halo3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/border-gold.imageset/img_halo3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/camera.imageset/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/camera.imageset/camera.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/camera.imageset/camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/camera.imageset/camera@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/camera.imageset/camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/camera.imageset/camera@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/check-gold.imageset/ic_goldcheck1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/check-gold.imageset/ic_goldcheck1x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/check-gold.imageset/ic_goldcheck2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/check-gold.imageset/ic_goldcheck2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/check-gold.imageset/ic_goldcheck3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/check-gold.imageset/ic_goldcheck3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/check.imageset/check_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/check.imageset/check_2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/check.imageset/check_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/check.imageset/check_2@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/check.imageset/check_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/check.imageset/check_2@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/close-rounded.imageset/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/close-rounded.imageset/close.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/close-rounded.imageset/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/close-rounded.imageset/close@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/close-rounded.imageset/close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/close-rounded.imageset/close@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/close.imageset/x_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/close.imageset/x_2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/close.imageset/x_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/close.imageset/x_2@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/close.imageset/x_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/close.imageset/x_2@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-big.imageset/restoreCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-big.imageset/restoreCloud.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-big.imageset/restoreCloud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-big.imageset/restoreCloud@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-big.imageset/restoreCloud@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-big.imageset/restoreCloud@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-fail.imageset/noCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-fail.imageset/noCloud.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-fail.imageset/noCloud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-fail.imageset/noCloud@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-fail.imageset/noCloud@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-fail.imageset/noCloud@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-medium.imageset/mediumRestoreCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-medium.imageset/mediumRestoreCloud.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-medium.imageset/mediumRestoreCloud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-medium.imageset/mediumRestoreCloud@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-medium.imageset/mediumRestoreCloud@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-medium.imageset/mediumRestoreCloud@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-rip.imageset/noCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-rip.imageset/noCloud.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-rip.imageset/noCloud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-rip.imageset/noCloud@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-rip.imageset/noCloud@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-rip.imageset/noCloud@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-small.imageset/smallCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-small.imageset/smallCloud.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-small.imageset/smallCloud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-small.imageset/smallCloud@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-small.imageset/smallCloud@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-small.imageset/smallCloud@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-success.imageset/smallCheckCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-success.imageset/smallCheckCloud.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-success.imageset/smallCheckCloud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-success.imageset/smallCheckCloud@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/cloud-success.imageset/smallCheckCloud@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/cloud-success.imageset/smallCheckCloud@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/color-bell.imageset/campanita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/color-bell.imageset/campanita.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/color-bell.imageset/campanita@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/color-bell.imageset/campanita@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/color-bell.imageset/campanita@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/color-bell.imageset/campanita@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/composer.imageset/composer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/composer.imageset/composer.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/composer.imageset/composer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/composer.imageset/composer@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/composer.imageset/composer@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/composer.imageset/composer@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/criptext-logo.imageset/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/criptext-logo.imageset/logo.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/criptext-logo.imageset/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/criptext-logo.imageset/logo@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/criptext-logo.imageset/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/criptext-logo.imageset/logo@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/delete-icon.imageset/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/delete-icon.imageset/trash.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/delete-icon.imageset/trash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/delete-icon.imageset/trash@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/delete-icon.imageset/trash@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/delete-icon.imageset/trash@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-alert.imageset/deviceAlert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-alert.imageset/deviceAlert.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-alert.imageset/deviceAlert@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-alert.imageset/deviceAlert@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-alert.imageset/deviceAlert@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-alert.imageset/deviceAlert@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-desktop-app.imageset/icLaptoplimit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-desktop-app.imageset/icLaptoplimit.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-desktop-app.imageset/icLaptoplimit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-desktop-app.imageset/icLaptoplimit@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-desktop-app.imageset/icLaptoplimit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-desktop-app.imageset/icLaptoplimit@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-desktop.imageset/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-desktop.imageset/Group.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-desktop.imageset/Group@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-desktop.imageset/Group@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-desktop.imageset/Group@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-desktop.imageset/Group@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-mobile-app.imageset/icMobilelimit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-mobile-app.imageset/icMobilelimit.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-mobile-app.imageset/icMobilelimit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-mobile-app.imageset/icMobilelimit@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-mobile-app.imageset/icMobilelimit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-mobile-app.imageset/icMobilelimit@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-mobile.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-mobile.imageset/icon.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-mobile.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-mobile.imageset/icon@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-mobile.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-mobile.imageset/icon@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-remove.imageset/icLogout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-remove.imageset/icLogout.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-remove.imageset/icLogout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-remove.imageset/icLogout@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/device-remove.imageset/icLogout@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/device-remove.imageset/icLogout@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/dots-options.imageset/dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/dots-options.imageset/dots.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/dots-options.imageset/dots@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/dots-options.imageset/dots@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/dots-options.imageset/dots@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/dots-options.imageset/dots@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/dots.imageset/dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/dots.imageset/dots.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/dots.imageset/dots@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/dots.imageset/dots@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/dots.imageset/dots@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/dots.imageset/dots@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/draft_dark.imageset/draftDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/draft_dark.imageset/draftDark.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/draft_dark.imageset/draftDark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/draft_dark.imageset/draftDark@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/draft_dark.imageset/draftDark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/draft_dark.imageset/draftDark@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/draft_light.imageset/draftLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/draft_light.imageset/draftLight.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/draft_light.imageset/draftLight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/draft_light.imageset/draftLight@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/draft_light.imageset/draftLight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/draft_light.imageset/draftLight@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/envelope.imageset/Env elope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/envelope.imageset/Env elope.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/envelope.imageset/Env elope@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/envelope.imageset/Env elope@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/envelope.imageset/Env elope@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/envelope.imageset/Env elope@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/expiration-email-icon.imageset/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/expiration-email-icon.imageset/clock.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/expiration-email-icon.imageset/clock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/expiration-email-icon.imageset/clock@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/expiration-email-icon.imageset/clock@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/expiration-email-icon.imageset/clock@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/faceID.imageset/logofaceid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/faceID.imageset/logofaceid.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/faceID.imageset/logofaceid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/faceID.imageset/logofaceid@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/faceID.imageset/logofaceid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/faceID.imageset/logofaceid@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/filter.imageset/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/filter.imageset/filter.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/filter.imageset/filter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/filter.imageset/filter@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/filter.imageset/filter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/filter.imageset/filter@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/footer_beta.imageset/footer_beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/footer_beta.imageset/footer_beta.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/formatting.imageset/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/formatting.imageset/group.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/formatting.imageset/group@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/formatting.imageset/group@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/formatting.imageset/group@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/formatting.imageset/group@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/google-g-icon.imageset/google-g-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/google-g-icon.imageset/google-g-icon.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/google-g-icon.imageset/google-g-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/google-g-icon.imageset/google-g-icon@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/google-g-icon.imageset/google-g-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/google-g-icon.imageset/google-g-icon@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/got-plus.imageset/img_gotplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/got-plus.imageset/img_gotplus.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/got-plus.imageset/img_gotplus2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/got-plus.imageset/img_gotplus2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/got-plus.imageset/img_gotplus3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/got-plus.imageset/img_gotplus3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icArrow.imageset/icArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icArrow.imageset/icArrow.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icArrow.imageset/icArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icArrow.imageset/icArrow@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icArrow.imageset/icArrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icArrow.imageset/icArrow@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icHelp.imageset/icHelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icHelp.imageset/icHelp.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icHelp.imageset/icHelp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icHelp.imageset/icHelp@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icHelp.imageset/icHelp@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icHelp.imageset/icHelp@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icSecinb.imageset/icSecinb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icSecinb.imageset/icSecinb.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icSecinb.imageset/icSecinb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icSecinb.imageset/icSecinb@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icSecinb.imageset/icSecinb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icSecinb.imageset/icSecinb@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-allmail.imageset/3 copy 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-allmail.imageset/3 copy 3.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-allmail.imageset/3 copy 3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-allmail.imageset/3 copy 3@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-allmail.imageset/3 copy 3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-allmail.imageset/3 copy 3@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-down.imageset/downArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-down.imageset/downArrow.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-down.imageset/downArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-down.imageset/downArrow@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-down.imageset/downArrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-down.imageset/downArrow@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-download.imageset/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-download.imageset/download.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-download.imageset/download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-download.imageset/download@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-download.imageset/download@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-download.imageset/download@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-draft.imageset/draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-draft.imageset/draft.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-draft.imageset/draft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-draft.imageset/draft@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-draft.imageset/draft@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-draft.imageset/draft@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-edit.imageset/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-edit.imageset/edit.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-edit.imageset/edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-edit.imageset/edit@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-edit.imageset/edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-edit.imageset/edit@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-forward.imageset/Page 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-forward.imageset/Page 1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-forward.imageset/Page 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-forward.imageset/Page 1@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-forward.imageset/Page 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-forward.imageset/Page 1@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-important-fill.imageset/important2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-important-fill.imageset/important2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-important-fill.imageset/important2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-important-fill.imageset/important2@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-important-fill.imageset/important2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-important-fill.imageset/important2@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-inbox.imageset/fill1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-inbox.imageset/fill1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-inbox.imageset/fill1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-inbox.imageset/fill1@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-inbox.imageset/fill1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-inbox.imageset/fill1@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-invite.imageset/invite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-invite.imageset/invite.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-invite.imageset/invite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-invite.imageset/invite@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-invite.imageset/invite@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-invite.imageset/invite@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-label.imageset/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-label.imageset/label.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-label.imageset/label@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-label.imageset/label@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-label.imageset/label@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-label.imageset/label@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-plus.imageset/Combined Shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-plus.imageset/Combined Shape.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-plus.imageset/Combined Shape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-plus.imageset/Combined Shape@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-plus.imageset/Combined Shape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-plus.imageset/Combined Shape@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-refresh.imageset/shuffleIcCopy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-refresh.imageset/shuffleIcCopy2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-refresh.imageset/shuffleIcCopy2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-refresh.imageset/shuffleIcCopy2@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-refresh.imageset/shuffleIcCopy2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-refresh.imageset/shuffleIcCopy2@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-reply-all.imageset/Combined Shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-reply-all.imageset/Combined Shape.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-reply-all.imageset/Combined Shape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-reply-all.imageset/Combined Shape@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-reply-all.imageset/Combined Shape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-reply-all.imageset/Combined Shape@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-reply.imageset/Fill 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-reply.imageset/Fill 1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-reply.imageset/Fill 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-reply.imageset/Fill 1@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-reply.imageset/Fill 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-reply.imageset/Fill 1@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-settings.imageset/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-settings.imageset/settings.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-settings.imageset/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-settings.imageset/settings@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-settings.imageset/settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-settings.imageset/settings@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-spam.imageset/spam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-spam.imageset/spam.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-spam.imageset/spam@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-spam.imageset/spam@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-spam.imageset/spam@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-spam.imageset/spam@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-starred.imageset/starred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-starred.imageset/starred.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-starred.imageset/starred@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-starred.imageset/starred@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-starred.imageset/starred@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-starred.imageset/starred@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-support.imageset/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-support.imageset/support.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-support.imageset/support@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-support.imageset/support@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-support.imageset/support@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-support.imageset/support@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-up.imageset/upArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-up.imageset/upArrow.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-up.imageset/upArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-up.imageset/upArrow@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/icon-up.imageset/upArrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/icon-up.imageset/upArrow@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgCard.imageset/imgCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgCard.imageset/imgCard.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgCard.imageset/imgCard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgCard.imageset/imgCard@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgCard.imageset/imgCard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgCard.imageset/imgCard@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgLogo.imageset/imgLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgLogo.imageset/imgLogo.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgLogo.imageset/imgLogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgLogo.imageset/imgLogo@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgLogo.imageset/imgLogo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgLogo.imageset/imgLogo@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgProfile.imageset/imgProfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgProfile.imageset/imgProfile.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgProfile.imageset/imgProfile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgProfile.imageset/imgProfile@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgProfile.imageset/imgProfile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgProfile.imageset/imgProfile@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgRestorefail.imageset/imgRestorefail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgRestorefail.imageset/imgRestorefail.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgRestorefail.imageset/imgRestorefail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgRestorefail.imageset/imgRestorefail@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgRestorefail.imageset/imgRestorefail@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgRestorefail.imageset/imgRestorefail@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgRestoremail.imageset/imgRestoremail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgRestoremail.imageset/imgRestoremail.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgRestoremail.imageset/imgRestoremail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgRestoremail.imageset/imgRestoremail@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgRestoremail.imageset/imgRestoremail@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgRestoremail.imageset/imgRestoremail@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgSubtitle.imageset/imgSubtitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgSubtitle.imageset/imgSubtitle.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgSubtitle.imageset/imgSubtitle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgSubtitle.imageset/imgSubtitle@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgSubtitle.imageset/imgSubtitle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgSubtitle.imageset/imgSubtitle@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgYaycustom.imageset/imgYaycustom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgYaycustom.imageset/imgYaycustom.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgYaycustom.imageset/imgYaycustom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgYaycustom.imageset/imgYaycustom@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/imgYaycustom.imageset/imgYaycustom@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/imgYaycustom.imageset/imgYaycustom@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-check.imageset/imgImportlaptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-check.imageset/imgImportlaptop.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-check.imageset/imgImportlaptop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-check.imageset/imgImportlaptop@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-check.imageset/imgImportlaptop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-check.imageset/imgImportlaptop@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-downloading-mailbox.imageset/imgDownlimport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-downloading-mailbox.imageset/imgDownlimport.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-not-found.imageset/imgNobackup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-not-found.imageset/imgNobackup.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-not-found.imageset/imgNobackup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-not-found.imageset/imgNobackup@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-not-found.imageset/imgNobackup@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-not-found.imageset/imgNobackup@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-odd.imageset/imgSomethingbackup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-odd.imageset/imgSomethingbackup.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-odd.imageset/imgSomethingbackup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-odd.imageset/imgSomethingbackup@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-odd.imageset/imgSomethingbackup@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-odd.imageset/imgSomethingbackup@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-ready.imageset/imgReadyimport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-ready.imageset/imgReadyimport.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-ready.imageset/imgReadyimport@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-ready.imageset/imgReadyimport@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-ready.imageset/imgReadyimport@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-ready.imageset/imgReadyimport@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-rejected.imageset/imgRejectimport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-rejected.imageset/imgRejectimport.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-rejected.imageset/imgRejectimport@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-rejected.imageset/imgRejectimport@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-rejected.imageset/imgRejectimport@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-rejected.imageset/imgRejectimport@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-restore.imageset/imgRestoreimport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-restore.imageset/imgRestoreimport.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-restore.imageset/imgRestoreimport@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-restore.imageset/imgRestoreimport@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-restore.imageset/imgRestoreimport@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-restore.imageset/imgRestoreimport@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-search.imageset/imgSearchbackup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-search.imageset/imgSearchbackup.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-search.imageset/imgSearchbackup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-search.imageset/imgSearchbackup@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-search.imageset/imgSearchbackup@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-search.imageset/imgSearchbackup@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-sending-keys.imageset/imgKeysimport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-sending-keys.imageset/imgKeysimport.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-sending-keys.imageset/imgKeysimport@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-sending-keys.imageset/imgKeysimport@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-sending-keys.imageset/imgKeysimport@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-sending-keys.imageset/imgKeysimport@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-waiting-mailbox.imageset/imgWaitingimport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-waiting-mailbox.imageset/imgWaitingimport.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-waiting-mailbox.imageset/imgWaitingimport@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-waiting-mailbox.imageset/imgWaitingimport@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/import-waiting-mailbox.imageset/imgWaitingimport@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/import-waiting-mailbox.imageset/imgWaitingimport@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/inbox-forward-icon.imageset/inbox-forward-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/inbox-forward-icon.imageset/inbox-forward-icon.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/inbox-forward-icon.imageset/inbox-forward-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/inbox-forward-icon.imageset/inbox-forward-icon@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/inbox-forward-icon.imageset/inbox-forward-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/inbox-forward-icon.imageset/inbox-forward-icon@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/inbox-reply-icon.imageset/inbox-reply-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/inbox-reply-icon.imageset/inbox-reply-icon.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/inbox-reply-icon.imageset/inbox-reply-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/inbox-reply-icon.imageset/inbox-reply-icon@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/inbox-reply-icon.imageset/inbox-reply-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/inbox-reply-icon.imageset/inbox-reply-icon@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/inbox_dark.imageset/inboxDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/inbox_dark.imageset/inboxDark.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/inbox_dark.imageset/inboxDark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/inbox_dark.imageset/inboxDark@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/inbox_dark.imageset/inboxDark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/inbox_dark.imageset/inboxDark@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/inbox_light.imageset/inboxLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/inbox_light.imageset/inboxLight.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/inbox_light.imageset/inboxLight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/inbox_light.imageset/inboxLight@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/inbox_light.imageset/inboxLight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/inbox_light.imageset/inboxLight@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/label.imageset/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/label.imageset/label.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/label.imageset/label@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/label.imageset/label@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/label.imageset/label@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/label.imageset/label@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/loading-hourglass.imageset/cargando.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/loading-hourglass.imageset/cargando.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/loading-hourglass.imageset/cargando@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/loading-hourglass.imageset/cargando@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/loading-hourglass.imageset/cargando@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/loading-hourglass.imageset/cargando@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/location.imageset/locationx1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/location.imageset/locationx1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/location.imageset/locationx2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/location.imageset/locationx2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/location.imageset/locationx3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/location.imageset/locationx3.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/mark-error.imageset/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/mark-error.imageset/x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/mark-error.imageset/x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/mark-error.imageset/x@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/mark-error.imageset/x@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/mark-error.imageset/x@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/mark-success.imageset/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/mark-success.imageset/check.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/mark-success.imageset/check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/mark-success.imageset/check@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/mark-success.imageset/check@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/mark-success.imageset/check@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/mark_read.imageset/icMailOpened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/mark_read.imageset/icMailOpened.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/mark_read.imageset/icMailOpened2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/mark_read.imageset/icMailOpened2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/mark_read.imageset/icMailOpened3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/mark_read.imageset/icMailOpened3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/mark_unread.imageset/icMailClosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/mark_unread.imageset/icMailClosed.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/mark_unread.imageset/icMailClosed2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/mark_unread.imageset/icMailClosed2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/mark_unread.imageset/icMailClosed3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/mark_unread.imageset/icMailClosed3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/menu-back.imageset/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/menu-back.imageset/back.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/menu-back.imageset/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/menu-back.imageset/back@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/menu-back.imageset/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/menu-back.imageset/back@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/menu_white.imageset/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/menu_white.imageset/menu.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/menu_white.imageset/menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/menu_white.imageset/menu@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/menu_white.imageset/menu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/menu_white.imageset/menu@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/muted.imageset/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/muted.imageset/mute.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/muted.imageset/mute@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/muted.imageset/mute@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/muted.imageset/mute@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/muted.imageset/mute@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/new-arrow-down.imageset/fill1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/new-arrow-down.imageset/fill1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/new-arrow-down.imageset/fill1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/new-arrow-down.imageset/fill1@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/new-arrow-down.imageset/fill1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/new-arrow-down.imageset/fill1@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/new-arrow-up.imageset/fill1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/new-arrow-up.imageset/fill1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/new-arrow-up.imageset/fill1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/new-arrow-up.imageset/fill1@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/new-arrow-up.imageset/fill1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/new-arrow-up.imageset/fill1@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/new-logo-dark.imageset/imgLogoDm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/new-logo-dark.imageset/imgLogoDm.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/new-logo-dark.imageset/imgLogoDm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/new-logo-dark.imageset/imgLogoDm@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/new-logo-dark.imageset/imgLogoDm@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/new-logo-dark.imageset/imgLogoDm@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/new-logo.imageset/imgLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/new-logo.imageset/imgLogo.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/new-logo.imageset/imgLogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/new-logo.imageset/imgLogo@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/new-logo.imageset/imgLogo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/new-logo.imageset/imgLogo@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/not-timer.imageset/nottimer-x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/not-timer.imageset/nottimer-x1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/not-timer.imageset/nottimer-x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/not-timer.imageset/nottimer-x2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/not-timer.imageset/nottimer-x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/not-timer.imageset/nottimer-x3.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/password-icon.imageset/password-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/password-icon.imageset/password-icon.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/password-icon.imageset/password-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/password-icon.imageset/password-icon@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/password-icon.imageset/password-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/password-icon.imageset/password-icon@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/plus-alias.imageset/img-aliases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/plus-alias.imageset/img-aliases.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/plus-alias.imageset/img-aliases@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/plus-alias.imageset/img-aliases@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/plus-alias.imageset/img-aliases@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/plus-alias.imageset/img-aliases@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/plus-crown.imageset/ic-crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/plus-crown.imageset/ic-crown.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/plus-crown.imageset/ic-crown2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/plus-crown.imageset/ic-crown2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/plus-crown.imageset/ic-crown3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/plus-crown.imageset/ic-crown3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/plus-devices.imageset/img-devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/plus-devices.imageset/img-devices.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/plus-devices.imageset/img-devices@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/plus-devices.imageset/img-devices@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/plus-devices.imageset/img-devices@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/plus-devices.imageset/img-devices@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/plus-domains.imageset/img-domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/plus-domains.imageset/img-domain.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/plus-domains.imageset/img-domain@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/plus-domains.imageset/img-domain@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/plus-domains.imageset/img-domain@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/plus-domains.imageset/img-domain@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/plus-ohno.imageset/imgConnectionlost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/plus-ohno.imageset/imgConnectionlost.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/plus-ohno.imageset/imgConnectionlost@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/plus-ohno.imageset/imgConnectionlost@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/plus-ohno.imageset/imgConnectionlost@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/plus-ohno.imageset/imgConnectionlost@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/read-only-eye.imageset/read-only-eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/read-only-eye.imageset/read-only-eye.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/read-only-eye.imageset/read-only-eye@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/read-only-eye.imageset/read-only-eye@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/read-only-eye.imageset/read-only-eye@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/read-only-eye.imageset/read-only-eye@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/read.imageset/read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/read.imageset/read.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/read.imageset/read@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/read.imageset/read@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/read.imageset/read@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/read.imageset/read@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/remove.imageset/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/remove.imageset/remove.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/remove.imageset/remove@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/remove.imageset/remove@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/remove.imageset/remove@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/remove.imageset/remove@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/resend-warning.imageset/imgResendios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/resend-warning.imageset/imgResendios.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/resend-warning.imageset/imgResendios@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/resend-warning.imageset/imgResendios@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/resend-warning.imageset/imgResendios@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/resend-warning.imageset/imgResendios@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/search.imageset/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/search.imageset/search.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/search.imageset/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/search.imageset/search@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/search.imageset/search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/search.imageset/search@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/searchSadDark.imageset/searchSadDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/searchSadDark.imageset/searchSadDark.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/searchSadDark.imageset/searchSadDark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/searchSadDark.imageset/searchSadDark@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/searchSadDark.imageset/searchSadDark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/searchSadDark.imageset/searchSadDark@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/search_sad.imageset/search_sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/search_sad.imageset/search_sad.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/search_sad.imageset/search_sad2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/search_sad.imageset/search_sad2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/search_sad.imageset/search_sad3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/search_sad.imageset/search_sad3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/send.imageset/sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/send.imageset/sent.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/send.imageset/sent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/send.imageset/sent@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/send.imageset/sent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/send.imageset/sent@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/send_secure.imageset/send_secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/send_secure.imageset/send_secure.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/send_secure.imageset/send_secure@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/send_secure.imageset/send_secure@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/send_secure.imageset/send_secure@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/send_secure.imageset/send_secure@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/sent_dark.imageset/sentDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/sent_dark.imageset/sentDark.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/sent_dark.imageset/sentDark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/sent_dark.imageset/sentDark@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/sent_dark.imageset/sentDark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/sent_dark.imageset/sentDark@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/sent_light.imageset/sentLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/sent_light.imageset/sentLight.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/sent_light.imageset/sentLight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/sent_light.imageset/sentLight@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/sent_light.imageset/sentLight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/sent_light.imageset/sentLight@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/show-images.imageset/showImages1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/show-images.imageset/showImages1x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/show-images.imageset/showImages2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/show-images.imageset/showImages2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/show-images.imageset/showImages3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/show-images.imageset/showImages3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/single-check-icon.imageset/Read Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/single-check-icon.imageset/Read Copy.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/single-check-icon.imageset/Read Copy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/single-check-icon.imageset/Read Copy@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/single-check-icon.imageset/Read Copy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/single-check-icon.imageset/Read Copy@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/slogan-dark.imageset/imgSubtitleDm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/slogan-dark.imageset/imgSubtitleDm.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/slogan-dark.imageset/imgSubtitleDm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/slogan-dark.imageset/imgSubtitleDm@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/slogan-dark.imageset/imgSubtitleDm@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/slogan-dark.imageset/imgSubtitleDm@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/slogan.imageset/imgSubtitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/slogan.imageset/imgSubtitle.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/slogan.imageset/imgSubtitle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/slogan.imageset/imgSubtitle@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/slogan.imageset/imgSubtitle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/slogan.imageset/imgSubtitle@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/spam_dark.imageset/spamDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/spam_dark.imageset/spamDark.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/spam_dark.imageset/spamDark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/spam_dark.imageset/spamDark@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/spam_dark.imageset/spamDark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/spam_dark.imageset/spamDark@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/spam_light.imageset/spamLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/spam_light.imageset/spamLight.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/spam_light.imageset/spamLight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/spam_light.imageset/spamLight@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/spam_light.imageset/spamLight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/spam_light.imageset/spamLight@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/starred_dark.imageset/starredDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/starred_dark.imageset/starredDark.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/starred_dark.imageset/starredDark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/starred_dark.imageset/starredDark@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/starred_dark.imageset/starredDark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/starred_dark.imageset/starredDark@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/starred_empty.imageset/starred_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/starred_empty.imageset/starred_empty.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/starred_empty.imageset/starred_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/starred_empty.imageset/starred_empty@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/starred_empty.imageset/starred_empty@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/starred_empty.imageset/starred_empty@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/starred_full.imageset/starred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/starred_full.imageset/starred.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/starred_full.imageset/starred@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/starred_full.imageset/starred@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/starred_full.imageset/starred@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/starred_full.imageset/starred@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/starred_light.imageset/starredLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/starred_light.imageset/starredLight.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/starred_light.imageset/starredLight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/starred_light.imageset/starredLight@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/starred_light.imageset/starredLight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/starred_light.imageset/starredLight@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/switch_locked_off.imageset/switch_locked_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/switch_locked_off.imageset/switch_locked_off.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/switch_locked_off.imageset/switch_locked_off@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/switch_locked_off.imageset/switch_locked_off@2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/switch_locked_off.imageset/switch_locked_off@x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/switch_locked_off.imageset/switch_locked_off@x3.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/switch_locked_on.imageset/switch_locked_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/switch_locked_on.imageset/switch_locked_on.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/switch_locked_on.imageset/switch_locked_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/switch_locked_on.imageset/switch_locked_on@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/switch_locked_on.imageset/switch_locked_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/switch_locked_on.imageset/switch_locked_on@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/sync.imageset/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/sync.imageset/sync.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/sync.imageset/sync@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/sync.imageset/sync@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/sync.imageset/sync@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/sync.imageset/sync@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/toolbar-trash.imageset/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/toolbar-trash.imageset/trash.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/toolbar-trash.imageset/trash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/toolbar-trash.imageset/trash@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/toolbar-trash.imageset/trash@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/toolbar-trash.imageset/trash@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/toolbar_all_mail.imageset/all_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/toolbar_all_mail.imageset/all_mail.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/toolbar_all_mail.imageset/all_mail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/toolbar_all_mail.imageset/all_mail@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/toolbar_all_mail.imageset/all_mail@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/toolbar_all_mail.imageset/all_mail@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/toolbar_move.imageset/move_to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/toolbar_move.imageset/move_to.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/toolbar_move.imageset/move_to@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/toolbar_move.imageset/move_to@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/toolbar_move.imageset/move_to@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/toolbar_move.imageset/move_to@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/toolbar_trash_permanent.imageset/trash_permanent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/toolbar_trash_permanent.imageset/trash_permanent.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/touchID.imageset/logotouchid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/touchID.imageset/logotouchid.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/touchID.imageset/logotouchid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/touchID.imageset/logotouchid@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/touchID.imageset/logotouchid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/touchID.imageset/logotouchid@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/trash-action.imageset/trash-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/trash-action.imageset/trash-action.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/trash-action.imageset/trash-action2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/trash-action.imageset/trash-action2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/trash-action.imageset/trash-action3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/trash-action.imageset/trash-action3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/trash_dark.imageset/trashDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/trash_dark.imageset/trashDark.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/trash_dark.imageset/trashDark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/trash_dark.imageset/trashDark@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/trash_dark.imageset/trashDark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/trash_dark.imageset/trashDark@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/trash_light.imageset/trashLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/trash_light.imageset/trashLight.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/trash_light.imageset/trashLight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/trash_light.imageset/trashLight@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/trash_light.imageset/trashLight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/trash_light.imageset/trashLight@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unmuted.imageset/activityFeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unmuted.imageset/activityFeed.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unmuted.imageset/activityFeed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unmuted.imageset/activityFeed@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unmuted.imageset/activityFeed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unmuted.imageset/activityFeed@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unsend-icon.imageset/unSent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unsend-icon.imageset/unSent.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unsend-icon.imageset/unSent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unsend-icon.imageset/unSent@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unsend-icon.imageset/unSent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unsend-icon.imageset/unSent@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unsend-label.imageset/unsend-x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unsend-label.imageset/unsend-x1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unsend-label.imageset/unsend-x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unsend-label.imageset/unsend-x2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unsend-label.imageset/unsend-x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unsend-label.imageset/unsend-x3.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unsend.imageset/unsend-x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unsend.imageset/unsend-x1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unsend.imageset/unsend-x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unsend.imageset/unsend-x2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unsend.imageset/unsend-x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unsend.imageset/unsend-x3.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unsend_btn.imageset/btn-unsend1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unsend_btn.imageset/btn-unsend1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unsend_btn.imageset/btn-unsend2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unsend_btn.imageset/btn-unsend2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unsend_btn.imageset/btn-unsend3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unsend_btn.imageset/btn-unsend3.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unsent_btn.imageset/btn-unsent1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unsent_btn.imageset/btn-unsent1.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unsent_btn.imageset/btn-unsent2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unsent_btn.imageset/btn-unsent2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/unsent_btn.imageset/btn-unsent3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/unsent_btn.imageset/btn-unsent3.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/upload-cloud.imageset/group32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/upload-cloud.imageset/group32.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/upload-cloud.imageset/group32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/upload-cloud.imageset/group32@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/upload-cloud.imageset/group32@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/upload-cloud.imageset/group32@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/waiting-icon.imageset/Clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/waiting-icon.imageset/Clock.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/waiting-icon.imageset/Clock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/waiting-icon.imageset/Clock@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/waiting-icon.imageset/Clock@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/waiting-icon.imageset/Clock@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/white-logo.imageset/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/white-logo.imageset/logo2.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/white-logo.imageset/logo2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/white-logo.imageset/logo2@2x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Assets.xcassets/white-logo.imageset/logo2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Assets.xcassets/white-logo.imageset/logo2@3x.png -------------------------------------------------------------------------------- /iOS-Email-Client/Fonts/NunitoSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Fonts/NunitoSans-Black.ttf -------------------------------------------------------------------------------- /iOS-Email-Client/Fonts/NunitoSans-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Fonts/NunitoSans-BlackItalic.ttf -------------------------------------------------------------------------------- /iOS-Email-Client/Fonts/NunitoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Fonts/NunitoSans-Bold.ttf -------------------------------------------------------------------------------- /iOS-Email-Client/Fonts/NunitoSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Fonts/NunitoSans-BoldItalic.ttf -------------------------------------------------------------------------------- /iOS-Email-Client/Fonts/NunitoSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Fonts/NunitoSans-ExtraBold.ttf -------------------------------------------------------------------------------- /iOS-Email-Client/Fonts/NunitoSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Fonts/NunitoSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /iOS-Email-Client/Fonts/NunitoSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Fonts/NunitoSans-ExtraLight.ttf -------------------------------------------------------------------------------- /iOS-Email-Client/Fonts/NunitoSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Fonts/NunitoSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /iOS-Email-Client/Fonts/NunitoSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Fonts/NunitoSans-Italic.ttf -------------------------------------------------------------------------------- /iOS-Email-Client/Fonts/NunitoSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Fonts/NunitoSans-Light.ttf -------------------------------------------------------------------------------- /iOS-Email-Client/Fonts/NunitoSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Fonts/NunitoSans-LightItalic.ttf -------------------------------------------------------------------------------- /iOS-Email-Client/Fonts/NunitoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Fonts/NunitoSans-Regular.ttf -------------------------------------------------------------------------------- /iOS-Email-Client/Fonts/NunitoSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Fonts/NunitoSans-SemiBold.ttf -------------------------------------------------------------------------------- /iOS-Email-Client/Fonts/NunitoSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/Fonts/NunitoSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /iOS-Email-Client/Views/de.lproj/EmailTableFooterView.strings: -------------------------------------------------------------------------------- 1 | "KXF-BR-HdN.text" = "Vorwärts"; 2 | "VWD-t9-qon.text" = "Alle beantworten"; 3 | "lm0-l8-dmF.text" = "Antworten"; 4 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/de.lproj/LabelsFooterTableViewCell.strings: -------------------------------------------------------------------------------- 1 | "4Hc-co-Yhw.text" = "Neues Label erstellen"; 2 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/de.lproj/LabelsHeaderTableViewCell.strings: -------------------------------------------------------------------------------- 1 | "83U-eW-jzi.text" = "In der Labelliste anzeigen"; 2 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/de.lproj/LabelsUIPopover.strings: -------------------------------------------------------------------------------- 1 | "Kqx-1a-CB3.normalTitle" = "Abbrechen"; 2 | "MnZ-qO-enA.normalTitle" = "Akzeptieren"; 3 | "XKo-3G-jcA.text" = "Labels hinzufügen"; 4 | "m1z-nB-rnK.normalTitle" = "Abbrechen"; 5 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/de.lproj/MailboxHeaderUITableCell.strings: -------------------------------------------------------------------------------- 1 | "BGW-gI-om4.normalTitle" = "Leerer Papierkorb"; 2 | "x1S-nX-RZk.text" = "Nachrichten, die länger als 30 Tage im Papierkorb waren, werden automatisch gelöscht."; 3 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/de.lproj/OptionsPickerUIPopover.strings: -------------------------------------------------------------------------------- 1 | "1UA-Xl-s0K.text" = "Automatische Sperre"; 2 | "X9L-Nt-UWG.normalTitle" = "Abbrechen"; 3 | "ZmD-WH-vLG.normalTitle" = "Ok"; 4 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/de.lproj/SingleTextInputUIPopover.strings: -------------------------------------------------------------------------------- 1 | "JWi-Fa-1cW.normalTitle" = "Abbrechen"; 2 | "WB5-Un-Tan.placeholder" = "leer"; 3 | "nfM-2G-pON.text" = "Profilname"; 4 | "wJg-AJ-UXv.normalTitle" = "Okay"; 5 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/en.lproj/EmailTableFooterView.strings: -------------------------------------------------------------------------------- 1 | "KXF-BR-HdN.text" = "Forward"; 2 | "VWD-t9-qon.text" = "Reply All"; 3 | "lm0-l8-dmF.text" = "Reply"; 4 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/en.lproj/LabelsFooterTableViewCell.strings: -------------------------------------------------------------------------------- 1 | "4Hc-co-Yhw.text" = "Create new label"; 2 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/en.lproj/LabelsHeaderTableViewCell.strings: -------------------------------------------------------------------------------- 1 | "83U-eW-jzi.text" = "Show in label list"; 2 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/en.lproj/LabelsUIPopover.strings: -------------------------------------------------------------------------------- 1 | "Kqx-1a-CB3.normalTitle" = "Cancel"; 2 | "MnZ-qO-enA.normalTitle" = "Accept"; 3 | "XKo-3G-jcA.text" = "Add Labels"; 4 | "m1z-nB-rnK.normalTitle" = "Cancel"; 5 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/en.lproj/MailboxHeaderUITableCell.strings: -------------------------------------------------------------------------------- 1 | "BGW-gI-om4.normalTitle" = "Empty Trash"; 2 | "x1S-nX-RZk.text" = "Messages that have been in Trash more than 30 days will be automatically deleted. "; 3 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/en.lproj/OptionsPickerUIPopover.strings: -------------------------------------------------------------------------------- 1 | "1UA-Xl-s0K.text" = "Auto-Lock"; 2 | "X9L-Nt-UWG.normalTitle" = "Cancel"; 3 | "ZmD-WH-vLG.normalTitle" = "Ok"; 4 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/en.lproj/SingleTextInputUIPopover.strings: -------------------------------------------------------------------------------- 1 | "JWi-Fa-1cW.normalTitle" = "Cancel"; 2 | "WB5-Un-Tan.placeholder" = "Messages"; 3 | "nfM-2G-pON.text" = "Profile Name"; 4 | "wJg-AJ-UXv.normalTitle" = "Ok"; 5 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/es.lproj/EmailTableFooterView.strings: -------------------------------------------------------------------------------- 1 | "KXF-BR-HdN.text" = "Reenviar"; 2 | "VWD-t9-qon.text" = "A Todos"; 3 | "lm0-l8-dmF.text" = "Responder"; 4 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/es.lproj/LabelsFooterTableViewCell.strings: -------------------------------------------------------------------------------- 1 | "4Hc-co-Yhw.text" = "Crear nueva etiqueta"; 2 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/es.lproj/LabelsHeaderTableViewCell.strings: -------------------------------------------------------------------------------- 1 | "83U-eW-jzi.text" = "Mostrar en lista de etiquetas"; 2 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/es.lproj/LabelsUIPopover.strings: -------------------------------------------------------------------------------- 1 | "Kqx-1a-CB3.normalTitle" = "Cancelar"; 2 | "MnZ-qO-enA.normalTitle" = "Aceptar"; 3 | "XKo-3G-jcA.text" = "Agregar etiquetas"; 4 | "m1z-nB-rnK.normalTitle" = "Cancelar"; 5 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/es.lproj/MailboxHeaderUITableCell.strings: -------------------------------------------------------------------------------- 1 | "BGW-gI-om4.normalTitle" = "Vaciar Papelera"; 2 | "x1S-nX-RZk.text" = "Los mensajes que estén en la papelera más de 30 días serán eliminados automáticamente."; 3 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/es.lproj/OptionsPickerUIPopover.strings: -------------------------------------------------------------------------------- 1 | "1UA-Xl-s0K.text" = "Auto-Bloqueo"; 2 | "X9L-Nt-UWG.normalTitle" = "Cancelar"; 3 | "ZmD-WH-vLG.normalTitle" = "Ok"; 4 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/es.lproj/SingleTextInputUIPopover.strings: -------------------------------------------------------------------------------- 1 | "JWi-Fa-1cW.normalTitle" = "Cancelar"; 2 | "WB5-Un-Tan.placeholder" = "Mensajes"; 3 | "nfM-2G-pON.text" = "Nombre de Perfil"; 4 | "wJg-AJ-UXv.normalTitle" = "Ok"; 5 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/fr.lproj/EmailTableFooterView.strings: -------------------------------------------------------------------------------- 1 | "KXF-BR-HdN.text" = "Transférer"; 2 | "VWD-t9-qon.text" = "Répondre à tous"; 3 | "lm0-l8-dmF.text" = "Répondre"; 4 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/fr.lproj/LabelsFooterTableViewCell.strings: -------------------------------------------------------------------------------- 1 | "4Hc-co-Yhw.text" = "Créer un nouveau marqueur"; 2 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/fr.lproj/LabelsHeaderTableViewCell.strings: -------------------------------------------------------------------------------- 1 | "83U-eW-jzi.text" = "Afficher dans la liste de marqueurs"; 2 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/fr.lproj/LabelsUIPopover.strings: -------------------------------------------------------------------------------- 1 | "Kqx-1a-CB3.normalTitle" = "Annuler"; 2 | "MnZ-qO-enA.normalTitle" = "Accepter"; 3 | "XKo-3G-jcA.text" = "Ajouter des Marqueurs"; 4 | "m1z-nB-rnK.normalTitle" = "Annuler"; 5 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/fr.lproj/MailboxHeaderUITableCell.strings: -------------------------------------------------------------------------------- 1 | "BGW-gI-om4.normalTitle" = "Vider la corbeille"; 2 | "x1S-nX-RZk.text" = "Les messages présents dans la corbeille pendant plus de 30 jours seront automatiquement supprimés."; 3 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/fr.lproj/OptionsPickerUIPopover.strings: -------------------------------------------------------------------------------- 1 | "1UA-Xl-s0K.text" = "Verrouillage automatique"; 2 | "X9L-Nt-UWG.normalTitle" = "Annuler"; 3 | "ZmD-WH-vLG.normalTitle" = "Ok"; 4 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/fr.lproj/SingleTextInputUIPopover.strings: -------------------------------------------------------------------------------- 1 | "JWi-Fa-1cW.normalTitle" = "Annuler"; 2 | "WB5-Un-Tan.placeholder" = "Vide"; 3 | "nfM-2G-pON.text" = "Nom du profil"; 4 | "wJg-AJ-UXv.normalTitle" = "Ok"; 5 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/ru.lproj/EmailTableFooterView.strings: -------------------------------------------------------------------------------- 1 | "KXF-BR-HdN.text" = "Перслать"; 2 | "VWD-t9-qon.text" = "Ответить всем"; 3 | "lm0-l8-dmF.text" = "Ответить"; 4 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/ru.lproj/LabelsFooterTableViewCell.strings: -------------------------------------------------------------------------------- 1 | "4Hc-co-Yhw.text" = "Создать новый ярлык"; 2 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/ru.lproj/LabelsHeaderTableViewCell.strings: -------------------------------------------------------------------------------- 1 | "83U-eW-jzi.text" = "Показать в списке ярлыков"; 2 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/ru.lproj/LabelsUIPopover.strings: -------------------------------------------------------------------------------- 1 | "Kqx-1a-CB3.normalTitle" = "Отмена"; 2 | "MnZ-qO-enA.normalTitle" = "Принять"; 3 | "XKo-3G-jcA.text" = "Добавить ярлыки"; 4 | "m1z-nB-rnK.normalTitle" = "Отмена"; 5 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/ru.lproj/MailboxHeaderUITableCell.strings: -------------------------------------------------------------------------------- 1 | "BGW-gI-om4.normalTitle" = "Очистить корзину"; 2 | "x1S-nX-RZk.text" = "Сообщения, которые были в корзине более 30 дней, будут автоматически удалены."; 3 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/ru.lproj/OptionsPickerUIPopover.strings: -------------------------------------------------------------------------------- 1 | "1UA-Xl-s0K.text" = "Автоматическая блокировка"; 2 | "X9L-Nt-UWG.normalTitle" = "Отмена"; 3 | "ZmD-WH-vLG.normalTitle" = "Хорошо"; 4 | -------------------------------------------------------------------------------- /iOS-Email-Client/Views/ru.lproj/SingleTextInputUIPopover.strings: -------------------------------------------------------------------------------- 1 | "JWi-Fa-1cW.normalTitle" = "Отмена"; 2 | "WB5-Un-Tan.placeholder" = "Сообщения"; 3 | "nfM-2G-pON.text" = "Имя профиля"; 4 | "wJg-AJ-UXv.normalTitle" = "ОК"; 5 | -------------------------------------------------------------------------------- /iOS-Email-Client/attachments.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/attachments.gif -------------------------------------------------------------------------------- /iOS-Email-Client/dark-showmore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/dark-showmore.png -------------------------------------------------------------------------------- /iOS-Email-Client/de.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /iOS-Email-Client/editor-style.css: -------------------------------------------------------------------------------- 1 | /*Overwrite default editor color to black*/ 2 | #editor { 3 | color: #000; 4 | } 5 | -------------------------------------------------------------------------------- /iOS-Email-Client/en.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /iOS-Email-Client/es.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /iOS-Email-Client/fr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /iOS-Email-Client/icon_sent_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/icon_sent_chat.png -------------------------------------------------------------------------------- /iOS-Email-Client/mark_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/mark_read.png -------------------------------------------------------------------------------- /iOS-Email-Client/mark_unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/mark_unread.png -------------------------------------------------------------------------------- /iOS-Email-Client/ru.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /iOS-Email-Client/showmore-dark-opened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/showmore-dark-opened.png -------------------------------------------------------------------------------- /iOS-Email-Client/showmore-light-opened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/showmore-light-opened.png -------------------------------------------------------------------------------- /iOS-Email-Client/showmore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-Client/showmore.png -------------------------------------------------------------------------------- /iOS-Email-ClientTests/compressed.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-ClientTests/compressed.gz -------------------------------------------------------------------------------- /iOS-Email-ClientTests/criptextlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/iOS-Email-ClientTests/criptextlogo.png -------------------------------------------------------------------------------- /iOS-Email-ClientTests/gunzipped.txt: -------------------------------------------------------------------------------- 1 | hola este es un test -------------------------------------------------------------------------------- /realm-cocoa.json: -------------------------------------------------------------------------------- 1 | { 2 | "3.18.0": "https://github.com/realm/realm-cocoa/releases/download/v3.18.0/Carthage.framework.zip" 3 | } -------------------------------------------------------------------------------- /scripts/bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | carthage bootstrap --platform iOS --no-use-binaries --cache-builds 3 | cp Cartfile.resolved Carthage -------------------------------------------------------------------------------- /scripts/cartfile-diff-install.sh: -------------------------------------------------------------------------------- 1 | set -x 2 | set -e 3 | if [ ! -e redis-2.4.18/src/redis-server ]; then 4 | git clone https://github.com/YPlan/CartfileDiff.git 5 | cd CartfileDiff 6 | make install; 7 | fi -------------------------------------------------------------------------------- /scripts/intelligent-bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | if ! cmp -s Cartfile.resolved Carthage/Cartfile.resolved; then 3 | scripts/bootstrap.sh 4 | fi -------------------------------------------------------------------------------- /scripts/upload-symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Criptext/iOS-Email-Client/2e6547e0ea7eaea25f59b8382dd63be73f623231/scripts/upload-symbols --------------------------------------------------------------------------------