MyIdentityStoryboard.storyboard 213 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="17700" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="dJ7-PD-SVV">
  3. <device id="retina5_9" orientation="portrait" appearance="light"/>
  4. <dependencies>
  5. <deployment identifier="iOS"/>
  6. <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="17703"/>
  7. <capability name="Safe area layout guides" minToolsVersion="9.0"/>
  8. <capability name="Stack View standard spacing" minToolsVersion="9.0"/>
  9. <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
  10. </dependencies>
  11. <scenes>
  12. <!--My Profile-->
  13. <scene sceneID="ZnN-fY-gDI">
  14. <objects>
  15. <tableViewController storyboardIdentifier="myIdentityViewController" id="dJ7-PD-SVV" customClass="MyIdentityViewController" sceneMemberID="viewController">
  16. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="CbE-pr-TS3">
  17. <rect key="frame" x="0.0" y="0.0" width="375" height="812"/>
  18. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  19. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  20. <view key="tableHeaderView" contentMode="scaleToFill" id="JFg-yv-bGa">
  21. <rect key="frame" x="0.0" y="0.0" width="375" height="363"/>
  22. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  23. <subviews>
  24. <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="qIz-ao-zUS">
  25. <rect key="frame" x="16" y="16" width="343" height="331"/>
  26. <subviews>
  27. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="GPr-Pt-WgN">
  28. <rect key="frame" x="71.666666666666686" y="0.0" width="200" height="200"/>
  29. <subviews>
  30. <imageView contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" preservesSuperviewLayoutMargins="YES" translatesAutoresizingMaskIntoConstraints="NO" id="240-nb-z1c">
  31. <rect key="frame" x="0.0" y="0.0" width="200" height="200"/>
  32. <accessibility key="accessibilityConfiguration">
  33. <bool key="isElement" value="YES"/>
  34. </accessibility>
  35. <constraints>
  36. <constraint firstAttribute="width" secondItem="240-nb-z1c" secondAttribute="height" multiplier="1:1" id="gna-YS-qg2"/>
  37. </constraints>
  38. </imageView>
  39. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="QRCodeBackground" translatesAutoresizingMaskIntoConstraints="NO" id="h8X-4i-Ua5">
  40. <rect key="frame" x="140" y="140" width="70" height="70"/>
  41. <constraints>
  42. <constraint firstAttribute="width" constant="70" id="P3z-NF-YWw"/>
  43. <constraint firstAttribute="height" constant="70" id="qlr-6T-1io"/>
  44. </constraints>
  45. </imageView>
  46. <button opaque="NO" contentMode="scaleAspectFit" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Fqk-mu-IBk">
  47. <rect key="frame" x="150" y="150" width="50" height="50"/>
  48. <accessibility key="accessibilityConfiguration" identifier="qrCodeButton"/>
  49. <constraints>
  50. <constraint firstAttribute="width" constant="50" id="QMK-cY-e9n"/>
  51. <constraint firstAttribute="width" secondItem="Fqk-mu-IBk" secondAttribute="height" multiplier="1:1" id="bfM-t5-0r7"/>
  52. </constraints>
  53. <color key="tintColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  54. <state key="normal" image="QRCode"/>
  55. </button>
  56. </subviews>
  57. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  58. <constraints>
  59. <constraint firstItem="Fqk-mu-IBk" firstAttribute="bottom" secondItem="240-nb-z1c" secondAttribute="bottom" id="7Ad-DT-8UT"/>
  60. <constraint firstItem="240-nb-z1c" firstAttribute="leading" secondItem="GPr-Pt-WgN" secondAttribute="leading" id="9J5-6z-BCC"/>
  61. <constraint firstAttribute="height" constant="200" id="GZg-vl-8iR"/>
  62. <constraint firstItem="240-nb-z1c" firstAttribute="top" secondItem="GPr-Pt-WgN" secondAttribute="top" id="Ina-Xm-eGd"/>
  63. <constraint firstItem="Fqk-mu-IBk" firstAttribute="trailing" secondItem="240-nb-z1c" secondAttribute="trailing" id="MB4-Vu-XUY"/>
  64. <constraint firstItem="h8X-4i-Ua5" firstAttribute="centerX" secondItem="Fqk-mu-IBk" secondAttribute="centerX" id="Pwr-ya-vRE"/>
  65. <constraint firstItem="h8X-4i-Ua5" firstAttribute="centerY" secondItem="Fqk-mu-IBk" secondAttribute="centerY" id="lxX-hk-yf7"/>
  66. <constraint firstAttribute="trailing" secondItem="240-nb-z1c" secondAttribute="trailing" id="xcN-6C-FPr"/>
  67. <constraint firstAttribute="bottom" secondItem="240-nb-z1c" secondAttribute="bottom" id="zgm-hu-3tv"/>
  68. </constraints>
  69. </view>
  70. <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="equalSpacing" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="uIQ-H2-BNh">
  71. <rect key="frame" x="92.333333333333329" y="210" width="158.66666666666669" height="121"/>
  72. <subviews>
  73. <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="equalSpacing" alignment="center" spacing="2" translatesAutoresizingMaskIntoConstraints="NO" id="TQN-ez-vdI">
  74. <rect key="frame" x="0.0" y="0.0" width="158.66666666666666" height="54.666666666666664"/>
  75. <subviews>
  76. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" text="Nickname" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="YyS-mS-2B1">
  77. <rect key="frame" x="45.000000000000021" y="0.0" width="68.333333333333314" height="18"/>
  78. <accessibility key="accessibilityConfiguration">
  79. <bool key="isElement" value="NO"/>
  80. </accessibility>
  81. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  82. <nil key="textColor"/>
  83. <nil key="highlightedColor"/>
  84. </label>
  85. <stackView opaque="NO" contentMode="scaleAspectFit" alignment="center" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="uIu-aK-Grz">
  86. <rect key="frame" x="0.0" y="19.999999999999996" width="158.66666666666666" height="34.666666666666657"/>
  87. <subviews>
  88. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="749" text="Nickname" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="h9u-uR-RRc" userLabel="Nick Name Label">
  89. <rect key="frame" x="0.0" y="0.0" width="121.66666666666667" height="34.666666666666664"/>
  90. <fontDescription key="fontDescription" style="UICTFontTextStyleTitle1"/>
  91. <nil key="highlightedColor"/>
  92. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  93. <size key="shadowOffset" width="0.0" height="1"/>
  94. </label>
  95. <button opaque="NO" contentMode="scaleAspectFit" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Uk4-Sq-7sa">
  96. <rect key="frame" x="126.66666666666669" y="1.3333333333333428" width="32" height="32"/>
  97. <constraints>
  98. <constraint firstAttribute="height" constant="32" id="GTi-ik-sW1"/>
  99. <constraint firstAttribute="width" constant="32" id="XsW-oF-mFz"/>
  100. </constraints>
  101. <color key="tintColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  102. <state key="normal" image="Edit"/>
  103. </button>
  104. </subviews>
  105. </stackView>
  106. </subviews>
  107. </stackView>
  108. <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="equalSpacing" alignment="center" spacing="2" translatesAutoresizingMaskIntoConstraints="NO" id="6IR-el-cgR">
  109. <rect key="frame" x="0.0" y="66" width="158.66666666666666" height="55"/>
  110. <subviews>
  111. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Threema ID" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="xrG-XN-fYs">
  112. <rect key="frame" x="39.666666666666679" y="0.0" width="79.333333333333314" height="18"/>
  113. <accessibility key="accessibilityConfiguration">
  114. <bool key="isElement" value="NO"/>
  115. </accessibility>
  116. <constraints>
  117. <constraint firstAttribute="height" constant="18" id="Pmu-cx-jdb"/>
  118. </constraints>
  119. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  120. <nil key="textColor"/>
  121. <nil key="highlightedColor"/>
  122. </label>
  123. <stackView opaque="NO" contentMode="scaleToFill" alignment="center" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="vwB-T7-fgP">
  124. <rect key="frame" x="2.3333333333333428" y="20" width="153.66666666666666" height="35"/>
  125. <subviews>
  126. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="XXXXXXXX" lineBreakMode="clip" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="QTy-20-z7s" userLabel="Threema ID Label" customClass="CopyLabel" customModule="Threema" customModuleProvider="target">
  127. <rect key="frame" x="0.0" y="0.0" width="113.66666666666667" height="35"/>
  128. <constraints>
  129. <constraint firstAttribute="height" constant="35" id="Mvl-dt-cIn"/>
  130. </constraints>
  131. <fontDescription key="fontDescription" style="UICTFontTextStyleTitle2"/>
  132. <nil key="highlightedColor"/>
  133. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  134. <size key="shadowOffset" width="0.0" height="1"/>
  135. </label>
  136. <button opaque="NO" contentMode="scaleAspectFit" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ucS-eu-zkE">
  137. <rect key="frame" x="118.66666666666669" y="0.0" width="35" height="35"/>
  138. <constraints>
  139. <constraint firstAttribute="height" constant="35" id="P2N-R2-xI3"/>
  140. <constraint firstAttribute="width" constant="35" id="zUF-Hd-2Gt"/>
  141. </constraints>
  142. <state key="normal" image="Share"/>
  143. </button>
  144. </subviews>
  145. </stackView>
  146. </subviews>
  147. </stackView>
  148. </subviews>
  149. </stackView>
  150. </subviews>
  151. <color key="tintColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  152. </stackView>
  153. </subviews>
  154. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  155. <constraints>
  156. <constraint firstAttribute="trailing" secondItem="qIz-ao-zUS" secondAttribute="trailing" constant="16" id="H7Q-BU-U5g"/>
  157. <constraint firstItem="qIz-ao-zUS" firstAttribute="top" secondItem="JFg-yv-bGa" secondAttribute="top" constant="16" id="Oey-HD-Ac4"/>
  158. <constraint firstItem="qIz-ao-zUS" firstAttribute="leading" secondItem="JFg-yv-bGa" secondAttribute="leading" constant="16" id="PN5-pg-hLU"/>
  159. <constraint firstAttribute="bottom" secondItem="qIz-ao-zUS" secondAttribute="bottom" constant="16" id="zJg-Wv-ghh"/>
  160. </constraints>
  161. </view>
  162. <sections>
  163. <tableViewSection id="NUr-0t-zng">
  164. <string key="footerTitle">Linking your email address or phone number to your ID lets other people find you on Threema automatically if they have you in their address book.</string>
  165. <cells>
  166. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="UWU-JO-PcU" detailTextLabel="H7W-RZ-gej" style="IBUITableViewCellStyleValue1" id="75Z-7T-ghb">
  167. <rect key="frame" x="0.0" y="380.66666603088379" width="375" height="44"/>
  168. <autoresizingMask key="autoresizingMask"/>
  169. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="75Z-7T-ghb" id="jqc-Gw-cIf">
  170. <rect key="frame" x="0.0" y="0.0" width="347.66666666666669" height="44"/>
  171. <autoresizingMask key="autoresizingMask"/>
  172. <subviews>
  173. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Linked Number" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="UWU-JO-PcU">
  174. <rect key="frame" x="16" y="11.999999999999998" width="116" height="20.333333333333332"/>
  175. <autoresizingMask key="autoresizingMask"/>
  176. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  177. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  178. <nil key="highlightedColor"/>
  179. </label>
  180. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="H7W-RZ-gej">
  181. <rect key="frame" x="296" y="11.999999999999998" width="43.666666666666664" height="20.333333333333332"/>
  182. <autoresizingMask key="autoresizingMask"/>
  183. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  184. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  185. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  186. </label>
  187. </subviews>
  188. </tableViewCellContentView>
  189. </tableViewCell>
  190. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Re1-k2-FsT" detailTextLabel="yaz-xj-2bb" style="IBUITableViewCellStyleValue1" id="GE5-OE-9yC">
  191. <rect key="frame" x="0.0" y="424.66666603088379" width="375" height="44"/>
  192. <autoresizingMask key="autoresizingMask"/>
  193. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="GE5-OE-9yC" id="anO-LD-z6w">
  194. <rect key="frame" x="0.0" y="0.0" width="347.66666666666669" height="44"/>
  195. <autoresizingMask key="autoresizingMask"/>
  196. <subviews>
  197. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Linked Email" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Re1-k2-FsT">
  198. <rect key="frame" x="16" y="11.999999999999998" width="95.333333333333329" height="20.333333333333332"/>
  199. <autoresizingMask key="autoresizingMask"/>
  200. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  201. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  202. <nil key="highlightedColor"/>
  203. </label>
  204. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="yaz-xj-2bb">
  205. <rect key="frame" x="296" y="11.999999999999998" width="43.666666666666664" height="20.333333333333332"/>
  206. <autoresizingMask key="autoresizingMask"/>
  207. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  208. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  209. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  210. </label>
  211. </subviews>
  212. </tableViewCellContentView>
  213. <connections>
  214. <segue destination="rxw-EU-IYk" kind="presentation" identifier="LinkEmail" id="Uy3-Bj-MpJ"/>
  215. </connections>
  216. </tableViewCell>
  217. </cells>
  218. </tableViewSection>
  219. <tableViewSection footerTitle="" id="tyf-Gf-Cky">
  220. <cells>
  221. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ThreemaSafeCell" textLabel="KKh-sE-YNq" detailTextLabel="m6i-Rb-VUQ" style="IBUITableViewCellStyleValue1" id="aaF-P0-G26">
  222. <rect key="frame" x="0.0" y="548.33333206176758" width="375" height="44"/>
  223. <autoresizingMask key="autoresizingMask"/>
  224. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="aaF-P0-G26" id="Cey-L8-Mn8">
  225. <rect key="frame" x="0.0" y="0.0" width="347.66666666666669" height="44"/>
  226. <autoresizingMask key="autoresizingMask"/>
  227. <subviews>
  228. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Threema Safe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" adjustsFontForContentSizeCategory="YES" id="KKh-sE-YNq">
  229. <rect key="frame" x="16" y="11.999999999999998" width="106" height="20.333333333333332"/>
  230. <autoresizingMask key="autoresizingMask"/>
  231. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  232. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  233. <nil key="highlightedColor"/>
  234. </label>
  235. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="..." textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" adjustsFontForContentSizeCategory="YES" id="m6i-Rb-VUQ">
  236. <rect key="frame" x="325.66666666666669" y="11.999999999999998" width="14" height="20.333333333333332"/>
  237. <autoresizingMask key="autoresizingMask"/>
  238. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  239. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  240. <nil key="highlightedColor"/>
  241. </label>
  242. </subviews>
  243. </tableViewCellContentView>
  244. <accessibility key="accessibilityConfiguration" identifier="SafeCell"/>
  245. <connections>
  246. <segue destination="sq0-x9-MA6" kind="show" identifier="segueSafeSetup" id="i2Y-pN-1bh"/>
  247. </connections>
  248. </tableViewCell>
  249. </cells>
  250. </tableViewSection>
  251. <tableViewSection footerTitle="" id="eka-vL-Sw3">
  252. <cells>
  253. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="64" id="rKL-oW-BLF">
  254. <rect key="frame" x="0.0" y="631.99999809265137" width="375" height="64"/>
  255. <autoresizingMask key="autoresizingMask"/>
  256. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="rKL-oW-BLF" id="3Ck-1X-MFs">
  257. <rect key="frame" x="0.0" y="0.0" width="375" height="64"/>
  258. <autoresizingMask key="autoresizingMask"/>
  259. <subviews>
  260. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalCompressionResistancePriority="751" preservesSuperviewLayoutMargins="YES" text="Key Fingerprint" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="sJA-2q-zE2">
  261. <rect key="frame" x="16" y="14" width="343" height="21"/>
  262. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  263. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  264. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  265. <nil key="highlightedColor"/>
  266. </label>
  267. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" preservesSuperviewLayoutMargins="YES" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="BzD-7E-yoJ" customClass="CopyLabel">
  268. <rect key="frame" x="16" y="37" width="343" height="13"/>
  269. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  270. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  271. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  272. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  273. </label>
  274. </subviews>
  275. <constraints>
  276. <constraint firstItem="sJA-2q-zE2" firstAttribute="top" secondItem="3Ck-1X-MFs" secondAttribute="topMargin" constant="3" id="QTC-HC-SR8"/>
  277. <constraint firstAttribute="trailingMargin" secondItem="sJA-2q-zE2" secondAttribute="trailing" id="TIg-0G-hbu"/>
  278. <constraint firstItem="sJA-2q-zE2" firstAttribute="leading" secondItem="3Ck-1X-MFs" secondAttribute="leadingMargin" id="dTm-L6-Rw4"/>
  279. <constraint firstItem="BzD-7E-yoJ" firstAttribute="top" secondItem="sJA-2q-zE2" secondAttribute="bottom" constant="2" id="fsN-Ae-wGJ"/>
  280. <constraint firstAttribute="trailingMargin" secondItem="BzD-7E-yoJ" secondAttribute="trailing" id="h5o-NB-9kL"/>
  281. <constraint firstAttribute="bottomMargin" secondItem="BzD-7E-yoJ" secondAttribute="bottom" constant="3" id="oJv-nv-TGZ"/>
  282. <constraint firstItem="BzD-7E-yoJ" firstAttribute="leading" secondItem="3Ck-1X-MFs" secondAttribute="leadingMargin" id="tFl-ZQ-auj"/>
  283. </constraints>
  284. </tableViewCellContentView>
  285. </tableViewCell>
  286. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="BackupCell" textLabel="eS1-Gf-A4o" style="IBUITableViewCellStyleDefault" id="Gfc-TA-cSE">
  287. <rect key="frame" x="0.0" y="695.99999809265137" width="375" height="44"/>
  288. <autoresizingMask key="autoresizingMask"/>
  289. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Gfc-TA-cSE" id="fWd-fZ-lUS">
  290. <rect key="frame" x="0.0" y="0.0" width="347.66666666666669" height="44"/>
  291. <autoresizingMask key="autoresizingMask"/>
  292. <subviews>
  293. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="ID Backup" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="eS1-Gf-A4o">
  294. <rect key="frame" x="16" y="0.0" width="323.66666666666669" height="44"/>
  295. <autoresizingMask key="autoresizingMask"/>
  296. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  297. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  298. <nil key="highlightedColor"/>
  299. </label>
  300. </subviews>
  301. </tableViewCellContentView>
  302. </tableViewCell>
  303. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="IDRecoveryCell" textLabel="XOE-qz-Fzh" detailTextLabel="gan-4f-TrM" style="IBUITableViewCellStyleValue1" id="6LU-p9-SGJ">
  304. <rect key="frame" x="0.0" y="739.99999809265137" width="375" height="44"/>
  305. <autoresizingMask key="autoresizingMask"/>
  306. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="6LU-p9-SGJ" id="vOK-dl-Rba">
  307. <rect key="frame" x="0.0" y="0.0" width="347.66666666666669" height="44"/>
  308. <autoresizingMask key="autoresizingMask"/>
  309. <subviews>
  310. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="ID Revocation Password" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" adjustsFontForContentSizeCategory="YES" id="XOE-qz-Fzh">
  311. <rect key="frame" x="16" y="11.999999999999998" width="182.33333333333334" height="20.333333333333332"/>
  312. <autoresizingMask key="autoresizingMask"/>
  313. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  314. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  315. <nil key="highlightedColor"/>
  316. </label>
  317. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="..." textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" adjustsFontForContentSizeCategory="YES" id="gan-4f-TrM">
  318. <rect key="frame" x="325.66666666666669" y="11.999999999999998" width="14" height="20.333333333333332"/>
  319. <autoresizingMask key="autoresizingMask"/>
  320. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  321. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  322. <nil key="highlightedColor"/>
  323. </label>
  324. </subviews>
  325. </tableViewCellContentView>
  326. </tableViewCell>
  327. </cells>
  328. </tableViewSection>
  329. <tableViewSection footerTitle="" id="rO9-tZ-52h">
  330. <cells>
  331. <tableViewCell contentMode="scaleToFill" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="ISb-ca-Ste" style="IBUITableViewCellStyleDefault" id="lxM-8x-FuK">
  332. <rect key="frame" x="0.0" y="823.66666412353516" width="375" height="44"/>
  333. <autoresizingMask key="autoresizingMask"/>
  334. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="lxM-8x-FuK" id="Ukd-i5-Hb5">
  335. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  336. <autoresizingMask key="autoresizingMask"/>
  337. <subviews>
  338. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Delete ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="ISb-ca-Ste">
  339. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  340. <autoresizingMask key="autoresizingMask"/>
  341. <accessibility key="accessibilityConfiguration">
  342. <accessibilityTraits key="traits" button="YES" staticText="YES"/>
  343. </accessibility>
  344. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  345. <color key="textColor" red="1" green="0.23137254900000001" blue="0.18823529410000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  346. <nil key="highlightedColor"/>
  347. </label>
  348. </subviews>
  349. </tableViewCellContentView>
  350. <accessibility key="accessibilityConfiguration" identifier="DeleteButton"/>
  351. </tableViewCell>
  352. </cells>
  353. </tableViewSection>
  354. </sections>
  355. <connections>
  356. <outlet property="dataSource" destination="dJ7-PD-SVV" id="ZaL-RM-brj"/>
  357. <outlet property="delegate" destination="dJ7-PD-SVV" id="a78-Bd-VNs"/>
  358. </connections>
  359. </tableView>
  360. <navigationItem key="navigationItem" title="My Profile" id="8Pu-jd-SHn">
  361. <barButtonItem key="rightBarButtonItem" image="QRScan" id="9vf-d1-s80">
  362. <connections>
  363. <action selector="scanIdentity:" destination="dJ7-PD-SVV" id="JMY-aN-Ejy"/>
  364. </connections>
  365. </barButtonItem>
  366. </navigationItem>
  367. <connections>
  368. <outlet property="backupCell" destination="Gfc-TA-cSE" id="PR8-PW-jAf"/>
  369. <outlet property="deleteIdCell" destination="lxM-8x-FuK" id="TYT-a3-8hc"/>
  370. <outlet property="editButton" destination="Uk4-Sq-7sa" id="KVz-FD-JLf"/>
  371. <outlet property="headerView" destination="JFg-yv-bGa" id="Rbb-LS-KbC"/>
  372. <outlet property="idRecoveryCell" destination="6LU-p9-SGJ" id="Ji7-e4-h7t"/>
  373. <outlet property="imageView" destination="240-nb-z1c" id="LG0-QJ-CgU"/>
  374. <outlet property="keyFingerprintLabel" destination="BzD-7E-yoJ" id="Jrt-2Z-VLd"/>
  375. <outlet property="linkEmailCell" destination="GE5-OE-9yC" id="i54-Tb-fu7"/>
  376. <outlet property="linkPhoneCell" destination="75Z-7T-ghb" id="vd0-ih-qGD"/>
  377. <outlet property="linkedEmailLabel" destination="yaz-xj-2bb" id="xJa-Ze-r3g"/>
  378. <outlet property="linkedMobileNoLabel" destination="H7W-RZ-gej" id="cJx-s3-qwr"/>
  379. <outlet property="nickNameLabel" destination="h9u-uR-RRc" id="OQT-Zf-ah1"/>
  380. <outlet property="nickNameTitleLabel" destination="YyS-mS-2B1" id="uqO-ER-CEt"/>
  381. <outlet property="qrBackgroundImageView" destination="h8X-4i-Ua5" id="Zxg-hM-VHH"/>
  382. <outlet property="qrCodeButton" destination="Fqk-mu-IBk" id="sS1-dG-seU"/>
  383. <outlet property="revocationLabelDetail" destination="gan-4f-TrM" id="gPX-Gp-anV"/>
  384. <outlet property="scanQrCodeBarButtonItem" destination="9vf-d1-s80" id="XG1-D5-NTe"/>
  385. <outlet property="shareIdButton" destination="ucS-eu-zkE" id="TgM-uj-Lz4"/>
  386. <outlet property="threemaIdLabel" destination="QTy-20-z7s" id="6NF-8S-eKu"/>
  387. <outlet property="threemaIdTitleLabel" destination="xrG-XN-fYs" id="xHa-Uf-K1h"/>
  388. <outlet property="threemaSafeCell" destination="aaF-P0-G26" id="sui-23-IgF"/>
  389. <outlet property="threemaSafeLabel" destination="m6i-Rb-VUQ" id="eV7-7h-VCS"/>
  390. <segue destination="2KJ-nO-VRW" kind="presentation" identifier="EnterCode" id="FQr-eH-c6c"/>
  391. <segue destination="wMs-cI-B0Y" kind="show" identifier="LinkMobileNo" id="0UP-TJ-JFm"/>
  392. <segue destination="g1k-yd-5wU" kind="show" identifier="EditProfile" id="e0u-Qb-ydA"/>
  393. </connections>
  394. </tableViewController>
  395. <placeholder placeholderIdentifier="IBFirstResponder" id="qv1-9v-cRh" userLabel="First Responder" sceneMemberID="firstResponder"/>
  396. </objects>
  397. <point key="canvasLocation" x="-311.59420289855075" y="1477.9017857142856"/>
  398. </scene>
  399. <!--Link Email-->
  400. <scene sceneID="762-YK-zLq">
  401. <objects>
  402. <tableViewController id="aap-OX-gcb" customClass="LinkEmailViewController" sceneMemberID="viewController">
  403. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="fKU-t0-SBP">
  404. <rect key="frame" x="0.0" y="0.0" width="375" height="758"/>
  405. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  406. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  407. <sections>
  408. <tableViewSection id="qQD-Gd-ca9">
  409. <string key="footerTitle">Linking your email address to your ID lets other people find you on Threema automatically if they have your email in their address book.</string>
  410. <cells>
  411. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="77l-JS-8j7">
  412. <rect key="frame" x="0.0" y="17.666666030883789" width="375" height="44"/>
  413. <autoresizingMask key="autoresizingMask"/>
  414. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="77l-JS-8j7" id="rNF-xx-bnj">
  415. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  416. <autoresizingMask key="autoresizingMask"/>
  417. <subviews>
  418. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="your email address" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" clearButtonMode="always" translatesAutoresizingMaskIntoConstraints="NO" id="5bh-L5-CVm">
  419. <rect key="frame" x="16" y="30" width="343" height="0.0"/>
  420. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  421. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  422. <fontDescription key="fontDescription" style="UICTFontTextStyleTitle2"/>
  423. <textInputTraits key="textInputTraits" autocorrectionType="no" keyboardType="emailAddress" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
  424. <connections>
  425. <action selector="saveAction:" destination="aap-OX-gcb" eventType="editingDidEndOnExit" id="kKq-p2-iY1"/>
  426. </connections>
  427. </textField>
  428. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" preservesSuperviewLayoutMargins="YES" text="Email address" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="JRY-UB-2Zx">
  429. <rect key="frame" x="16" y="14" width="343" height="9"/>
  430. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  431. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  432. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  433. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  434. </label>
  435. </subviews>
  436. <constraints>
  437. <constraint firstItem="5bh-L5-CVm" firstAttribute="top" secondItem="JRY-UB-2Zx" secondAttribute="bottom" constant="7" id="CZu-m9-jeL"/>
  438. <constraint firstItem="5bh-L5-CVm" firstAttribute="leading" secondItem="rNF-xx-bnj" secondAttribute="leadingMargin" id="DJK-BD-gLm"/>
  439. <constraint firstItem="5bh-L5-CVm" firstAttribute="top" secondItem="JRY-UB-2Zx" secondAttribute="bottom" constant="7" id="H6X-lX-V1E"/>
  440. <constraint firstItem="JRY-UB-2Zx" firstAttribute="leading" secondItem="rNF-xx-bnj" secondAttribute="leadingMargin" id="LbA-2O-axv"/>
  441. <constraint firstAttribute="bottomMargin" secondItem="5bh-L5-CVm" secondAttribute="bottom" constant="3" id="SW4-9g-L3c"/>
  442. <constraint firstAttribute="trailingMargin" secondItem="5bh-L5-CVm" secondAttribute="trailing" id="VIF-gm-dHX"/>
  443. <constraint firstAttribute="trailingMargin" secondItem="JRY-UB-2Zx" secondAttribute="trailing" id="nkL-4m-lxp"/>
  444. <constraint firstItem="JRY-UB-2Zx" firstAttribute="top" secondItem="rNF-xx-bnj" secondAttribute="topMargin" constant="3" id="wd1-lE-CrS"/>
  445. </constraints>
  446. </tableViewCellContentView>
  447. </tableViewCell>
  448. </cells>
  449. </tableViewSection>
  450. </sections>
  451. <connections>
  452. <outlet property="dataSource" destination="aap-OX-gcb" id="VFx-ZF-ulg"/>
  453. <outlet property="delegate" destination="aap-OX-gcb" id="vXQ-Bh-4vd"/>
  454. </connections>
  455. </tableView>
  456. <navigationItem key="navigationItem" title="Link Email" id="uEL-Yh-Kca">
  457. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="5CZ-PO-zfO">
  458. <connections>
  459. <action selector="cancelAction:" destination="aap-OX-gcb" id="PE6-FM-3zB"/>
  460. </connections>
  461. </barButtonItem>
  462. <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="9GZ-ew-m9u">
  463. <connections>
  464. <action selector="saveAction:" destination="aap-OX-gcb" id="jfK-af-Wed"/>
  465. </connections>
  466. </barButtonItem>
  467. </navigationItem>
  468. <connections>
  469. <outlet property="emailTextField" destination="5bh-L5-CVm" id="CaT-FI-KoQ"/>
  470. </connections>
  471. </tableViewController>
  472. <placeholder placeholderIdentifier="IBFirstResponder" id="mos-3d-faU" userLabel="First Responder" sceneMemberID="firstResponder"/>
  473. </objects>
  474. <point key="canvasLocation" x="1266" y="1252"/>
  475. </scene>
  476. <!--Modal Navigation Controller-->
  477. <scene sceneID="qsD-IE-9kI">
  478. <objects>
  479. <navigationController id="rxw-EU-IYk" customClass="ModalNavigationController" sceneMemberID="viewController">
  480. <toolbarItems/>
  481. <navigationBar key="navigationBar" contentMode="scaleToFill" id="SNO-V5-kEn" customClass="StatusNavigationBar">
  482. <rect key="frame" x="0.0" y="0.0" width="375" height="56"/>
  483. <autoresizingMask key="autoresizingMask"/>
  484. </navigationBar>
  485. <nil name="viewControllers"/>
  486. <connections>
  487. <segue destination="aap-OX-gcb" kind="relationship" relationship="rootViewController" id="y6A-mT-0mQ"/>
  488. </connections>
  489. </navigationController>
  490. <placeholder placeholderIdentifier="IBFirstResponder" id="r1U-Q0-3rz" userLabel="First Responder" sceneMemberID="firstResponder"/>
  491. </objects>
  492. <point key="canvasLocation" x="524" y="1252"/>
  493. </scene>
  494. <!--Link Number-->
  495. <scene sceneID="82o-FU-7RS">
  496. <objects>
  497. <tableViewController id="Sjf-Bz-bLl" customClass="LinkMobileNoViewController" sceneMemberID="viewController">
  498. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="ss1-T3-EaY">
  499. <rect key="frame" x="0.0" y="0.0" width="375" height="758"/>
  500. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  501. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  502. <sections>
  503. <tableViewSection id="z3E-MB-Mey">
  504. <string key="footerTitle">Linking your phone number to your ID lets other people find you on Threema automatically if they have your phone number in their address book.</string>
  505. <cells>
  506. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="gLJ-hQ-07b">
  507. <rect key="frame" x="0.0" y="17.666666030883789" width="375" height="44"/>
  508. <autoresizingMask key="autoresizingMask"/>
  509. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="gLJ-hQ-07b" id="Ovh-u2-upx">
  510. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  511. <autoresizingMask key="autoresizingMask"/>
  512. <subviews>
  513. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="your phone number" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" clearButtonMode="always" translatesAutoresizingMaskIntoConstraints="NO" id="FRl-f2-pIa">
  514. <rect key="frame" x="16" y="30" width="343" height="0.0"/>
  515. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  516. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  517. <fontDescription key="fontDescription" style="UICTFontTextStyleTitle2"/>
  518. <textInputTraits key="textInputTraits" autocorrectionType="no" keyboardType="phonePad" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
  519. <connections>
  520. <action selector="saveAction:" destination="Sjf-Bz-bLl" eventType="editingDidEndOnExit" id="9Tg-oE-LJe"/>
  521. </connections>
  522. </textField>
  523. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" text="Phone Number" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="QCC-2k-HfZ">
  524. <rect key="frame" x="16" y="14" width="343" height="9"/>
  525. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  526. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  527. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  528. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  529. </label>
  530. </subviews>
  531. <constraints>
  532. <constraint firstItem="FRl-f2-pIa" firstAttribute="top" secondItem="QCC-2k-HfZ" secondAttribute="bottom" constant="7" id="1Eo-BS-Kd6"/>
  533. <constraint firstItem="FRl-f2-pIa" firstAttribute="leading" secondItem="Ovh-u2-upx" secondAttribute="leadingMargin" id="1Ii-So-fzo"/>
  534. <constraint firstItem="QCC-2k-HfZ" firstAttribute="top" secondItem="Ovh-u2-upx" secondAttribute="topMargin" constant="3" id="32c-f9-fYl"/>
  535. <constraint firstAttribute="bottomMargin" secondItem="FRl-f2-pIa" secondAttribute="bottom" constant="3" id="3Ho-mB-LEZ"/>
  536. <constraint firstAttribute="trailingMargin" secondItem="FRl-f2-pIa" secondAttribute="trailing" id="Mmh-JT-4s7"/>
  537. <constraint firstAttribute="trailingMargin" secondItem="QCC-2k-HfZ" secondAttribute="trailing" id="Xym-gz-k6g"/>
  538. <constraint firstItem="QCC-2k-HfZ" firstAttribute="leading" secondItem="Ovh-u2-upx" secondAttribute="leadingMargin" id="a0i-ye-5gi"/>
  539. </constraints>
  540. </tableViewCellContentView>
  541. </tableViewCell>
  542. </cells>
  543. </tableViewSection>
  544. </sections>
  545. <connections>
  546. <outlet property="dataSource" destination="Sjf-Bz-bLl" id="Fj5-Dr-kis"/>
  547. <outlet property="delegate" destination="Sjf-Bz-bLl" id="9ef-Oy-UWE"/>
  548. </connections>
  549. </tableView>
  550. <navigationItem key="navigationItem" title="Link Number" id="ELz-zT-AmB">
  551. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="Whn-3N-dB7">
  552. <connections>
  553. <action selector="cancelAction:" destination="Sjf-Bz-bLl" id="trb-dD-WxY"/>
  554. </connections>
  555. </barButtonItem>
  556. <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="eb9-Vg-cMJ">
  557. <connections>
  558. <action selector="saveAction:" destination="Sjf-Bz-bLl" id="gAB-Y1-abX"/>
  559. </connections>
  560. </barButtonItem>
  561. </navigationItem>
  562. <connections>
  563. <outlet property="mobileNoTextField" destination="FRl-f2-pIa" id="HeA-9L-LcC"/>
  564. </connections>
  565. </tableViewController>
  566. <placeholder placeholderIdentifier="IBFirstResponder" id="ggK-4N-hAk" userLabel="First Responder" sceneMemberID="firstResponder"/>
  567. </objects>
  568. <point key="canvasLocation" x="-170" y="2363"/>
  569. </scene>
  570. <!--Delete Identity View Controller-->
  571. <scene sceneID="NsD-KI-g5U">
  572. <objects>
  573. <viewController storyboardIdentifier="DeleteIdViewController" id="59m-EH-SeW" customClass="DeleteIdentityViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  574. <view key="view" contentMode="scaleToFill" id="OTu-jY-lJ0" customClass="WizardBackgroundView" customModule="ThreemaFramework">
  575. <rect key="frame" x="0.0" y="0.0" width="375" height="812"/>
  576. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  577. <subviews>
  578. <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" alignment="center" spacing="20" translatesAutoresizingMaskIntoConstraints="NO" id="c59-aY-Ngh">
  579. <rect key="frame" x="30" y="344" width="315" height="124"/>
  580. <subviews>
  581. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="seC-te-7L0">
  582. <rect key="frame" x="124.33333333333334" y="0.0" width="66.333333333333343" height="33.666666666666664"/>
  583. <fontDescription key="fontDescription" style="UICTFontTextStyleTitle1"/>
  584. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  585. <nil key="highlightedColor"/>
  586. </label>
  587. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cmC-T0-PCP">
  588. <rect key="frame" x="137" y="53.666666666666686" width="41.333333333333343" height="20.333333333333329"/>
  589. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  590. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  591. <nil key="highlightedColor"/>
  592. </label>
  593. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Jug-be-JzD" customClass="SetupButton" customModule="Threema" customModuleProvider="target">
  594. <rect key="frame" x="82.666666666666686" y="94" width="150" height="30"/>
  595. <constraints>
  596. <constraint firstAttribute="width" constant="150" id="oQ8-i4-Syu"/>
  597. </constraints>
  598. <state key="normal" title="Button"/>
  599. <connections>
  600. <action selector="touchDownButton:" destination="59m-EH-SeW" eventType="touchDown" id="Wl7-d4-JtM"/>
  601. </connections>
  602. </button>
  603. </subviews>
  604. </stackView>
  605. </subviews>
  606. <viewLayoutGuide key="safeArea" id="Jji-fz-rdr"/>
  607. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  608. <constraints>
  609. <constraint firstItem="c59-aY-Ngh" firstAttribute="centerY" secondItem="OTu-jY-lJ0" secondAttribute="centerY" id="4iK-Bc-ZfS"/>
  610. <constraint firstItem="c59-aY-Ngh" firstAttribute="leading" secondItem="Jji-fz-rdr" secondAttribute="leading" constant="30" id="EOs-p7-7Q6"/>
  611. <constraint firstItem="Jji-fz-rdr" firstAttribute="trailing" secondItem="c59-aY-Ngh" secondAttribute="trailing" constant="30" id="goL-vg-A1u"/>
  612. </constraints>
  613. </view>
  614. <connections>
  615. <outlet property="closeButton" destination="Jug-be-JzD" id="dBy-pq-YJ5"/>
  616. <outlet property="descriptionLabel" destination="cmC-T0-PCP" id="sym-dC-tek"/>
  617. <outlet property="titleLabel" destination="seC-te-7L0" id="Twd-QP-ByC"/>
  618. </connections>
  619. </viewController>
  620. <placeholder placeholderIdentifier="IBFirstResponder" id="Rpt-1X-6P3" userLabel="First Responder" sceneMemberID="firstResponder"/>
  621. </objects>
  622. <point key="canvasLocation" x="-1754" y="1930"/>
  623. </scene>
  624. <!--Modal Navigation Controller-->
  625. <scene sceneID="1O3-ah-GUc">
  626. <objects>
  627. <navigationController id="wMs-cI-B0Y" customClass="ModalNavigationController" sceneMemberID="viewController">
  628. <toolbarItems/>
  629. <navigationBar key="navigationBar" contentMode="scaleToFill" id="W4X-ql-dIM" customClass="StatusNavigationBar">
  630. <rect key="frame" x="0.0" y="0.0" width="375" height="56"/>
  631. <autoresizingMask key="autoresizingMask"/>
  632. </navigationBar>
  633. <nil name="viewControllers"/>
  634. <connections>
  635. <segue destination="Sjf-Bz-bLl" kind="relationship" relationship="rootViewController" id="avU-bN-xEw"/>
  636. </connections>
  637. </navigationController>
  638. <placeholder placeholderIdentifier="IBFirstResponder" id="bQ3-lW-7S3" userLabel="First Responder" sceneMemberID="firstResponder"/>
  639. </objects>
  640. <point key="canvasLocation" x="-911" y="2363"/>
  641. </scene>
  642. <!--Enter code-->
  643. <scene sceneID="Q0O-tp-DaN">
  644. <objects>
  645. <tableViewController id="nNM-nu-XB2" customClass="EnterCodeViewController" sceneMemberID="viewController">
  646. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="HTA-Q8-IA3">
  647. <rect key="frame" x="0.0" y="0.0" width="375" height="758"/>
  648. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  649. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  650. <sections>
  651. <tableViewSection footerTitle="Number: +41 79 123 45 67" id="5HP-W8-nFp">
  652. <cells>
  653. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="W9m-3i-YXI">
  654. <rect key="frame" x="0.0" y="17.666666030883789" width="375" height="44"/>
  655. <autoresizingMask key="autoresizingMask"/>
  656. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="W9m-3i-YXI" id="tLQ-9j-jCh">
  657. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  658. <autoresizingMask key="autoresizingMask"/>
  659. <subviews>
  660. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="code" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" clearButtonMode="always" translatesAutoresizingMaskIntoConstraints="NO" id="KTz-4x-SnC">
  661. <rect key="frame" x="16" y="30" width="343" height="0.0"/>
  662. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  663. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  664. <fontDescription key="fontDescription" style="UICTFontTextStyleTitle1"/>
  665. <textInputTraits key="textInputTraits" autocorrectionType="no" keyboardType="numberPad" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
  666. <connections>
  667. <action selector="doneAction:" destination="nNM-nu-XB2" eventType="editingDidEndOnExit" id="8zB-Ge-tr9"/>
  668. </connections>
  669. </textField>
  670. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" text="Enter code" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="xih-kT-hBC">
  671. <rect key="frame" x="16" y="14" width="343" height="9"/>
  672. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  673. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  674. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  675. <nil key="highlightedColor"/>
  676. </label>
  677. </subviews>
  678. <constraints>
  679. <constraint firstItem="xih-kT-hBC" firstAttribute="top" secondItem="tLQ-9j-jCh" secondAttribute="topMargin" constant="3" id="4gu-Zf-99o"/>
  680. <constraint firstAttribute="bottomMargin" secondItem="KTz-4x-SnC" secondAttribute="bottom" constant="3" id="AVw-NW-Ihg"/>
  681. <constraint firstItem="xih-kT-hBC" firstAttribute="leading" secondItem="tLQ-9j-jCh" secondAttribute="leadingMargin" id="AtI-c9-4JJ"/>
  682. <constraint firstAttribute="trailingMargin" secondItem="KTz-4x-SnC" secondAttribute="trailing" id="B37-GN-ZTX"/>
  683. <constraint firstAttribute="trailingMargin" secondItem="xih-kT-hBC" secondAttribute="trailing" id="BsG-cJ-GPL"/>
  684. <constraint firstItem="KTz-4x-SnC" firstAttribute="leading" secondItem="tLQ-9j-jCh" secondAttribute="leadingMargin" id="Kuh-tb-BcV"/>
  685. <constraint firstItem="KTz-4x-SnC" firstAttribute="top" secondItem="xih-kT-hBC" secondAttribute="bottom" constant="7" id="WNp-pi-MRe"/>
  686. </constraints>
  687. </tableViewCellContentView>
  688. </tableViewCell>
  689. </cells>
  690. </tableViewSection>
  691. <tableViewSection footerTitle="" id="en3-1n-e6P">
  692. <cells>
  693. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="blue" indentationWidth="10" textLabel="RvX-Ht-6JQ" detailTextLabel="xdM-Ja-eNy" imageView="Jvb-1y-wcB" style="IBUITableViewCellStyleValue1" id="gal-dG-c9t">
  694. <rect key="frame" x="0.0" y="109.33333206176758" width="375" height="44"/>
  695. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  696. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="gal-dG-c9t" id="PLh-QF-w6C">
  697. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  698. <autoresizingMask key="autoresizingMask"/>
  699. <subviews>
  700. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Request Call" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" enabled="NO" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="RvX-Ht-6JQ">
  701. <rect key="frame" x="55.999999999999993" y="11.999999999999998" width="95.333333333333329" height="20.333333333333332"/>
  702. <autoresizingMask key="autoresizingMask"/>
  703. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  704. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  705. <nil key="highlightedColor"/>
  706. </label>
  707. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="05:00" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" enabled="NO" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="xdM-Ja-eNy">
  708. <rect key="frame" x="313.33333333333331" y="11.999999999999998" width="45.666666666666664" height="20.333333333333332"/>
  709. <autoresizingMask key="autoresizingMask"/>
  710. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  711. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  712. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  713. </label>
  714. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" image="Phone" highlightedImage="Phone" id="Jvb-1y-wcB">
  715. <rect key="frame" x="16" y="9.3333333333333357" width="25" height="25"/>
  716. <autoresizingMask key="autoresizingMask"/>
  717. </imageView>
  718. </subviews>
  719. </tableViewCellContentView>
  720. <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
  721. </tableViewCell>
  722. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="wJP-Jf-Pgx" style="IBUITableViewCellStyleDefault" id="D4c-fJ-kWC">
  723. <rect key="frame" x="0.0" y="153.33333206176758" width="375" height="44"/>
  724. <autoresizingMask key="autoresizingMask"/>
  725. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="D4c-fJ-kWC" id="89a-uQ-Jw7">
  726. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  727. <autoresizingMask key="autoresizingMask"/>
  728. <subviews>
  729. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Abort Verification" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="wJP-Jf-Pgx">
  730. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  731. <autoresizingMask key="autoresizingMask"/>
  732. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  733. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  734. <nil key="highlightedColor"/>
  735. </label>
  736. </subviews>
  737. </tableViewCellContentView>
  738. </tableViewCell>
  739. </cells>
  740. </tableViewSection>
  741. </sections>
  742. <connections>
  743. <outlet property="dataSource" destination="nNM-nu-XB2" id="Ovk-c9-JGh"/>
  744. <outlet property="delegate" destination="nNM-nu-XB2" id="ueg-vs-8EK"/>
  745. </connections>
  746. </tableView>
  747. <navigationItem key="navigationItem" title="Enter code" id="tGC-WP-fBC">
  748. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="dq4-r0-bGE">
  749. <connections>
  750. <action selector="cancelAction:" destination="nNM-nu-XB2" id="n86-A9-se1"/>
  751. </connections>
  752. </barButtonItem>
  753. <barButtonItem key="rightBarButtonItem" style="done" systemItem="done" id="5U4-du-AfH">
  754. <connections>
  755. <action selector="doneAction:" destination="nNM-nu-XB2" id="tTC-te-Voe"/>
  756. </connections>
  757. </barButtonItem>
  758. </navigationItem>
  759. <connections>
  760. <outlet property="abortCell" destination="D4c-fJ-kWC" id="hxL-zi-IOX"/>
  761. <outlet property="callMeCell" destination="gal-dG-c9t" id="0Xw-pR-p9k"/>
  762. <outlet property="codeTextField" destination="KTz-4x-SnC" id="3Ai-Da-3u9"/>
  763. </connections>
  764. </tableViewController>
  765. <placeholder placeholderIdentifier="IBFirstResponder" id="1hm-WI-Rqp" userLabel="First Responder" sceneMemberID="firstResponder"/>
  766. </objects>
  767. <point key="canvasLocation" x="766" y="483"/>
  768. </scene>
  769. <!--Modal Navigation Controller-->
  770. <scene sceneID="7AN-1n-lXk">
  771. <objects>
  772. <navigationController id="2KJ-nO-VRW" customClass="ModalNavigationController" sceneMemberID="viewController">
  773. <toolbarItems/>
  774. <navigationBar key="navigationBar" contentMode="scaleToFill" id="Tdi-uV-cV7" customClass="StatusNavigationBar">
  775. <rect key="frame" x="0.0" y="0.0" width="375" height="56"/>
  776. <autoresizingMask key="autoresizingMask"/>
  777. </navigationBar>
  778. <nil name="viewControllers"/>
  779. <connections>
  780. <segue destination="nNM-nu-XB2" kind="relationship" relationship="rootViewController" id="s9J-3G-9Ci"/>
  781. </connections>
  782. </navigationController>
  783. <placeholder placeholderIdentifier="IBFirstResponder" id="VEc-N6-Y6z" userLabel="First Responder" sceneMemberID="firstResponder"/>
  784. </objects>
  785. <point key="canvasLocation" x="55" y="483"/>
  786. </scene>
  787. <!--Edit Profile-->
  788. <scene sceneID="c9T-x4-Rwv">
  789. <objects>
  790. <tableViewController storyboardIdentifier="EditProfileViewController" id="g1k-yd-5wU" customClass="EditProfileViewController" sceneMemberID="viewController">
  791. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="sy7-03-cpr">
  792. <rect key="frame" x="0.0" y="0.0" width="375" height="758"/>
  793. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  794. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  795. <sections>
  796. <tableViewSection id="2vB-fG-Pid">
  797. <cells>
  798. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="6L9-mt-j2J">
  799. <rect key="frame" x="0.0" y="17.666666030883789" width="375" height="44"/>
  800. <autoresizingMask key="autoresizingMask"/>
  801. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="6L9-mt-j2J" id="Z1o-K2-6MX">
  802. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  803. <autoresizingMask key="autoresizingMask"/>
  804. <subviews>
  805. <view contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Kpc-wF-q0O" customClass="EditableAvatarView">
  806. <rect key="frame" x="16" y="-20" width="84" height="84"/>
  807. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  808. <constraints>
  809. <constraint firstAttribute="height" constant="84" id="LOn-4k-cGF"/>
  810. <constraint firstAttribute="width" constant="84" id="dqy-DG-Nah"/>
  811. </constraints>
  812. </view>
  813. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Czp-pE-Dus">
  814. <rect key="frame" x="115" y="0.66666666666666785" width="250" height="43"/>
  815. <subviews>
  816. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" text="Nickname" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="NLA-jz-irZ">
  817. <rect key="frame" x="0.0" y="0.0" width="250" height="18"/>
  818. <accessibility key="accessibilityConfiguration">
  819. <bool key="isElement" value="NO"/>
  820. </accessibility>
  821. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  822. <nil key="textColor"/>
  823. <nil key="highlightedColor"/>
  824. </label>
  825. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Nickname" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" clearButtonMode="whileEditing" translatesAutoresizingMaskIntoConstraints="NO" id="o3l-bU-add">
  826. <rect key="frame" x="0.0" y="21" width="250" height="22"/>
  827. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  828. <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
  829. <textInputTraits key="textInputTraits" autocapitalizationType="words"/>
  830. <connections>
  831. <outlet property="delegate" destination="g1k-yd-5wU" id="ria-VF-ctH"/>
  832. </connections>
  833. </textField>
  834. </subviews>
  835. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  836. <constraints>
  837. <constraint firstAttribute="bottom" secondItem="o3l-bU-add" secondAttribute="bottom" id="79E-oX-n7z"/>
  838. <constraint firstItem="NLA-jz-irZ" firstAttribute="leading" secondItem="Czp-pE-Dus" secondAttribute="leading" id="CAd-gh-hJ9"/>
  839. <constraint firstAttribute="trailing" secondItem="NLA-jz-irZ" secondAttribute="trailing" id="SHd-Z6-FQr"/>
  840. <constraint firstItem="o3l-bU-add" firstAttribute="leading" secondItem="Czp-pE-Dus" secondAttribute="leading" id="ZfF-g4-LT7"/>
  841. <constraint firstItem="o3l-bU-add" firstAttribute="top" secondItem="NLA-jz-irZ" secondAttribute="bottom" constant="3" id="j8v-wF-xyk"/>
  842. <constraint firstAttribute="trailing" secondItem="o3l-bU-add" secondAttribute="trailing" id="jAK-XN-Wvq"/>
  843. <constraint firstItem="NLA-jz-irZ" firstAttribute="top" secondItem="Czp-pE-Dus" secondAttribute="top" id="lIX-RB-rce"/>
  844. </constraints>
  845. </view>
  846. </subviews>
  847. <constraints>
  848. <constraint firstItem="Czp-pE-Dus" firstAttribute="leading" secondItem="Kpc-wF-q0O" secondAttribute="trailing" constant="15" id="JMZ-FX-YZR"/>
  849. <constraint firstAttribute="bottom" secondItem="Kpc-wF-q0O" secondAttribute="bottom" priority="750" constant="10" id="PfQ-cR-sGm"/>
  850. <constraint firstItem="Czp-pE-Dus" firstAttribute="centerY" secondItem="Kpc-wF-q0O" secondAttribute="centerY" id="RIy-y2-T1A"/>
  851. <constraint firstItem="Kpc-wF-q0O" firstAttribute="centerY" secondItem="Z1o-K2-6MX" secondAttribute="centerY" id="TOl-o6-Rbf"/>
  852. <constraint firstItem="Kpc-wF-q0O" firstAttribute="top" secondItem="Z1o-K2-6MX" secondAttribute="top" priority="750" constant="10" id="XSq-xA-sUf"/>
  853. <constraint firstAttribute="trailing" secondItem="Czp-pE-Dus" secondAttribute="trailing" constant="10" id="YlL-Gw-vlc"/>
  854. <constraint firstItem="Kpc-wF-q0O" firstAttribute="leading" secondItem="Z1o-K2-6MX" secondAttribute="leadingMargin" id="wdH-Ji-bbT"/>
  855. </constraints>
  856. </tableViewCellContentView>
  857. </tableViewCell>
  858. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="4dd-m1-BwX">
  859. <rect key="frame" x="0.0" y="61.666666030883789" width="375" height="44"/>
  860. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  861. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="4dd-m1-BwX" id="Ghg-7W-Knc">
  862. <rect key="frame" x="0.0" y="0.0" width="347.66666666666669" height="44"/>
  863. <autoresizingMask key="autoresizingMask"/>
  864. <subviews>
  865. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="249" verticalHuggingPriority="251" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="749" text="Release profile picture to" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="vvJ-Em-VJ0">
  866. <rect key="frame" x="16" y="11" width="189.33333333333334" height="22"/>
  867. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  868. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  869. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  870. <nil key="highlightedColor"/>
  871. </label>
  872. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="249" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="751" text=" kajsdkf jalksjdölfk jaklsj dfkjasdkö " textAlignment="right" lineBreakMode="middleTruncation" numberOfLines="5" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="YYH-qM-Srd">
  873. <rect key="frame" x="217.99999999999997" y="15" width="121.66666666666666" height="14"/>
  874. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  875. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  876. <nil key="highlightedColor"/>
  877. </label>
  878. </subviews>
  879. <constraints>
  880. <constraint firstItem="vvJ-Em-VJ0" firstAttribute="centerY" secondItem="Ghg-7W-Knc" secondAttribute="centerY" id="4Eg-sL-swg"/>
  881. <constraint firstAttribute="trailingMargin" secondItem="YYH-qM-Srd" secondAttribute="trailing" id="Fbz-Ve-vEi"/>
  882. <constraint firstAttribute="bottomMargin" secondItem="vvJ-Em-VJ0" secondAttribute="bottom" id="GQQ-Hy-D7t"/>
  883. <constraint firstItem="YYH-qM-Srd" firstAttribute="centerY" secondItem="Ghg-7W-Knc" secondAttribute="centerY" id="P7X-2e-ATY"/>
  884. <constraint firstItem="vvJ-Em-VJ0" firstAttribute="top" secondItem="Ghg-7W-Knc" secondAttribute="topMargin" id="UVh-I4-oJz"/>
  885. <constraint firstItem="YYH-qM-Srd" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="vvJ-Em-VJ0" secondAttribute="trailing" constant="10" id="ami-eR-zs2"/>
  886. <constraint firstItem="YYH-qM-Srd" firstAttribute="top" relation="greaterThanOrEqual" secondItem="Ghg-7W-Knc" secondAttribute="topMargin" constant="4" id="eRb-7E-JJT"/>
  887. <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="YYH-qM-Srd" secondAttribute="bottom" constant="4" id="j4I-az-86c"/>
  888. <constraint firstItem="vvJ-Em-VJ0" firstAttribute="leading" secondItem="Ghg-7W-Knc" secondAttribute="leadingMargin" id="vrt-oG-JLn"/>
  889. </constraints>
  890. </tableViewCellContentView>
  891. <connections>
  892. <segue destination="lpv-Od-k2f" kind="show" id="OIe-HD-5cK"/>
  893. </connections>
  894. </tableViewCell>
  895. </cells>
  896. </tableViewSection>
  897. </sections>
  898. <connections>
  899. <outlet property="dataSource" destination="g1k-yd-5wU" id="Rs0-Hd-deJ"/>
  900. <outlet property="delegate" destination="g1k-yd-5wU" id="FkF-Ys-UNl"/>
  901. </connections>
  902. </tableView>
  903. <navigationItem key="navigationItem" title="Edit Profile" largeTitleDisplayMode="never" id="jni-2G-zzz"/>
  904. <connections>
  905. <outlet property="avatarView" destination="Kpc-wF-q0O" id="czU-80-tB6"/>
  906. <outlet property="contactsSettingValue" destination="YYH-qM-Srd" id="Es0-JM-kPD"/>
  907. <outlet property="nickNameTextField" destination="o3l-bU-add" id="apR-uA-szb"/>
  908. <outlet property="nickNameTitleLabel" destination="NLA-jz-irZ" id="8ms-1u-xTY"/>
  909. <outlet property="profileCell" destination="6L9-mt-j2J" id="hRf-Uc-zch"/>
  910. <outlet property="profilePictureSettingCell" destination="4dd-m1-BwX" id="BKj-18-jRe"/>
  911. </connections>
  912. </tableViewController>
  913. <placeholder placeholderIdentifier="IBFirstResponder" id="YY4-Bv-IHH" userLabel="First Responder" sceneMemberID="firstResponder"/>
  914. </objects>
  915. <point key="canvasLocation" x="524" y="1985.7571214392806"/>
  916. </scene>
  917. <!--Release profile picture to-->
  918. <scene sceneID="5l8-CI-U9H">
  919. <objects>
  920. <tableViewController id="lpv-Od-k2f" customClass="ProfilePictureSettingViewController" sceneMemberID="viewController">
  921. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="Lfp-M7-Xmf">
  922. <rect key="frame" x="0.0" y="0.0" width="375" height="758"/>
  923. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  924. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  925. <prototypes>
  926. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ProfilePictureSettingCell" textLabel="UgJ-LH-EP4" style="IBUITableViewCellStyleDefault" id="r72-yu-6t8">
  927. <rect key="frame" x="0.0" y="55.333332061767578" width="375" height="43.666667938232422"/>
  928. <autoresizingMask key="autoresizingMask"/>
  929. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="r72-yu-6t8" id="ykS-cQ-ZMz">
  930. <rect key="frame" x="0.0" y="0.0" width="375" height="43.666667938232422"/>
  931. <autoresizingMask key="autoresizingMask"/>
  932. <subviews>
  933. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="UgJ-LH-EP4">
  934. <rect key="frame" x="16" y="0.0" width="343" height="43.666667938232422"/>
  935. <autoresizingMask key="autoresizingMask"/>
  936. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  937. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  938. <nil key="highlightedColor"/>
  939. </label>
  940. </subviews>
  941. </tableViewCellContentView>
  942. </tableViewCell>
  943. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" reuseIdentifier="SendProfilePictureContactsCell" textLabel="PqJ-0p-bkD" style="IBUITableViewCellStyleDefault" id="FiD-Cv-Zyb">
  944. <rect key="frame" x="0.0" y="99" width="375" height="43.666667938232422"/>
  945. <autoresizingMask key="autoresizingMask"/>
  946. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="FiD-Cv-Zyb" id="CLi-Nx-X5K">
  947. <rect key="frame" x="0.0" y="0.0" width="347.66666666666669" height="43.666667938232422"/>
  948. <autoresizingMask key="autoresizingMask"/>
  949. <subviews>
  950. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Profile picture recipients" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="PqJ-0p-bkD">
  951. <rect key="frame" x="16" y="0.0" width="323.66666666666669" height="43.666667938232422"/>
  952. <autoresizingMask key="autoresizingMask"/>
  953. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  954. <nil key="textColor"/>
  955. <nil key="highlightedColor"/>
  956. </label>
  957. </subviews>
  958. </tableViewCellContentView>
  959. </tableViewCell>
  960. </prototypes>
  961. <sections/>
  962. <connections>
  963. <outlet property="dataSource" destination="lpv-Od-k2f" id="IdU-tX-xFC"/>
  964. <outlet property="delegate" destination="lpv-Od-k2f" id="NvO-3t-YSx"/>
  965. </connections>
  966. </tableView>
  967. <navigationItem key="navigationItem" title="Release profile picture to" id="aX3-NQ-eU7"/>
  968. </tableViewController>
  969. <placeholder placeholderIdentifier="IBFirstResponder" id="MX5-RQ-2Fb" userLabel="First Responder" sceneMemberID="firstResponder"/>
  970. </objects>
  971. <point key="canvasLocation" x="1298" y="1986"/>
  972. </scene>
  973. <!--Safe Intro View Controller-->
  974. <scene sceneID="fHJ-4p-s9i">
  975. <objects>
  976. <viewController storyboardIdentifier="SafeIntroViewController" id="2QQ-ud-6hi" customClass="SafeIntroViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  977. <view key="view" contentMode="center" id="PE5-mN-PBE">
  978. <rect key="frame" x="0.0" y="0.0" width="375" height="812"/>
  979. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  980. <subviews>
  981. <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" translatesAutoresizingMaskIntoConstraints="NO" id="NTi-Hj-iDN">
  982. <rect key="frame" x="0.0" y="0.0" width="375" height="812"/>
  983. <subviews>
  984. <stackView opaque="NO" contentMode="center" distribution="equalSpacing" alignment="top" baselineRelativeArrangement="YES" translatesAutoresizingMaskIntoConstraints="NO" id="8Op-Hc-ehr">
  985. <rect key="frame" x="0.0" y="62" width="375" height="871"/>
  986. <subviews>
  987. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="hSp-Dj-j59">
  988. <rect key="frame" x="0.0" y="0.0" width="30" height="871"/>
  989. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  990. <constraints>
  991. <constraint firstAttribute="width" constant="30" id="eGO-Vu-2qp"/>
  992. </constraints>
  993. </view>
  994. <stackView opaque="NO" contentMode="center" axis="vertical" distribution="equalSpacing" alignment="center" spacing="14" translatesAutoresizingMaskIntoConstraints="NO" id="Vfh-gi-8wG">
  995. <rect key="frame" x="57.666666666666657" y="0.0" width="260" height="440.66666666666669"/>
  996. <subviews>
  997. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="249" text="Label" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ky3-aw-XMX">
  998. <rect key="frame" x="102" y="0.0" width="56" height="27.666666666666668"/>
  999. <fontDescription key="fontDescription" type="system" weight="medium" pointSize="23"/>
  1000. <nil key="textColor"/>
  1001. <nil key="highlightedColor"/>
  1002. </label>
  1003. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" text="Label" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Zy0-SZ-HJi">
  1004. <rect key="frame" x="0.0" y="41.666666666666671" width="260" height="21.666666666666671"/>
  1005. <fontDescription key="fontDescription" type="system" weight="light" pointSize="18"/>
  1006. <nil key="textColor"/>
  1007. <nil key="highlightedColor"/>
  1008. </label>
  1009. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="KYs-Hi-YvZ">
  1010. <rect key="frame" x="0.0" y="77.333333333333343" width="260" height="220.00000000000003"/>
  1011. <subviews>
  1012. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="lPu-Gb-K6X">
  1013. <rect key="frame" x="25" y="5" width="210" height="210"/>
  1014. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1015. <constraints>
  1016. <constraint firstAttribute="height" constant="210" id="QN1-Wy-I2a"/>
  1017. <constraint firstAttribute="width" constant="210" id="j9x-gI-0FK"/>
  1018. </constraints>
  1019. </view>
  1020. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ThreemaSafeIntro.png" translatesAutoresizingMaskIntoConstraints="NO" id="mtm-Z8-vx7">
  1021. <rect key="frame" x="20" y="0.0" width="220" height="220"/>
  1022. <constraints>
  1023. <constraint firstAttribute="height" constant="220" id="Re7-cp-Yiy"/>
  1024. <constraint firstAttribute="width" constant="220" id="kOB-kr-NvV"/>
  1025. </constraints>
  1026. </imageView>
  1027. </subviews>
  1028. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1029. <constraints>
  1030. <constraint firstAttribute="height" constant="220" id="QDD-iF-v3E"/>
  1031. <constraint firstItem="lPu-Gb-K6X" firstAttribute="centerX" secondItem="KYs-Hi-YvZ" secondAttribute="centerX" id="dnL-Va-E4w"/>
  1032. <constraint firstItem="mtm-Z8-vx7" firstAttribute="centerX" secondItem="KYs-Hi-YvZ" secondAttribute="centerX" id="h2a-5P-8S0"/>
  1033. <constraint firstItem="mtm-Z8-vx7" firstAttribute="centerY" secondItem="KYs-Hi-YvZ" secondAttribute="centerY" id="mwv-fO-NEy"/>
  1034. <constraint firstItem="lPu-Gb-K6X" firstAttribute="centerY" secondItem="KYs-Hi-YvZ" secondAttribute="centerY" id="xo7-yD-uC3"/>
  1035. </constraints>
  1036. </view>
  1037. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" text="Label" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jcI-bX-mXj">
  1038. <rect key="frame" x="110.33333333333334" y="311.33333333333331" width="39" height="19.333333333333314"/>
  1039. <fontDescription key="fontDescription" type="system" weight="light" pointSize="16"/>
  1040. <nil key="textColor"/>
  1041. <nil key="highlightedColor"/>
  1042. </label>
  1043. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="lAk-4V-k1g">
  1044. <rect key="frame" x="0.0" y="344.66666666666669" width="260" height="46"/>
  1045. <subviews>
  1046. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Q00-XE-5z0" customClass="SetupButton" customModule="Threema" customModuleProvider="target">
  1047. <rect key="frame" x="0.0" y="10" width="260" height="36"/>
  1048. <constraints>
  1049. <constraint firstAttribute="height" constant="36" id="lWK-Io-7o9"/>
  1050. </constraints>
  1051. <state key="normal" title="Button">
  1052. <color key="titleColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1053. </state>
  1054. <connections>
  1055. <segue destination="isA-4a-PvY" kind="show" id="xjX-Ke-ny0"/>
  1056. </connections>
  1057. </button>
  1058. </subviews>
  1059. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1060. <constraints>
  1061. <constraint firstAttribute="bottom" secondItem="Q00-XE-5z0" secondAttribute="bottom" id="Pyr-Qw-jyf"/>
  1062. <constraint firstAttribute="trailing" secondItem="Q00-XE-5z0" secondAttribute="trailing" id="exi-D5-Mx9"/>
  1063. <constraint firstItem="Q00-XE-5z0" firstAttribute="leading" secondItem="lAk-4V-k1g" secondAttribute="leading" id="m0k-U2-0Dp"/>
  1064. <constraint firstItem="Q00-XE-5z0" firstAttribute="top" secondItem="lAk-4V-k1g" secondAttribute="top" constant="10" id="ncZ-kj-KSe"/>
  1065. </constraints>
  1066. </view>
  1067. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="HNt-4v-CIs" customClass="SetupButton" customModule="Threema" customModuleProvider="target">
  1068. <rect key="frame" x="0.0" y="404.66666666666669" width="260" height="36"/>
  1069. <constraints>
  1070. <constraint firstAttribute="height" constant="36" id="cBb-Fp-iLw"/>
  1071. </constraints>
  1072. <state key="normal" title="Button"/>
  1073. <userDefinedRuntimeAttributes>
  1074. <userDefinedRuntimeAttribute type="boolean" keyPath="cancelStyle" value="YES"/>
  1075. </userDefinedRuntimeAttributes>
  1076. <connections>
  1077. <action selector="touchDownButton:forEvent:" destination="2QQ-ud-6hi" eventType="touchDown" id="zMD-S4-zbe"/>
  1078. </connections>
  1079. </button>
  1080. </subviews>
  1081. <constraints>
  1082. <constraint firstAttribute="trailing" secondItem="Zy0-SZ-HJi" secondAttribute="trailing" id="2Sd-xe-09g"/>
  1083. <constraint firstItem="HNt-4v-CIs" firstAttribute="leading" secondItem="Vfh-gi-8wG" secondAttribute="leading" id="65x-6c-yjA"/>
  1084. <constraint firstAttribute="height" relation="lessThanOrEqual" constant="1500" id="8uq-yZ-U91"/>
  1085. <constraint firstAttribute="trailing" secondItem="KYs-Hi-YvZ" secondAttribute="trailing" id="9FG-ZL-7Gt"/>
  1086. <constraint firstItem="KYs-Hi-YvZ" firstAttribute="leading" secondItem="Vfh-gi-8wG" secondAttribute="leading" id="AVD-77-Qo0"/>
  1087. <constraint firstAttribute="trailing" secondItem="lAk-4V-k1g" secondAttribute="trailing" id="BoB-HN-eM8"/>
  1088. <constraint firstAttribute="trailing" secondItem="HNt-4v-CIs" secondAttribute="trailing" id="OVn-9o-ltb"/>
  1089. <constraint firstItem="lAk-4V-k1g" firstAttribute="leading" secondItem="Vfh-gi-8wG" secondAttribute="leading" id="Oc7-qs-ezv"/>
  1090. <constraint firstItem="Zy0-SZ-HJi" firstAttribute="leading" secondItem="Vfh-gi-8wG" secondAttribute="leading" id="YYV-C4-rr8"/>
  1091. </constraints>
  1092. </stackView>
  1093. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="9EJ-cN-hlf">
  1094. <rect key="frame" x="345" y="0.0" width="30" height="871"/>
  1095. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1096. <constraints>
  1097. <constraint firstAttribute="width" constant="30" id="hS5-ep-ypC"/>
  1098. </constraints>
  1099. </view>
  1100. </subviews>
  1101. </stackView>
  1102. </subviews>
  1103. <constraints>
  1104. <constraint firstAttribute="bottomMargin" secondItem="8Op-Hc-ehr" secondAttribute="bottom" constant="10" id="4rD-kP-Rio"/>
  1105. <constraint firstItem="8Op-Hc-ehr" firstAttribute="leading" secondItem="NTi-Hj-iDN" secondAttribute="leading" id="8cQ-mD-5vZ"/>
  1106. <constraint firstAttribute="trailing" secondItem="8Op-Hc-ehr" secondAttribute="trailing" id="Pa8-Zx-9cL"/>
  1107. <constraint firstItem="8Op-Hc-ehr" firstAttribute="top" secondItem="NTi-Hj-iDN" secondAttribute="topMargin" constant="10" id="byM-l5-8Q0"/>
  1108. </constraints>
  1109. </scrollView>
  1110. </subviews>
  1111. <viewLayoutGuide key="safeArea" id="LFU-2d-ZQy"/>
  1112. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1113. <constraints>
  1114. <constraint firstItem="LFU-2d-ZQy" firstAttribute="trailing" secondItem="NTi-Hj-iDN" secondAttribute="trailing" id="2O2-Uf-42d"/>
  1115. <constraint firstAttribute="top" secondItem="NTi-Hj-iDN" secondAttribute="top" id="4VH-DY-xS5"/>
  1116. <constraint firstItem="NTi-Hj-iDN" firstAttribute="bottom" secondItem="PE5-mN-PBE" secondAttribute="bottom" id="CSG-xG-IOO"/>
  1117. <constraint firstItem="NTi-Hj-iDN" firstAttribute="leading" secondItem="LFU-2d-ZQy" secondAttribute="leading" id="dc7-Ae-rzH"/>
  1118. <constraint firstItem="8Op-Hc-ehr" firstAttribute="width" secondItem="LFU-2d-ZQy" secondAttribute="width" id="vgE-Yx-b94"/>
  1119. </constraints>
  1120. </view>
  1121. <connections>
  1122. <outlet property="cancelButton" destination="HNt-4v-CIs" id="Xta-uf-8Sf"/>
  1123. <outlet property="descriptionLabel" destination="Zy0-SZ-HJi" id="Is3-b1-qzB"/>
  1124. <outlet property="explainLabel" destination="jcI-bX-mXj" id="I1Q-D2-Fyw"/>
  1125. <outlet property="introCircle" destination="lPu-Gb-K6X" id="RbZ-kF-FdS"/>
  1126. <outlet property="introImage" destination="mtm-Z8-vx7" id="jUS-ro-eIJ"/>
  1127. <outlet property="mainContent" destination="Vfh-gi-8wG" id="xc9-ak-SV9"/>
  1128. <outlet property="okButton" destination="Q00-XE-5z0" id="eYT-zd-efV"/>
  1129. <outlet property="titleLabel" destination="ky3-aw-XMX" id="NNH-yZ-LQf"/>
  1130. </connections>
  1131. </viewController>
  1132. <placeholder placeholderIdentifier="IBFirstResponder" id="t1i-2B-FOZ" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1133. </objects>
  1134. <point key="canvasLocation" x="-2724" y="92"/>
  1135. </scene>
  1136. <!--Safe Setup View Controller-->
  1137. <scene sceneID="I9Q-IF-kCS">
  1138. <objects>
  1139. <viewController id="sq0-x9-MA6" customClass="SafeSetupViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  1140. <view key="view" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" id="P2c-a1-yRo">
  1141. <rect key="frame" x="0.0" y="0.0" width="375" height="758"/>
  1142. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1143. <subviews>
  1144. <stackView opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" distribution="equalSpacing" spacingType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="6ab-jM-lQY">
  1145. <rect key="frame" x="16" y="15" width="343" height="50"/>
  1146. <subviews>
  1147. <stackView opaque="NO" contentMode="scaleToFill" distribution="equalSpacing" spacingType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="e19-Ux-uIo">
  1148. <rect key="frame" x="0.0" y="0.0" width="144" height="50"/>
  1149. <subviews>
  1150. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="F9G-qq-ABw">
  1151. <rect key="frame" x="0.0" y="0.0" width="30" height="50"/>
  1152. <subviews>
  1153. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="GgJ-wF-jQn">
  1154. <rect key="frame" x="0.0" y="10" width="30" height="30"/>
  1155. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1156. <constraints>
  1157. <constraint firstAttribute="width" constant="30" id="68q-Ia-nax"/>
  1158. <constraint firstAttribute="height" constant="30" id="Ahk-iC-UTo"/>
  1159. </constraints>
  1160. </view>
  1161. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" image="ThreemaSafeIntro.png" translatesAutoresizingMaskIntoConstraints="NO" id="8Pm-M9-ePz">
  1162. <rect key="frame" x="0.0" y="0.0" width="30" height="50"/>
  1163. </imageView>
  1164. </subviews>
  1165. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1166. <constraints>
  1167. <constraint firstItem="GgJ-wF-jQn" firstAttribute="centerY" secondItem="8Pm-M9-ePz" secondAttribute="centerY" id="0ji-xR-sUA"/>
  1168. <constraint firstItem="8Pm-M9-ePz" firstAttribute="top" secondItem="F9G-qq-ABw" secondAttribute="top" id="4La-ek-DdQ"/>
  1169. <constraint firstItem="8Pm-M9-ePz" firstAttribute="leading" secondItem="F9G-qq-ABw" secondAttribute="leading" id="7gn-Vv-Crp"/>
  1170. <constraint firstAttribute="trailing" secondItem="8Pm-M9-ePz" secondAttribute="trailing" id="SUT-o6-YAm"/>
  1171. <constraint firstAttribute="width" constant="30" id="fix-fa-isS"/>
  1172. <constraint firstAttribute="bottom" secondItem="8Pm-M9-ePz" secondAttribute="bottom" id="uwE-7v-niQ"/>
  1173. <constraint firstItem="GgJ-wF-jQn" firstAttribute="centerX" secondItem="8Pm-M9-ePz" secondAttribute="centerX" id="zzk-1x-nGu"/>
  1174. </constraints>
  1175. </view>
  1176. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" preservesSuperviewLayoutMargins="YES" text="Threema Safe" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jhG-Ge-qyu">
  1177. <rect key="frame" x="38" y="0.0" width="106" height="50"/>
  1178. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1179. <nil key="textColor"/>
  1180. <nil key="highlightedColor"/>
  1181. </label>
  1182. </subviews>
  1183. </stackView>
  1184. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" horizontalCompressionResistancePriority="751" insetsLayoutMarginsFromSafeArea="NO" contentHorizontalAlignment="right" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Sa9-hb-uUR">
  1185. <rect key="frame" x="294" y="0.0" width="51" height="50"/>
  1186. <connections>
  1187. <segue destination="isA-4a-PvY" kind="presentation" identifier="SafeSetupPassword" modalPresentationStyle="currentContext" id="Wuf-ev-MSL"/>
  1188. </connections>
  1189. </switch>
  1190. </subviews>
  1191. </stackView>
  1192. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="KHz-Eq-LQK">
  1193. <rect key="frame" x="0.0" y="79" width="375" height="1"/>
  1194. <color key="backgroundColor" white="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1195. <constraints>
  1196. <constraint firstAttribute="height" constant="1" id="kII-Q6-rX6"/>
  1197. </constraints>
  1198. </view>
  1199. <containerView opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="CgP-Es-w6E">
  1200. <rect key="frame" x="0.0" y="80" width="375" height="644"/>
  1201. <connections>
  1202. <segue destination="Umh-Qz-iOn" kind="embed" id="drc-vT-zeY"/>
  1203. </connections>
  1204. </containerView>
  1205. <containerView opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="4do-en-IiX">
  1206. <rect key="frame" x="0.0" y="80" width="375" height="644"/>
  1207. <connections>
  1208. <segue destination="kum-xn-2YU" kind="embed" id="vvS-Db-mAi"/>
  1209. </connections>
  1210. </containerView>
  1211. </subviews>
  1212. <viewLayoutGuide key="safeArea" id="yGc-d6-eLp"/>
  1213. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1214. <constraints>
  1215. <constraint firstItem="6ab-jM-lQY" firstAttribute="top" secondItem="yGc-d6-eLp" secondAttribute="top" constant="15" id="5mr-eH-tp2"/>
  1216. <constraint firstItem="4do-en-IiX" firstAttribute="trailing" secondItem="yGc-d6-eLp" secondAttribute="trailing" id="Brb-HO-tCr"/>
  1217. <constraint firstAttribute="trailing" secondItem="KHz-Eq-LQK" secondAttribute="trailing" id="I6I-lL-lhw"/>
  1218. <constraint firstAttribute="trailingMargin" secondItem="6ab-jM-lQY" secondAttribute="trailing" id="JGM-aY-rQa"/>
  1219. <constraint firstItem="CgP-Es-w6E" firstAttribute="leading" secondItem="yGc-d6-eLp" secondAttribute="leading" id="PTR-2J-eCU"/>
  1220. <constraint firstItem="KHz-Eq-LQK" firstAttribute="leading" secondItem="P2c-a1-yRo" secondAttribute="leading" id="Vt9-ud-4xc"/>
  1221. <constraint firstItem="CgP-Es-w6E" firstAttribute="bottom" secondItem="yGc-d6-eLp" secondAttribute="bottom" id="WPM-hZ-nxb"/>
  1222. <constraint firstItem="4do-en-IiX" firstAttribute="leading" secondItem="yGc-d6-eLp" secondAttribute="leading" id="ZOh-Sz-itE"/>
  1223. <constraint firstItem="6ab-jM-lQY" firstAttribute="leading" secondItem="P2c-a1-yRo" secondAttribute="leadingMargin" id="e8B-BY-XOJ"/>
  1224. <constraint firstItem="4do-en-IiX" firstAttribute="top" secondItem="6ab-jM-lQY" secondAttribute="bottom" constant="15" id="eiz-OJ-dV1"/>
  1225. <constraint firstItem="4do-en-IiX" firstAttribute="bottom" secondItem="yGc-d6-eLp" secondAttribute="bottom" id="pLB-Qb-ueM"/>
  1226. <constraint firstItem="CgP-Es-w6E" firstAttribute="top" secondItem="6ab-jM-lQY" secondAttribute="bottom" constant="15" id="rkK-Ra-nPn"/>
  1227. <constraint firstItem="CgP-Es-w6E" firstAttribute="trailing" secondItem="yGc-d6-eLp" secondAttribute="trailing" id="txV-da-7NR"/>
  1228. <constraint firstItem="CgP-Es-w6E" firstAttribute="top" secondItem="KHz-Eq-LQK" secondAttribute="bottom" id="yiB-pO-4fZ"/>
  1229. </constraints>
  1230. </view>
  1231. <navigationItem key="navigationItem" largeTitleDisplayMode="never" id="pyF-4K-IcS"/>
  1232. <connections>
  1233. <outlet property="safeActivatedContainer" destination="4do-en-IiX" id="SQq-K4-DnF"/>
  1234. <outlet property="safeDeactivatedContainer" destination="CgP-Es-w6E" id="zRc-lM-xLi"/>
  1235. <outlet property="safeImageCircle" destination="GgJ-wF-jQn" id="h7J-7h-VB8"/>
  1236. <outlet property="safeImageView" destination="8Pm-M9-ePz" id="B5U-Gm-APz"/>
  1237. <outlet property="safeSeparatorView" destination="KHz-Eq-LQK" id="Ncg-aD-wqM"/>
  1238. <outlet property="safeSwitch" destination="Sa9-hb-uUR" id="pPf-PN-qS6"/>
  1239. <outlet property="safeSwitchLabel" destination="jhG-Ge-qyu" id="75B-AH-4Q4"/>
  1240. </connections>
  1241. </viewController>
  1242. <placeholder placeholderIdentifier="IBFirstResponder" id="pr6-Ma-x8q" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1243. </objects>
  1244. <point key="canvasLocation" x="-4588" y="886.50674662668678"/>
  1245. </scene>
  1246. <!--Safe Activated View Controller-->
  1247. <scene sceneID="0PM-Oc-aO3">
  1248. <objects>
  1249. <tableViewController id="kum-xn-2YU" customClass="SafeActivatedViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  1250. <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="18" sectionFooterHeight="18" id="HIr-bG-Psk">
  1251. <rect key="frame" x="0.0" y="0.0" width="375" height="644"/>
  1252. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1253. <color key="backgroundColor" systemColor="groupTableViewBackgroundColor"/>
  1254. <sections>
  1255. <tableViewSection id="uBK-yh-04Y">
  1256. <cells>
  1257. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="ix1-lm-oQL">
  1258. <rect key="frame" x="0.0" y="18" width="375" height="44"/>
  1259. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  1260. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="ix1-lm-oQL" id="0Tg-v5-Xf8">
  1261. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1262. <autoresizingMask key="autoresizingMask"/>
  1263. <subviews>
  1264. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Server" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="CCz-Rx-Iyj">
  1265. <rect key="frame" x="16" y="0.0" width="150" height="44"/>
  1266. <constraints>
  1267. <constraint firstAttribute="width" constant="150" id="pU9-FK-l1e"/>
  1268. </constraints>
  1269. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1270. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1271. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1272. <nil key="highlightedColor"/>
  1273. </label>
  1274. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="-" textAlignment="right" lineBreakMode="middleTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" minimumScaleFactor="0.75" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cDG-vj-35i">
  1275. <rect key="frame" x="351.33333333333331" y="15" width="7.6666666666666856" height="14"/>
  1276. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1277. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1278. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1279. </label>
  1280. </subviews>
  1281. <constraints>
  1282. <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="cDG-vj-35i" secondAttribute="bottom" constant="4" id="5V7-Dv-VXX"/>
  1283. <constraint firstItem="cDG-vj-35i" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="CCz-Rx-Iyj" secondAttribute="trailing" constant="10" id="ID4-C4-ovh"/>
  1284. <constraint firstItem="cDG-vj-35i" firstAttribute="centerY" secondItem="0Tg-v5-Xf8" secondAttribute="centerY" id="RaB-Ur-wku"/>
  1285. <constraint firstItem="CCz-Rx-Iyj" firstAttribute="leading" secondItem="0Tg-v5-Xf8" secondAttribute="leadingMargin" id="dIY-42-CYA"/>
  1286. <constraint firstAttribute="trailingMargin" secondItem="cDG-vj-35i" secondAttribute="trailing" id="gLv-Jx-TQ2"/>
  1287. <constraint firstItem="cDG-vj-35i" firstAttribute="top" relation="greaterThanOrEqual" secondItem="0Tg-v5-Xf8" secondAttribute="topMargin" constant="4" id="mh0-bh-00t"/>
  1288. <constraint firstItem="CCz-Rx-Iyj" firstAttribute="top" secondItem="0Tg-v5-Xf8" secondAttribute="top" id="tBb-30-dR1"/>
  1289. <constraint firstAttribute="bottom" secondItem="CCz-Rx-Iyj" secondAttribute="bottom" id="tha-iC-aHW"/>
  1290. </constraints>
  1291. </tableViewCellContentView>
  1292. </tableViewCell>
  1293. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="JiG-Gc-T9a">
  1294. <rect key="frame" x="0.0" y="62" width="375" height="44"/>
  1295. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  1296. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="JiG-Gc-T9a" id="Low-Zz-EWZ">
  1297. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1298. <autoresizingMask key="autoresizingMask"/>
  1299. <subviews>
  1300. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Max. backup size" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6oN-AH-5cw">
  1301. <rect key="frame" x="16" y="11" width="191" height="22"/>
  1302. <constraints>
  1303. <constraint firstAttribute="width" constant="191" id="K29-nI-4Uz"/>
  1304. </constraints>
  1305. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1306. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1307. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1308. <nil key="highlightedColor"/>
  1309. </label>
  1310. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="-" textAlignment="right" lineBreakMode="middleTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="V4j-Ub-pdi">
  1311. <rect key="frame" x="351.33333333333331" y="15" width="7.6666666666666856" height="14"/>
  1312. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1313. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1314. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1315. </label>
  1316. </subviews>
  1317. <constraints>
  1318. <constraint firstAttribute="bottomMargin" secondItem="6oN-AH-5cw" secondAttribute="bottom" id="2Bx-qL-E9e"/>
  1319. <constraint firstItem="V4j-Ub-pdi" firstAttribute="top" relation="greaterThanOrEqual" secondItem="Low-Zz-EWZ" secondAttribute="topMargin" constant="4" id="6bd-5t-uHf"/>
  1320. <constraint firstItem="6oN-AH-5cw" firstAttribute="leading" secondItem="Low-Zz-EWZ" secondAttribute="leadingMargin" id="9JC-ja-Gfd"/>
  1321. <constraint firstItem="V4j-Ub-pdi" firstAttribute="centerY" secondItem="Low-Zz-EWZ" secondAttribute="centerY" id="AfX-Fa-bpA"/>
  1322. <constraint firstAttribute="trailingMargin" secondItem="V4j-Ub-pdi" secondAttribute="trailing" id="Ncf-nk-8NJ"/>
  1323. <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="V4j-Ub-pdi" secondAttribute="bottom" constant="4" id="Z12-hQ-xv0"/>
  1324. <constraint firstItem="V4j-Ub-pdi" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="6oN-AH-5cw" secondAttribute="trailing" constant="10" id="scM-Hd-h2k"/>
  1325. <constraint firstItem="6oN-AH-5cw" firstAttribute="top" secondItem="Low-Zz-EWZ" secondAttribute="topMargin" id="td4-CD-2JX"/>
  1326. </constraints>
  1327. </tableViewCellContentView>
  1328. </tableViewCell>
  1329. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="BLe-I3-JhY">
  1330. <rect key="frame" x="0.0" y="106" width="375" height="44"/>
  1331. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  1332. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="BLe-I3-JhY" id="wft-7M-lOC">
  1333. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1334. <autoresizingMask key="autoresizingMask"/>
  1335. <subviews>
  1336. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Retention days" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Gj2-0g-N9D">
  1337. <rect key="frame" x="16" y="11" width="191" height="22"/>
  1338. <constraints>
  1339. <constraint firstAttribute="width" constant="191" id="dbn-AG-Dqs"/>
  1340. </constraints>
  1341. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1342. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1343. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1344. <nil key="highlightedColor"/>
  1345. </label>
  1346. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="-" textAlignment="right" lineBreakMode="middleTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pW4-Aa-Fp5">
  1347. <rect key="frame" x="351.33333333333331" y="15" width="7.6666666666666856" height="14"/>
  1348. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1349. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1350. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1351. </label>
  1352. </subviews>
  1353. <constraints>
  1354. <constraint firstAttribute="trailingMargin" secondItem="pW4-Aa-Fp5" secondAttribute="trailing" id="0ar-Vp-Vjt"/>
  1355. <constraint firstItem="pW4-Aa-Fp5" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="Gj2-0g-N9D" secondAttribute="trailing" constant="10" id="7hm-zn-1Rg"/>
  1356. <constraint firstItem="Gj2-0g-N9D" firstAttribute="top" secondItem="wft-7M-lOC" secondAttribute="topMargin" id="CAh-Tw-Kph"/>
  1357. <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="pW4-Aa-Fp5" secondAttribute="bottom" constant="4" id="FlV-gt-9Af"/>
  1358. <constraint firstItem="Gj2-0g-N9D" firstAttribute="leading" secondItem="wft-7M-lOC" secondAttribute="leadingMargin" id="INE-se-xOb"/>
  1359. <constraint firstAttribute="bottomMargin" secondItem="Gj2-0g-N9D" secondAttribute="bottom" id="TUA-SP-L0J"/>
  1360. <constraint firstItem="pW4-Aa-Fp5" firstAttribute="top" relation="greaterThanOrEqual" secondItem="wft-7M-lOC" secondAttribute="topMargin" constant="4" id="WEV-1F-6lQ"/>
  1361. <constraint firstItem="pW4-Aa-Fp5" firstAttribute="centerY" secondItem="wft-7M-lOC" secondAttribute="centerY" id="oer-Bs-AJW"/>
  1362. </constraints>
  1363. </tableViewCellContentView>
  1364. </tableViewCell>
  1365. </cells>
  1366. </tableViewSection>
  1367. <tableViewSection id="aOo-Wj-aZo">
  1368. <cells>
  1369. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="D0D-sR-zhw">
  1370. <rect key="frame" x="0.0" y="186" width="375" height="44"/>
  1371. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  1372. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="D0D-sR-zhw" id="Kdg-bJ-itk">
  1373. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1374. <autoresizingMask key="autoresizingMask"/>
  1375. <subviews>
  1376. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Last backup" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="WHu-Ia-hVX">
  1377. <rect key="frame" x="16" y="11" width="191" height="22"/>
  1378. <constraints>
  1379. <constraint firstAttribute="width" constant="191" id="x9q-H3-KNT"/>
  1380. </constraints>
  1381. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1382. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1383. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1384. <nil key="highlightedColor"/>
  1385. </label>
  1386. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="-" textAlignment="right" lineBreakMode="middleTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="OlD-BV-zrc">
  1387. <rect key="frame" x="351.33333333333331" y="15" width="7.6666666666666856" height="14"/>
  1388. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1389. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1390. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1391. </label>
  1392. </subviews>
  1393. <constraints>
  1394. <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="OlD-BV-zrc" secondAttribute="bottom" constant="4" id="7Jz-ZR-cHj"/>
  1395. <constraint firstItem="WHu-Ia-hVX" firstAttribute="top" secondItem="Kdg-bJ-itk" secondAttribute="topMargin" id="8eD-lI-5kD"/>
  1396. <constraint firstAttribute="bottomMargin" secondItem="WHu-Ia-hVX" secondAttribute="bottom" id="E9i-wg-xQG"/>
  1397. <constraint firstItem="OlD-BV-zrc" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="WHu-Ia-hVX" secondAttribute="trailing" constant="10" id="OEI-aV-imJ"/>
  1398. <constraint firstAttribute="trailingMargin" secondItem="OlD-BV-zrc" secondAttribute="trailing" id="Pth-Mg-dJW"/>
  1399. <constraint firstItem="WHu-Ia-hVX" firstAttribute="leading" secondItem="Kdg-bJ-itk" secondAttribute="leadingMargin" id="UIo-An-fqJ"/>
  1400. <constraint firstItem="OlD-BV-zrc" firstAttribute="centerY" secondItem="Kdg-bJ-itk" secondAttribute="centerY" id="eJh-5Q-H41"/>
  1401. <constraint firstItem="OlD-BV-zrc" firstAttribute="top" relation="greaterThanOrEqual" secondItem="Kdg-bJ-itk" secondAttribute="topMargin" constant="4" id="oEy-Bb-jtQ"/>
  1402. </constraints>
  1403. </tableViewCellContentView>
  1404. </tableViewCell>
  1405. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="tDp-1Y-Qpo">
  1406. <rect key="frame" x="0.0" y="230" width="375" height="44"/>
  1407. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  1408. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="tDp-1Y-Qpo" id="jBI-gq-3hQ">
  1409. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1410. <autoresizingMask key="autoresizingMask"/>
  1411. <subviews>
  1412. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Backup size" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ACN-oG-s71">
  1413. <rect key="frame" x="16" y="11" width="191" height="22"/>
  1414. <constraints>
  1415. <constraint firstAttribute="width" constant="191" id="M8d-JQ-ljv"/>
  1416. </constraints>
  1417. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1418. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1419. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1420. <nil key="highlightedColor"/>
  1421. </label>
  1422. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="-" textAlignment="right" lineBreakMode="middleTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3Mu-GA-aJo">
  1423. <rect key="frame" x="351.33333333333331" y="15" width="7.6666666666666856" height="14"/>
  1424. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1425. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1426. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1427. </label>
  1428. </subviews>
  1429. <constraints>
  1430. <constraint firstItem="3Mu-GA-aJo" firstAttribute="centerY" secondItem="jBI-gq-3hQ" secondAttribute="centerY" id="1Wz-JC-PCG"/>
  1431. <constraint firstItem="3Mu-GA-aJo" firstAttribute="top" relation="greaterThanOrEqual" secondItem="jBI-gq-3hQ" secondAttribute="topMargin" constant="4" id="2uw-Th-Byq"/>
  1432. <constraint firstItem="3Mu-GA-aJo" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="ACN-oG-s71" secondAttribute="trailing" constant="10" id="5W0-ja-Mvl"/>
  1433. <constraint firstItem="ACN-oG-s71" firstAttribute="top" secondItem="jBI-gq-3hQ" secondAttribute="topMargin" id="DgX-7e-mcn"/>
  1434. <constraint firstItem="ACN-oG-s71" firstAttribute="leading" secondItem="jBI-gq-3hQ" secondAttribute="leadingMargin" id="Yj9-TL-ZTd"/>
  1435. <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="3Mu-GA-aJo" secondAttribute="bottom" constant="4" id="peq-Oj-d64"/>
  1436. <constraint firstAttribute="bottomMargin" secondItem="ACN-oG-s71" secondAttribute="bottom" id="ug4-LH-fsg"/>
  1437. <constraint firstAttribute="trailingMargin" secondItem="3Mu-GA-aJo" secondAttribute="trailing" id="zIN-wF-CHM"/>
  1438. </constraints>
  1439. </tableViewCellContentView>
  1440. </tableViewCell>
  1441. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="14N-Ef-k6X">
  1442. <rect key="frame" x="0.0" y="274" width="375" height="44"/>
  1443. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  1444. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="14N-Ef-k6X" id="UuC-11-4V0">
  1445. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1446. <autoresizingMask key="autoresizingMask"/>
  1447. <subviews>
  1448. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Last result " lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="eFF-tz-39Z">
  1449. <rect key="frame" x="16" y="11" width="191" height="22"/>
  1450. <constraints>
  1451. <constraint firstAttribute="width" constant="191" id="do4-Pl-PYO"/>
  1452. </constraints>
  1453. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1454. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1455. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1456. <nil key="highlightedColor"/>
  1457. </label>
  1458. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="-" textAlignment="right" lineBreakMode="middleTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="0E4-vK-K50">
  1459. <rect key="frame" x="351.33333333333331" y="15" width="7.6666666666666856" height="14"/>
  1460. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1461. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1462. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1463. </label>
  1464. </subviews>
  1465. <constraints>
  1466. <constraint firstAttribute="bottomMargin" secondItem="eFF-tz-39Z" secondAttribute="bottom" id="3uq-Am-DfK"/>
  1467. <constraint firstAttribute="trailingMargin" secondItem="0E4-vK-K50" secondAttribute="trailing" id="ZFO-nu-rag"/>
  1468. <constraint firstItem="0E4-vK-K50" firstAttribute="centerY" secondItem="UuC-11-4V0" secondAttribute="centerY" id="Zld-dQ-HVg"/>
  1469. <constraint firstItem="eFF-tz-39Z" firstAttribute="top" secondItem="UuC-11-4V0" secondAttribute="topMargin" id="iLQ-jE-jPC"/>
  1470. <constraint firstItem="0E4-vK-K50" firstAttribute="top" relation="greaterThanOrEqual" secondItem="UuC-11-4V0" secondAttribute="topMargin" constant="4" id="kBv-bZ-tvK"/>
  1471. <constraint firstItem="eFF-tz-39Z" firstAttribute="leading" secondItem="UuC-11-4V0" secondAttribute="leadingMargin" id="nDf-L2-hae"/>
  1472. <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="0E4-vK-K50" secondAttribute="bottom" constant="4" id="rg5-dW-9RM"/>
  1473. <constraint firstItem="0E4-vK-K50" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="eFF-tz-39Z" secondAttribute="trailing" constant="10" id="tlF-sQ-W8d"/>
  1474. </constraints>
  1475. </tableViewCellContentView>
  1476. </tableViewCell>
  1477. </cells>
  1478. </tableViewSection>
  1479. <tableViewSection id="IPk-dJ-FK4">
  1480. <cells>
  1481. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" id="pkv-Hf-lXw">
  1482. <rect key="frame" x="0.0" y="354" width="375" height="44"/>
  1483. <autoresizingMask key="autoresizingMask"/>
  1484. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="pkv-Hf-lXw" id="snD-Eg-Ql1">
  1485. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1486. <autoresizingMask key="autoresizingMask"/>
  1487. <subviews>
  1488. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="abL-qW-o92">
  1489. <rect key="frame" x="175" y="10" width="22" height="22"/>
  1490. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
  1491. <state key="normal" image="Info"/>
  1492. <connections>
  1493. <action selector="touchDownExplainButton:forEvent:" destination="kum-xn-2YU" eventType="touchDown" id="jnx-R3-fRN"/>
  1494. </connections>
  1495. </button>
  1496. </subviews>
  1497. </tableViewCellContentView>
  1498. </tableViewCell>
  1499. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="blue" indentationWidth="10" id="z54-P9-eaY">
  1500. <rect key="frame" x="0.0" y="398" width="375" height="44"/>
  1501. <autoresizingMask key="autoresizingMask"/>
  1502. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="z54-P9-eaY" id="eUk-PW-GRw">
  1503. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1504. <autoresizingMask key="autoresizingMask"/>
  1505. <subviews>
  1506. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Backup now" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" preferredMaxLayoutWidth="44" translatesAutoresizingMaskIntoConstraints="NO" id="QRg-9e-VxA" userLabel="Backup now">
  1507. <rect key="frame" x="16" y="15" width="343" height="14"/>
  1508. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1509. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1510. <nil key="highlightedColor"/>
  1511. </label>
  1512. <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="2Mt-Pf-8OR">
  1513. <rect key="frame" x="177.66666666666666" y="12" width="20" height="20"/>
  1514. </activityIndicatorView>
  1515. </subviews>
  1516. <constraints>
  1517. <constraint firstItem="2Mt-Pf-8OR" firstAttribute="centerX" secondItem="QRg-9e-VxA" secondAttribute="centerX" id="3Jv-SW-8Vm"/>
  1518. <constraint firstItem="QRg-9e-VxA" firstAttribute="leading" secondItem="eUk-PW-GRw" secondAttribute="leading" constant="16" id="5Ow-FG-vu3"/>
  1519. <constraint firstAttribute="bottomMargin" secondItem="QRg-9e-VxA" secondAttribute="bottom" constant="4" id="6GF-Tg-l1a"/>
  1520. <constraint firstItem="QRg-9e-VxA" firstAttribute="top" secondItem="eUk-PW-GRw" secondAttribute="topMargin" constant="4" id="C4p-FN-dNn"/>
  1521. <constraint firstItem="2Mt-Pf-8OR" firstAttribute="centerY" secondItem="QRg-9e-VxA" secondAttribute="centerY" id="ciH-NR-8aP"/>
  1522. <constraint firstAttribute="trailing" secondItem="QRg-9e-VxA" secondAttribute="trailing" constant="16" id="gDS-fx-dW8"/>
  1523. </constraints>
  1524. </tableViewCellContentView>
  1525. <accessibility key="accessibilityConfiguration">
  1526. <accessibilityTraits key="traits" button="YES"/>
  1527. </accessibility>
  1528. </tableViewCell>
  1529. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="blue" indentationWidth="10" textLabel="xeg-TX-OYB" style="IBUITableViewCellStyleDefault" id="WGf-II-AqV">
  1530. <rect key="frame" x="0.0" y="442" width="375" height="44"/>
  1531. <autoresizingMask key="autoresizingMask"/>
  1532. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="WGf-II-AqV" id="SsX-Pg-i7x">
  1533. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1534. <autoresizingMask key="autoresizingMask"/>
  1535. <subviews>
  1536. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Change Password" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="xeg-TX-OYB" userLabel="Change password">
  1537. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  1538. <autoresizingMask key="autoresizingMask"/>
  1539. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1540. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1541. <nil key="highlightedColor"/>
  1542. </label>
  1543. </subviews>
  1544. </tableViewCellContentView>
  1545. <accessibility key="accessibilityConfiguration">
  1546. <accessibilityTraits key="traits" button="YES"/>
  1547. </accessibility>
  1548. </tableViewCell>
  1549. </cells>
  1550. </tableViewSection>
  1551. </sections>
  1552. <connections>
  1553. <outlet property="dataSource" destination="kum-xn-2YU" id="cSI-Ac-DnE"/>
  1554. <outlet property="delegate" destination="kum-xn-2YU" id="sZM-Ia-3YQ"/>
  1555. </connections>
  1556. </tableView>
  1557. <connections>
  1558. <outlet property="activityIndicator" destination="2Mt-Pf-8OR" id="JPs-48-5LQ"/>
  1559. <outlet property="backupNowButtonLabel" destination="QRg-9e-VxA" id="8fM-2U-Irj"/>
  1560. <outlet property="backupNowCell" destination="z54-P9-eaY" id="IPt-k1-yRr"/>
  1561. <outlet property="backupSizeLabel" destination="ACN-oG-s71" id="k0n-br-QsA"/>
  1562. <outlet property="backupSizeValueLabel" destination="3Mu-GA-aJo" id="f9B-mB-GIA"/>
  1563. <outlet property="changePasswordButtonLabel" destination="xeg-TX-OYB" id="TKK-li-kg6"/>
  1564. <outlet property="explainButton" destination="abL-qW-o92" id="VQk-Lu-cWN"/>
  1565. <outlet property="lastBackupLabel" destination="WHu-Ia-hVX" id="8tc-19-cGd"/>
  1566. <outlet property="lastBackupValueLabel" destination="OlD-BV-zrc" id="d4y-7q-0V3"/>
  1567. <outlet property="lastResultLabel" destination="eFF-tz-39Z" id="vyu-Q3-d83"/>
  1568. <outlet property="lastResultValueLabel" destination="0E4-vK-K50" id="nhj-Wk-gq9"/>
  1569. <outlet property="maxBackupBytesLabel" destination="6oN-AH-5cw" id="TkO-8y-i84"/>
  1570. <outlet property="maxBackupBytesValueLabel" destination="V4j-Ub-pdi" id="L7s-mC-QHA"/>
  1571. <outlet property="retentionDaysLabel" destination="Gj2-0g-N9D" id="o1q-oN-aMt"/>
  1572. <outlet property="retentionDaysValueLabel" destination="pW4-Aa-Fp5" id="3NQ-hP-bmd"/>
  1573. <outlet property="serverNameLabel" destination="CCz-Rx-Iyj" id="Y9R-PR-TdL"/>
  1574. <outlet property="serverNameValueLabel" destination="cDG-vj-35i" id="HEP-5c-4ZA"/>
  1575. </connections>
  1576. </tableViewController>
  1577. <placeholder placeholderIdentifier="IBFirstResponder" id="Vgs-pg-DjJ" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1578. </objects>
  1579. <point key="canvasLocation" x="-3682.4000000000001" y="1236.8815592203898"/>
  1580. </scene>
  1581. <!--Safe Deactivated View Controller-->
  1582. <scene sceneID="yZF-oQ-STS">
  1583. <objects>
  1584. <viewController id="Umh-Qz-iOn" customClass="SafeDeactivatedViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  1585. <view key="view" contentMode="scaleToFill" id="Dp2-p5-p8a">
  1586. <rect key="frame" x="0.0" y="0.0" width="375" height="644"/>
  1587. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1588. <subviews>
  1589. <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" translatesAutoresizingMaskIntoConstraints="NO" id="iy2-tG-Zzm">
  1590. <rect key="frame" x="0.0" y="0.0" width="375" height="644"/>
  1591. <subviews>
  1592. <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="equalSpacing" alignment="center" spacing="20" translatesAutoresizingMaskIntoConstraints="NO" id="Pcq-8e-cti">
  1593. <rect key="frame" x="20" y="10" width="335" height="374.33333333333331"/>
  1594. <subviews>
  1595. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="yLb-jR-qhb">
  1596. <rect key="frame" x="0.0" y="0.0" width="335" height="220"/>
  1597. <subviews>
  1598. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="7Rv-g8-xeE">
  1599. <rect key="frame" x="62.666666666666686" y="5" width="210" height="210"/>
  1600. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1601. <constraints>
  1602. <constraint firstAttribute="width" constant="210" id="ELx-QO-LPM"/>
  1603. <constraint firstAttribute="height" constant="210" id="pwb-Rp-WLO"/>
  1604. </constraints>
  1605. </view>
  1606. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ThreemaSafeIntro.png" translatesAutoresizingMaskIntoConstraints="NO" id="6VX-hV-ZFw">
  1607. <rect key="frame" x="57.666666666666686" y="0.0" width="220" height="220"/>
  1608. <constraints>
  1609. <constraint firstAttribute="width" constant="220" id="5T8-hc-O6n"/>
  1610. <constraint firstAttribute="height" constant="220" id="LO6-tJ-URd"/>
  1611. </constraints>
  1612. </imageView>
  1613. </subviews>
  1614. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1615. <constraints>
  1616. <constraint firstItem="6VX-hV-ZFw" firstAttribute="centerY" secondItem="yLb-jR-qhb" secondAttribute="centerY" id="4HA-se-xxa"/>
  1617. <constraint firstItem="7Rv-g8-xeE" firstAttribute="centerY" secondItem="yLb-jR-qhb" secondAttribute="centerY" id="Njo-IM-dPI"/>
  1618. <constraint firstAttribute="height" constant="220" id="Oxo-DG-ccd"/>
  1619. <constraint firstItem="7Rv-g8-xeE" firstAttribute="centerX" secondItem="yLb-jR-qhb" secondAttribute="centerX" id="Vvs-8N-whX"/>
  1620. <constraint firstItem="6VX-hV-ZFw" firstAttribute="centerX" secondItem="yLb-jR-qhb" secondAttribute="centerX" id="hLa-3X-s6O"/>
  1621. </constraints>
  1622. </view>
  1623. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Enable Threema Safe to create automatic secure and anonymous backups of all your important data." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="4" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Akv-9b-ynC">
  1624. <rect key="frame" x="3.3333333333333428" y="240.00000000000003" width="328.66666666666663" height="64.333333333333343"/>
  1625. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1626. <nil key="textColor"/>
  1627. <nil key="highlightedColor"/>
  1628. </label>
  1629. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="XP9-jV-0J4">
  1630. <rect key="frame" x="142.66666666666666" y="324.33333333333331" width="50" height="50"/>
  1631. <constraints>
  1632. <constraint firstAttribute="height" constant="50" id="Gig-R8-Mld"/>
  1633. <constraint firstAttribute="width" constant="50" id="qna-ea-G3r"/>
  1634. </constraints>
  1635. <state key="normal" image="Info"/>
  1636. <connections>
  1637. <action selector="touchDownExplainButton:forEvent:" destination="Umh-Qz-iOn" eventType="touchDown" id="N4Q-Yi-Btc"/>
  1638. </connections>
  1639. </button>
  1640. </subviews>
  1641. <constraints>
  1642. <constraint firstItem="XP9-jV-0J4" firstAttribute="centerX" secondItem="Pcq-8e-cti" secondAttribute="centerX" id="ZQz-pq-qnl"/>
  1643. <constraint firstItem="yLb-jR-qhb" firstAttribute="leading" secondItem="Pcq-8e-cti" secondAttribute="leading" id="tc1-sN-Pnb"/>
  1644. </constraints>
  1645. </stackView>
  1646. </subviews>
  1647. <constraints>
  1648. <constraint firstItem="Pcq-8e-cti" firstAttribute="centerX" secondItem="iy2-tG-Zzm" secondAttribute="centerX" id="U75-ib-6Kg"/>
  1649. <constraint firstItem="Pcq-8e-cti" firstAttribute="leading" secondItem="iy2-tG-Zzm" secondAttribute="leading" constant="20" id="ZIH-Ln-JDK"/>
  1650. <constraint firstAttribute="trailing" secondItem="Pcq-8e-cti" secondAttribute="trailing" constant="20" id="hyP-0B-wHf"/>
  1651. <constraint firstItem="Pcq-8e-cti" firstAttribute="top" secondItem="iy2-tG-Zzm" secondAttribute="top" constant="10" id="thI-RU-NOD"/>
  1652. <constraint firstAttribute="bottom" secondItem="Pcq-8e-cti" secondAttribute="bottom" id="umG-Vv-MKg"/>
  1653. </constraints>
  1654. </scrollView>
  1655. </subviews>
  1656. <viewLayoutGuide key="safeArea" id="b20-ec-g1d"/>
  1657. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1658. <constraints>
  1659. <constraint firstItem="iy2-tG-Zzm" firstAttribute="leading" secondItem="b20-ec-g1d" secondAttribute="leading" id="1Gs-Bh-uYT"/>
  1660. <constraint firstItem="b20-ec-g1d" firstAttribute="trailing" secondItem="iy2-tG-Zzm" secondAttribute="trailing" id="YBf-VR-GmW"/>
  1661. <constraint firstItem="iy2-tG-Zzm" firstAttribute="centerX" secondItem="b20-ec-g1d" secondAttribute="centerX" id="bBh-qA-h5r"/>
  1662. <constraint firstAttribute="bottom" secondItem="iy2-tG-Zzm" secondAttribute="bottom" id="nb6-hS-QaA"/>
  1663. <constraint firstItem="iy2-tG-Zzm" firstAttribute="top" secondItem="Dp2-p5-p8a" secondAttribute="top" id="qO7-fH-UHa"/>
  1664. </constraints>
  1665. </view>
  1666. <connections>
  1667. <outlet property="descriptionLabel" destination="Akv-9b-ynC" id="ZBv-he-Nsr"/>
  1668. <outlet property="explainButton" destination="XP9-jV-0J4" id="4QI-bM-If8"/>
  1669. <outlet property="introCircle" destination="7Rv-g8-xeE" id="4AE-xO-ubT"/>
  1670. </connections>
  1671. </viewController>
  1672. <placeholder placeholderIdentifier="IBFirstResponder" id="fX1-nu-P5h" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1673. </objects>
  1674. <point key="canvasLocation" x="-3681" y="572"/>
  1675. </scene>
  1676. <!--Safe Setup Password View Controller-->
  1677. <scene sceneID="rRI-7v-eEQ">
  1678. <objects>
  1679. <tableViewController id="gqY-5Z-sAE" customClass="SafeSetupPasswordViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  1680. <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="18" sectionFooterHeight="18" id="yNN-Hs-P2M">
  1681. <rect key="frame" x="0.0" y="0.0" width="375" height="758"/>
  1682. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1683. <color key="backgroundColor" systemColor="groupTableViewBackgroundColor"/>
  1684. <sections>
  1685. <tableViewSection headerTitle="Choose a password" footerTitle="Test" id="TUo-Sz-38Z">
  1686. <cells>
  1687. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="FJh-bF-1zD">
  1688. <rect key="frame" x="0.0" y="55.333332061767578" width="375" height="44"/>
  1689. <autoresizingMask key="autoresizingMask"/>
  1690. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="FJh-bF-1zD" id="eVr-gQ-VOe">
  1691. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1692. <autoresizingMask key="autoresizingMask"/>
  1693. <subviews>
  1694. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" textAlignment="natural" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="axE-Id-aQi">
  1695. <rect key="frame" x="16" y="15" width="343" height="14"/>
  1696. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1697. <textInputTraits key="textInputTraits" autocorrectionType="no" spellCheckingType="no" returnKeyType="next" secureTextEntry="YES"/>
  1698. <connections>
  1699. <action selector="primaryActionTriggered:forEvent:" destination="gqY-5Z-sAE" eventType="primaryActionTriggered" id="0QQ-Ar-0xr"/>
  1700. </connections>
  1701. </textField>
  1702. </subviews>
  1703. <constraints>
  1704. <constraint firstItem="axE-Id-aQi" firstAttribute="top" secondItem="eVr-gQ-VOe" secondAttribute="topMargin" constant="4" id="KDY-6l-sKf"/>
  1705. <constraint firstItem="axE-Id-aQi" firstAttribute="leading" secondItem="eVr-gQ-VOe" secondAttribute="leadingMargin" id="X8k-eI-XWd"/>
  1706. <constraint firstAttribute="bottomMargin" secondItem="axE-Id-aQi" secondAttribute="bottom" constant="4" id="pJW-ff-odx"/>
  1707. <constraint firstAttribute="trailingMargin" secondItem="axE-Id-aQi" secondAttribute="trailing" id="vUa-3T-7uo"/>
  1708. </constraints>
  1709. </tableViewCellContentView>
  1710. </tableViewCell>
  1711. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="VFl-is-peO">
  1712. <rect key="frame" x="0.0" y="99.333332061767578" width="375" height="44"/>
  1713. <autoresizingMask key="autoresizingMask"/>
  1714. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="VFl-is-peO" id="fjc-1H-ccd">
  1715. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1716. <autoresizingMask key="autoresizingMask"/>
  1717. <subviews>
  1718. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" textAlignment="natural" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="2Ac-Rf-Lxd">
  1719. <rect key="frame" x="16" y="15" width="343" height="14"/>
  1720. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1721. <textInputTraits key="textInputTraits" autocorrectionType="no" spellCheckingType="no" returnKeyType="done" secureTextEntry="YES"/>
  1722. <connections>
  1723. <action selector="primaryActionTriggered:forEvent:" destination="gqY-5Z-sAE" eventType="primaryActionTriggered" id="wLp-RW-Vzt"/>
  1724. </connections>
  1725. </textField>
  1726. </subviews>
  1727. <constraints>
  1728. <constraint firstAttribute="bottomMargin" secondItem="2Ac-Rf-Lxd" secondAttribute="bottom" constant="4" id="JCQ-Ck-xjS"/>
  1729. <constraint firstItem="2Ac-Rf-Lxd" firstAttribute="leading" secondItem="fjc-1H-ccd" secondAttribute="leadingMargin" id="TMY-jZ-vTC"/>
  1730. <constraint firstItem="2Ac-Rf-Lxd" firstAttribute="top" secondItem="fjc-1H-ccd" secondAttribute="topMargin" constant="4" id="uuH-yv-Ztv"/>
  1731. <constraint firstAttribute="trailingMargin" secondItem="2Ac-Rf-Lxd" secondAttribute="trailing" id="zdy-Np-dV9"/>
  1732. </constraints>
  1733. </tableViewCellContentView>
  1734. </tableViewCell>
  1735. </cells>
  1736. </tableViewSection>
  1737. <tableViewSection headerTitle="Expert Settings" footerTitle="Test" id="xGC-9L-rgo">
  1738. <cells>
  1739. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" textLabel="wMx-pg-1qc" style="IBUITableViewCellStyleDefault" id="tUx-pE-gKm">
  1740. <rect key="frame" x="0.0" y="218.66666412353516" width="375" height="44"/>
  1741. <autoresizingMask key="autoresizingMask"/>
  1742. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="tUx-pE-gKm" id="JuE-i0-ENJ">
  1743. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1744. <autoresizingMask key="autoresizingMask"/>
  1745. <subviews>
  1746. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="4PS-Vf-O8u">
  1747. <rect key="frame" x="163" y="6" width="49" height="31"/>
  1748. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1749. <connections>
  1750. <action selector="changedServerSwitch:" destination="gqY-5Z-sAE" eventType="valueChanged" id="Rcc-HR-RrZ"/>
  1751. </connections>
  1752. </switch>
  1753. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Server switch label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="wMx-pg-1qc">
  1754. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  1755. <autoresizingMask key="autoresizingMask"/>
  1756. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1757. <nil key="textColor"/>
  1758. <nil key="highlightedColor"/>
  1759. </label>
  1760. </subviews>
  1761. </tableViewCellContentView>
  1762. <connections>
  1763. <outlet property="accessoryView" destination="4PS-Vf-O8u" id="2so-d6-kJp"/>
  1764. </connections>
  1765. </tableViewCell>
  1766. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" indentationWidth="10" rowHeight="44" id="z5R-sM-bfm">
  1767. <rect key="frame" x="0.0" y="262.66666412353516" width="375" height="44"/>
  1768. <autoresizingMask key="autoresizingMask"/>
  1769. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="z5R-sM-bfm" id="dAm-GF-KCx">
  1770. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1771. <autoresizingMask key="autoresizingMask"/>
  1772. <subviews>
  1773. <textField opaque="NO" contentMode="scaleToFill" verticalCompressionResistancePriority="751" contentHorizontalAlignment="left" contentVerticalAlignment="center" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" clearButtonMode="whileEditing" translatesAutoresizingMaskIntoConstraints="NO" id="hAy-t0-oQ4">
  1774. <rect key="frame" x="16" y="15" width="343" height="14"/>
  1775. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1776. <textInputTraits key="textInputTraits" autocorrectionType="no" spellCheckingType="no" returnKeyType="next"/>
  1777. <connections>
  1778. <action selector="primaryActionTriggered:forEvent:" destination="gqY-5Z-sAE" eventType="primaryActionTriggered" id="LtK-kX-mVU"/>
  1779. </connections>
  1780. </textField>
  1781. </subviews>
  1782. <constraints>
  1783. <constraint firstItem="hAy-t0-oQ4" firstAttribute="leading" secondItem="dAm-GF-KCx" secondAttribute="leadingMargin" id="7OB-oT-KSp"/>
  1784. <constraint firstAttribute="bottomMargin" secondItem="hAy-t0-oQ4" secondAttribute="bottom" constant="4" id="Dw6-EZ-K7g"/>
  1785. <constraint firstItem="hAy-t0-oQ4" firstAttribute="trailing" secondItem="dAm-GF-KCx" secondAttribute="trailingMargin" id="c2v-Du-b3X"/>
  1786. <constraint firstItem="hAy-t0-oQ4" firstAttribute="top" secondItem="dAm-GF-KCx" secondAttribute="topMargin" constant="4" id="vOW-8b-7gv"/>
  1787. </constraints>
  1788. </tableViewCellContentView>
  1789. <accessibility key="accessibilityConfiguration">
  1790. <accessibilityTraits key="traits" notEnabled="YES"/>
  1791. </accessibility>
  1792. </tableViewCell>
  1793. </cells>
  1794. </tableViewSection>
  1795. <tableViewSection headerTitle="Authentication (optional)" footerTitle="Test" id="OmS-m4-S3q">
  1796. <cells>
  1797. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="44" id="WXi-zr-qQ6">
  1798. <rect key="frame" x="0.0" y="381.99999618530273" width="375" height="44"/>
  1799. <autoresizingMask key="autoresizingMask"/>
  1800. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="WXi-zr-qQ6" id="ZPy-ha-dbf">
  1801. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1802. <autoresizingMask key="autoresizingMask"/>
  1803. <subviews>
  1804. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" textAlignment="natural" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="9EF-eb-AQy">
  1805. <rect key="frame" x="16" y="15" width="343" height="14"/>
  1806. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1807. <textInputTraits key="textInputTraits" autocorrectionType="no" spellCheckingType="no" returnKeyType="next"/>
  1808. <connections>
  1809. <action selector="primaryActionTriggered:forEvent:" destination="gqY-5Z-sAE" eventType="primaryActionTriggered" id="ttF-hq-ts8"/>
  1810. </connections>
  1811. </textField>
  1812. </subviews>
  1813. <constraints>
  1814. <constraint firstItem="9EF-eb-AQy" firstAttribute="leading" secondItem="ZPy-ha-dbf" secondAttribute="leadingMargin" id="6K4-3m-Okw"/>
  1815. <constraint firstItem="9EF-eb-AQy" firstAttribute="top" secondItem="ZPy-ha-dbf" secondAttribute="topMargin" constant="4" id="I5V-fF-4lF"/>
  1816. <constraint firstAttribute="bottomMargin" secondItem="9EF-eb-AQy" secondAttribute="bottom" constant="4" id="fC9-Vr-1oL"/>
  1817. <constraint firstAttribute="trailingMargin" secondItem="9EF-eb-AQy" secondAttribute="trailing" id="hJq-Fp-vdI"/>
  1818. </constraints>
  1819. </tableViewCellContentView>
  1820. </tableViewCell>
  1821. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="44" id="UQR-7T-dRC">
  1822. <rect key="frame" x="0.0" y="425.99999618530273" width="375" height="44"/>
  1823. <autoresizingMask key="autoresizingMask"/>
  1824. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="UQR-7T-dRC" id="uA4-gS-47e">
  1825. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1826. <autoresizingMask key="autoresizingMask"/>
  1827. <subviews>
  1828. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" textAlignment="natural" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="Vux-pk-wpz">
  1829. <rect key="frame" x="16" y="15" width="343" height="14"/>
  1830. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1831. <textInputTraits key="textInputTraits" autocorrectionType="no" spellCheckingType="no" returnKeyType="done" secureTextEntry="YES"/>
  1832. <connections>
  1833. <action selector="primaryActionTriggered:forEvent:" destination="gqY-5Z-sAE" eventType="primaryActionTriggered" id="hwq-WW-B6l"/>
  1834. </connections>
  1835. </textField>
  1836. </subviews>
  1837. <constraints>
  1838. <constraint firstAttribute="trailingMargin" secondItem="Vux-pk-wpz" secondAttribute="trailing" id="3qB-F1-kio"/>
  1839. <constraint firstItem="Vux-pk-wpz" firstAttribute="top" secondItem="uA4-gS-47e" secondAttribute="topMargin" constant="4" id="8iV-OQ-dB5"/>
  1840. <constraint firstItem="Vux-pk-wpz" firstAttribute="leading" secondItem="uA4-gS-47e" secondAttribute="leadingMargin" id="C7Y-Pa-3mp"/>
  1841. <constraint firstAttribute="bottomMargin" secondItem="Vux-pk-wpz" secondAttribute="bottom" constant="4" id="n4t-KO-aAq"/>
  1842. </constraints>
  1843. </tableViewCellContentView>
  1844. </tableViewCell>
  1845. </cells>
  1846. </tableViewSection>
  1847. </sections>
  1848. <connections>
  1849. <outlet property="dataSource" destination="gqY-5Z-sAE" id="csM-2C-MTf"/>
  1850. <outlet property="delegate" destination="gqY-5Z-sAE" id="9Do-oo-9fP"/>
  1851. </connections>
  1852. </tableView>
  1853. <navigationItem key="navigationItem" id="6TG-vQ-Od6"/>
  1854. <connections>
  1855. <outlet property="passwordAgainField" destination="2Ac-Rf-Lxd" id="r86-5K-JHG"/>
  1856. <outlet property="passwordField" destination="axE-Id-aQi" id="jJd-kW-ErT"/>
  1857. <outlet property="serverField" destination="hAy-t0-oQ4" id="QiJ-mH-jor"/>
  1858. <outlet property="serverPasswordField" destination="Vux-pk-wpz" id="KrY-zQ-uai"/>
  1859. <outlet property="serverSwitch" destination="4PS-Vf-O8u" id="zpS-n8-hkP"/>
  1860. <outlet property="serverSwitchLabel" destination="wMx-pg-1qc" id="zn4-cj-wKy"/>
  1861. <outlet property="serverUserNameField" destination="9EF-eb-AQy" id="TlN-Iq-DCX"/>
  1862. <segue destination="DxL-0A-snW" kind="unwind" identifier="SafeSetupPasswordDone" unwindAction="doneSafeSetupPassword:" id="iI1-bQ-PN3"/>
  1863. <segue destination="DxL-0A-snW" kind="unwind" identifier="SafeIntroPasswordDone" unwindAction="doneSafeIntroPassword:" id="kbL-Ut-KPe"/>
  1864. </connections>
  1865. </tableViewController>
  1866. <placeholder placeholderIdentifier="IBFirstResponder" id="8gs-FX-7J6" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1867. <exit id="DxL-0A-snW" userLabel="Exit" sceneMemberID="exit"/>
  1868. </objects>
  1869. <point key="canvasLocation" x="-1961" y="886"/>
  1870. </scene>
  1871. <!--Navigation Controller-->
  1872. <scene sceneID="8zQ-tc-SaY">
  1873. <objects>
  1874. <navigationController storyboardIdentifier="SafeIntroNavigationController" automaticallyAdjustsScrollViewInsets="NO" id="isA-4a-PvY" sceneMemberID="viewController">
  1875. <toolbarItems/>
  1876. <navigationBar key="navigationBar" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" id="hbk-AU-f6v">
  1877. <rect key="frame" x="0.0" y="0.0" width="375" height="56"/>
  1878. <autoresizingMask key="autoresizingMask"/>
  1879. </navigationBar>
  1880. <nil name="viewControllers"/>
  1881. <connections>
  1882. <segue destination="gqY-5Z-sAE" kind="relationship" relationship="rootViewController" id="4dU-Go-ikR"/>
  1883. </connections>
  1884. </navigationController>
  1885. <placeholder placeholderIdentifier="IBFirstResponder" id="z9t-dS-pPE" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1886. </objects>
  1887. <point key="canvasLocation" x="-2724" y="886"/>
  1888. </scene>
  1889. </scenes>
  1890. <designables>
  1891. <designable name="HNt-4v-CIs">
  1892. <size key="intrinsicContentSize" width="46" height="30"/>
  1893. </designable>
  1894. <designable name="Jug-be-JzD">
  1895. <size key="intrinsicContentSize" width="46" height="30"/>
  1896. </designable>
  1897. <designable name="Q00-XE-5z0">
  1898. <size key="intrinsicContentSize" width="46" height="30"/>
  1899. </designable>
  1900. </designables>
  1901. <inferredMetricsTieBreakers>
  1902. <segue reference="Wuf-ev-MSL"/>
  1903. </inferredMetricsTieBreakers>
  1904. <resources>
  1905. <image name="Edit" width="22" height="22"/>
  1906. <image name="Info" width="22" height="22"/>
  1907. <image name="Phone" width="25" height="25"/>
  1908. <image name="QRCode" width="50" height="50"/>
  1909. <image name="QRCodeBackground" width="70" height="70"/>
  1910. <image name="QRScan" width="22" height="22"/>
  1911. <image name="Share" width="25" height="25"/>
  1912. <image name="ThreemaSafeIntro.png" width="400" height="400"/>
  1913. <systemColor name="groupTableViewBackgroundColor">
  1914. <color red="0.94901960784313721" green="0.94901960784313721" blue="0.96862745098039216" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1915. </systemColor>
  1916. </resources>
  1917. </document>