KMProductCompareWC.xib 226 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="22505" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
  3. <dependencies>
  4. <deployment identifier="macosx"/>
  5. <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="22505"/>
  6. <capability name="Named colors" minToolsVersion="9.0"/>
  7. <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
  8. </dependencies>
  9. <objects>
  10. <customObject id="-2" userLabel="File's Owner" customClass="KMProductCompareWC" customModule="PDF_Reader_Pro" customModuleProvider="target">
  11. <connections>
  12. <outlet property="aboutButton" destination="NUp-Nc-4Lc" id="8pI-oP-BLW"/>
  13. <outlet property="advancedPlanInfoLabel" destination="Ll7-An-0YH" id="E5i-mq-NbX"/>
  14. <outlet property="advancedPlanInfoView" destination="fce-hX-IV6" id="fKc-eZ-ouv"/>
  15. <outlet property="advancedPlanPurchaseButton" destination="SFA-A0-TRs" id="4QT-7d-h6P"/>
  16. <outlet property="advancedPlanPurchaseLabel" destination="ABz-rY-vFD" id="SWe-TL-aBy"/>
  17. <outlet property="advancedPlanPurchaseLbl" destination="D71-TX-fVd" id="Jgv-uy-CZD"/>
  18. <outlet property="advancedPlanPurchaseLblBtn" destination="JRG-Tt-bke" id="gp7-56-gTK"/>
  19. <outlet property="advancedPlanPurchaseSubLabel" destination="oie-PG-6He" id="54z-yg-Umo"/>
  20. <outlet property="advancedPlanPurchaseSubLabel2" destination="0HH-bq-tk2" id="SRH-PL-6QB"/>
  21. <outlet property="backgroundImage1" destination="mhT-uZ-2vj" id="J5Z-rm-pk3"/>
  22. <outlet property="backgroundImage3" destination="Y18-DK-FWw" id="3wh-VW-Aud"/>
  23. <outlet property="billedTopConst" destination="TWZ-mS-ih1" id="yMT-KX-19C"/>
  24. <outlet property="box" destination="MVd-e9-wr3" id="a9y-eW-QZ4"/>
  25. <outlet property="btnRestore" destination="9Ua-mh-Y98" id="2fY-C4-rwZ"/>
  26. <outlet property="discountPermanent" destination="0ur-PV-kxY" id="KxJ-HZ-S5I"/>
  27. <outlet property="discountPermanent2" destination="DQR-1s-l8u" id="IzW-Mn-qiB"/>
  28. <outlet property="discountPermanent4" destination="sn9-km-1Vm" id="Abp-8x-CKN"/>
  29. <outlet property="discountYearly" destination="3mf-Iq-URd" id="Ney-Zx-qLE"/>
  30. <outlet property="freeInfoLabel" destination="DVN-Eb-hSv" id="1P9-x4-lgR"/>
  31. <outlet property="freeInfoView" destination="ZLd-Sg-G8w" id="138-nW-ZY6"/>
  32. <outlet property="labelbox" destination="eYZ-KU-1XY" id="p1E-Z6-bbD"/>
  33. <outlet property="oneYearProLabel" destination="rzf-vX-hjW" id="CpJ-P7-gaZ"/>
  34. <outlet property="permanentInfoLabel" destination="snj-Zj-OvD" id="dIT-u2-eQT"/>
  35. <outlet property="permanentInfoView" destination="XVZ-jI-UYX" id="Bad-Tf-M22"/>
  36. <outlet property="permanentPurchaseButton" destination="zmz-yq-8SZ" id="qVb-1U-GUW"/>
  37. <outlet property="permanentPurchaseLabel" destination="okn-VX-xhH" id="MHC-gj-C4i"/>
  38. <outlet property="permanentPurchaseLbl" destination="w8I-Fc-Axv" id="ilg-lV-lCb"/>
  39. <outlet property="permanentPurchaseLblBtn" destination="5cy-wO-SqL" id="miQ-hL-2lK"/>
  40. <outlet property="permanentPurchaseSubLabel" destination="CHT-d8-7WR" id="RsF-HN-anj"/>
  41. <outlet property="permanentPurchaseSubLabel2" destination="ctO-mu-ddI" id="msi-hr-4xG"/>
  42. <outlet property="platformsView1" destination="kyQ-Jn-2Ny" id="2l9-dt-Enr"/>
  43. <outlet property="platformsView2" destination="HRU-Hk-DQz" id="nLx-4O-52N"/>
  44. <outlet property="platformsView3" destination="drW-Of-60w" id="md3-NY-40M"/>
  45. <outlet property="platformsView4" destination="fex-Hv-ZGc" id="VcF-1l-hyP"/>
  46. <outlet property="privacyPolicyBtn" destination="Gu5-Wk-ItB" id="nJ2-v6-iw1"/>
  47. <outlet property="saleBox" destination="MGz-Hq-oCc" id="hC0-yj-ZLP"/>
  48. <outlet property="saleIv" destination="lFH-1X-rmJ" id="yWP-OL-czE"/>
  49. <outlet property="saleLabel" destination="dKT-hk-xg2" id="UUy-tv-09J"/>
  50. <outlet property="sixMouthProLabel" destination="DfJ-Zd-LMd" id="bYt-It-mbu"/>
  51. <outlet property="specialImageView" destination="FNI-sE-hqK" id="exc-aX-m5k"/>
  52. <outlet property="specialImageView1" destination="cHj-D3-VbU" id="iDB-bR-x91"/>
  53. <outlet property="specialLabel" destination="Znw-Zi-3j9" id="pmb-qv-dh9"/>
  54. <outlet property="specialLabel1" destination="rVM-Kv-Rbr" id="8hy-Re-sqV"/>
  55. <outlet property="specialView" destination="wc2-lB-ZOG" id="LVQ-k0-Gsd"/>
  56. <outlet property="specialView1" destination="KD9-Jz-pNW" id="LQF-ey-jd4"/>
  57. <outlet property="standardPlanInfoLabel" destination="yl6-4d-E04" id="MLP-xO-kYm"/>
  58. <outlet property="standardPlanInfoView" destination="5cj-A5-MFN" id="6QJ-ao-Wce"/>
  59. <outlet property="standardPlanPurchaseButton" destination="3Ik-8P-4RK" id="ABr-zd-l3x"/>
  60. <outlet property="standardPlanPurchaseLabel" destination="cgF-jQ-Q0K" id="pvv-eB-rRd"/>
  61. <outlet property="standardPlanPurchaseLbl" destination="3QB-3J-VcS" id="3dz-x0-UNb"/>
  62. <outlet property="standardPlanPurchaseLblBtn" destination="ZEN-97-7fT" id="aGr-R1-F0z"/>
  63. <outlet property="standardPlanPurchaseSubLabel" destination="u1v-EM-8Bp" id="Eu4-yf-FCl"/>
  64. <outlet property="standardPlanPurchaseSubLabel2" destination="Z2t-T7-CMh" id="S0p-hw-fCQ"/>
  65. <outlet property="switchBox" destination="tpD-w8-ls0" id="DIZ-e4-SsX"/>
  66. <outlet property="switchBtn" destination="85I-Ew-NJK" id="3IJ-re-jWC"/>
  67. <outlet property="switchCircleLeftConst" destination="zfa-w6-GDp" id="5Fi-Qt-Plo"/>
  68. <outlet property="switchCircleView" destination="CEE-TJ-pwY" id="IGG-AJ-Vdf"/>
  69. <outlet property="switchLabel" destination="ob0-Bq-QsJ" id="BOb-dP-9iC"/>
  70. <outlet property="tableView" destination="UQf-R2-MfQ" id="0EG-wv-tz7"/>
  71. <outlet property="termOfSerBtn" destination="nwB-UV-7Pi" id="cu5-4U-nhI"/>
  72. <outlet property="textView" destination="GaB-cW-JRI" id="iBR-yY-xOi"/>
  73. <outlet property="titleLabel" destination="PwB-yc-8Ed" id="4MX-e2-wbM"/>
  74. <outlet property="topMainBox" destination="A99-27-Swh" id="1Z7-qW-Bej"/>
  75. <outlet property="topMainView" destination="3eO-1v-ESh" id="SQ5-gt-XhL"/>
  76. <outlet property="topSelectBox1" destination="TbI-cd-sd7" id="4vM-Ag-b5k"/>
  77. <outlet property="topSelectBox2" destination="eSr-Ep-bND" id="gF9-Zr-xkP"/>
  78. <outlet property="topSelectBox3" destination="LHQ-au-Z59" id="8DK-Pl-ir5"/>
  79. <outlet property="topSelectBox4" destination="fpi-Pf-NfD" id="dpm-T4-Rby"/>
  80. <outlet property="topsubBox1" destination="rtR-EN-GZe" id="MbA-E4-siO"/>
  81. <outlet property="topsubBox2" destination="vWg-fp-y8C" id="Zov-ZQ-rhm"/>
  82. <outlet property="topsubBox3" destination="zIJ-y3-LlP" id="iSe-yG-R2u"/>
  83. <outlet property="topsubBox4" destination="Qq2-ys-Kfy" id="31Q-Fh-3RO"/>
  84. <outlet property="topsubBoxWidth1" destination="dmj-ri-GBh" id="L6C-1Q-YeL"/>
  85. <outlet property="topsubBoxWidth2" destination="Fht-ba-6vO" id="SCe-0U-js4"/>
  86. <outlet property="topsubBoxWidth3" destination="UZc-yX-zJD" id="Nhp-9W-Crg"/>
  87. <outlet property="topsubBoxWidth4" destination="Vd3-5i-fHR" id="VIE-6c-hMw"/>
  88. <outlet property="value1InfoLabel" destination="fHA-Fl-Rtx" id="ixC-mj-iAw"/>
  89. <outlet property="value1InfoTypeBox" destination="Cqg-bI-mdE" id="9sB-iM-WP0"/>
  90. <outlet property="value1InfoView" destination="Wx1-YC-wA8" id="CNG-NN-Fre"/>
  91. <outlet property="value1PurchaseBtnLbl" destination="TGG-tp-JR2" id="Zzh-Gv-RVF"/>
  92. <outlet property="value1PurchaseBtnLblBtn" destination="ep1-iy-QCy" id="dQV-yK-vpK"/>
  93. <outlet property="value1PurchaseButton" destination="Dql-gp-ebU" id="Fmn-Gx-Qe6"/>
  94. <outlet property="value1PurchaseLabel" destination="ljn-U5-Aje" id="HBd-4f-Fx9"/>
  95. <outlet property="value1PurchaseOriPriceLbl" destination="Dv2-0w-DyH" id="aQG-Hc-Zn9"/>
  96. <outlet property="value1PurchaseSubLabel" destination="Rwz-e9-wOa" id="zFE-vA-ZQP"/>
  97. <outlet property="window" destination="7jy-UC-R98" id="Pdq-cy-1Iu"/>
  98. </connections>
  99. </customObject>
  100. <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
  101. <customObject id="-3" userLabel="Application" customClass="NSObject"/>
  102. <window allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="documentWindow" titlebarAppearsTransparent="YES" id="7jy-UC-R98">
  103. <windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES" fullSizeContentView="YES"/>
  104. <rect key="contentRect" x="77" y="40" width="970" height="660"/>
  105. <rect key="screenRect" x="0.0" y="0.0" width="1800" height="1125"/>
  106. <view key="contentView" wantsLayer="YES" misplaced="YES" id="BHT-Ss-56B">
  107. <rect key="frame" x="0.0" y="0.0" width="970" height="660"/>
  108. <autoresizingMask key="autoresizingMask"/>
  109. <subviews>
  110. <box misplaced="YES" boxType="custom" borderType="none" borderWidth="0.0" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="rhE-eG-YHH">
  111. <rect key="frame" x="0.0" y="497" width="1054" height="192"/>
  112. <view key="contentView" id="yuM-RN-TXQ">
  113. <rect key="frame" x="0.0" y="0.0" width="1054" height="192"/>
  114. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  115. <subviews>
  116. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="753-bO-8nU">
  117. <rect key="frame" x="0.0" y="0.0" width="1054" height="212"/>
  118. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  119. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="KMImageNameCompareBG" id="WMw-nV-t4A"/>
  120. </imageView>
  121. <textField focusRingType="none" verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="PwB-yc-8Ed">
  122. <rect key="frame" x="30" y="108" width="324" height="38"/>
  123. <constraints>
  124. <constraint firstAttribute="width" constant="320" id="BKS-DA-g7g"/>
  125. <constraint firstAttribute="height" relation="lessThanOrEqual" constant="48" id="MQB-cg-jX1"/>
  126. </constraints>
  127. <textFieldCell key="cell" controlSize="mini" sendsActionOnEndEditing="YES" title="Subscribe to All Access Pack to enjoy more expanded features." id="bBB-B8-XfC">
  128. <font key="font" size="16" name="Helvetica-Bold"/>
  129. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  130. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  131. </textFieldCell>
  132. </textField>
  133. <button focusRingType="none" allowsExpansionToolTips="YES" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="9Ua-mh-Y98" customClass="HyperLinkButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
  134. <rect key="frame" x="32" y="18" width="51" height="16"/>
  135. <buttonCell key="cell" type="bevel" title="Restore" bezelStyle="rounded" alignment="left" controlSize="mini" lineBreakMode="truncatingTail" focusRingType="none" imageScaling="proportionallyDown" inset="2" id="Gd5-Hq-91W">
  136. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  137. <font key="font" metaFont="system"/>
  138. </buttonCell>
  139. <constraints>
  140. <constraint firstAttribute="width" relation="lessThanOrEqual" constant="108" id="cf7-9E-idQ"/>
  141. </constraints>
  142. <connections>
  143. <action selector="buttonItemClicked_Restore:" target="-2" id="s0p-F7-DTS"/>
  144. </connections>
  145. </button>
  146. <button allowsExpansionToolTips="YES" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Gu5-Wk-ItB" customClass="HyperLinkButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
  147. <rect key="frame" x="103" y="18" width="49" height="16"/>
  148. <buttonCell key="cell" type="bevel" title="Privacy" bezelStyle="rounded" alignment="left" controlSize="mini" lineBreakMode="truncatingTail" imageScaling="proportionallyDown" inset="2" id="VEZ-JZ-eTb">
  149. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  150. <font key="font" metaFont="system"/>
  151. </buttonCell>
  152. <constraints>
  153. <constraint firstAttribute="width" relation="lessThanOrEqual" constant="108" id="ncj-Zz-1TI"/>
  154. </constraints>
  155. <connections>
  156. <action selector="privacyPolicyAction:" target="-2" id="xFT-WY-FoM"/>
  157. </connections>
  158. </button>
  159. <box boxType="custom" borderWidth="0.0" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="A99-27-Swh">
  160. <rect key="frame" x="352" y="0.0" width="618" height="202"/>
  161. <view key="contentView" id="bYv-fa-oGt">
  162. <rect key="frame" x="0.0" y="0.0" width="618" height="202"/>
  163. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  164. </view>
  165. </box>
  166. <button allowsExpansionToolTips="YES" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="nwB-UV-7Pi" customClass="HyperLinkButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
  167. <rect key="frame" x="172" y="18" width="42" height="16"/>
  168. <buttonCell key="cell" type="bevel" title="Terms" bezelStyle="rounded" alignment="left" controlSize="mini" lineBreakMode="truncatingTail" imageScaling="proportionallyDown" inset="2" id="f0o-9M-xKQ">
  169. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  170. <font key="font" metaFont="system"/>
  171. </buttonCell>
  172. <constraints>
  173. <constraint firstAttribute="width" relation="lessThanOrEqual" constant="108" id="XPt-NF-r8z"/>
  174. </constraints>
  175. <connections>
  176. <action selector="termOfSerAction:" target="-2" id="A2Y-jz-Bp2"/>
  177. </connections>
  178. </button>
  179. <scrollView borderType="none" horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" hasVerticalScroller="NO" translatesAutoresizingMaskIntoConstraints="NO" id="92M-gW-NPT">
  180. <rect key="frame" x="28" y="61" width="320" height="43"/>
  181. <clipView key="contentView" drawsBackground="NO" copiesOnScroll="NO" id="Euu-kC-XYf">
  182. <rect key="frame" x="0.0" y="0.0" width="320" height="43"/>
  183. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  184. <subviews>
  185. <textView editable="NO" importsGraphics="NO" richText="NO" verticallyResizable="YES" spellingCorrection="YES" smartInsertDelete="YES" id="GaB-cW-JRI">
  186. <rect key="frame" x="0.0" y="13" width="320" height="263"/>
  187. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  188. <color key="textColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  189. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  190. <size key="minSize" width="320" height="43"/>
  191. <size key="maxSize" width="1100" height="10000000"/>
  192. <attributedString key="textStorage">
  193. <fragment>
  194. <string key="content">Subscription plans:
  195. Subscriptions: USD $39.99/</string>
  196. <attributes>
  197. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  198. <font key="NSFont" size="11" name="HelveticaNeue"/>
  199. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  200. </attributes>
  201. </fragment>
  202. <fragment content="(">
  203. <attributes>
  204. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  205. <font key="NSFont" metaFont="message" size="11"/>
  206. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  207. </attributes>
  208. </fragment>
  209. <fragment content="6 months">
  210. <attributes>
  211. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  212. <font key="NSFont" size="11" name="HelveticaNeue"/>
  213. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  214. </attributes>
  215. </fragment>
  216. <fragment content="),">
  217. <attributes>
  218. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  219. <font key="NSFont" metaFont="message" size="11"/>
  220. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  221. </attributes>
  222. </fragment>
  223. <fragment content=" USD $79.99/">
  224. <attributes>
  225. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  226. <font key="NSFont" size="11" name="HelveticaNeue"/>
  227. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  228. </attributes>
  229. </fragment>
  230. <fragment content="(">
  231. <attributes>
  232. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  233. <font key="NSFont" metaFont="message" size="11"/>
  234. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  235. </attributes>
  236. </fragment>
  237. <fragment content="one-time purchase">
  238. <attributes>
  239. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  240. <font key="NSFont" size="11" name="HelveticaNeue"/>
  241. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  242. </attributes>
  243. </fragment>
  244. <fragment content=")">
  245. <attributes>
  246. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  247. <font key="NSFont" metaFont="message" size="11"/>
  248. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  249. </attributes>
  250. </fragment>
  251. <fragment>
  252. <mutableString key="content">
  253. - Subscriptions will be charged through your iTunes account at the confirmation of purchase.
  254. - Your subscriptions will automatically renew unless cancelled at least 24 hours before the end of current subscription period.
  255. - Your iTunes account will be charged for renewal within 24-hours prior to the end of the current period</mutableString>
  256. <attributes>
  257. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  258. <font key="NSFont" size="11" name="HelveticaNeue"/>
  259. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  260. </attributes>
  261. </fragment>
  262. <fragment content=",">
  263. <attributes>
  264. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  265. <font key="NSFont" metaFont="message" size="11"/>
  266. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  267. </attributes>
  268. </fragment>
  269. <fragment>
  270. <mutableString key="content"> for the same duration and at the current subscription price.
  271. - You may manage your subscriptions in your iTunes Account Settings after purchase.
  272. - No cancellation of the current subscription is allowed during an active subscription period.
  273. - Terms of service:
  274. https://www.pdfreaderpro.com/terms_of_service
  275. - Privacy Policy:
  276. https://www.pdfreaderpro.com/privacy-policy</mutableString>
  277. <attributes>
  278. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  279. <font key="NSFont" size="11" name="HelveticaNeue"/>
  280. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  281. </attributes>
  282. </fragment>
  283. <fragment content="
">
  284. <attributes>
  285. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  286. <font key="NSFont" size="13" name="HelveticaNeue-Bold"/>
  287. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  288. </attributes>
  289. </fragment>
  290. </attributedString>
  291. <color key="insertionPointColor" name="textInsertionPointColor" catalog="System" colorSpace="catalog"/>
  292. </textView>
  293. </subviews>
  294. </clipView>
  295. <constraints>
  296. <constraint firstAttribute="width" constant="320" id="76u-V4-DsD"/>
  297. <constraint firstAttribute="height" constant="43" id="F8j-8k-2XD"/>
  298. </constraints>
  299. <scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="XKC-x2-vpE">
  300. <rect key="frame" x="-100" y="-100" width="1092" height="16"/>
  301. <autoresizingMask key="autoresizingMask"/>
  302. </scroller>
  303. <scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="V3p-FO-85S">
  304. <rect key="frame" x="-100" y="-100" width="16" height="50"/>
  305. <autoresizingMask key="autoresizingMask"/>
  306. </scroller>
  307. </scrollView>
  308. </subviews>
  309. <constraints>
  310. <constraint firstAttribute="bottom" secondItem="A99-27-Swh" secondAttribute="bottom" id="1cz-bX-Zbc"/>
  311. <constraint firstItem="A99-27-Swh" firstAttribute="leading" secondItem="yuM-RN-TXQ" secondAttribute="leading" constant="352" id="5ZR-wE-zTh"/>
  312. <constraint firstItem="PwB-yc-8Ed" firstAttribute="leading" secondItem="yuM-RN-TXQ" secondAttribute="leading" constant="32" id="77O-on-ZGq"/>
  313. <constraint firstItem="Gu5-Wk-ItB" firstAttribute="centerY" secondItem="9Ua-mh-Y98" secondAttribute="centerY" id="8Ao-V7-YFH"/>
  314. <constraint firstItem="nwB-UV-7Pi" firstAttribute="centerY" secondItem="Gu5-Wk-ItB" secondAttribute="centerY" id="Cgr-Zj-zed"/>
  315. <constraint firstAttribute="bottom" secondItem="9Ua-mh-Y98" secondAttribute="bottom" constant="18" id="TTL-4Z-f74"/>
  316. <constraint firstItem="9Ua-mh-Y98" firstAttribute="leading" secondItem="PwB-yc-8Ed" secondAttribute="leading" id="VAN-5s-Dwh"/>
  317. <constraint firstItem="92M-gW-NPT" firstAttribute="leading" secondItem="PwB-yc-8Ed" secondAttribute="leading" constant="-4" id="YhP-R4-ntg"/>
  318. <constraint firstItem="PwB-yc-8Ed" firstAttribute="top" secondItem="yuM-RN-TXQ" secondAttribute="top" constant="76" id="Yje-hP-G2n"/>
  319. <constraint firstItem="Gu5-Wk-ItB" firstAttribute="leading" secondItem="9Ua-mh-Y98" secondAttribute="trailing" constant="20" id="eaD-4G-eLG"/>
  320. <constraint firstAttribute="trailing" secondItem="A99-27-Swh" secondAttribute="trailing" id="gax-QU-is8"/>
  321. <constraint firstItem="nwB-UV-7Pi" firstAttribute="leading" secondItem="Gu5-Wk-ItB" secondAttribute="trailing" constant="20" id="l5t-sH-h4D"/>
  322. <constraint firstItem="A99-27-Swh" firstAttribute="top" secondItem="yuM-RN-TXQ" secondAttribute="top" constant="20" id="sWX-MW-iXw"/>
  323. <constraint firstItem="92M-gW-NPT" firstAttribute="top" secondItem="PwB-yc-8Ed" secondAttribute="bottom" constant="4" id="teG-kV-iLY"/>
  324. </constraints>
  325. </view>
  326. <constraints>
  327. <constraint firstAttribute="height" constant="222" id="oxM-U7-EWC"/>
  328. </constraints>
  329. <color key="fillColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  330. </box>
  331. <box hidden="YES" fixedFrame="YES" boxType="custom" borderType="none" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="MVd-e9-wr3">
  332. <rect key="frame" x="0.0" y="-180" width="1150" height="160"/>
  333. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  334. <view key="contentView" id="4Ah-2q-sOk">
  335. <rect key="frame" x="0.0" y="0.0" width="1150" height="160"/>
  336. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  337. <subviews>
  338. <box fixedFrame="YES" boxType="custom" borderType="none" cornerRadius="4" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="S76-Wq-Kpu">
  339. <rect key="frame" x="30" y="30" width="1090" height="130"/>
  340. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  341. <view key="contentView" id="OoV-UT-A8u">
  342. <rect key="frame" x="0.0" y="0.0" width="1090" height="130"/>
  343. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  344. <subviews>
  345. <box fixedFrame="YES" boxType="custom" borderWidth="0.0" cornerRadius="16" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="eYZ-KU-1XY">
  346. <rect key="frame" x="0.0" y="75" width="498" height="35"/>
  347. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  348. <view key="contentView" id="e6X-1O-FRr">
  349. <rect key="frame" x="0.0" y="0.0" width="498" height="35"/>
  350. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  351. <subviews>
  352. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ob0-Bq-QsJ">
  353. <rect key="frame" x="22" y="8" width="458" height="19"/>
  354. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  355. <textFieldCell key="cell" sendsActionOnEndEditing="YES" title="Choose your favorite payment and enjoy flexible upgrades." id="L4M-W5-ZIA">
  356. <font key="font" metaFont="systemBold" size="16"/>
  357. <color key="textColor" red="0.0" green="0.53333333329999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  358. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  359. </textFieldCell>
  360. </textField>
  361. <button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="XrH-YB-sky">
  362. <rect key="frame" x="0.0" y="10" width="16" height="16"/>
  363. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  364. <buttonCell key="cell" type="square" bezelStyle="shadowlessSquare" image="KMImageNamePurchaseBuy" imagePosition="only" alignment="center" imageScaling="proportionallyUpOrDown" inset="2" id="7HH-k3-NGv">
  365. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  366. <font key="font" metaFont="system"/>
  367. </buttonCell>
  368. </button>
  369. </subviews>
  370. </view>
  371. <color key="fillColor" red="0.0" green="0.14117647059999999" blue="1" alpha="0.10000000000000001" colorSpace="custom" customColorSpace="sRGB"/>
  372. </box>
  373. <customView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="iuq-MX-hpP">
  374. <rect key="frame" x="550" y="0.0" width="170" height="130"/>
  375. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  376. </customView>
  377. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="NUp-Nc-4Lc" customClass="HyperLinkButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
  378. <rect key="frame" x="479" y="57" width="131" height="16"/>
  379. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  380. <buttonCell key="cell" type="bevel" title="About Subscriptions " bezelStyle="rounded" alignment="left" controlSize="mini" imageScaling="proportionallyDown" inset="2" id="Obl-hA-HjC">
  381. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  382. <font key="font" metaFont="system"/>
  383. </buttonCell>
  384. <connections>
  385. <action selector="buttonItemClicked_AboutSubscriptions:" target="-2" id="c6i-wz-AcO"/>
  386. </connections>
  387. </button>
  388. <customView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="lL3-ve-hng">
  389. <rect key="frame" x="735" y="0.0" width="170" height="130"/>
  390. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  391. </customView>
  392. <customView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="nEq-4H-q8D">
  393. <rect key="frame" x="920" y="0.0" width="170" height="130"/>
  394. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  395. </customView>
  396. <customView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="wc2-lB-ZOG">
  397. <rect key="frame" x="847" y="25" width="73" height="30"/>
  398. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  399. <subviews>
  400. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="FNI-sE-hqK">
  401. <rect key="frame" x="0.0" y="0.0" width="73" height="30"/>
  402. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  403. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="WVM-70-mHQ"/>
  404. </imageView>
  405. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Znw-Zi-3j9">
  406. <rect key="frame" x="8" y="7" width="57" height="16"/>
  407. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  408. <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="20% off" id="3Y5-kD-vmP">
  409. <font key="font" metaFont="system"/>
  410. <color key="textColor" red="0.99999600649999998" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  411. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  412. </textFieldCell>
  413. </textField>
  414. </subviews>
  415. </customView>
  416. <customView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="KD9-Jz-pNW">
  417. <rect key="frame" x="662" y="25" width="73" height="30"/>
  418. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  419. <subviews>
  420. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cHj-D3-VbU">
  421. <rect key="frame" x="0.0" y="0.0" width="73" height="30"/>
  422. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  423. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="9Np-8H-jT9"/>
  424. </imageView>
  425. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="rVM-Kv-Rbr">
  426. <rect key="frame" x="8" y="7" width="57" height="16"/>
  427. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  428. <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="20% off" id="BVK-ER-JET">
  429. <font key="font" metaFont="system"/>
  430. <color key="textColor" red="0.99999600649999998" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  431. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  432. </textFieldCell>
  433. </textField>
  434. </subviews>
  435. </customView>
  436. </subviews>
  437. </view>
  438. <color key="borderColor" red="0.92156862750000001" green="0.96078431369999995" blue="1" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  439. <color key="fillColor" red="0.0" green="0.4431372549" blue="0.93333333330000001" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  440. </box>
  441. </subviews>
  442. </view>
  443. <color key="fillColor" red="0.99999600649999998" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  444. </box>
  445. <scrollView misplaced="YES" borderType="none" horizontalLineScroll="49" horizontalPageScroll="10" verticalLineScroll="49" verticalPageScroll="10" hasHorizontalScroller="NO" hasVerticalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Nug-mc-XVk">
  446. <rect key="frame" x="0.0" y="-50" width="970" height="518"/>
  447. <clipView key="contentView" drawsBackground="NO" id="mXx-Ex-E5u">
  448. <rect key="frame" x="0.0" y="0.0" width="970" height="518"/>
  449. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  450. <subviews>
  451. <tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" tableStyle="plain" selectionHighlightStyle="none" columnSelection="YES" columnResizing="NO" multipleSelection="NO" autosaveColumns="NO" rowHeight="49" rowSizeStyle="automatic" viewBased="YES" id="UQf-R2-MfQ">
  452. <rect key="frame" x="0.0" y="0.0" width="970" height="518"/>
  453. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  454. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  455. <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
  456. <tableColumns>
  457. <tableColumn width="970" minWidth="40" maxWidth="10000" id="lLo-z5-2m3">
  458. <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border">
  459. <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
  460. <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
  461. </tableHeaderCell>
  462. <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="AVC-83-47I">
  463. <font key="font" metaFont="system"/>
  464. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  465. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  466. </textFieldCell>
  467. <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
  468. <prototypeCellViews>
  469. <tableCellView identifier="KMProductCompareTableHeaderCell" id="rUh-01-Vn4" customClass="KMProductCompareTableHeaderCell" customModule="PDF_Reader_Pro" customModuleProvider="target">
  470. <rect key="frame" x="0.0" y="0.0" width="970" height="32"/>
  471. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  472. <subviews>
  473. <customView translatesAutoresizingMaskIntoConstraints="NO" id="yZM-JH-Pej">
  474. <rect key="frame" x="0.0" y="0.0" width="970" height="32"/>
  475. <subviews>
  476. <textField focusRingType="none" verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" translatesAutoresizingMaskIntoConstraints="NO" id="vBF-W5-0Vf">
  477. <rect key="frame" x="30" y="8" width="105" height="17"/>
  478. <textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" title="Table View Cell" id="qYu-hm-Ci1">
  479. <font key="font" metaFont="systemMedium" size="14"/>
  480. <color key="textColor" red="0.0" green="0.53333333329999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  481. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  482. </textFieldCell>
  483. </textField>
  484. <box boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="Jgf-Tg-8uu">
  485. <rect key="frame" x="506" y="-5" width="300" height="42"/>
  486. <view key="contentView" id="ysw-uB-PML">
  487. <rect key="frame" x="1" y="1" width="298" height="40"/>
  488. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  489. </view>
  490. <constraints>
  491. <constraint firstAttribute="width" constant="300" id="dsM-5m-jQx"/>
  492. </constraints>
  493. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  494. </box>
  495. </subviews>
  496. <constraints>
  497. <constraint firstItem="vBF-W5-0Vf" firstAttribute="leading" secondItem="yZM-JH-Pej" secondAttribute="leading" constant="32" id="OPT-Fj-HPB"/>
  498. <constraint firstItem="vBF-W5-0Vf" firstAttribute="centerY" secondItem="yZM-JH-Pej" secondAttribute="centerY" id="RKg-I4-TaY"/>
  499. <constraint firstItem="Jgf-Tg-8uu" firstAttribute="top" secondItem="yZM-JH-Pej" secondAttribute="top" constant="-5" id="dC9-MK-Ul2"/>
  500. <constraint firstItem="Jgf-Tg-8uu" firstAttribute="leading" secondItem="yZM-JH-Pej" secondAttribute="leading" constant="506" id="hb6-eN-hKH"/>
  501. <constraint firstAttribute="bottom" secondItem="Jgf-Tg-8uu" secondAttribute="bottom" constant="-5" id="v4C-MQ-NmI"/>
  502. </constraints>
  503. </customView>
  504. </subviews>
  505. <constraints>
  506. <constraint firstAttribute="bottom" secondItem="yZM-JH-Pej" secondAttribute="bottom" id="0Hs-Lj-U55"/>
  507. <constraint firstItem="yZM-JH-Pej" firstAttribute="leading" secondItem="rUh-01-Vn4" secondAttribute="leading" id="3kL-RO-bZJ"/>
  508. <constraint firstItem="yZM-JH-Pej" firstAttribute="top" secondItem="rUh-01-Vn4" secondAttribute="top" id="48O-eY-Yx3"/>
  509. <constraint firstAttribute="trailing" secondItem="yZM-JH-Pej" secondAttribute="trailing" id="WMq-Zx-JW3"/>
  510. </constraints>
  511. <connections>
  512. <outlet property="contentView" destination="yZM-JH-Pej" id="KUw-10-Su5"/>
  513. <outlet property="selectBoxLeft" destination="hb6-eN-hKH" id="Nfp-Sp-1OT"/>
  514. <outlet property="selectBoxWidth" destination="dsM-5m-jQx" id="Bz4-c3-uTy"/>
  515. <outlet property="textField" destination="vBF-W5-0Vf" id="PN9-OG-TCn"/>
  516. </connections>
  517. </tableCellView>
  518. <tableCellView identifier="KMProductCompareTableCell" id="ax6-Po-8DY" customClass="KMProductCompareTableCell" customModule="PDF_Reader_Pro" customModuleProvider="target">
  519. <rect key="frame" x="0.0" y="32" width="970" height="49"/>
  520. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  521. <subviews>
  522. <customView translatesAutoresizingMaskIntoConstraints="NO" id="O9u-9e-atz">
  523. <rect key="frame" x="0.0" y="0.0" width="970" height="49"/>
  524. </customView>
  525. <box fixedFrame="YES" boxType="custom" borderType="none" borderWidth="0.0" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="lLf-YX-j0Y">
  526. <rect key="frame" x="20" y="0.0" width="1110" height="1"/>
  527. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  528. <view key="contentView" id="w1J-T2-rdP">
  529. <rect key="frame" x="0.0" y="0.0" width="1110" height="1"/>
  530. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  531. </view>
  532. <color key="fillColor" red="0.95294117649999999" green="0.95294117649999999" blue="0.95294117649999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  533. </box>
  534. <customView translatesAutoresizingMaskIntoConstraints="NO" id="hPa-wJ-jja">
  535. <rect key="frame" x="32" y="0.0" width="938" height="49"/>
  536. <subviews>
  537. <textField focusRingType="none" verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="eva-hu-gUk">
  538. <rect key="frame" x="-2" y="17" width="324" height="16"/>
  539. <constraints>
  540. <constraint firstAttribute="width" constant="320" id="MNS-Vt-8xt"/>
  541. </constraints>
  542. <textFieldCell key="cell" controlSize="mini" sendsActionOnEndEditing="YES" title="Multiline Label" id="o7n-AE-ABV">
  543. <font key="font" metaFont="system"/>
  544. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="calibratedRGB"/>
  545. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  546. </textFieldCell>
  547. </textField>
  548. <customView translatesAutoresizingMaskIntoConstraints="NO" id="aGF-gc-JA0">
  549. <rect key="frame" x="320" y="0.0" width="144" height="49"/>
  550. <subviews>
  551. <box boxType="custom" borderWidth="0.0" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="zke-UU-SYF">
  552. <rect key="frame" x="0.0" y="15" width="144" height="20"/>
  553. <view key="contentView" id="jaz-My-uNP">
  554. <rect key="frame" x="0.0" y="0.0" width="144" height="20"/>
  555. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  556. <subviews>
  557. <customView translatesAutoresizingMaskIntoConstraints="NO" id="R0L-Jp-d3S">
  558. <rect key="frame" x="8" y="0.0" width="128" height="20"/>
  559. <subviews>
  560. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="0NP-Fe-Pb9">
  561. <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
  562. <constraints>
  563. <constraint firstAttribute="height" constant="20" id="0az-jx-BOl"/>
  564. <constraint firstAttribute="width" constant="20" id="Fci-2f-DDH"/>
  565. </constraints>
  566. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="MacOSPlatformImage" id="nJo-tD-wD4"/>
  567. </imageView>
  568. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="4Dd-dE-aeB">
  569. <rect key="frame" x="36" y="0.0" width="20" height="20"/>
  570. <constraints>
  571. <constraint firstAttribute="height" constant="20" id="9Am-S3-O5v"/>
  572. <constraint firstAttribute="width" constant="20" id="rRI-0d-ifC"/>
  573. </constraints>
  574. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="WindowsPlatformImage" id="Xo4-GP-q6j"/>
  575. </imageView>
  576. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Gti-Ae-odm">
  577. <rect key="frame" x="72" y="0.0" width="20" height="20"/>
  578. <constraints>
  579. <constraint firstAttribute="width" constant="20" id="HJe-HR-SsU"/>
  580. <constraint firstAttribute="height" constant="20" id="PiG-3S-0l1"/>
  581. </constraints>
  582. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="iOSPlatformImage" id="ZY6-fy-lLF"/>
  583. </imageView>
  584. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="lKl-1e-uDw">
  585. <rect key="frame" x="108" y="0.0" width="20" height="20"/>
  586. <constraints>
  587. <constraint firstAttribute="height" constant="20" id="D68-th-ZL3"/>
  588. <constraint firstAttribute="width" constant="20" id="ekL-Yf-5NH"/>
  589. </constraints>
  590. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="AndroidPlatformImage" id="30e-dn-bxE"/>
  591. </imageView>
  592. </subviews>
  593. <constraints>
  594. <constraint firstItem="4Dd-dE-aeB" firstAttribute="top" secondItem="R0L-Jp-d3S" secondAttribute="top" id="8Ql-7X-tT3"/>
  595. <constraint firstAttribute="bottom" secondItem="lKl-1e-uDw" secondAttribute="bottom" id="BUG-b7-dB7"/>
  596. <constraint firstItem="lKl-1e-uDw" firstAttribute="top" secondItem="R0L-Jp-d3S" secondAttribute="top" id="EGq-XR-GHn"/>
  597. <constraint firstItem="0NP-Fe-Pb9" firstAttribute="leading" secondItem="R0L-Jp-d3S" secondAttribute="leading" id="Js2-mX-G6U"/>
  598. <constraint firstAttribute="bottom" secondItem="Gti-Ae-odm" secondAttribute="bottom" id="Unc-3h-84z"/>
  599. <constraint firstAttribute="trailing" secondItem="lKl-1e-uDw" secondAttribute="trailing" id="YlY-YN-A5h"/>
  600. <constraint firstAttribute="bottom" secondItem="0NP-Fe-Pb9" secondAttribute="bottom" id="cXg-Xd-IES"/>
  601. <constraint firstItem="0NP-Fe-Pb9" firstAttribute="top" secondItem="R0L-Jp-d3S" secondAttribute="top" id="ffo-n5-nQb"/>
  602. <constraint firstAttribute="height" constant="20" id="ftk-pa-dkH"/>
  603. <constraint firstItem="4Dd-dE-aeB" firstAttribute="leading" secondItem="0NP-Fe-Pb9" secondAttribute="trailing" constant="16" id="gHr-5B-Rsa"/>
  604. <constraint firstItem="Gti-Ae-odm" firstAttribute="top" secondItem="R0L-Jp-d3S" secondAttribute="top" id="kcg-7G-UQf"/>
  605. <constraint firstItem="Gti-Ae-odm" firstAttribute="leading" secondItem="4Dd-dE-aeB" secondAttribute="trailing" constant="16" id="qEG-Jb-uiR"/>
  606. <constraint firstAttribute="bottom" secondItem="4Dd-dE-aeB" secondAttribute="bottom" id="qJC-cc-hz1"/>
  607. <constraint firstItem="lKl-1e-uDw" firstAttribute="leading" secondItem="Gti-Ae-odm" secondAttribute="trailing" constant="16" id="xfa-GV-zGt"/>
  608. </constraints>
  609. </customView>
  610. </subviews>
  611. </view>
  612. <constraints>
  613. <constraint firstAttribute="height" constant="20" id="Duw-7s-A7r"/>
  614. <constraint firstItem="R0L-Jp-d3S" firstAttribute="centerY" secondItem="zke-UU-SYF" secondAttribute="centerY" id="U2g-Tj-A8v"/>
  615. <constraint firstItem="R0L-Jp-d3S" firstAttribute="centerX" secondItem="zke-UU-SYF" secondAttribute="centerX" id="y0D-uN-Cwo"/>
  616. </constraints>
  617. </box>
  618. <box hidden="YES" boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="4B7-fb-f19">
  619. <rect key="frame" x="0.0" y="-4" width="144" height="57"/>
  620. <view key="contentView" id="G1i-Qf-9jx">
  621. <rect key="frame" x="1" y="1" width="142" height="55"/>
  622. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  623. </view>
  624. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  625. </box>
  626. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="yP8-88-gIa">
  627. <rect key="frame" x="-2" y="17" width="148" height="16"/>
  628. <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="Label" id="vtz-8V-Gxo">
  629. <font key="font" metaFont="system"/>
  630. <color key="textColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="0.84999999999999998" colorSpace="calibratedRGB"/>
  631. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  632. </textFieldCell>
  633. </textField>
  634. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="NOL-fL-r6v">
  635. <rect key="frame" x="65" y="17" width="15" height="15"/>
  636. <constraints>
  637. <constraint firstAttribute="height" constant="15" id="YLX-6c-4uC"/>
  638. <constraint firstAttribute="width" constant="15" id="nLQ-sd-teV"/>
  639. </constraints>
  640. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="ohK-ia-X7v"/>
  641. </imageView>
  642. </subviews>
  643. <constraints>
  644. <constraint firstItem="yP8-88-gIa" firstAttribute="centerY" secondItem="aGF-gc-JA0" secondAttribute="centerY" id="Dnl-3c-Otk"/>
  645. <constraint firstAttribute="trailing" secondItem="zke-UU-SYF" secondAttribute="trailing" id="Ejy-9D-e22"/>
  646. <constraint firstAttribute="trailing" secondItem="yP8-88-gIa" secondAttribute="trailing" id="HWK-nG-Qrm"/>
  647. <constraint firstItem="yP8-88-gIa" firstAttribute="leading" secondItem="aGF-gc-JA0" secondAttribute="leading" id="PUx-kA-4Cw"/>
  648. <constraint firstAttribute="bottom" secondItem="4B7-fb-f19" secondAttribute="bottom" constant="-4" id="Ymm-vd-ty9"/>
  649. <constraint firstItem="zke-UU-SYF" firstAttribute="centerY" secondItem="aGF-gc-JA0" secondAttribute="centerY" id="aXQ-MN-eA1"/>
  650. <constraint firstItem="zke-UU-SYF" firstAttribute="leading" secondItem="aGF-gc-JA0" secondAttribute="leading" id="bH1-bJ-mBq"/>
  651. <constraint firstAttribute="width" constant="144" id="fkI-4Z-hGD"/>
  652. <constraint firstItem="NOL-fL-r6v" firstAttribute="centerX" secondItem="aGF-gc-JA0" secondAttribute="centerX" id="hfb-h5-Dvv"/>
  653. <constraint firstItem="4B7-fb-f19" firstAttribute="leading" secondItem="aGF-gc-JA0" secondAttribute="leading" id="kyg-MT-aag"/>
  654. <constraint firstAttribute="trailing" secondItem="4B7-fb-f19" secondAttribute="trailing" id="l39-Lt-rzA"/>
  655. <constraint firstItem="NOL-fL-r6v" firstAttribute="centerY" secondItem="aGF-gc-JA0" secondAttribute="centerY" id="lgq-3h-AkD"/>
  656. <constraint firstItem="4B7-fb-f19" firstAttribute="top" secondItem="aGF-gc-JA0" secondAttribute="top" constant="-4" id="uic-Dd-SSD"/>
  657. </constraints>
  658. </customView>
  659. <customView translatesAutoresizingMaskIntoConstraints="NO" id="FgJ-qy-8H1">
  660. <rect key="frame" x="464" y="0.0" width="300" height="49"/>
  661. <subviews>
  662. <box boxType="custom" borderWidth="0.0" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="U4h-vo-jXM">
  663. <rect key="frame" x="0.0" y="15" width="300" height="20"/>
  664. <view key="contentView" id="dLC-qS-hLE">
  665. <rect key="frame" x="0.0" y="0.0" width="300" height="20"/>
  666. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  667. <subviews>
  668. <customView translatesAutoresizingMaskIntoConstraints="NO" id="sto-qa-IGj">
  669. <rect key="frame" x="86" y="0.0" width="128" height="20"/>
  670. <subviews>
  671. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="o6e-ec-DiX">
  672. <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
  673. <constraints>
  674. <constraint firstAttribute="width" constant="20" id="dfj-U0-C48"/>
  675. <constraint firstAttribute="height" constant="20" id="g70-U0-PDt"/>
  676. </constraints>
  677. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="MacOSPlatformImage" id="CTc-T1-0Rw"/>
  678. </imageView>
  679. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="1AM-fs-t9v">
  680. <rect key="frame" x="36" y="0.0" width="20" height="20"/>
  681. <constraints>
  682. <constraint firstAttribute="height" constant="20" id="EOj-CB-sdi"/>
  683. <constraint firstAttribute="width" constant="20" id="KNj-lL-Z9U"/>
  684. </constraints>
  685. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="WindowsPlatformImage" id="84S-dW-hgp"/>
  686. </imageView>
  687. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="gAe-Vu-sYq">
  688. <rect key="frame" x="72" y="0.0" width="20" height="20"/>
  689. <constraints>
  690. <constraint firstAttribute="height" constant="20" id="AM2-Oy-8FA"/>
  691. <constraint firstAttribute="width" constant="20" id="qaf-zj-4U0"/>
  692. </constraints>
  693. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="iOSPlatformImage" id="qwp-Xf-Esz"/>
  694. </imageView>
  695. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="clT-TG-2Gu">
  696. <rect key="frame" x="108" y="0.0" width="20" height="20"/>
  697. <constraints>
  698. <constraint firstAttribute="width" constant="20" id="e6Y-DH-hm3"/>
  699. <constraint firstAttribute="height" constant="20" id="nD5-rg-4W7"/>
  700. </constraints>
  701. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="AndroidPlatformImage" id="NxR-MD-BJY"/>
  702. </imageView>
  703. </subviews>
  704. <constraints>
  705. <constraint firstItem="gAe-Vu-sYq" firstAttribute="top" secondItem="sto-qa-IGj" secondAttribute="top" id="36E-mH-yXe"/>
  706. <constraint firstItem="1AM-fs-t9v" firstAttribute="top" secondItem="sto-qa-IGj" secondAttribute="top" id="B7R-0W-Lf8"/>
  707. <constraint firstItem="clT-TG-2Gu" firstAttribute="top" secondItem="sto-qa-IGj" secondAttribute="top" id="BMM-4U-X0c"/>
  708. <constraint firstAttribute="trailing" secondItem="clT-TG-2Gu" secondAttribute="trailing" id="EMM-iF-WA6"/>
  709. <constraint firstItem="gAe-Vu-sYq" firstAttribute="leading" secondItem="1AM-fs-t9v" secondAttribute="trailing" constant="16" id="FCQ-VG-CdA"/>
  710. <constraint firstItem="o6e-ec-DiX" firstAttribute="leading" secondItem="sto-qa-IGj" secondAttribute="leading" id="I6I-oW-jhW"/>
  711. <constraint firstItem="o6e-ec-DiX" firstAttribute="top" secondItem="sto-qa-IGj" secondAttribute="top" id="LIE-Aj-wQg"/>
  712. <constraint firstItem="clT-TG-2Gu" firstAttribute="leading" secondItem="gAe-Vu-sYq" secondAttribute="trailing" constant="16" id="LIE-ih-Hxm"/>
  713. <constraint firstAttribute="height" constant="20" id="VLu-FH-iJv"/>
  714. <constraint firstItem="1AM-fs-t9v" firstAttribute="leading" secondItem="o6e-ec-DiX" secondAttribute="trailing" constant="16" id="XyI-Et-m6g"/>
  715. <constraint firstAttribute="bottom" secondItem="clT-TG-2Gu" secondAttribute="bottom" id="aLH-GO-h1t"/>
  716. <constraint firstAttribute="bottom" secondItem="1AM-fs-t9v" secondAttribute="bottom" id="kia-Dg-TFe"/>
  717. <constraint firstAttribute="bottom" secondItem="o6e-ec-DiX" secondAttribute="bottom" id="ku4-Dt-6TH"/>
  718. <constraint firstAttribute="bottom" secondItem="gAe-Vu-sYq" secondAttribute="bottom" id="mbv-iS-v0a"/>
  719. </constraints>
  720. </customView>
  721. </subviews>
  722. </view>
  723. <constraints>
  724. <constraint firstItem="sto-qa-IGj" firstAttribute="centerY" secondItem="U4h-vo-jXM" secondAttribute="centerY" id="A7Y-J8-90X"/>
  725. <constraint firstAttribute="height" constant="20" id="d0x-8D-OtC"/>
  726. <constraint firstItem="sto-qa-IGj" firstAttribute="centerX" secondItem="U4h-vo-jXM" secondAttribute="centerX" id="r8E-OP-cqn"/>
  727. </constraints>
  728. </box>
  729. <box hidden="YES" boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="rSJ-SM-SEg">
  730. <rect key="frame" x="0.0" y="-4" width="300" height="57"/>
  731. <view key="contentView" id="Afy-Ef-4FL">
  732. <rect key="frame" x="1" y="1" width="298" height="55"/>
  733. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  734. </view>
  735. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  736. </box>
  737. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="zkM-gU-DuR">
  738. <rect key="frame" x="-2" y="17" width="304" height="16"/>
  739. <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="Label" id="q2u-Kj-BQF">
  740. <font key="font" metaFont="system"/>
  741. <color key="textColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="0.84999999999999998" colorSpace="calibratedRGB"/>
  742. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  743. </textFieldCell>
  744. </textField>
  745. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="BIW-Si-847">
  746. <rect key="frame" x="143" y="17" width="15" height="15"/>
  747. <constraints>
  748. <constraint firstAttribute="height" constant="15" id="nUW-bK-UfB"/>
  749. <constraint firstAttribute="width" constant="15" id="qg0-QB-yAr"/>
  750. </constraints>
  751. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="0uu-ML-MXC"/>
  752. </imageView>
  753. </subviews>
  754. <constraints>
  755. <constraint firstItem="U4h-vo-jXM" firstAttribute="centerY" secondItem="FgJ-qy-8H1" secondAttribute="centerY" id="1Yd-pU-s9Q"/>
  756. <constraint firstAttribute="trailing" secondItem="rSJ-SM-SEg" secondAttribute="trailing" id="A6H-D9-HNW"/>
  757. <constraint firstItem="U4h-vo-jXM" firstAttribute="leading" secondItem="FgJ-qy-8H1" secondAttribute="leading" id="HiC-3K-PCI"/>
  758. <constraint firstItem="BIW-Si-847" firstAttribute="centerY" secondItem="FgJ-qy-8H1" secondAttribute="centerY" id="MaW-ka-aqW"/>
  759. <constraint firstItem="zkM-gU-DuR" firstAttribute="leading" secondItem="FgJ-qy-8H1" secondAttribute="leading" id="XIj-dY-pKe"/>
  760. <constraint firstAttribute="trailing" secondItem="U4h-vo-jXM" secondAttribute="trailing" id="aQz-PA-grM"/>
  761. <constraint firstItem="zkM-gU-DuR" firstAttribute="centerY" secondItem="FgJ-qy-8H1" secondAttribute="centerY" id="cEY-bL-wk5"/>
  762. <constraint firstAttribute="width" constant="300" id="duv-mG-QwY"/>
  763. <constraint firstItem="BIW-Si-847" firstAttribute="centerX" secondItem="FgJ-qy-8H1" secondAttribute="centerX" id="eGT-Uh-Dfp"/>
  764. <constraint firstAttribute="bottom" secondItem="rSJ-SM-SEg" secondAttribute="bottom" constant="-4" id="kCL-ep-Qqv"/>
  765. <constraint firstItem="rSJ-SM-SEg" firstAttribute="top" secondItem="FgJ-qy-8H1" secondAttribute="top" constant="-4" id="vRp-zL-w4v"/>
  766. <constraint firstAttribute="trailing" secondItem="zkM-gU-DuR" secondAttribute="trailing" id="vSr-2r-lTq"/>
  767. <constraint firstItem="rSJ-SM-SEg" firstAttribute="leading" secondItem="FgJ-qy-8H1" secondAttribute="leading" id="xWF-sb-ah9"/>
  768. </constraints>
  769. </customView>
  770. <customView translatesAutoresizingMaskIntoConstraints="NO" id="z9x-S8-WZs">
  771. <rect key="frame" x="764" y="0.0" width="154" height="49"/>
  772. <subviews>
  773. <box boxType="custom" borderWidth="0.0" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="3AU-Kv-VqK">
  774. <rect key="frame" x="0.0" y="15" width="154" height="20"/>
  775. <view key="contentView" id="eKo-kD-CBk">
  776. <rect key="frame" x="0.0" y="0.0" width="154" height="20"/>
  777. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  778. <subviews>
  779. <customView translatesAutoresizingMaskIntoConstraints="NO" id="JhF-TU-gFT">
  780. <rect key="frame" x="13" y="0.0" width="128" height="20"/>
  781. <subviews>
  782. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="T2M-Vh-6Z6">
  783. <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
  784. <constraints>
  785. <constraint firstAttribute="height" constant="20" id="gSK-0w-Ctf"/>
  786. <constraint firstAttribute="width" constant="20" id="nMY-co-vZ2"/>
  787. </constraints>
  788. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="MacOSPlatformImage" id="6gm-Jt-PSL"/>
  789. </imageView>
  790. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Rfw-aJ-A5k">
  791. <rect key="frame" x="36" y="0.0" width="20" height="20"/>
  792. <constraints>
  793. <constraint firstAttribute="width" constant="20" id="Evi-3S-8RI"/>
  794. <constraint firstAttribute="height" constant="20" id="NvJ-Bn-0V7"/>
  795. </constraints>
  796. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="WindowsPlatformImage" id="qj7-2h-dzw"/>
  797. </imageView>
  798. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="cU1-rr-6D9">
  799. <rect key="frame" x="72" y="0.0" width="20" height="20"/>
  800. <constraints>
  801. <constraint firstAttribute="height" constant="20" id="EUv-P5-EXw"/>
  802. <constraint firstAttribute="width" constant="20" id="ZYV-hD-1HT"/>
  803. </constraints>
  804. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="iOSPlatformImage" id="jBL-UW-gk9"/>
  805. </imageView>
  806. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="IeD-qy-w6C">
  807. <rect key="frame" x="108" y="0.0" width="20" height="20"/>
  808. <constraints>
  809. <constraint firstAttribute="width" constant="20" id="Peh-WD-gad"/>
  810. <constraint firstAttribute="height" constant="20" id="eDh-gM-raJ"/>
  811. </constraints>
  812. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="AndroidPlatformImage" id="gKi-9R-w3o"/>
  813. </imageView>
  814. </subviews>
  815. <constraints>
  816. <constraint firstItem="T2M-Vh-6Z6" firstAttribute="leading" secondItem="JhF-TU-gFT" secondAttribute="leading" id="3Ci-EQ-4Vt"/>
  817. <constraint firstItem="cU1-rr-6D9" firstAttribute="top" secondItem="JhF-TU-gFT" secondAttribute="top" id="5Mo-hp-zTY"/>
  818. <constraint firstItem="IeD-qy-w6C" firstAttribute="leading" secondItem="cU1-rr-6D9" secondAttribute="trailing" constant="16" id="8M3-T1-bFY"/>
  819. <constraint firstItem="Rfw-aJ-A5k" firstAttribute="top" secondItem="JhF-TU-gFT" secondAttribute="top" id="BNn-7v-oYn"/>
  820. <constraint firstItem="cU1-rr-6D9" firstAttribute="leading" secondItem="Rfw-aJ-A5k" secondAttribute="trailing" constant="16" id="FVd-Yf-Cej"/>
  821. <constraint firstItem="Rfw-aJ-A5k" firstAttribute="leading" secondItem="T2M-Vh-6Z6" secondAttribute="trailing" constant="16" id="KpJ-Is-Ebj"/>
  822. <constraint firstAttribute="bottom" secondItem="IeD-qy-w6C" secondAttribute="bottom" id="PSb-5G-AoW"/>
  823. <constraint firstAttribute="bottom" secondItem="cU1-rr-6D9" secondAttribute="bottom" id="PeB-Uc-0gz"/>
  824. <constraint firstItem="T2M-Vh-6Z6" firstAttribute="top" secondItem="JhF-TU-gFT" secondAttribute="top" id="dnx-WK-rxf"/>
  825. <constraint firstAttribute="trailing" secondItem="IeD-qy-w6C" secondAttribute="trailing" id="i14-9O-elT"/>
  826. <constraint firstAttribute="height" constant="20" id="iMM-ov-xPd"/>
  827. <constraint firstAttribute="bottom" secondItem="Rfw-aJ-A5k" secondAttribute="bottom" id="pA2-8K-8oC"/>
  828. <constraint firstItem="IeD-qy-w6C" firstAttribute="top" secondItem="JhF-TU-gFT" secondAttribute="top" id="vpM-GB-owH"/>
  829. <constraint firstAttribute="bottom" secondItem="T2M-Vh-6Z6" secondAttribute="bottom" id="wRm-7b-nLB"/>
  830. </constraints>
  831. </customView>
  832. </subviews>
  833. </view>
  834. <constraints>
  835. <constraint firstItem="JhF-TU-gFT" firstAttribute="centerY" secondItem="3AU-Kv-VqK" secondAttribute="centerY" id="DCs-bY-bcr"/>
  836. <constraint firstItem="JhF-TU-gFT" firstAttribute="centerX" secondItem="3AU-Kv-VqK" secondAttribute="centerX" id="S1T-wV-jou"/>
  837. <constraint firstAttribute="height" constant="20" id="pDk-qh-oPn"/>
  838. </constraints>
  839. </box>
  840. <box hidden="YES" boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="1z7-m0-GLT">
  841. <rect key="frame" x="0.0" y="-4" width="154" height="57"/>
  842. <view key="contentView" id="9A4-ua-f6y">
  843. <rect key="frame" x="1" y="1" width="152" height="55"/>
  844. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  845. </view>
  846. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  847. </box>
  848. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="sHA-YJ-wQk">
  849. <rect key="frame" x="-2" y="17" width="158" height="16"/>
  850. <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="Label" id="Nud-gQ-npN">
  851. <font key="font" metaFont="system"/>
  852. <color key="textColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="0.84999999999999998" colorSpace="calibratedRGB"/>
  853. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  854. </textFieldCell>
  855. </textField>
  856. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="zhs-ff-4yr">
  857. <rect key="frame" x="70" y="17" width="15" height="15"/>
  858. <constraints>
  859. <constraint firstAttribute="width" constant="15" id="UjA-7v-9HN"/>
  860. <constraint firstAttribute="height" constant="15" id="zF7-9G-wAl"/>
  861. </constraints>
  862. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="gn4-8v-QUr"/>
  863. </imageView>
  864. </subviews>
  865. <constraints>
  866. <constraint firstItem="3AU-Kv-VqK" firstAttribute="centerY" secondItem="z9x-S8-WZs" secondAttribute="centerY" id="75J-Ou-gm8"/>
  867. <constraint firstItem="zhs-ff-4yr" firstAttribute="centerY" secondItem="z9x-S8-WZs" secondAttribute="centerY" id="Byg-YO-Sa3"/>
  868. <constraint firstAttribute="trailing" secondItem="3AU-Kv-VqK" secondAttribute="trailing" id="Egm-UD-NJJ"/>
  869. <constraint firstAttribute="bottom" secondItem="1z7-m0-GLT" secondAttribute="bottom" constant="-4" id="JQG-zU-0SA"/>
  870. <constraint firstItem="sHA-YJ-wQk" firstAttribute="centerY" secondItem="z9x-S8-WZs" secondAttribute="centerY" id="Nhz-Gu-ps9"/>
  871. <constraint firstAttribute="trailing" secondItem="1z7-m0-GLT" secondAttribute="trailing" id="Ntx-cf-yqI"/>
  872. <constraint firstItem="zhs-ff-4yr" firstAttribute="centerX" secondItem="z9x-S8-WZs" secondAttribute="centerX" id="UXW-vr-odB"/>
  873. <constraint firstItem="1z7-m0-GLT" firstAttribute="top" secondItem="z9x-S8-WZs" secondAttribute="top" constant="-4" id="abn-g1-FqR"/>
  874. <constraint firstItem="1z7-m0-GLT" firstAttribute="leading" secondItem="z9x-S8-WZs" secondAttribute="leading" id="cLl-Sk-zcn"/>
  875. <constraint firstAttribute="trailing" secondItem="sHA-YJ-wQk" secondAttribute="trailing" id="id9-qI-CNg"/>
  876. <constraint firstItem="3AU-Kv-VqK" firstAttribute="leading" secondItem="z9x-S8-WZs" secondAttribute="leading" id="lZI-No-TG4"/>
  877. <constraint firstItem="sHA-YJ-wQk" firstAttribute="leading" secondItem="z9x-S8-WZs" secondAttribute="leading" id="mSI-Ep-hda"/>
  878. <constraint firstAttribute="width" constant="154" id="thc-2E-V9z"/>
  879. </constraints>
  880. </customView>
  881. <customView translatesAutoresizingMaskIntoConstraints="NO" id="cDG-VY-47A">
  882. <rect key="frame" x="918" y="0.0" width="144" height="49"/>
  883. <subviews>
  884. <box boxType="custom" borderWidth="0.0" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="4lE-2l-Zsv">
  885. <rect key="frame" x="0.0" y="15" width="144" height="20"/>
  886. <view key="contentView" id="2pI-i7-1VL">
  887. <rect key="frame" x="0.0" y="0.0" width="144" height="20"/>
  888. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  889. <subviews>
  890. <customView translatesAutoresizingMaskIntoConstraints="NO" id="0Ed-nE-fOD">
  891. <rect key="frame" x="8" y="0.0" width="128" height="20"/>
  892. <subviews>
  893. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="wY1-Mu-y9L">
  894. <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
  895. <constraints>
  896. <constraint firstAttribute="width" constant="20" id="OeN-Ad-Zm4"/>
  897. <constraint firstAttribute="height" constant="20" id="y0I-SV-NJm"/>
  898. </constraints>
  899. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="MacOSPlatformImage" id="BLY-RI-oN9"/>
  900. </imageView>
  901. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="A3J-JP-zec">
  902. <rect key="frame" x="36" y="0.0" width="20" height="20"/>
  903. <constraints>
  904. <constraint firstAttribute="height" constant="20" id="7Yk-2n-Vet"/>
  905. <constraint firstAttribute="width" constant="20" id="ewd-7Z-LEg"/>
  906. </constraints>
  907. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="WindowsPlatformImage" id="q0S-SM-egO"/>
  908. </imageView>
  909. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Qql-Vi-Gd8">
  910. <rect key="frame" x="72" y="0.0" width="20" height="20"/>
  911. <constraints>
  912. <constraint firstAttribute="width" constant="20" id="dlD-kB-NbL"/>
  913. <constraint firstAttribute="height" constant="20" id="jBh-ro-2Xr"/>
  914. </constraints>
  915. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="iOSPlatformImage" id="iIF-dZ-LCN"/>
  916. </imageView>
  917. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="vjj-09-FpA">
  918. <rect key="frame" x="108" y="0.0" width="20" height="20"/>
  919. <constraints>
  920. <constraint firstAttribute="height" constant="20" id="5Uo-IE-cpe"/>
  921. <constraint firstAttribute="width" constant="20" id="gca-G2-YYL"/>
  922. </constraints>
  923. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="AndroidPlatformImage" id="1ca-F6-594"/>
  924. </imageView>
  925. </subviews>
  926. <constraints>
  927. <constraint firstItem="vjj-09-FpA" firstAttribute="leading" secondItem="Qql-Vi-Gd8" secondAttribute="trailing" constant="16" id="A9b-wR-ZBH"/>
  928. <constraint firstItem="Qql-Vi-Gd8" firstAttribute="leading" secondItem="A3J-JP-zec" secondAttribute="trailing" constant="16" id="DRQ-hN-4Oa"/>
  929. <constraint firstItem="Qql-Vi-Gd8" firstAttribute="top" secondItem="0Ed-nE-fOD" secondAttribute="top" id="IPI-Ha-aG9"/>
  930. <constraint firstAttribute="height" constant="20" id="JLt-fE-bbz"/>
  931. <constraint firstItem="vjj-09-FpA" firstAttribute="top" secondItem="0Ed-nE-fOD" secondAttribute="top" id="ONX-Fa-I2P"/>
  932. <constraint firstItem="wY1-Mu-y9L" firstAttribute="leading" secondItem="0Ed-nE-fOD" secondAttribute="leading" id="R01-fx-Usn"/>
  933. <constraint firstItem="wY1-Mu-y9L" firstAttribute="top" secondItem="0Ed-nE-fOD" secondAttribute="top" id="bQO-4v-tc1"/>
  934. <constraint firstAttribute="bottom" secondItem="Qql-Vi-Gd8" secondAttribute="bottom" id="bdt-vT-Xjj"/>
  935. <constraint firstItem="A3J-JP-zec" firstAttribute="top" secondItem="0Ed-nE-fOD" secondAttribute="top" id="cst-vK-aKa"/>
  936. <constraint firstItem="A3J-JP-zec" firstAttribute="leading" secondItem="wY1-Mu-y9L" secondAttribute="trailing" constant="16" id="djT-x6-zQQ"/>
  937. <constraint firstAttribute="bottom" secondItem="A3J-JP-zec" secondAttribute="bottom" id="f9u-zf-caT"/>
  938. <constraint firstAttribute="bottom" secondItem="vjj-09-FpA" secondAttribute="bottom" id="nhd-hh-fli"/>
  939. <constraint firstAttribute="trailing" secondItem="vjj-09-FpA" secondAttribute="trailing" id="r4t-KE-Tul"/>
  940. <constraint firstAttribute="bottom" secondItem="wY1-Mu-y9L" secondAttribute="bottom" id="vwH-Tm-VLm"/>
  941. </constraints>
  942. </customView>
  943. </subviews>
  944. </view>
  945. <constraints>
  946. <constraint firstItem="0Ed-nE-fOD" firstAttribute="centerY" secondItem="4lE-2l-Zsv" secondAttribute="centerY" id="CVD-0B-vxT"/>
  947. <constraint firstAttribute="height" constant="20" id="Ez6-c0-VTX"/>
  948. <constraint firstItem="0Ed-nE-fOD" firstAttribute="centerX" secondItem="4lE-2l-Zsv" secondAttribute="centerX" id="MlR-PH-jnG"/>
  949. </constraints>
  950. </box>
  951. <box hidden="YES" boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="zD0-by-iGB">
  952. <rect key="frame" x="0.0" y="-4" width="144" height="57"/>
  953. <view key="contentView" id="geH-VM-EJE">
  954. <rect key="frame" x="1" y="1" width="142" height="55"/>
  955. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  956. </view>
  957. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  958. </box>
  959. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="vIe-dY-eFV">
  960. <rect key="frame" x="-2" y="17" width="148" height="16"/>
  961. <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="Label" id="IbC-9e-o3W">
  962. <font key="font" metaFont="system"/>
  963. <color key="textColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="0.84999999999999998" colorSpace="calibratedRGB"/>
  964. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  965. </textFieldCell>
  966. </textField>
  967. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="FpT-hS-4nv">
  968. <rect key="frame" x="65" y="17" width="15" height="15"/>
  969. <constraints>
  970. <constraint firstAttribute="height" constant="15" id="6SG-H9-Uye"/>
  971. <constraint firstAttribute="width" constant="15" id="779-Zu-HS9"/>
  972. </constraints>
  973. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="ULE-y8-ZGq"/>
  974. </imageView>
  975. </subviews>
  976. <constraints>
  977. <constraint firstItem="vIe-dY-eFV" firstAttribute="leading" secondItem="cDG-VY-47A" secondAttribute="leading" id="9it-6c-RCf"/>
  978. <constraint firstAttribute="width" constant="144" id="AW8-Bw-Ttu"/>
  979. <constraint firstItem="4lE-2l-Zsv" firstAttribute="leading" secondItem="cDG-VY-47A" secondAttribute="leading" id="CMi-Uw-y2c"/>
  980. <constraint firstItem="4lE-2l-Zsv" firstAttribute="centerY" secondItem="cDG-VY-47A" secondAttribute="centerY" id="L6o-8E-aPJ"/>
  981. <constraint firstItem="FpT-hS-4nv" firstAttribute="centerX" secondItem="cDG-VY-47A" secondAttribute="centerX" id="O1c-z1-nxb"/>
  982. <constraint firstItem="vIe-dY-eFV" firstAttribute="centerY" secondItem="cDG-VY-47A" secondAttribute="centerY" id="OBq-WD-Est"/>
  983. <constraint firstItem="zD0-by-iGB" firstAttribute="leading" secondItem="cDG-VY-47A" secondAttribute="leading" id="P8G-SM-dDj"/>
  984. <constraint firstItem="FpT-hS-4nv" firstAttribute="centerY" secondItem="cDG-VY-47A" secondAttribute="centerY" id="ZHH-pC-8ut"/>
  985. <constraint firstAttribute="trailing" secondItem="zD0-by-iGB" secondAttribute="trailing" id="tep-Iw-oW6"/>
  986. <constraint firstAttribute="bottom" secondItem="zD0-by-iGB" secondAttribute="bottom" constant="-4" id="try-qP-lE6"/>
  987. <constraint firstItem="zD0-by-iGB" firstAttribute="top" secondItem="cDG-VY-47A" secondAttribute="top" constant="-4" id="v0w-fQ-daj"/>
  988. <constraint firstAttribute="trailing" secondItem="4lE-2l-Zsv" secondAttribute="trailing" id="xXU-wg-hT5"/>
  989. <constraint firstAttribute="trailing" secondItem="vIe-dY-eFV" secondAttribute="trailing" id="zHM-lK-gko"/>
  990. </constraints>
  991. </customView>
  992. </subviews>
  993. <constraints>
  994. <constraint firstItem="z9x-S8-WZs" firstAttribute="leading" secondItem="FgJ-qy-8H1" secondAttribute="trailing" id="1W1-0e-fP9"/>
  995. <constraint firstItem="cDG-VY-47A" firstAttribute="leading" secondItem="z9x-S8-WZs" secondAttribute="trailing" id="E0A-jO-qbX"/>
  996. <constraint firstItem="aGF-gc-JA0" firstAttribute="leading" secondItem="eva-hu-gUk" secondAttribute="trailing" id="OaW-nA-qJ7"/>
  997. <constraint firstItem="cDG-VY-47A" firstAttribute="top" secondItem="hPa-wJ-jja" secondAttribute="top" id="SVW-AT-OUI"/>
  998. <constraint firstAttribute="bottom" secondItem="cDG-VY-47A" secondAttribute="bottom" id="XtK-Gc-OOJ"/>
  999. <constraint firstItem="eva-hu-gUk" firstAttribute="leading" secondItem="hPa-wJ-jja" secondAttribute="leading" id="Zyp-BT-jky"/>
  1000. <constraint firstItem="aGF-gc-JA0" firstAttribute="top" secondItem="hPa-wJ-jja" secondAttribute="top" id="b2h-uC-g4N"/>
  1001. <constraint firstItem="FgJ-qy-8H1" firstAttribute="leading" secondItem="aGF-gc-JA0" secondAttribute="trailing" id="hfR-wp-DH8"/>
  1002. <constraint firstItem="z9x-S8-WZs" firstAttribute="top" secondItem="hPa-wJ-jja" secondAttribute="top" id="nGU-Jd-cf3"/>
  1003. <constraint firstAttribute="bottom" secondItem="z9x-S8-WZs" secondAttribute="bottom" id="ory-cY-1wx"/>
  1004. <constraint firstAttribute="bottom" secondItem="FgJ-qy-8H1" secondAttribute="bottom" id="rAH-Ti-7JZ"/>
  1005. <constraint firstItem="eva-hu-gUk" firstAttribute="centerY" secondItem="hPa-wJ-jja" secondAttribute="centerY" id="s1W-VX-U1C"/>
  1006. <constraint firstItem="FgJ-qy-8H1" firstAttribute="top" secondItem="hPa-wJ-jja" secondAttribute="top" id="vOB-SL-cbe"/>
  1007. <constraint firstAttribute="bottom" secondItem="aGF-gc-JA0" secondAttribute="bottom" id="xOi-pb-FA5"/>
  1008. </constraints>
  1009. </customView>
  1010. </subviews>
  1011. <constraints>
  1012. <constraint firstItem="hPa-wJ-jja" firstAttribute="leading" secondItem="ax6-Po-8DY" secondAttribute="leading" constant="32" id="1V0-nb-Qep"/>
  1013. <constraint firstItem="O9u-9e-atz" firstAttribute="top" secondItem="ax6-Po-8DY" secondAttribute="top" id="6TJ-p3-VQG"/>
  1014. <constraint firstAttribute="bottom" secondItem="hPa-wJ-jja" secondAttribute="bottom" id="G4J-xb-GIx"/>
  1015. <constraint firstItem="O9u-9e-atz" firstAttribute="leading" secondItem="ax6-Po-8DY" secondAttribute="leading" id="GGu-SO-Nfd"/>
  1016. <constraint firstAttribute="trailing" secondItem="O9u-9e-atz" secondAttribute="trailing" id="I1t-IY-cQY"/>
  1017. <constraint firstAttribute="trailing" secondItem="hPa-wJ-jja" secondAttribute="trailing" id="Iv3-77-6gh"/>
  1018. <constraint firstAttribute="bottom" secondItem="O9u-9e-atz" secondAttribute="bottom" id="d09-Fk-nAc"/>
  1019. <constraint firstItem="hPa-wJ-jja" firstAttribute="top" secondItem="ax6-Po-8DY" secondAttribute="top" id="yWd-Kd-l4i"/>
  1020. </constraints>
  1021. <connections>
  1022. <outlet property="bgColorView" destination="O9u-9e-atz" id="S5k-KY-RYz"/>
  1023. <outlet property="boxBottomConst" destination="kCL-ep-Qqv" id="z1q-lf-in4"/>
  1024. <outlet property="cellView1" destination="aGF-gc-JA0" id="1mN-Mh-yd5"/>
  1025. <outlet property="cellView2" destination="FgJ-qy-8H1" id="4i3-td-k3D"/>
  1026. <outlet property="cellView3" destination="z9x-S8-WZs" id="6Ao-in-AjU"/>
  1027. <outlet property="cellView4" destination="cDG-VY-47A" id="Wc2-nD-j2L"/>
  1028. <outlet property="lineBox" destination="lLf-YX-j0Y" id="I4H-K1-PFG"/>
  1029. <outlet property="platformsBox1" destination="zke-UU-SYF" id="XPi-zI-9bk"/>
  1030. <outlet property="platformsBox2" destination="U4h-vo-jXM" id="Ukt-1a-G3a"/>
  1031. <outlet property="platformsBox3" destination="3AU-Kv-VqK" id="P31-VL-adL"/>
  1032. <outlet property="platformsBox4" destination="4lE-2l-Zsv" id="6ug-Cg-4Sv"/>
  1033. <outlet property="selectBox1" destination="4B7-fb-f19" id="P8Q-TN-TI7"/>
  1034. <outlet property="selectBox2" destination="rSJ-SM-SEg" id="Fix-Hf-HD8"/>
  1035. <outlet property="selectBox3" destination="1z7-m0-GLT" id="FfS-WD-g0e"/>
  1036. <outlet property="selectBox4" destination="zD0-by-iGB" id="JZt-Qk-3gV"/>
  1037. <outlet property="textField" destination="eva-hu-gUk" id="TjR-4L-6ra"/>
  1038. <outlet property="value1ImageView" destination="NOL-fL-r6v" id="4EQ-oJ-Rgm"/>
  1039. <outlet property="value1Label" destination="yP8-88-gIa" id="5m7-mo-O3I"/>
  1040. <outlet property="value2ImageView" destination="BIW-Si-847" id="qRq-9b-ia2"/>
  1041. <outlet property="value2Label" destination="zkM-gU-DuR" id="a7b-F6-GRV"/>
  1042. <outlet property="value3ImageView" destination="zhs-ff-4yr" id="MwW-t0-lPA"/>
  1043. <outlet property="value3Label" destination="sHA-YJ-wQk" id="kYd-Et-SLf"/>
  1044. <outlet property="value4ImageView" destination="FpT-hS-4nv" id="6KL-hb-7UF"/>
  1045. <outlet property="value4Label" destination="vIe-dY-eFV" id="dB3-Yx-Udw"/>
  1046. <outlet property="viewWidth1" destination="fkI-4Z-hGD" id="PL4-nm-s4c"/>
  1047. <outlet property="viewWidth2" destination="duv-mG-QwY" id="WWp-rL-49f"/>
  1048. <outlet property="viewWidth3" destination="thc-2E-V9z" id="a0F-X9-vWa"/>
  1049. <outlet property="viewWidth4" destination="AW8-Bw-Ttu" id="Q7h-3S-k7W"/>
  1050. </connections>
  1051. </tableCellView>
  1052. <tableCellView identifier="KMProductCompareTableEmptyCell" id="g5k-gh-QUq" customClass="KMPurchaseCompareEmptyCell">
  1053. <rect key="frame" x="0.0" y="81" width="970" height="17"/>
  1054. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1055. </tableCellView>
  1056. </prototypeCellViews>
  1057. </tableColumn>
  1058. </tableColumns>
  1059. <connections>
  1060. <outlet property="dataSource" destination="-2" id="L9H-uH-Zed"/>
  1061. <outlet property="delegate" destination="-2" id="o5p-mQ-kPU"/>
  1062. </connections>
  1063. </tableView>
  1064. </subviews>
  1065. <nil key="backgroundColor"/>
  1066. </clipView>
  1067. <scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="JK2-Rh-Ry6">
  1068. <rect key="frame" x="-100" y="-100" width="223" height="15"/>
  1069. <autoresizingMask key="autoresizingMask"/>
  1070. </scroller>
  1071. <scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="CxV-Fx-vBi">
  1072. <rect key="frame" x="-100" y="-100" width="15" height="102"/>
  1073. <autoresizingMask key="autoresizingMask"/>
  1074. </scroller>
  1075. </scrollView>
  1076. </subviews>
  1077. <constraints>
  1078. <constraint firstItem="Nug-mc-XVk" firstAttribute="leading" secondItem="BHT-Ss-56B" secondAttribute="leading" id="Q4U-xE-Wrl"/>
  1079. <constraint firstAttribute="trailing" secondItem="Nug-mc-XVk" secondAttribute="trailing" id="ckg-Px-AvW"/>
  1080. <constraint firstItem="rhE-eG-YHH" firstAttribute="leading" secondItem="BHT-Ss-56B" secondAttribute="leading" id="r7o-Vn-hoO"/>
  1081. <constraint firstAttribute="bottom" secondItem="Nug-mc-XVk" secondAttribute="bottom" id="rRL-6S-cDc"/>
  1082. <constraint firstItem="rhE-eG-YHH" firstAttribute="top" secondItem="BHT-Ss-56B" secondAttribute="top" id="yMR-M9-1Vr"/>
  1083. <constraint firstItem="Nug-mc-XVk" firstAttribute="top" secondItem="rhE-eG-YHH" secondAttribute="bottom" id="ycM-8S-VYZ"/>
  1084. <constraint firstAttribute="trailing" secondItem="rhE-eG-YHH" secondAttribute="trailing" id="zCF-kp-OzQ"/>
  1085. </constraints>
  1086. </view>
  1087. <connections>
  1088. <outlet property="delegate" destination="-2" id="RuN-Vt-x4w"/>
  1089. </connections>
  1090. <point key="canvasLocation" x="96" y="-37"/>
  1091. </window>
  1092. <customView id="3eO-1v-ESh">
  1093. <rect key="frame" x="0.0" y="0.0" width="742" height="194"/>
  1094. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1095. <subviews>
  1096. <box boxType="custom" cornerRadius="12" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="TbI-cd-sd7">
  1097. <rect key="frame" x="0.0" y="-10" width="144" height="204"/>
  1098. <view key="contentView" id="Cgn-Mc-kdm">
  1099. <rect key="frame" x="1" y="1" width="142" height="202"/>
  1100. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1101. </view>
  1102. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1103. </box>
  1104. <box boxType="custom" borderWidth="0.0" cornerRadius="12" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="rtR-EN-GZe">
  1105. <rect key="frame" x="0.0" y="0.0" width="144" height="194"/>
  1106. <view key="contentView" id="WCI-ju-KkU">
  1107. <rect key="frame" x="0.0" y="0.0" width="144" height="194"/>
  1108. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1109. </view>
  1110. <constraints>
  1111. <constraint firstAttribute="width" constant="144" id="dmj-ri-GBh"/>
  1112. </constraints>
  1113. </box>
  1114. <box boxType="custom" cornerRadius="12" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="eSr-Ep-bND">
  1115. <rect key="frame" x="144" y="-10" width="300" height="204"/>
  1116. <view key="contentView" id="eqd-ll-M9M">
  1117. <rect key="frame" x="1" y="1" width="298" height="202"/>
  1118. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1119. </view>
  1120. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1121. </box>
  1122. <box boxType="custom" borderWidth="0.0" cornerRadius="12" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="vWg-fp-y8C">
  1123. <rect key="frame" x="144" y="0.0" width="300" height="194"/>
  1124. <view key="contentView" id="Ejr-hQ-Eb7">
  1125. <rect key="frame" x="0.0" y="0.0" width="300" height="194"/>
  1126. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1127. </view>
  1128. <constraints>
  1129. <constraint firstAttribute="width" constant="300" id="Fht-ba-6vO"/>
  1130. </constraints>
  1131. </box>
  1132. <box boxType="custom" cornerRadius="12" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="LHQ-au-Z59">
  1133. <rect key="frame" x="444" y="-10" width="154" height="204"/>
  1134. <view key="contentView" id="Up6-RM-FdN">
  1135. <rect key="frame" x="1" y="1" width="152" height="202"/>
  1136. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1137. </view>
  1138. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1139. </box>
  1140. <box boxType="custom" borderWidth="0.0" cornerRadius="12" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="zIJ-y3-LlP">
  1141. <rect key="frame" x="444" y="0.0" width="154" height="194"/>
  1142. <view key="contentView" id="dE0-cI-QcR">
  1143. <rect key="frame" x="0.0" y="0.0" width="154" height="194"/>
  1144. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1145. </view>
  1146. <constraints>
  1147. <constraint firstAttribute="width" constant="154" id="UZc-yX-zJD"/>
  1148. </constraints>
  1149. </box>
  1150. <box boxType="custom" cornerRadius="12" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="fpi-Pf-NfD">
  1151. <rect key="frame" x="598" y="-10" width="144" height="204"/>
  1152. <view key="contentView" id="3FX-SF-Qg1">
  1153. <rect key="frame" x="1" y="1" width="142" height="202"/>
  1154. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1155. </view>
  1156. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1157. </box>
  1158. <box boxType="custom" borderWidth="0.0" cornerRadius="12" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="Qq2-ys-Kfy">
  1159. <rect key="frame" x="598" y="0.0" width="144" height="194"/>
  1160. <view key="contentView" id="d4Y-o0-LU2">
  1161. <rect key="frame" x="0.0" y="0.0" width="144" height="194"/>
  1162. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1163. </view>
  1164. <constraints>
  1165. <constraint firstAttribute="width" constant="144" id="Vd3-5i-fHR"/>
  1166. </constraints>
  1167. </box>
  1168. </subviews>
  1169. <constraints>
  1170. <constraint firstItem="Qq2-ys-Kfy" firstAttribute="trailing" secondItem="fpi-Pf-NfD" secondAttribute="trailing" id="37c-ei-nKe"/>
  1171. <constraint firstItem="rtR-EN-GZe" firstAttribute="leading" secondItem="3eO-1v-ESh" secondAttribute="leading" id="3Sh-OV-Fcg"/>
  1172. <constraint firstAttribute="bottom" secondItem="TbI-cd-sd7" secondAttribute="bottom" constant="-10" id="5Kf-1s-q0v"/>
  1173. <constraint firstItem="zIJ-y3-LlP" firstAttribute="leading" secondItem="vWg-fp-y8C" secondAttribute="trailing" id="6oK-Ev-WT1"/>
  1174. <constraint firstAttribute="bottom" secondItem="eSr-Ep-bND" secondAttribute="bottom" constant="-10" id="82b-s7-JIM"/>
  1175. <constraint firstAttribute="bottom" secondItem="LHQ-au-Z59" secondAttribute="bottom" constant="-10" id="9rU-Zr-FNP"/>
  1176. <constraint firstAttribute="bottom" secondItem="rtR-EN-GZe" secondAttribute="bottom" id="A3n-Ux-Vej"/>
  1177. <constraint firstItem="vWg-fp-y8C" firstAttribute="top" secondItem="3eO-1v-ESh" secondAttribute="top" id="F0Z-DE-6NP"/>
  1178. <constraint firstAttribute="bottom" secondItem="zIJ-y3-LlP" secondAttribute="bottom" id="GqT-Yb-Baq"/>
  1179. <constraint firstItem="eSr-Ep-bND" firstAttribute="leading" secondItem="vWg-fp-y8C" secondAttribute="leading" id="Jtz-8a-Xvr"/>
  1180. <constraint firstAttribute="bottom" secondItem="Qq2-ys-Kfy" secondAttribute="bottom" id="KfJ-gC-k2T"/>
  1181. <constraint firstItem="fpi-Pf-NfD" firstAttribute="top" secondItem="3eO-1v-ESh" secondAttribute="top" id="MT1-qg-p4B"/>
  1182. <constraint firstAttribute="bottom" secondItem="fpi-Pf-NfD" secondAttribute="bottom" constant="-10" id="Mkm-un-HZv"/>
  1183. <constraint firstItem="zIJ-y3-LlP" firstAttribute="leading" secondItem="LHQ-au-Z59" secondAttribute="leading" id="OVh-rg-lza"/>
  1184. <constraint firstItem="zIJ-y3-LlP" firstAttribute="top" secondItem="3eO-1v-ESh" secondAttribute="top" id="RaI-2h-tAF"/>
  1185. <constraint firstItem="Qq2-ys-Kfy" firstAttribute="leading" secondItem="zIJ-y3-LlP" secondAttribute="trailing" id="Sem-ne-Tja"/>
  1186. <constraint firstItem="rtR-EN-GZe" firstAttribute="top" secondItem="3eO-1v-ESh" secondAttribute="top" id="Us2-G3-50n"/>
  1187. <constraint firstItem="LHQ-au-Z59" firstAttribute="top" secondItem="3eO-1v-ESh" secondAttribute="top" id="Vtl-Az-JnH"/>
  1188. <constraint firstAttribute="bottom" secondItem="vWg-fp-y8C" secondAttribute="bottom" id="Z3V-dr-rQX"/>
  1189. <constraint firstItem="TbI-cd-sd7" firstAttribute="leading" secondItem="3eO-1v-ESh" secondAttribute="leading" id="a9p-q5-1jV"/>
  1190. <constraint firstItem="vWg-fp-y8C" firstAttribute="leading" secondItem="TbI-cd-sd7" secondAttribute="trailing" id="ae4-HM-fS1"/>
  1191. <constraint firstItem="TbI-cd-sd7" firstAttribute="top" secondItem="3eO-1v-ESh" secondAttribute="top" id="ah8-Oq-ibA"/>
  1192. <constraint firstItem="Qq2-ys-Kfy" firstAttribute="leading" secondItem="fpi-Pf-NfD" secondAttribute="leading" id="bHj-e8-KYk"/>
  1193. <constraint firstItem="eSr-Ep-bND" firstAttribute="trailing" secondItem="vWg-fp-y8C" secondAttribute="trailing" id="ldT-vt-7wA"/>
  1194. <constraint firstItem="vWg-fp-y8C" firstAttribute="leading" secondItem="rtR-EN-GZe" secondAttribute="trailing" id="ohS-zf-fO9"/>
  1195. <constraint firstItem="Qq2-ys-Kfy" firstAttribute="top" secondItem="3eO-1v-ESh" secondAttribute="top" id="rBP-Gz-le1"/>
  1196. <constraint firstItem="zIJ-y3-LlP" firstAttribute="trailing" secondItem="LHQ-au-Z59" secondAttribute="trailing" id="vOt-uh-0yA"/>
  1197. <constraint firstItem="eSr-Ep-bND" firstAttribute="top" secondItem="3eO-1v-ESh" secondAttribute="top" id="xg4-2n-ELz"/>
  1198. </constraints>
  1199. <point key="canvasLocation" x="666" y="479"/>
  1200. </customView>
  1201. <customView id="ZLd-Sg-G8w">
  1202. <rect key="frame" x="0.0" y="0.0" width="144" height="200"/>
  1203. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1204. <subviews>
  1205. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="DVN-Eb-hSv">
  1206. <rect key="frame" x="53" y="92" width="38" height="17"/>
  1207. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="center" title="Free" id="QMA-CN-lD9">
  1208. <font key="font" metaFont="systemSemibold" size="14"/>
  1209. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1210. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1211. </textFieldCell>
  1212. </textField>
  1213. </subviews>
  1214. <constraints>
  1215. <constraint firstItem="DVN-Eb-hSv" firstAttribute="centerX" secondItem="ZLd-Sg-G8w" secondAttribute="centerX" id="5Dh-wD-QND"/>
  1216. <constraint firstItem="DVN-Eb-hSv" firstAttribute="centerY" secondItem="ZLd-Sg-G8w" secondAttribute="centerY" id="Qtk-Za-LYq"/>
  1217. </constraints>
  1218. <point key="canvasLocation" x="367" y="730"/>
  1219. </customView>
  1220. <customView id="Wx1-YC-wA8">
  1221. <rect key="frame" x="0.0" y="0.0" width="300" height="202"/>
  1222. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1223. <subviews>
  1224. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="mhT-uZ-2vj">
  1225. <rect key="frame" x="0.0" y="-10" width="300" height="212"/>
  1226. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="ComparativeBackground" id="wPS-b7-pyP"/>
  1227. </imageView>
  1228. <box boxType="custom" cornerRadius="4" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="Cqg-bI-mdE">
  1229. <rect key="frame" x="0.0" y="162" width="300" height="30"/>
  1230. <view key="contentView" id="eGU-A5-Vij">
  1231. <rect key="frame" x="1" y="1" width="298" height="28"/>
  1232. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1233. <subviews>
  1234. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="DfJ-Zd-LMd">
  1235. <rect key="frame" x="10" y="6" width="111" height="16"/>
  1236. <textFieldCell key="cell" lineBreakMode="clipping" title="Label" id="aJl-8b-xUw">
  1237. <font key="font" usesAppearanceFont="YES"/>
  1238. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1239. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1240. </textFieldCell>
  1241. </textField>
  1242. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="rzf-vX-hjW">
  1243. <rect key="frame" x="177" y="6" width="111" height="16"/>
  1244. <textFieldCell key="cell" lineBreakMode="clipping" title="Label" id="Ait-CF-XxB">
  1245. <font key="font" metaFont="system"/>
  1246. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1247. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1248. </textFieldCell>
  1249. </textField>
  1250. <box boxType="custom" cornerRadius="4" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="tpD-w8-ls0">
  1251. <rect key="frame" x="127" y="2" width="44" height="24"/>
  1252. <view key="contentView" id="tI3-cw-GeZ">
  1253. <rect key="frame" x="1" y="1" width="42" height="22"/>
  1254. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1255. <subviews>
  1256. <customView translatesAutoresizingMaskIntoConstraints="NO" id="CEE-TJ-pwY">
  1257. <rect key="frame" x="4" y="3" width="16" height="16"/>
  1258. <constraints>
  1259. <constraint firstAttribute="height" constant="16" id="eec-TI-9Cv"/>
  1260. <constraint firstAttribute="width" constant="16" id="iwE-1I-qw9"/>
  1261. </constraints>
  1262. </customView>
  1263. <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="85I-Ew-NJK">
  1264. <rect key="frame" x="0.0" y="0.0" width="42" height="22"/>
  1265. <buttonCell key="cell" type="bevel" title="Button" bezelStyle="rounded" alignment="center" imageScaling="proportionallyDown" inset="2" id="ciY-ac-E6h">
  1266. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1267. <font key="font" metaFont="system"/>
  1268. </buttonCell>
  1269. </button>
  1270. </subviews>
  1271. <constraints>
  1272. <constraint firstAttribute="trailing" secondItem="85I-Ew-NJK" secondAttribute="trailing" id="8eQ-5J-IdB"/>
  1273. <constraint firstItem="85I-Ew-NJK" firstAttribute="leading" secondItem="tI3-cw-GeZ" secondAttribute="leading" id="cfj-Sz-nEm"/>
  1274. <constraint firstItem="85I-Ew-NJK" firstAttribute="top" secondItem="tI3-cw-GeZ" secondAttribute="top" id="edD-0Z-ghJ"/>
  1275. <constraint firstAttribute="bottom" secondItem="85I-Ew-NJK" secondAttribute="bottom" id="edX-Ka-kOa"/>
  1276. <constraint firstItem="CEE-TJ-pwY" firstAttribute="centerY" secondItem="tI3-cw-GeZ" secondAttribute="centerY" id="uSi-9I-sSu"/>
  1277. <constraint firstItem="CEE-TJ-pwY" firstAttribute="leading" secondItem="tI3-cw-GeZ" secondAttribute="leading" constant="4" id="zfa-w6-GDp"/>
  1278. </constraints>
  1279. </view>
  1280. <constraints>
  1281. <constraint firstAttribute="height" constant="24" id="O4D-nW-Mcf"/>
  1282. <constraint firstAttribute="width" constant="44" id="WOx-ns-5zN"/>
  1283. </constraints>
  1284. </box>
  1285. </subviews>
  1286. <constraints>
  1287. <constraint firstItem="tpD-w8-ls0" firstAttribute="centerY" secondItem="eGU-A5-Vij" secondAttribute="centerY" id="G41-if-kMQ"/>
  1288. <constraint firstAttribute="trailing" secondItem="rzf-vX-hjW" secondAttribute="trailing" constant="12" id="J7o-Zz-OAB"/>
  1289. <constraint firstItem="rzf-vX-hjW" firstAttribute="leading" secondItem="tpD-w8-ls0" secondAttribute="trailing" constant="8" id="Thc-f8-LwG"/>
  1290. <constraint firstItem="rzf-vX-hjW" firstAttribute="centerY" secondItem="tpD-w8-ls0" secondAttribute="centerY" id="cyF-zn-vWS"/>
  1291. <constraint firstItem="tpD-w8-ls0" firstAttribute="centerX" secondItem="eGU-A5-Vij" secondAttribute="centerX" id="sb8-ty-HXf"/>
  1292. <constraint firstItem="DfJ-Zd-LMd" firstAttribute="centerY" secondItem="tpD-w8-ls0" secondAttribute="centerY" id="umY-Id-WCW"/>
  1293. <constraint firstItem="tpD-w8-ls0" firstAttribute="leading" secondItem="DfJ-Zd-LMd" secondAttribute="trailing" constant="8" id="vyt-NR-Prk"/>
  1294. <constraint firstItem="DfJ-Zd-LMd" firstAttribute="leading" secondItem="eGU-A5-Vij" secondAttribute="leading" constant="12" id="wdU-W2-gwK"/>
  1295. </constraints>
  1296. </view>
  1297. <constraints>
  1298. <constraint firstAttribute="height" constant="30" id="tWZ-3L-1WW"/>
  1299. </constraints>
  1300. <color key="fillColor" name="KMColor_Status_Err"/>
  1301. </box>
  1302. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="fHA-Fl-Rtx">
  1303. <rect key="frame" x="103" y="139" width="94" height="17"/>
  1304. <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="6-Month Pro" id="Q6q-4G-dia">
  1305. <font key="font" metaFont="systemSemibold" size="14"/>
  1306. <color key="textColor" red="0.99999600649999998" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1307. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1308. </textFieldCell>
  1309. </textField>
  1310. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ljn-U5-Aje">
  1311. <rect key="frame" x="-1" y="116" width="302" height="19"/>
  1312. <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="USD $9.99/mouth" id="Xpd-LM-0MH">
  1313. <font key="font" metaFont="systemBold" size="16"/>
  1314. <color key="textColor" red="0.0" green="0.53333333329999999" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1315. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1316. </textFieldCell>
  1317. </textField>
  1318. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Dv2-0w-DyH">
  1319. <rect key="frame" x="132" y="100" width="37" height="16"/>
  1320. <textFieldCell key="cell" lineBreakMode="clipping" title="Label" id="cMt-gK-lPe">
  1321. <font key="font" metaFont="system"/>
  1322. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1323. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1324. </textFieldCell>
  1325. </textField>
  1326. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Rwz-e9-wOa">
  1327. <rect key="frame" x="-2" y="85" width="304" height="15"/>
  1328. <textFieldCell key="cell" alignment="center" title="Billed every 6 months at USD $9.99 " id="MhV-tX-Q4h">
  1329. <font key="font" metaFont="cellTitle"/>
  1330. <color key="textColor" red="0.55294117649999996" green="0.55294117649999996" blue="0.55294117649999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1331. <color key="backgroundColor" red="0.55294117649999996" green="0.55294117649999996" blue="0.55294117649999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1332. </textFieldCell>
  1333. </textField>
  1334. <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Dql-gp-ebU" customClass="KMCustomButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
  1335. <rect key="frame" x="90" y="16" width="120" height="40"/>
  1336. <buttonCell key="cell" type="bevel" bezelStyle="regularSquare" alignment="center" imageScaling="proportionallyDown" inset="2" id="fgw-Yp-VRQ">
  1337. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1338. <font key="font" metaFont="system"/>
  1339. </buttonCell>
  1340. <constraints>
  1341. <constraint firstAttribute="height" constant="40" id="0CV-wA-36I"/>
  1342. <constraint firstAttribute="width" constant="120" id="fCD-kh-DRQ"/>
  1343. </constraints>
  1344. <connections>
  1345. <action selector="appstorePurchaseAction:" target="-2" id="33g-0T-Qzq"/>
  1346. </connections>
  1347. </button>
  1348. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="TGG-tp-JR2">
  1349. <rect key="frame" x="88" y="30" width="124" height="17"/>
  1350. <constraints>
  1351. <constraint firstAttribute="width" constant="120" id="5Dg-NB-GPk"/>
  1352. </constraints>
  1353. <textFieldCell key="cell" lineBreakMode="truncatingTail" alignment="center" title="Free Trial" id="2PM-lR-R0L">
  1354. <font key="font" metaFont="systemBold" size="14"/>
  1355. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1356. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1357. </textFieldCell>
  1358. </textField>
  1359. <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ep1-iy-QCy" customClass="KMCustomButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
  1360. <rect key="frame" x="90" y="16" width="120" height="40"/>
  1361. <buttonCell key="cell" type="bevel" bezelStyle="rounded" alignment="center" imageScaling="proportionallyDown" inset="2" id="Aue-MU-4OW">
  1362. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1363. <font key="font" metaFont="system"/>
  1364. </buttonCell>
  1365. <connections>
  1366. <action selector="appstorePurchaseAction:" target="-2" id="P4Q-ZO-PSp"/>
  1367. </connections>
  1368. </button>
  1369. <box boxType="custom" cornerRadius="4" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="MGz-Hq-oCc">
  1370. <rect key="frame" x="244" y="94" width="66" height="68"/>
  1371. <view key="contentView" id="cvl-of-wUg">
  1372. <rect key="frame" x="1" y="1" width="64" height="66"/>
  1373. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1374. <subviews>
  1375. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="lFH-1X-rmJ">
  1376. <rect key="frame" x="0.0" y="0.0" width="64" height="66"/>
  1377. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="kWq-GO-kEi"/>
  1378. </imageView>
  1379. <customView translatesAutoresizingMaskIntoConstraints="NO" id="6HA-sM-lqd">
  1380. <rect key="frame" x="-12" y="25" width="88" height="16"/>
  1381. <subviews>
  1382. <textField focusRingType="none" verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" translatesAutoresizingMaskIntoConstraints="NO" id="dKT-hk-xg2">
  1383. <rect key="frame" x="-2" y="0.0" width="92" height="16"/>
  1384. <textFieldCell key="cell" selectable="YES" title="Multiline Label" id="2rW-to-KQA">
  1385. <font key="font" metaFont="system"/>
  1386. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1387. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1388. </textFieldCell>
  1389. </textField>
  1390. </subviews>
  1391. <constraints>
  1392. <constraint firstItem="dKT-hk-xg2" firstAttribute="top" secondItem="6HA-sM-lqd" secondAttribute="top" id="E1f-Ab-P6Z"/>
  1393. <constraint firstAttribute="trailing" secondItem="dKT-hk-xg2" secondAttribute="trailing" id="Ngr-Sa-FJu"/>
  1394. <constraint firstItem="dKT-hk-xg2" firstAttribute="centerY" secondItem="6HA-sM-lqd" secondAttribute="centerY" id="cfa-Su-1RF"/>
  1395. <constraint firstItem="dKT-hk-xg2" firstAttribute="leading" secondItem="6HA-sM-lqd" secondAttribute="leading" id="fHb-hU-hDb"/>
  1396. <constraint firstAttribute="bottom" secondItem="dKT-hk-xg2" secondAttribute="bottom" id="fme-aF-eNZ"/>
  1397. <constraint firstItem="dKT-hk-xg2" firstAttribute="centerX" secondItem="6HA-sM-lqd" secondAttribute="centerX" id="nhs-M9-yJn"/>
  1398. </constraints>
  1399. </customView>
  1400. </subviews>
  1401. <constraints>
  1402. <constraint firstItem="lFH-1X-rmJ" firstAttribute="leading" secondItem="cvl-of-wUg" secondAttribute="leading" id="X5m-We-jdP"/>
  1403. <constraint firstAttribute="trailing" secondItem="lFH-1X-rmJ" secondAttribute="trailing" id="eCM-nv-OaI"/>
  1404. <constraint firstAttribute="bottom" secondItem="lFH-1X-rmJ" secondAttribute="bottom" id="gdn-5G-MBe"/>
  1405. <constraint firstItem="lFH-1X-rmJ" firstAttribute="top" secondItem="cvl-of-wUg" secondAttribute="top" id="kYn-Ir-WRM"/>
  1406. <constraint firstItem="6HA-sM-lqd" firstAttribute="centerY" secondItem="cvl-of-wUg" secondAttribute="centerY" id="lRV-ap-0RP"/>
  1407. <constraint firstItem="6HA-sM-lqd" firstAttribute="centerX" secondItem="cvl-of-wUg" secondAttribute="centerX" id="soV-rN-xTW"/>
  1408. </constraints>
  1409. </view>
  1410. <constraints>
  1411. <constraint firstAttribute="width" constant="66" id="N95-UW-9rd"/>
  1412. <constraint firstAttribute="height" constant="68" id="Zze-Cn-QYX"/>
  1413. </constraints>
  1414. </box>
  1415. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="3mf-Iq-URd">
  1416. <rect key="frame" x="180" y="33" width="46" height="47"/>
  1417. <constraints>
  1418. <constraint firstAttribute="width" constant="46.049999999999997" id="3bb-vj-l7C"/>
  1419. <constraint firstAttribute="height" constant="47.119999999999997" id="itV-Mi-2yQ"/>
  1420. </constraints>
  1421. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="l0b-1D-sfU"/>
  1422. </imageView>
  1423. </subviews>
  1424. <constraints>
  1425. <constraint firstItem="Cqg-bI-mdE" firstAttribute="leading" secondItem="Wx1-YC-wA8" secondAttribute="leading" id="217-nn-7ai"/>
  1426. <constraint firstItem="3mf-Iq-URd" firstAttribute="leading" secondItem="Dql-gp-ebU" secondAttribute="trailing" constant="-30" id="2zg-Fu-cCj"/>
  1427. <constraint firstItem="Dql-gp-ebU" firstAttribute="leading" secondItem="ep1-iy-QCy" secondAttribute="leading" id="3VC-Yj-BTh"/>
  1428. <constraint firstItem="Rwz-e9-wOa" firstAttribute="leading" secondItem="Wx1-YC-wA8" secondAttribute="leading" id="4bf-1G-d43"/>
  1429. <constraint firstAttribute="trailing" secondItem="ljn-U5-Aje" secondAttribute="trailing" constant="1" id="4tC-X6-bRb"/>
  1430. <constraint firstItem="fHA-Fl-Rtx" firstAttribute="centerX" secondItem="Wx1-YC-wA8" secondAttribute="centerX" id="5ba-13-weR"/>
  1431. <constraint firstAttribute="trailing" secondItem="Rwz-e9-wOa" secondAttribute="trailing" id="ANh-3a-Qbg"/>
  1432. <constraint firstAttribute="trailing" secondItem="Cqg-bI-mdE" secondAttribute="trailing" id="BTh-jS-VVp"/>
  1433. <constraint firstItem="ljn-U5-Aje" firstAttribute="leading" secondItem="Wx1-YC-wA8" secondAttribute="leading" constant="1" id="Bph-XN-g2g"/>
  1434. <constraint firstItem="mhT-uZ-2vj" firstAttribute="top" secondItem="Wx1-YC-wA8" secondAttribute="top" id="Ezt-qP-v3E"/>
  1435. <constraint firstItem="TGG-tp-JR2" firstAttribute="centerY" secondItem="Dql-gp-ebU" secondAttribute="centerY" constant="-2" id="FUN-av-zmW"/>
  1436. <constraint firstItem="Dql-gp-ebU" firstAttribute="centerX" secondItem="TGG-tp-JR2" secondAttribute="centerX" id="Fs0-pp-iOB"/>
  1437. <constraint firstAttribute="bottom" secondItem="mhT-uZ-2vj" secondAttribute="bottom" constant="-10" id="H0W-HG-mWH"/>
  1438. <constraint firstAttribute="trailing" secondItem="MGz-Hq-oCc" secondAttribute="trailing" constant="-10" id="NiW-ei-IVl"/>
  1439. <constraint firstAttribute="trailing" secondItem="mhT-uZ-2vj" secondAttribute="trailing" id="Ot6-aG-aco"/>
  1440. <constraint firstItem="Dv2-0w-DyH" firstAttribute="centerX" secondItem="ljn-U5-Aje" secondAttribute="centerX" id="Pf6-1k-n1b"/>
  1441. <constraint firstItem="fHA-Fl-Rtx" firstAttribute="top" secondItem="Wx1-YC-wA8" secondAttribute="top" constant="46" id="Q1T-ao-f38"/>
  1442. <constraint firstItem="Rwz-e9-wOa" firstAttribute="top" secondItem="ljn-U5-Aje" secondAttribute="bottom" constant="16" id="TWZ-mS-ih1"/>
  1443. <constraint firstAttribute="bottom" secondItem="3mf-Iq-URd" secondAttribute="bottom" constant="32.880000000000003" id="UwV-Yp-7T1"/>
  1444. <constraint firstItem="Dql-gp-ebU" firstAttribute="top" secondItem="ep1-iy-QCy" secondAttribute="top" id="Yua-AA-way"/>
  1445. <constraint firstItem="Cqg-bI-mdE" firstAttribute="top" secondItem="Wx1-YC-wA8" secondAttribute="top" constant="10" id="aJD-72-HLB"/>
  1446. <constraint firstAttribute="bottom" secondItem="Dql-gp-ebU" secondAttribute="bottom" constant="16" id="eEc-Uz-MsU"/>
  1447. <constraint firstItem="Dql-gp-ebU" firstAttribute="bottom" secondItem="ep1-iy-QCy" secondAttribute="bottom" id="eeY-Iy-I1w"/>
  1448. <constraint firstItem="MGz-Hq-oCc" firstAttribute="top" secondItem="Wx1-YC-wA8" secondAttribute="top" constant="40" id="f9B-A9-Ny9"/>
  1449. <constraint firstItem="Dql-gp-ebU" firstAttribute="centerX" secondItem="Wx1-YC-wA8" secondAttribute="centerX" id="gwq-xA-unG"/>
  1450. <constraint firstItem="mhT-uZ-2vj" firstAttribute="leading" secondItem="Wx1-YC-wA8" secondAttribute="leading" id="obr-qm-u0O"/>
  1451. <constraint firstItem="Dv2-0w-DyH" firstAttribute="top" secondItem="ljn-U5-Aje" secondAttribute="bottom" id="s6u-D3-fnU"/>
  1452. <constraint firstItem="Dql-gp-ebU" firstAttribute="top" relation="greaterThanOrEqual" secondItem="Rwz-e9-wOa" secondAttribute="bottom" id="sel-N2-Tay"/>
  1453. <constraint firstItem="ljn-U5-Aje" firstAttribute="top" secondItem="fHA-Fl-Rtx" secondAttribute="bottom" constant="4" id="wYv-xt-d6s"/>
  1454. <constraint firstItem="Dql-gp-ebU" firstAttribute="trailing" secondItem="ep1-iy-QCy" secondAttribute="trailing" id="zzA-vd-ACh"/>
  1455. </constraints>
  1456. <point key="canvasLocation" x="632" y="730"/>
  1457. </customView>
  1458. <customView id="5cj-A5-MFN">
  1459. <rect key="frame" x="0.0" y="0.0" width="299" height="202"/>
  1460. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1461. <subviews>
  1462. <button tag="1" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="3Ik-8P-4RK" customClass="KMButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
  1463. <rect key="frame" x="90" y="16" width="120" height="40"/>
  1464. <buttonCell key="cell" type="bevel" bezelStyle="rounded" imagePosition="overlaps" alignment="center" imageScaling="axesIndependently" inset="2" id="qe5-qU-Z1A">
  1465. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1466. <font key="font" metaFont="systemBold" size="14"/>
  1467. </buttonCell>
  1468. <constraints>
  1469. <constraint firstAttribute="width" constant="120" id="JSg-MM-9wg"/>
  1470. <constraint firstAttribute="height" constant="40" id="b4I-Jh-WXV"/>
  1471. </constraints>
  1472. <connections>
  1473. <action selector="appstorePurchaseAction:" target="-2" id="nEz-Mc-W3X"/>
  1474. </connections>
  1475. </button>
  1476. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="3QB-3J-VcS">
  1477. <rect key="frame" x="134" y="30" width="31" height="17"/>
  1478. <textFieldCell key="cell" lineBreakMode="clipping" title="Buy" id="9Cm-Cs-vUl">
  1479. <font key="font" metaFont="systemBold" size="14"/>
  1480. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1481. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1482. </textFieldCell>
  1483. </textField>
  1484. <button tag="1" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ZEN-97-7fT" customClass="KMButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
  1485. <rect key="frame" x="90" y="16" width="120" height="40"/>
  1486. <buttonCell key="cell" type="bevel" bezelStyle="rounded" imagePosition="overlaps" alignment="center" imageScaling="axesIndependently" inset="2" id="0Tg-Jy-lFf">
  1487. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1488. <font key="font" metaFont="systemBold" size="14"/>
  1489. </buttonCell>
  1490. <connections>
  1491. <action selector="appstorePurchaseAction:" target="-2" id="zY8-Ax-5UW"/>
  1492. </connections>
  1493. </button>
  1494. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="0ur-PV-kxY">
  1495. <rect key="frame" x="253" y="36" width="46" height="47"/>
  1496. <constraints>
  1497. <constraint firstAttribute="height" constant="47.119999999999997" id="X0M-9X-QTB"/>
  1498. <constraint firstAttribute="width" constant="46.049999999999997" id="yQZ-3y-J3b"/>
  1499. </constraints>
  1500. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="nwk-tb-Ov3"/>
  1501. </imageView>
  1502. <customView translatesAutoresizingMaskIntoConstraints="NO" id="YaA-Bf-f9V">
  1503. <rect key="frame" x="5" y="64" width="289" height="126"/>
  1504. <subviews>
  1505. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="cgF-jQ-Q0K">
  1506. <rect key="frame" x="93" y="39" width="103" height="19"/>
  1507. <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="USD $59.99" id="H9D-N9-VLY">
  1508. <font key="font" metaFont="systemBold" size="16"/>
  1509. <color key="textColor" red="0.0" green="0.53333333329999999" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1510. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1511. </textFieldCell>
  1512. </textField>
  1513. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="u1v-EM-8Bp">
  1514. <rect key="frame" x="64" y="20" width="162" height="15"/>
  1515. <textFieldCell key="cell" alignment="center" title="Auto-renewal | Billed yearly" id="qC7-pK-mXD">
  1516. <font key="font" metaFont="cellTitle"/>
  1517. <color key="textColor" red="0.55294117649999996" green="0.55294117649999996" blue="0.55294117649999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1518. <color key="backgroundColor" red="0.55294117649999996" green="0.55294117649999996" blue="0.55294117649999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1519. </textFieldCell>
  1520. </textField>
  1521. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Z2t-T7-CMh">
  1522. <rect key="frame" x="113" y="0.0" width="64" height="16"/>
  1523. <textFieldCell key="cell" lineBreakMode="clipping" title="(Tax Incl.)" id="a0F-6l-WNE">
  1524. <font key="font" usesAppearanceFont="YES"/>
  1525. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1526. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1527. </textFieldCell>
  1528. </textField>
  1529. <customView translatesAutoresizingMaskIntoConstraints="NO" id="06E-ch-V27">
  1530. <rect key="frame" x="0.0" y="62" width="289" height="64"/>
  1531. <subviews>
  1532. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="yl6-4d-E04">
  1533. <rect key="frame" x="-2" y="15" width="293" height="34"/>
  1534. <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="PDF Reader Pro Standard
Annual Plan" id="6oh-fB-yXw">
  1535. <font key="font" metaFont="systemSemibold" size="14"/>
  1536. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1537. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1538. </textFieldCell>
  1539. </textField>
  1540. </subviews>
  1541. <constraints>
  1542. <constraint firstItem="yl6-4d-E04" firstAttribute="leading" secondItem="06E-ch-V27" secondAttribute="leading" id="2ai-Xb-xtC"/>
  1543. <constraint firstAttribute="trailing" secondItem="yl6-4d-E04" secondAttribute="trailing" id="Ate-xd-3p4"/>
  1544. <constraint firstItem="yl6-4d-E04" firstAttribute="centerX" secondItem="06E-ch-V27" secondAttribute="centerX" id="Oxs-RK-hjr"/>
  1545. <constraint firstItem="yl6-4d-E04" firstAttribute="centerY" secondItem="06E-ch-V27" secondAttribute="centerY" id="jz0-hF-OoW"/>
  1546. </constraints>
  1547. </customView>
  1548. </subviews>
  1549. <constraints>
  1550. <constraint firstAttribute="bottom" secondItem="Z2t-T7-CMh" secondAttribute="bottom" id="4Or-03-2cT"/>
  1551. <constraint firstItem="06E-ch-V27" firstAttribute="top" secondItem="YaA-Bf-f9V" secondAttribute="top" id="5lH-kn-eSS"/>
  1552. <constraint firstItem="cgF-jQ-Q0K" firstAttribute="centerX" secondItem="YaA-Bf-f9V" secondAttribute="centerX" id="9s0-1y-Bm6"/>
  1553. <constraint firstItem="cgF-jQ-Q0K" firstAttribute="top" secondItem="06E-ch-V27" secondAttribute="bottom" constant="4" id="JcW-HC-hL5"/>
  1554. <constraint firstItem="u1v-EM-8Bp" firstAttribute="top" secondItem="cgF-jQ-Q0K" secondAttribute="bottom" constant="4" id="Ovy-Hj-Ev1"/>
  1555. <constraint firstAttribute="trailing" secondItem="06E-ch-V27" secondAttribute="trailing" id="cKP-VM-kgc"/>
  1556. <constraint firstItem="06E-ch-V27" firstAttribute="leading" secondItem="YaA-Bf-f9V" secondAttribute="leading" id="ng0-7R-1P2"/>
  1557. <constraint firstItem="Z2t-T7-CMh" firstAttribute="centerX" secondItem="YaA-Bf-f9V" secondAttribute="centerX" id="rfY-a5-7tX"/>
  1558. <constraint firstItem="u1v-EM-8Bp" firstAttribute="centerX" secondItem="YaA-Bf-f9V" secondAttribute="centerX" id="xnd-KS-gc4"/>
  1559. <constraint firstItem="Z2t-T7-CMh" firstAttribute="top" secondItem="u1v-EM-8Bp" secondAttribute="bottom" constant="4" id="yhb-qp-CW6"/>
  1560. </constraints>
  1561. </customView>
  1562. </subviews>
  1563. <constraints>
  1564. <constraint firstItem="3Ik-8P-4RK" firstAttribute="leading" secondItem="ZEN-97-7fT" secondAttribute="leading" id="209-QG-usU"/>
  1565. <constraint firstItem="3Ik-8P-4RK" firstAttribute="top" secondItem="YaA-Bf-f9V" secondAttribute="bottom" constant="8" id="2tU-1I-acb"/>
  1566. <constraint firstItem="YaA-Bf-f9V" firstAttribute="leading" secondItem="5cj-A5-MFN" secondAttribute="leading" constant="4.75" id="7BQ-d5-yAe"/>
  1567. <constraint firstItem="3Ik-8P-4RK" firstAttribute="centerY" secondItem="3QB-3J-VcS" secondAttribute="centerY" constant="2" id="8la-f7-VXZ"/>
  1568. <constraint firstAttribute="trailing" secondItem="0ur-PV-kxY" secondAttribute="trailing" id="9kf-ej-V6O"/>
  1569. <constraint firstItem="3Ik-8P-4RK" firstAttribute="trailing" secondItem="ZEN-97-7fT" secondAttribute="trailing" id="LZU-nQ-IRZ"/>
  1570. <constraint firstItem="3Ik-8P-4RK" firstAttribute="centerX" secondItem="3QB-3J-VcS" secondAttribute="centerX" id="Rfn-t2-0hz"/>
  1571. <constraint firstItem="3Ik-8P-4RK" firstAttribute="bottom" secondItem="ZEN-97-7fT" secondAttribute="bottom" id="U77-Bw-rwm"/>
  1572. <constraint firstItem="3Ik-8P-4RK" firstAttribute="centerX" secondItem="5cj-A5-MFN" secondAttribute="centerX" id="kbg-fD-rST"/>
  1573. <constraint firstAttribute="bottom" secondItem="3Ik-8P-4RK" secondAttribute="bottom" constant="16" id="ozS-00-NXY"/>
  1574. <constraint firstItem="3Ik-8P-4RK" firstAttribute="top" secondItem="ZEN-97-7fT" secondAttribute="top" id="p1f-37-EfD"/>
  1575. <constraint firstItem="YaA-Bf-f9V" firstAttribute="top" secondItem="5cj-A5-MFN" secondAttribute="top" constant="12" id="pfv-KF-REV"/>
  1576. <constraint firstAttribute="trailing" secondItem="YaA-Bf-f9V" secondAttribute="trailing" constant="4.75" id="rZK-lV-YSQ"/>
  1577. <constraint firstAttribute="bottom" secondItem="0ur-PV-kxY" secondAttribute="bottom" constant="35.880000000000003" id="xjA-q7-eB7"/>
  1578. </constraints>
  1579. <point key="canvasLocation" x="1028" y="731"/>
  1580. </customView>
  1581. <customView id="fce-hX-IV6">
  1582. <rect key="frame" x="0.0" y="0.0" width="299" height="202"/>
  1583. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1584. <subviews>
  1585. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Y18-DK-FWw">
  1586. <rect key="frame" x="0.0" y="-10" width="299" height="212"/>
  1587. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="ComparativeBackground" id="tbr-y9-h9V"/>
  1588. </imageView>
  1589. <button tag="2" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="SFA-A0-TRs" customClass="KMButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
  1590. <rect key="frame" x="90" y="16" width="120" height="40"/>
  1591. <buttonCell key="cell" type="bevel" bezelStyle="rounded" imagePosition="overlaps" alignment="center" imageScaling="axesIndependently" inset="2" id="fjI-CT-M5Z">
  1592. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1593. <font key="font" metaFont="systemBold" size="14"/>
  1594. </buttonCell>
  1595. <constraints>
  1596. <constraint firstAttribute="width" constant="120" id="auG-ge-hJC"/>
  1597. <constraint firstAttribute="height" constant="40" id="uIb-xr-rLd"/>
  1598. </constraints>
  1599. <connections>
  1600. <action selector="appstorePurchaseAction:" target="-2" id="B3D-Np-IbR"/>
  1601. </connections>
  1602. </button>
  1603. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="D71-TX-fVd">
  1604. <rect key="frame" x="134" y="30" width="31" height="17"/>
  1605. <textFieldCell key="cell" lineBreakMode="clipping" title="Buy" id="1Uu-6Q-0aw">
  1606. <font key="font" metaFont="systemBold" size="14"/>
  1607. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1608. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1609. </textFieldCell>
  1610. </textField>
  1611. <button tag="2" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="JRG-Tt-bke" customClass="KMButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
  1612. <rect key="frame" x="90" y="16" width="120" height="40"/>
  1613. <buttonCell key="cell" type="bevel" bezelStyle="rounded" imagePosition="overlaps" alignment="center" imageScaling="axesIndependently" inset="2" id="BxF-VB-cFe">
  1614. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1615. <font key="font" metaFont="systemBold" size="14"/>
  1616. </buttonCell>
  1617. <connections>
  1618. <action selector="appstorePurchaseAction:" target="-2" id="VhM-O5-7oH"/>
  1619. </connections>
  1620. </button>
  1621. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="DQR-1s-l8u">
  1622. <rect key="frame" x="253" y="36" width="46" height="47"/>
  1623. <constraints>
  1624. <constraint firstAttribute="height" constant="47.119999999999997" id="4v3-zu-Z3K"/>
  1625. <constraint firstAttribute="width" constant="46.049999999999997" id="P2O-Kg-a7h"/>
  1626. </constraints>
  1627. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="X2f-6s-2yK"/>
  1628. </imageView>
  1629. <customView translatesAutoresizingMaskIntoConstraints="NO" id="5lC-K6-aWW">
  1630. <rect key="frame" x="5" y="64" width="289" height="126"/>
  1631. <subviews>
  1632. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ABz-rY-vFD">
  1633. <rect key="frame" x="93" y="39" width="103" height="19"/>
  1634. <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="USD $59.99" id="C5d-NE-YDk">
  1635. <font key="font" metaFont="systemBold" size="16"/>
  1636. <color key="textColor" red="0.0" green="0.53333333329999999" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1637. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1638. </textFieldCell>
  1639. </textField>
  1640. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="oie-PG-6He">
  1641. <rect key="frame" x="64" y="20" width="162" height="15"/>
  1642. <textFieldCell key="cell" alignment="center" title="Auto-renewal | Billed yearly" id="vaK-iW-5of">
  1643. <font key="font" metaFont="cellTitle"/>
  1644. <color key="textColor" red="0.55294117649999996" green="0.55294117649999996" blue="0.55294117649999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1645. <color key="backgroundColor" red="0.55294117649999996" green="0.55294117649999996" blue="0.55294117649999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1646. </textFieldCell>
  1647. </textField>
  1648. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="0HH-bq-tk2">
  1649. <rect key="frame" x="113" y="0.0" width="64" height="16"/>
  1650. <textFieldCell key="cell" lineBreakMode="clipping" title="(Tax Incl.)" id="YkZ-Cd-Y3s">
  1651. <font key="font" usesAppearanceFont="YES"/>
  1652. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1653. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1654. </textFieldCell>
  1655. </textField>
  1656. <customView translatesAutoresizingMaskIntoConstraints="NO" id="OLo-E3-D6L">
  1657. <rect key="frame" x="0.0" y="62" width="289" height="64"/>
  1658. <subviews>
  1659. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Ll7-An-0YH">
  1660. <rect key="frame" x="-2" y="15" width="293" height="34"/>
  1661. <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="PDF Reader Pro Advanced
Annual Plan" id="nN2-mJ-xpd">
  1662. <font key="font" metaFont="systemSemibold" size="14"/>
  1663. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1664. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1665. </textFieldCell>
  1666. </textField>
  1667. </subviews>
  1668. <constraints>
  1669. <constraint firstItem="Ll7-An-0YH" firstAttribute="leading" secondItem="OLo-E3-D6L" secondAttribute="leading" id="WIQ-A4-UrG"/>
  1670. <constraint firstItem="Ll7-An-0YH" firstAttribute="centerX" secondItem="OLo-E3-D6L" secondAttribute="centerX" id="gKf-48-k48"/>
  1671. <constraint firstAttribute="trailing" secondItem="Ll7-An-0YH" secondAttribute="trailing" id="kDv-yU-Mhc"/>
  1672. <constraint firstItem="Ll7-An-0YH" firstAttribute="centerY" secondItem="OLo-E3-D6L" secondAttribute="centerY" id="wkM-UL-LQF"/>
  1673. </constraints>
  1674. </customView>
  1675. </subviews>
  1676. <constraints>
  1677. <constraint firstItem="OLo-E3-D6L" firstAttribute="top" secondItem="5lC-K6-aWW" secondAttribute="top" id="4uM-56-PGN"/>
  1678. <constraint firstItem="oie-PG-6He" firstAttribute="centerX" secondItem="5lC-K6-aWW" secondAttribute="centerX" id="F3X-QR-GG6"/>
  1679. <constraint firstItem="oie-PG-6He" firstAttribute="top" secondItem="ABz-rY-vFD" secondAttribute="bottom" constant="4" id="Mtq-Kq-LxB"/>
  1680. <constraint firstItem="0HH-bq-tk2" firstAttribute="top" secondItem="oie-PG-6He" secondAttribute="bottom" constant="4" id="Rlo-MH-klG"/>
  1681. <constraint firstItem="ABz-rY-vFD" firstAttribute="centerX" secondItem="5lC-K6-aWW" secondAttribute="centerX" id="ULd-tv-JoN"/>
  1682. <constraint firstItem="0HH-bq-tk2" firstAttribute="centerX" secondItem="5lC-K6-aWW" secondAttribute="centerX" id="WEc-zD-vMV"/>
  1683. <constraint firstItem="ABz-rY-vFD" firstAttribute="top" secondItem="OLo-E3-D6L" secondAttribute="bottom" constant="4" id="gnh-rp-Cem"/>
  1684. <constraint firstItem="OLo-E3-D6L" firstAttribute="leading" secondItem="5lC-K6-aWW" secondAttribute="leading" id="ja7-qa-m6K"/>
  1685. <constraint firstAttribute="bottom" secondItem="0HH-bq-tk2" secondAttribute="bottom" id="rJu-mV-Cp0"/>
  1686. <constraint firstAttribute="trailing" secondItem="OLo-E3-D6L" secondAttribute="trailing" id="wHv-u5-eTc"/>
  1687. </constraints>
  1688. </customView>
  1689. </subviews>
  1690. <constraints>
  1691. <constraint firstAttribute="trailing" secondItem="DQR-1s-l8u" secondAttribute="trailing" id="19p-x7-bOw"/>
  1692. <constraint firstItem="SFA-A0-TRs" firstAttribute="top" secondItem="5lC-K6-aWW" secondAttribute="bottom" constant="8" id="1BI-cj-edg"/>
  1693. <constraint firstItem="SFA-A0-TRs" firstAttribute="centerX" secondItem="D71-TX-fVd" secondAttribute="centerX" id="7mx-Zo-GWI"/>
  1694. <constraint firstItem="Y18-DK-FWw" firstAttribute="leading" secondItem="fce-hX-IV6" secondAttribute="leading" id="961-gv-rLy"/>
  1695. <constraint firstAttribute="bottom" secondItem="DQR-1s-l8u" secondAttribute="bottom" constant="35.880000000000003" id="I3s-Gk-Huv"/>
  1696. <constraint firstItem="5lC-K6-aWW" firstAttribute="top" secondItem="fce-hX-IV6" secondAttribute="top" constant="12" id="IOk-kA-c6s"/>
  1697. <constraint firstAttribute="bottom" secondItem="SFA-A0-TRs" secondAttribute="bottom" constant="16" id="KWz-D1-Csu"/>
  1698. <constraint firstItem="SFA-A0-TRs" firstAttribute="top" secondItem="JRG-Tt-bke" secondAttribute="top" id="LXy-Dm-G0N"/>
  1699. <constraint firstItem="SFA-A0-TRs" firstAttribute="centerY" secondItem="D71-TX-fVd" secondAttribute="centerY" constant="2" id="QVG-kW-Uwr"/>
  1700. <constraint firstItem="SFA-A0-TRs" firstAttribute="centerX" secondItem="fce-hX-IV6" secondAttribute="centerX" id="Qas-sW-9s5"/>
  1701. <constraint firstItem="SFA-A0-TRs" firstAttribute="leading" secondItem="JRG-Tt-bke" secondAttribute="leading" id="S1h-53-Yh8"/>
  1702. <constraint firstAttribute="bottom" secondItem="Y18-DK-FWw" secondAttribute="bottom" constant="-10" id="WHV-cS-Pjt"/>
  1703. <constraint firstAttribute="trailing" secondItem="Y18-DK-FWw" secondAttribute="trailing" id="WuR-zE-Avi"/>
  1704. <constraint firstAttribute="trailing" secondItem="5lC-K6-aWW" secondAttribute="trailing" constant="4.75" id="ZuA-sX-o5L"/>
  1705. <constraint firstItem="SFA-A0-TRs" firstAttribute="trailing" secondItem="JRG-Tt-bke" secondAttribute="trailing" id="fVw-ws-ksN"/>
  1706. <constraint firstItem="5lC-K6-aWW" firstAttribute="leading" secondItem="fce-hX-IV6" secondAttribute="leading" constant="4.75" id="hDG-RD-9E2"/>
  1707. <constraint firstItem="SFA-A0-TRs" firstAttribute="bottom" secondItem="JRG-Tt-bke" secondAttribute="bottom" id="l1K-zH-lpR"/>
  1708. <constraint firstItem="Y18-DK-FWw" firstAttribute="top" secondItem="fce-hX-IV6" secondAttribute="top" id="wq9-Kr-SEO"/>
  1709. </constraints>
  1710. <point key="canvasLocation" x="1390" y="731"/>
  1711. </customView>
  1712. <customView id="XVZ-jI-UYX">
  1713. <rect key="frame" x="0.0" y="0.0" width="299" height="202"/>
  1714. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1715. <subviews>
  1716. <button tag="3" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="zmz-yq-8SZ" customClass="KMButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
  1717. <rect key="frame" x="90" y="16" width="120" height="40"/>
  1718. <buttonCell key="cell" type="bevel" bezelStyle="rounded" imagePosition="overlaps" alignment="center" imageScaling="axesIndependently" inset="2" id="9jy-F5-8Ox">
  1719. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1720. <font key="font" metaFont="systemBold" size="14"/>
  1721. </buttonCell>
  1722. <constraints>
  1723. <constraint firstAttribute="width" constant="120" id="E7g-Ky-oXG"/>
  1724. <constraint firstAttribute="height" constant="40" id="bKt-uW-z4d"/>
  1725. </constraints>
  1726. <connections>
  1727. <action selector="appstorePurchaseAction:" target="-2" id="ldu-GI-W5M"/>
  1728. </connections>
  1729. </button>
  1730. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="w8I-Fc-Axv">
  1731. <rect key="frame" x="134" y="30" width="31" height="17"/>
  1732. <textFieldCell key="cell" lineBreakMode="clipping" title="Buy" id="9vY-xE-ZXc">
  1733. <font key="font" metaFont="systemBold" size="14"/>
  1734. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1735. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1736. </textFieldCell>
  1737. </textField>
  1738. <button tag="3" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="5cy-wO-SqL" customClass="KMButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
  1739. <rect key="frame" x="90" y="16" width="120" height="40"/>
  1740. <buttonCell key="cell" type="bevel" bezelStyle="rounded" imagePosition="overlaps" alignment="center" imageScaling="axesIndependently" inset="2" id="PEx-dX-RcI">
  1741. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1742. <font key="font" metaFont="systemBold" size="14"/>
  1743. </buttonCell>
  1744. <connections>
  1745. <action selector="appstorePurchaseAction:" target="-2" id="Fwa-9L-zZH"/>
  1746. </connections>
  1747. </button>
  1748. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="sn9-km-1Vm">
  1749. <rect key="frame" x="253" y="36" width="46" height="47"/>
  1750. <constraints>
  1751. <constraint firstAttribute="height" constant="47.119999999999997" id="T0Z-IT-cf1"/>
  1752. <constraint firstAttribute="width" constant="46.049999999999997" id="ayW-m1-She"/>
  1753. </constraints>
  1754. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="80x-IY-jyF"/>
  1755. </imageView>
  1756. <customView translatesAutoresizingMaskIntoConstraints="NO" id="C1f-JL-m0e">
  1757. <rect key="frame" x="5" y="64" width="289" height="126"/>
  1758. <subviews>
  1759. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="okn-VX-xhH">
  1760. <rect key="frame" x="93" y="39" width="103" height="19"/>
  1761. <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="USD $59.99" id="cKO-QB-euV">
  1762. <font key="font" metaFont="systemBold" size="16"/>
  1763. <color key="textColor" red="0.0" green="0.53333333329999999" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1764. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1765. </textFieldCell>
  1766. </textField>
  1767. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="CHT-d8-7WR">
  1768. <rect key="frame" x="87" y="20" width="115" height="15"/>
  1769. <textFieldCell key="cell" alignment="center" title="one-time purchase" id="WpW-sG-ZnF">
  1770. <font key="font" metaFont="cellTitle"/>
  1771. <color key="textColor" red="0.55294117649999996" green="0.55294117649999996" blue="0.55294117649999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1772. <color key="backgroundColor" red="0.55294117649999996" green="0.55294117649999996" blue="0.55294117649999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1773. </textFieldCell>
  1774. </textField>
  1775. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ctO-mu-ddI">
  1776. <rect key="frame" x="113" y="0.0" width="64" height="16"/>
  1777. <textFieldCell key="cell" lineBreakMode="clipping" title="(Tax Incl.)" id="rmF-E9-TTg">
  1778. <font key="font" usesAppearanceFont="YES"/>
  1779. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1780. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1781. </textFieldCell>
  1782. </textField>
  1783. <customView translatesAutoresizingMaskIntoConstraints="NO" id="9Wf-EF-Uhb">
  1784. <rect key="frame" x="0.0" y="62" width="289" height="64"/>
  1785. <subviews>
  1786. <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="snj-Zj-OvD">
  1787. <rect key="frame" x="-2" y="24" width="293" height="17"/>
  1788. <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="PDF Reader Pro Permanent" id="buB-bu-9Qo">
  1789. <font key="font" metaFont="systemSemibold" size="14"/>
  1790. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1791. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1792. </textFieldCell>
  1793. </textField>
  1794. </subviews>
  1795. <constraints>
  1796. <constraint firstItem="snj-Zj-OvD" firstAttribute="centerY" secondItem="9Wf-EF-Uhb" secondAttribute="centerY" id="61p-rd-K28"/>
  1797. <constraint firstItem="snj-Zj-OvD" firstAttribute="leading" secondItem="9Wf-EF-Uhb" secondAttribute="leading" id="QVE-kn-F6R"/>
  1798. <constraint firstAttribute="trailing" secondItem="snj-Zj-OvD" secondAttribute="trailing" id="aWP-oJ-MlK"/>
  1799. <constraint firstItem="snj-Zj-OvD" firstAttribute="centerX" secondItem="9Wf-EF-Uhb" secondAttribute="centerX" id="mAc-Ay-Bti"/>
  1800. </constraints>
  1801. </customView>
  1802. </subviews>
  1803. <constraints>
  1804. <constraint firstItem="ctO-mu-ddI" firstAttribute="top" secondItem="CHT-d8-7WR" secondAttribute="bottom" constant="4" id="P3e-P5-yjl"/>
  1805. <constraint firstItem="okn-VX-xhH" firstAttribute="centerX" secondItem="C1f-JL-m0e" secondAttribute="centerX" id="a5e-Ak-EMB"/>
  1806. <constraint firstItem="okn-VX-xhH" firstAttribute="top" secondItem="9Wf-EF-Uhb" secondAttribute="bottom" constant="4" id="bPW-0P-B8Q"/>
  1807. <constraint firstAttribute="bottom" secondItem="ctO-mu-ddI" secondAttribute="bottom" id="cU7-Sc-Cbb"/>
  1808. <constraint firstItem="9Wf-EF-Uhb" firstAttribute="top" secondItem="C1f-JL-m0e" secondAttribute="top" id="jtJ-M4-6qQ"/>
  1809. <constraint firstItem="CHT-d8-7WR" firstAttribute="top" secondItem="okn-VX-xhH" secondAttribute="bottom" constant="4" id="kbU-ad-U9f"/>
  1810. <constraint firstAttribute="trailing" secondItem="9Wf-EF-Uhb" secondAttribute="trailing" id="l5R-h7-HlE"/>
  1811. <constraint firstItem="ctO-mu-ddI" firstAttribute="centerX" secondItem="C1f-JL-m0e" secondAttribute="centerX" id="ncO-cn-uYk"/>
  1812. <constraint firstItem="9Wf-EF-Uhb" firstAttribute="leading" secondItem="C1f-JL-m0e" secondAttribute="leading" id="vLy-tQ-QOc"/>
  1813. <constraint firstItem="CHT-d8-7WR" firstAttribute="centerX" secondItem="C1f-JL-m0e" secondAttribute="centerX" id="xlk-zg-B6h"/>
  1814. </constraints>
  1815. </customView>
  1816. </subviews>
  1817. <constraints>
  1818. <constraint firstItem="zmz-yq-8SZ" firstAttribute="leading" secondItem="5cy-wO-SqL" secondAttribute="leading" id="10r-JG-S80"/>
  1819. <constraint firstItem="C1f-JL-m0e" firstAttribute="top" secondItem="XVZ-jI-UYX" secondAttribute="top" constant="12" id="5wk-q7-vqt"/>
  1820. <constraint firstAttribute="trailing" secondItem="sn9-km-1Vm" secondAttribute="trailing" id="7W3-lT-xjk"/>
  1821. <constraint firstItem="zmz-yq-8SZ" firstAttribute="trailing" secondItem="5cy-wO-SqL" secondAttribute="trailing" id="Gf7-Os-UA6"/>
  1822. <constraint firstItem="zmz-yq-8SZ" firstAttribute="top" secondItem="5cy-wO-SqL" secondAttribute="top" id="LNq-Wk-bbq"/>
  1823. <constraint firstItem="zmz-yq-8SZ" firstAttribute="bottom" secondItem="5cy-wO-SqL" secondAttribute="bottom" id="QDx-ql-EOf"/>
  1824. <constraint firstAttribute="trailing" secondItem="C1f-JL-m0e" secondAttribute="trailing" constant="4.75" id="aJ4-95-CZA"/>
  1825. <constraint firstItem="zmz-yq-8SZ" firstAttribute="centerX" secondItem="w8I-Fc-Axv" secondAttribute="centerX" id="bwv-PZ-sI1"/>
  1826. <constraint firstItem="C1f-JL-m0e" firstAttribute="leading" secondItem="XVZ-jI-UYX" secondAttribute="leading" constant="4.75" id="cEb-pB-wI7"/>
  1827. <constraint firstAttribute="bottom" secondItem="sn9-km-1Vm" secondAttribute="bottom" constant="35.880000000000003" id="cII-Yo-viG"/>
  1828. <constraint firstItem="zmz-yq-8SZ" firstAttribute="centerX" secondItem="XVZ-jI-UYX" secondAttribute="centerX" id="ff9-8C-AUV"/>
  1829. <constraint firstItem="zmz-yq-8SZ" firstAttribute="top" secondItem="C1f-JL-m0e" secondAttribute="bottom" constant="8" id="m5C-PJ-xo6"/>
  1830. <constraint firstItem="zmz-yq-8SZ" firstAttribute="centerY" secondItem="w8I-Fc-Axv" secondAttribute="centerY" constant="2" id="shg-9N-bxE"/>
  1831. <constraint firstAttribute="bottom" secondItem="zmz-yq-8SZ" secondAttribute="bottom" constant="16" id="u4u-3k-sHR"/>
  1832. </constraints>
  1833. <point key="canvasLocation" x="1766" y="731"/>
  1834. </customView>
  1835. <customView id="fex-Hv-ZGc">
  1836. <rect key="frame" x="0.0" y="0.0" width="326" height="58"/>
  1837. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1838. <subviews>
  1839. <customView translatesAutoresizingMaskIntoConstraints="NO" id="SPe-th-KNs">
  1840. <rect key="frame" x="99" y="19" width="128" height="20"/>
  1841. <subviews>
  1842. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="iSQ-Xb-0Ua">
  1843. <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
  1844. <constraints>
  1845. <constraint firstAttribute="height" constant="20" id="5GN-lp-2iw"/>
  1846. <constraint firstAttribute="width" constant="20" id="w1k-DT-gPF"/>
  1847. </constraints>
  1848. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="MacOSPlatformImage" id="je0-eH-fuk"/>
  1849. </imageView>
  1850. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="wMI-aK-ZHs">
  1851. <rect key="frame" x="36" y="0.0" width="20" height="20"/>
  1852. <constraints>
  1853. <constraint firstAttribute="height" constant="20" id="jqF-lL-2wN"/>
  1854. <constraint firstAttribute="width" constant="20" id="zGy-Wb-Ilg"/>
  1855. </constraints>
  1856. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="WindowsPlatformImage" id="njg-z4-th1"/>
  1857. </imageView>
  1858. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="7mP-ad-q3U">
  1859. <rect key="frame" x="72" y="0.0" width="20" height="20"/>
  1860. <constraints>
  1861. <constraint firstAttribute="width" constant="20" id="6ab-nE-H1U"/>
  1862. <constraint firstAttribute="height" constant="20" id="9qK-47-1Om"/>
  1863. </constraints>
  1864. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="iOSPlatformImage" id="Hwc-I9-pR0"/>
  1865. </imageView>
  1866. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="ANB-Lx-Z8H">
  1867. <rect key="frame" x="108" y="0.0" width="20" height="20"/>
  1868. <constraints>
  1869. <constraint firstAttribute="height" constant="20" id="IbS-VR-lKe"/>
  1870. <constraint firstAttribute="width" constant="20" id="cw6-bF-SqA"/>
  1871. </constraints>
  1872. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="AndroidPlatformImage" id="lpI-CM-yzl"/>
  1873. </imageView>
  1874. </subviews>
  1875. <constraints>
  1876. <constraint firstAttribute="height" constant="20" id="07K-WW-eJY"/>
  1877. <constraint firstItem="wMI-aK-ZHs" firstAttribute="leading" secondItem="iSQ-Xb-0Ua" secondAttribute="trailing" constant="16" id="Av5-Tu-g9A"/>
  1878. <constraint firstItem="ANB-Lx-Z8H" firstAttribute="top" secondItem="SPe-th-KNs" secondAttribute="top" id="IPZ-mz-WhU"/>
  1879. <constraint firstAttribute="bottom" secondItem="7mP-ad-q3U" secondAttribute="bottom" id="NfV-mb-Cmt"/>
  1880. <constraint firstAttribute="bottom" secondItem="wMI-aK-ZHs" secondAttribute="bottom" id="XgL-pt-bEH"/>
  1881. <constraint firstItem="7mP-ad-q3U" firstAttribute="top" secondItem="SPe-th-KNs" secondAttribute="top" id="ZhN-Ey-dAg"/>
  1882. <constraint firstAttribute="trailing" secondItem="ANB-Lx-Z8H" secondAttribute="trailing" id="aJM-QB-BXB"/>
  1883. <constraint firstItem="wMI-aK-ZHs" firstAttribute="top" secondItem="SPe-th-KNs" secondAttribute="top" id="bPe-3S-rWB"/>
  1884. <constraint firstItem="iSQ-Xb-0Ua" firstAttribute="top" secondItem="SPe-th-KNs" secondAttribute="top" id="dRO-yv-gyj"/>
  1885. <constraint firstAttribute="bottom" secondItem="ANB-Lx-Z8H" secondAttribute="bottom" id="eZA-If-513"/>
  1886. <constraint firstItem="7mP-ad-q3U" firstAttribute="leading" secondItem="wMI-aK-ZHs" secondAttribute="trailing" constant="16" id="jfc-u0-52M"/>
  1887. <constraint firstAttribute="bottom" secondItem="iSQ-Xb-0Ua" secondAttribute="bottom" id="lGr-gr-dnX"/>
  1888. <constraint firstItem="ANB-Lx-Z8H" firstAttribute="leading" secondItem="7mP-ad-q3U" secondAttribute="trailing" constant="16" id="pIt-lT-YcT"/>
  1889. <constraint firstItem="iSQ-Xb-0Ua" firstAttribute="leading" secondItem="SPe-th-KNs" secondAttribute="leading" id="wZK-Oi-S5p"/>
  1890. </constraints>
  1891. </customView>
  1892. </subviews>
  1893. <constraints>
  1894. <constraint firstItem="SPe-th-KNs" firstAttribute="centerY" secondItem="fex-Hv-ZGc" secondAttribute="centerY" id="HxJ-B1-JsD"/>
  1895. <constraint firstItem="SPe-th-KNs" firstAttribute="centerX" secondItem="fex-Hv-ZGc" secondAttribute="centerX" id="pY9-fQ-RHO"/>
  1896. </constraints>
  1897. <point key="canvasLocation" x="-289" y="437"/>
  1898. </customView>
  1899. <customView id="drW-Of-60w">
  1900. <rect key="frame" x="0.0" y="0.0" width="326" height="58"/>
  1901. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1902. <subviews>
  1903. <customView translatesAutoresizingMaskIntoConstraints="NO" id="NDZ-Ww-Nd9">
  1904. <rect key="frame" x="117" y="19" width="92" height="20"/>
  1905. <subviews>
  1906. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="tfU-DU-Sdp">
  1907. <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
  1908. <constraints>
  1909. <constraint firstAttribute="width" constant="20" id="0F1-le-tVb"/>
  1910. <constraint firstAttribute="height" constant="20" id="kQV-hX-zvl"/>
  1911. </constraints>
  1912. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="shp-oF-9fv"/>
  1913. </imageView>
  1914. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="WJQ-m7-bT5">
  1915. <rect key="frame" x="36" y="0.0" width="20" height="20"/>
  1916. <constraints>
  1917. <constraint firstAttribute="width" constant="20" id="1sL-Vp-7AC"/>
  1918. <constraint firstAttribute="height" constant="20" id="Ns5-6p-tJj"/>
  1919. </constraints>
  1920. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="LVu-0F-EJ3"/>
  1921. </imageView>
  1922. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="J0m-hR-TUI">
  1923. <rect key="frame" x="72" y="0.0" width="20" height="20"/>
  1924. <constraints>
  1925. <constraint firstAttribute="height" constant="20" id="gZC-DK-agg"/>
  1926. <constraint firstAttribute="width" constant="20" id="qEF-w3-rDK"/>
  1927. </constraints>
  1928. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="h0k-Uo-EqL"/>
  1929. </imageView>
  1930. </subviews>
  1931. <constraints>
  1932. <constraint firstAttribute="bottom" secondItem="tfU-DU-Sdp" secondAttribute="bottom" id="FW3-1T-IMh"/>
  1933. <constraint firstAttribute="trailing" secondItem="J0m-hR-TUI" secondAttribute="trailing" id="LtQ-cN-tzl"/>
  1934. <constraint firstItem="tfU-DU-Sdp" firstAttribute="top" secondItem="NDZ-Ww-Nd9" secondAttribute="top" id="O3K-rt-JFz"/>
  1935. <constraint firstAttribute="bottom" secondItem="WJQ-m7-bT5" secondAttribute="bottom" id="U82-6l-gxL"/>
  1936. <constraint firstItem="WJQ-m7-bT5" firstAttribute="leading" secondItem="tfU-DU-Sdp" secondAttribute="trailing" constant="16" id="fXN-XA-RbX"/>
  1937. <constraint firstItem="J0m-hR-TUI" firstAttribute="top" secondItem="NDZ-Ww-Nd9" secondAttribute="top" id="iN7-ev-Faw"/>
  1938. <constraint firstAttribute="height" constant="20" id="tEs-iJ-VZX"/>
  1939. <constraint firstItem="WJQ-m7-bT5" firstAttribute="top" secondItem="NDZ-Ww-Nd9" secondAttribute="top" id="ugx-lS-RfU"/>
  1940. <constraint firstItem="tfU-DU-Sdp" firstAttribute="leading" secondItem="NDZ-Ww-Nd9" secondAttribute="leading" id="uqG-fh-Yg8"/>
  1941. <constraint firstItem="J0m-hR-TUI" firstAttribute="leading" secondItem="WJQ-m7-bT5" secondAttribute="trailing" constant="16" id="xF3-Q7-huX"/>
  1942. <constraint firstAttribute="bottom" secondItem="J0m-hR-TUI" secondAttribute="bottom" id="xuN-Hk-a5e"/>
  1943. </constraints>
  1944. </customView>
  1945. </subviews>
  1946. <constraints>
  1947. <constraint firstItem="NDZ-Ww-Nd9" firstAttribute="centerX" secondItem="drW-Of-60w" secondAttribute="centerX" id="cDI-3Q-nUR"/>
  1948. <constraint firstItem="NDZ-Ww-Nd9" firstAttribute="centerY" secondItem="drW-Of-60w" secondAttribute="centerY" id="wwX-2k-F09"/>
  1949. </constraints>
  1950. <point key="canvasLocation" x="-289" y="587"/>
  1951. </customView>
  1952. <customView id="HRU-Hk-DQz">
  1953. <rect key="frame" x="0.0" y="0.0" width="326" height="58"/>
  1954. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1955. <subviews>
  1956. <customView translatesAutoresizingMaskIntoConstraints="NO" id="CYb-U1-WWs">
  1957. <rect key="frame" x="135" y="19" width="56" height="20"/>
  1958. <subviews>
  1959. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="43F-AM-fSR">
  1960. <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
  1961. <constraints>
  1962. <constraint firstAttribute="height" constant="20" id="gju-Nv-R8O"/>
  1963. <constraint firstAttribute="width" constant="20" id="lM7-No-wOl"/>
  1964. </constraints>
  1965. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="MacOSPlatformImage" id="O1T-Fm-a4P"/>
  1966. </imageView>
  1967. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="X0k-HW-GgN">
  1968. <rect key="frame" x="36" y="0.0" width="20" height="20"/>
  1969. <constraints>
  1970. <constraint firstAttribute="width" constant="20" id="MCs-bA-yTz"/>
  1971. <constraint firstAttribute="height" constant="20" id="MyN-Iy-RRV"/>
  1972. </constraints>
  1973. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="WindowsPlatformImage" id="BAy-ky-4Kl"/>
  1974. </imageView>
  1975. </subviews>
  1976. <constraints>
  1977. <constraint firstAttribute="bottom" secondItem="43F-AM-fSR" secondAttribute="bottom" id="0kK-HL-Zlq"/>
  1978. <constraint firstAttribute="bottom" secondItem="X0k-HW-GgN" secondAttribute="bottom" id="Dde-nV-bXE"/>
  1979. <constraint firstItem="X0k-HW-GgN" firstAttribute="top" secondItem="CYb-U1-WWs" secondAttribute="top" id="Fl8-Pe-L4X"/>
  1980. <constraint firstItem="X0k-HW-GgN" firstAttribute="leading" secondItem="43F-AM-fSR" secondAttribute="trailing" constant="16" id="LEo-Pd-xPR"/>
  1981. <constraint firstAttribute="height" constant="20" id="NEL-0S-2JP"/>
  1982. <constraint firstItem="43F-AM-fSR" firstAttribute="leading" secondItem="CYb-U1-WWs" secondAttribute="leading" id="Oyh-MM-3DN"/>
  1983. <constraint firstAttribute="trailing" secondItem="X0k-HW-GgN" secondAttribute="trailing" id="sFj-pX-OEQ"/>
  1984. <constraint firstItem="43F-AM-fSR" firstAttribute="top" secondItem="CYb-U1-WWs" secondAttribute="top" id="uGl-kA-TGG"/>
  1985. </constraints>
  1986. </customView>
  1987. </subviews>
  1988. <constraints>
  1989. <constraint firstItem="CYb-U1-WWs" firstAttribute="centerY" secondItem="HRU-Hk-DQz" secondAttribute="centerY" id="MbQ-wt-42L"/>
  1990. <constraint firstItem="CYb-U1-WWs" firstAttribute="centerX" secondItem="HRU-Hk-DQz" secondAttribute="centerX" id="yPf-LD-5zF"/>
  1991. </constraints>
  1992. <point key="canvasLocation" x="-298" y="719"/>
  1993. </customView>
  1994. <customView id="kyQ-Jn-2Ny">
  1995. <rect key="frame" x="0.0" y="0.0" width="326" height="58"/>
  1996. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1997. <subviews>
  1998. <customView translatesAutoresizingMaskIntoConstraints="NO" id="dof-sb-gA5">
  1999. <rect key="frame" x="153" y="19" width="20" height="20"/>
  2000. <subviews>
  2001. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="ETf-15-D0b">
  2002. <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
  2003. <constraints>
  2004. <constraint firstAttribute="width" constant="20" id="6wO-9g-xkb"/>
  2005. <constraint firstAttribute="height" constant="20" id="Cl4-m0-mau"/>
  2006. </constraints>
  2007. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="MacOSPlatformImage" id="PYl-Qp-uXU"/>
  2008. </imageView>
  2009. </subviews>
  2010. <constraints>
  2011. <constraint firstItem="ETf-15-D0b" firstAttribute="top" secondItem="dof-sb-gA5" secondAttribute="top" id="Gjp-lU-X3d"/>
  2012. <constraint firstItem="ETf-15-D0b" firstAttribute="leading" secondItem="dof-sb-gA5" secondAttribute="leading" id="I1H-9Y-Hfd"/>
  2013. <constraint firstAttribute="height" constant="20" id="oN9-WR-bsr"/>
  2014. <constraint firstAttribute="bottom" secondItem="ETf-15-D0b" secondAttribute="bottom" id="sZw-ui-8ED"/>
  2015. <constraint firstAttribute="trailing" secondItem="ETf-15-D0b" secondAttribute="trailing" id="zlX-hu-fgR"/>
  2016. </constraints>
  2017. </customView>
  2018. </subviews>
  2019. <constraints>
  2020. <constraint firstItem="dof-sb-gA5" firstAttribute="centerY" secondItem="kyQ-Jn-2Ny" secondAttribute="centerY" id="AMs-nx-8sQ"/>
  2021. <constraint firstItem="dof-sb-gA5" firstAttribute="centerX" secondItem="kyQ-Jn-2Ny" secondAttribute="centerX" id="W5o-qj-aBH"/>
  2022. </constraints>
  2023. <point key="canvasLocation" x="-298" y="829"/>
  2024. </customView>
  2025. </objects>
  2026. <resources>
  2027. <image name="AndroidPlatformImage" width="20" height="20"/>
  2028. <image name="ComparativeBackground" width="299" height="202"/>
  2029. <image name="KMImageNameCompareBG" width="970" height="192"/>
  2030. <image name="KMImageNamePurchaseBuy" width="16" height="16"/>
  2031. <image name="MacOSPlatformImage" width="20" height="20"/>
  2032. <image name="WindowsPlatformImage" width="20" height="20"/>
  2033. <image name="iOSPlatformImage" width="20" height="20"/>
  2034. <namedColor name="KMColor_Status_Err">
  2035. <color red="0.98000001907348633" green="0.11800000071525574" blue="0.36500000953674316" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2036. </namedColor>
  2037. </resources>
  2038. </document>