| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845 |
- <?xml version="1.0" encoding="UTF-8"?>
- <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="22505" targetRuntime="iOS.CocoaTouch.iPad" propertyAccessControl="none" useAutolayout="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="jsC-F8-zYF">
- <device id="ipad7_9" orientation="portrait" layout="fullscreen" appearance="light"/>
- <dependencies>
- <deployment version="4864" identifier="iOS"/>
- <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="22504"/>
- <capability name="Safe area layout guides" minToolsVersion="9.0"/>
- <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
- </dependencies>
- <scenes>
- <!--Main View Controller-->
- <scene sceneID="tne-QT-ifu">
- <objects>
- <viewController storyboardIdentifier="MainViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="BYZ-38-t0r" customClass="MainViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
- <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <containerView contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Knj-5z-t35">
- <rect key="frame" x="0.0" y="100" width="744" height="1032"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- </containerView>
- <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="NhN-BH-vsu" userLabel="headerView">
- <rect key="frame" x="0.0" y="0.0" width="744" height="100"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <view clipsSubviews="YES" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="hTL-PV-pUp" customClass="MainHeaderViewColorPanel">
- <rect key="frame" x="159" y="20" width="454" height="72"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="xhl-jK-vdP" userLabel="category button">
- <rect key="frame" x="0.0" y="0.0" width="72" height="72"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" image="category"/>
- <connections>
- <action selector="showCategoryMenu:" destination="BYZ-38-t0r" eventType="touchUpInside" id="lqZ-JH-nyi"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="qK2-gY-nOG" userLabel="cart button">
- <rect key="frame" x="79" y="0.0" width="72" height="72"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" image="cart_empty"/>
- <connections>
- <action selector="switchToCart:" destination="BYZ-38-t0r" eventType="touchUpInside" id="MmJ-aK-UGJ"/>
- </connections>
- </button>
- <label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="9" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="1R3-At-QFU">
- <rect key="frame" x="95" y="0.0" width="21" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <color key="backgroundColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
- <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
- <integer key="value" value="5"/>
- </userDefinedRuntimeAttribute>
- </userDefinedRuntimeAttributes>
- </label>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="wordWrap" translatesAutoresizingMaskIntoConstraints="NO" id="04b-vI-vkz" userLabel="order button">
- <rect key="frame" x="158" y="0.0" width="72" height="72"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <state key="normal" image="order"/>
- <connections>
- <action selector="switchToOrder:" destination="BYZ-38-t0r" eventType="touchUpInside" id="GdL-E5-zaV"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Nz4-iJ-NSG" userLabel="search button">
- <rect key="frame" x="230" y="0.0" width="72" height="72"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" image="search"/>
- <connections>
- <action selector="switchToSearch:" destination="BYZ-38-t0r" eventType="touchUpInside" id="RSU-nZ-6zb"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="7N7-Ov-11Q" userLabel="contact button">
- <rect key="frame" x="309" y="0.0" width="72" height="72"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" image="contact"/>
- <connections>
- <action selector="switchToContact:" destination="BYZ-38-t0r" eventType="touchUpInside" id="g9f-ON-eJd"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="e9G-wT-bVC" userLabel="wishlist button">
- <rect key="frame" x="388" y="0.0" width="72" height="72"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" image="wishlist"/>
- <connections>
- <action selector="switchToWishlist:" destination="BYZ-38-t0r" eventType="touchUpInside" id="gdE-vI-w3i"/>
- </connections>
- </button>
- <label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="9" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="e64-zo-Edm">
- <rect key="frame" x="408" y="0.0" width="21" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <color key="backgroundColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
- <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
- <integer key="value" value="5"/>
- </userDefinedRuntimeAttribute>
- </userDefinedRuntimeAttributes>
- </label>
- <button hidden="YES" opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="nIa-ra-HBo" userLabel="scan button">
- <rect key="frame" x="467" y="0.0" width="72" height="72"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" image="scan"/>
- <connections>
- <action selector="onScanClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="Pgk-0c-nqg"/>
- </connections>
- </button>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <view hidden="YES" clipsSubviews="YES" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Udz-7n-3ZO" customClass="MainHeaderViewColorPanel">
- <rect key="frame" x="159" y="20" width="454" height="72"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="dB4-yd-OKw" userLabel="category button">
- <rect key="frame" x="0.0" y="0.0" width="72" height="72"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" image="category"/>
- <connections>
- <action selector="showCategoryMenu:" destination="BYZ-38-t0r" eventType="touchUpInside" id="GxO-wH-K20"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="6Xo-MD-4L0" userLabel="cart button">
- <rect key="frame" x="79" y="0.0" width="72" height="72"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" image="cart_empty"/>
- <connections>
- <action selector="switchToCart:" destination="BYZ-38-t0r" eventType="touchUpInside" id="4pZ-iU-9mA"/>
- </connections>
- </button>
- <label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="9" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="x7d-bu-zNO">
- <rect key="frame" x="95" y="0.0" width="21" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <color key="backgroundColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
- <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
- <integer key="value" value="5"/>
- </userDefinedRuntimeAttribute>
- </userDefinedRuntimeAttributes>
- </label>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="wordWrap" translatesAutoresizingMaskIntoConstraints="NO" id="GTI-Wn-UP4" userLabel="order button">
- <rect key="frame" x="158" y="0.0" width="72" height="72"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <state key="normal" image="order"/>
- <connections>
- <action selector="switchToOrder:" destination="BYZ-38-t0r" eventType="touchUpInside" id="qMf-pm-hYx"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="taE-ut-WBx" userLabel="search button">
- <rect key="frame" x="230" y="0.0" width="72" height="72"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" image="search"/>
- <connections>
- <action selector="switchToSearch:" destination="BYZ-38-t0r" eventType="touchUpInside" id="Z5m-Tu-eRu"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="hkn-sR-Oh1" userLabel="wishlist button">
- <rect key="frame" x="309" y="0.0" width="72" height="72"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" image="wishlist"/>
- <connections>
- <action selector="switchToWishlist:" destination="BYZ-38-t0r" eventType="touchUpInside" id="bbq-OL-tIH"/>
- </connections>
- </button>
- <label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="9" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ULj-92-aZY">
- <rect key="frame" x="329" y="0.0" width="21" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <color key="backgroundColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
- <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
- <integer key="value" value="5"/>
- </userDefinedRuntimeAttribute>
- </userDefinedRuntimeAttributes>
- </label>
- <button hidden="YES" opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="0dP-o2-4Xj" userLabel="scan button">
- <rect key="frame" x="388" y="0.0" width="72" height="72"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" image="scan"/>
- <connections>
- <action selector="onScanClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="AYO-6T-huA"/>
- </connections>
- </button>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="W7z-q5-hQg" userLabel="npd_logo">
- <rect key="frame" x="49" y="21" width="69" height="50"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" image="npd_logo">
- <color key="titleColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- </state>
- <connections>
- <action selector="switchToHome:" destination="BYZ-38-t0r" eventType="touchUpInside" id="7U3-RK-7hh"/>
- </connections>
- </button>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="A6K-Xr-CN6" userLabel="so#">
- <rect key="frame" x="5" y="75" width="158" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="0eT-W5-bga" userLabel="sign_in">
- <rect key="frame" x="604" y="20" width="140" height="30"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <state key="normal" title="Sign in">
- <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <connections>
- <action selector="onUserButtonClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="AFH-Ci-hyg"/>
- </connections>
- </button>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zoc-d5-pNq" userLabel="mode">
- <rect key="frame" x="126" y="30" width="32" height="30"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <nil key="highlightedColor"/>
- </label>
- <button hidden="YES" opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="top" buttonType="system" lineBreakMode="wordWrap" translatesAutoresizingMaskIntoConstraints="NO" id="A7D-bo-1PR" userLabel="contact">
- <rect key="frame" x="604" y="50" width="140" height="50"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <state key="normal">
- <color key="titleColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <connections>
- <action selector="onContactClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="vfj-Y2-dIU"/>
- <action selector="onUserButtonClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="r9q-nF-Lk6"/>
- </connections>
- </button>
- <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="bQ2-5t-t5t" customClass="MainHeaderViewColorPanel">
- <rect key="frame" x="0.0" y="20" width="48" height="48"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Kx0-AQ-Y5o" userLabel="MenuButton">
- <rect key="frame" x="0.0" y="0.0" width="48" height="48"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" image="menu_open"/>
- <connections>
- <action selector="onmenuButtonClicked:" destination="BYZ-38-t0r" eventType="touchUpInside" id="8Jk-HI-USO"/>
- </connections>
- </button>
- </subviews>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- </view>
- </subviews>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <imageView userInteractionEnabled="NO" alpha="0.0" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="tzq-zw-ENK">
- <rect key="frame" x="0.0" y="-1" width="744" height="1133"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- </imageView>
- <button hidden="YES" opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="DGA-Jz-ciO">
- <rect key="frame" x="0.0" y="-1" width="744" height="1133"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <state key="normal">
- <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <connections>
- <action selector="onhideMenuClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="Hn2-OW-gDn"/>
- </connections>
- </button>
- <view hidden="YES" contentMode="scaleToFill" fixedFrame="YES" restorationIdentifier="menuView" translatesAutoresizingMaskIntoConstraints="NO" id="Qz1-qV-4fT" userLabel="sidemenuView">
- <rect key="frame" x="-300" y="-1" width="364" height="1133"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" heightSizable="YES"/>
- <subviews>
- <view alpha="0.80000000000000004" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="dR0-Te-FbY" userLabel="backgroundView">
- <rect key="frame" x="0.0" y="0.0" width="290" height="1133"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Wtv-1e-MtM" userLabel="rightsideColorbar">
- <rect key="frame" x="290" y="0.0" width="10" height="1133"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.79277843236923218" green="0.79277843236923218" blue="0.79277843236923218" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <tableView clipsSubviews="YES" contentMode="scaleToFill" fixedFrame="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" translatesAutoresizingMaskIntoConstraints="NO" id="h0d-S7-vmO">
- <rect key="frame" x="0.0" y="150" width="290" height="899"/>
- <autoresizingMask key="autoresizingMask" heightSizable="YES" flexibleMaxY="YES"/>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="separatorColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="sectionIndexBackgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="sectionIndexTrackingBackgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SideMenuItem" textLabel="pki-xD-OOT" detailTextLabel="a18-fA-KeX" style="IBUITableViewCellStyleValue1" id="3MW-qC-tOm">
- <rect key="frame" x="0.0" y="55.5" width="290" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="3MW-qC-tOm" id="1li-xE-7Vx">
- <rect key="frame" x="0.0" y="0.0" width="290" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="pki-xD-OOT">
- <rect key="frame" x="16" y="13" width="31.5" height="19.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="16"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="a18-fA-KeX">
- <rect key="frame" x="232" y="13" width="42" height="19.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="16"/>
- <color key="textColor" red="0.55686274509803924" green="0.55686274509803924" blue="0.57647058823529407" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- </tableViewCellContentView>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="BYZ-38-t0r" id="Vs3-Mt-c0H"/>
- <outlet property="delegate" destination="BYZ-38-t0r" id="PzD-54-dP2"/>
- </connections>
- </tableView>
- <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" image="profle" translatesAutoresizingMaskIntoConstraints="NO" id="1d7-Ma-AAj">
- <rect key="frame" x="86" y="20" width="128" height="128"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- </imageView>
- <label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="YYM-6v-Qnk" userLabel="Label username">
- <rect key="frame" x="50" y="100" width="200" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Rki-F9-VV1">
- <rect key="frame" x="50" y="100" width="200" height="30"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <connections>
- <action selector="onUserListClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="UId-03-oQL"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="M7a-qh-Dgr">
- <rect key="frame" x="110" y="130" width="80" height="30"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <state key="normal" title="Sign in">
- <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <connections>
- <action selector="OnLoginClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="wAx-ab-MTQ"/>
- </connections>
- </button>
- <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="KeC-8h-nz6" customClass="MainHeaderViewColorPanel">
- <rect key="frame" x="300" y="20" width="36" height="36"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="z6K-Ge-vfg" userLabel="MenuButton">
- <rect key="frame" x="0.0" y="0.0" width="36" height="36"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <color key="backgroundColor" red="0.79277843236923218" green="0.79277843236923218" blue="0.79277843236923218" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <state key="normal" image="menu_open"/>
- <connections>
- <action selector="switchMenu:" destination="BYZ-38-t0r" eventType="touchUpInside" id="Xb6-0d-MOX"/>
- </connections>
- </button>
- </subviews>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- </view>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="Ver:1.0" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MTI-0q-XWj" userLabel="ver">
- <rect key="frame" x="25" y="1087" width="250" height="22"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </view>
- </subviews>
- <viewLayoutGuide key="safeArea" id="bGI-U1-84v"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <navigationItem key="navigationItem" id="fTz-mt-KEq"/>
- <simulatedStatusBarMetrics key="simulatedStatusBarMetrics" statusBarStyle="lightContent"/>
- <connections>
- <outlet property="backgroundButton" destination="DGA-Jz-ciO" id="8gB-vF-uFJ"/>
- <outlet property="blurView" destination="tzq-zw-ENK" id="035-vB-pet"/>
- <outlet property="btnContact" destination="A7D-bo-1PR" id="Ysj-gK-LSa"/>
- <outlet property="btnLogin" destination="M7a-qh-Dgr" id="0do-TO-1FM"/>
- <outlet property="btn_LogoHome" destination="W7z-q5-hQg" id="lr2-rw-0yi"/>
- <outlet property="btn_sideMenu_UserName" destination="Rki-F9-VV1" id="U1D-pK-gzg"/>
- <outlet property="buttonUser" destination="0eT-W5-bga" id="F4r-LC-G5r"/>
- <outlet property="container" destination="Knj-5z-t35" id="xY9-0x-HET"/>
- <outlet property="customer_bp" destination="Udz-7n-3ZO" id="2Qw-rc-L5I"/>
- <outlet property="employee_bp" destination="hTL-PV-pUp" id="WrQ-II-a4s"/>
- <outlet property="headerView" destination="NhN-BH-vsu" id="ueD-EJ-r33"/>
- <outlet property="labelMode" destination="zoc-d5-pNq" id="7Cb-3e-Hxa"/>
- <outlet property="labelSo" destination="A6K-Xr-CN6" id="5WI-2k-wyU"/>
- <outlet property="labelVer" destination="MTI-0q-XWj" id="aGz-th-8qe"/>
- <outlet property="label_cccount" destination="x7d-bu-zNO" id="1xD-49-btv"/>
- <outlet property="label_ccount" destination="1R3-At-QFU" id="lGc-YZ-9hq"/>
- <outlet property="label_cwcount" destination="ULj-92-aZY" id="XgQ-US-DBM"/>
- <outlet property="label_wcount" destination="e64-zo-Edm" id="xQh-lL-loa"/>
- <outlet property="menuButton" destination="z6K-Ge-vfg" id="9iM-Kq-gAy"/>
- <outlet property="openMenuButton" destination="Kx0-AQ-Y5o" id="bai-7G-ELP"/>
- <outlet property="sideMenu" destination="Qz1-qV-4fT" id="IoN-rl-Zdl"/>
- <outlet property="sideMenuTable" destination="h0d-S7-vmO" id="fnv-zj-M67"/>
- <outlet property="sideMenu_UserName" destination="YYM-6v-Qnk" id="izC-hM-IsH"/>
- <outlet property="user_head" destination="1d7-Ma-AAj" id="IEA-a5-je3"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="992.1875" y="-129.4921875"/>
- </scene>
- <!--Watch List View Controller-->
- <scene sceneID="D3N-vL-MY1">
- <objects>
- <viewController storyboardIdentifier="WatchListViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="dSV-Dg-id4" customClass="WatchListViewController" sceneMemberID="viewController">
- <view key="view" opaque="NO" clipsSubviews="YES" contentMode="center" id="l8z-x6-eMf">
- <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="120" sectionHeaderHeight="22" sectionFooterHeight="22" translatesAutoresizingMaskIntoConstraints="NO" id="Bod-ih-aFz">
- <rect key="frame" x="0.0" y="24" width="744" height="1045"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="WatchListItemCell" rowHeight="120" id="Hjj-gq-Qs5" customClass="ModelItemCell">
- <rect key="frame" x="0.0" y="50" width="744" height="120"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Hjj-gq-Qs5" id="bKF-1X-6DE">
- <rect key="frame" x="0.0" y="0.0" width="744" height="120"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1234567890.00" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MZM-06-tL3" userLabel="item price">
- <rect key="frame" x="530" y="49.5" width="160" height="21"/>
- <constraints>
- <constraint firstAttribute="width" constant="160" id="Fhy-Ln-lVa"/>
- <constraint firstAttribute="height" constant="21" id="ckn-TY-IX1"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="2nP-ZX-zLk" userLabel="img">
- <rect key="frame" x="15" y="10" width="100" height="100"/>
- <constraints>
- <constraint firstAttribute="height" constant="100" id="Mzw-yA-vpq"/>
- <constraint firstAttribute="width" constant="100" id="wXJ-DF-1gr"/>
- </constraints>
- <state key="normal">
- <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <connections>
- <action selector="imgbtnClicked:" destination="dSV-Dg-id4" eventType="touchUpInside" id="pFx-3Y-Zm7"/>
- </connections>
- </button>
- <label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Portfolio price ($)" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="vzl-HZ-1my">
- <rect key="frame" x="530" y="20.5" width="160" height="21"/>
- <constraints>
- <constraint firstAttribute="height" constant="21" id="Bce-vf-6p9"/>
- <constraint firstAttribute="width" constant="160" id="GkL-38-phk"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="check_1_24" translatesAutoresizingMaskIntoConstraints="NO" id="pUy-h6-w0Y">
- <rect key="frame" x="705" y="48" width="24" height="24"/>
- <constraints>
- <constraint firstAttribute="width" constant="24" id="Mhk-Yc-rbi"/>
- <constraint firstAttribute="height" constant="24" id="WHk-5U-u9V"/>
- </constraints>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="QTY:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="lbZ-RY-0aG">
- <rect key="frame" x="530" y="49.5" width="160" height="21"/>
- <constraints>
- <constraint firstAttribute="height" constant="21" id="S81-Ar-Fk2"/>
- <constraint firstAttribute="width" constant="160" id="Su9-Od-CTZ"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="name aaaaaaaaaaaaa aaaaaaaaaa BBBBB CCCCC" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="H2E-H1-CLA" userLabel="description">
- <rect key="frame" x="130" y="10" width="385" height="100"/>
- <fontDescription key="fontDescription" name="HelveticaNeue" family="Helvetica Neue" pointSize="22"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="MZM-06-tL3" firstAttribute="top" secondItem="vzl-HZ-1my" secondAttribute="bottom" constant="8" id="0mV-Rw-E7y"/>
- <constraint firstItem="MZM-06-tL3" firstAttribute="centerY" secondItem="bKF-1X-6DE" secondAttribute="centerY" id="2M6-cA-Jsx"/>
- <constraint firstItem="pUy-h6-w0Y" firstAttribute="leading" secondItem="MZM-06-tL3" secondAttribute="trailing" constant="15" id="4rL-1T-YvJ"/>
- <constraint firstItem="2nP-ZX-zLk" firstAttribute="centerY" secondItem="bKF-1X-6DE" secondAttribute="centerY" id="6p1-c7-Q3T"/>
- <constraint firstItem="H2E-H1-CLA" firstAttribute="leading" secondItem="2nP-ZX-zLk" secondAttribute="trailing" constant="15" id="8lH-Kf-uTJ"/>
- <constraint firstItem="H2E-H1-CLA" firstAttribute="top" secondItem="2nP-ZX-zLk" secondAttribute="top" id="DJf-MX-ygN"/>
- <constraint firstItem="pUy-h6-w0Y" firstAttribute="leading" secondItem="lbZ-RY-0aG" secondAttribute="trailing" constant="15" id="JKX-6K-4UQ"/>
- <constraint firstAttribute="trailing" secondItem="pUy-h6-w0Y" secondAttribute="trailing" constant="15" id="OU7-Gg-aU9"/>
- <constraint firstItem="vzl-HZ-1my" firstAttribute="trailing" secondItem="lbZ-RY-0aG" secondAttribute="trailing" id="Yu3-Wb-hGl"/>
- <constraint firstItem="MZM-06-tL3" firstAttribute="leading" secondItem="H2E-H1-CLA" secondAttribute="trailing" constant="15" id="ZP8-5v-QXI"/>
- <constraint firstItem="lbZ-RY-0aG" firstAttribute="centerY" secondItem="bKF-1X-6DE" secondAttribute="centerY" id="aBJ-84-zrU"/>
- <constraint firstItem="2nP-ZX-zLk" firstAttribute="leading" secondItem="bKF-1X-6DE" secondAttribute="leading" constant="15" id="aso-A8-sB5"/>
- <constraint firstItem="H2E-H1-CLA" firstAttribute="bottom" secondItem="2nP-ZX-zLk" secondAttribute="bottom" id="jAg-QZ-Ow5"/>
- <constraint firstItem="pUy-h6-w0Y" firstAttribute="centerY" secondItem="bKF-1X-6DE" secondAttribute="centerY" id="mX3-ax-XpX"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="btnImage" destination="2nP-ZX-zLk" id="gie-TT-qkI"/>
- <outlet property="img_checkmark" destination="pUy-h6-w0Y" id="Cgg-LS-Dd1"/>
- <outlet property="labelDescription" destination="H2E-H1-CLA" id="3fb-Y0-b1W"/>
- <outlet property="labelPrice" destination="MZM-06-tL3" id="rqh-V1-3va"/>
- <outlet property="qty_Label" destination="lbZ-RY-0aG" id="oen-ae-JoO"/>
- </connections>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="dSV-Dg-id4" id="fMK-ne-m6F"/>
- <outlet property="delegate" destination="dSV-Dg-id4" id="QVP-8c-X2Y"/>
- </connections>
- </tableView>
- <label hidden="YES" opaque="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Cannot get data from server.
Tap to try again." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="VoW-od-XKq">
- <rect key="frame" x="251.5" y="544" width="241.5" height="45.5"/>
- <fontDescription key="fontDescription" type="system" pointSize="19"/>
- <color key="textColor" red="0.33333333333333331" green="0.33333333333333331" blue="0.33333333333333331" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" hidesWhenStopped="YES" animating="YES" style="whiteLarge" translatesAutoresizingMaskIntoConstraints="NO" id="P7H-gM-8cZ">
- <rect key="frame" x="353.5" y="548" width="37" height="37"/>
- <color key="color" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </activityIndicatorView>
- <toolbar opaque="NO" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="TEJ-4m-gTF">
- <rect key="frame" x="0.0" y="1069" width="744" height="44"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="44" id="bKb-j5-iBR"/>
- </constraints>
- <items>
- <barButtonItem title="Select all" id="4ut-I6-lhS">
- <connections>
- <action selector="onSelectClick:" destination="dSV-Dg-id4" id="OW2-Fn-aja"/>
- </connections>
- </barButtonItem>
- <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="WGd-QY-X9M"/>
- <barButtonItem title="Delete" id="1fK-gC-zJQ">
- <connections>
- <action selector="onDeleteClick:" destination="dSV-Dg-id4" id="1q5-N8-tEV"/>
- </connections>
- </barButtonItem>
- <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="ded-Mq-Wdh"/>
- <barButtonItem title="Move to Cart" id="nkH-wk-LKl">
- <connections>
- <action selector="onAddtoCart:" destination="dSV-Dg-id4" id="3mi-fA-zV0"/>
- </connections>
- </barButtonItem>
- <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="4gV-KQ-JJH"/>
- <barButtonItem title="Print" id="ElH-Kz-wRI">
- <connections>
- <action selector="printWishlistClick:" destination="dSV-Dg-id4" id="NES-Ca-dNd"/>
- </connections>
- </barButtonItem>
- <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="QHn-B4-Kox"/>
- <barButtonItem title="Email" id="d4C-NX-kua">
- <connections>
- <action selector="emailWishlistClick:" destination="dSV-Dg-id4" id="BHS-9B-vyX"/>
- </connections>
- </barButtonItem>
- <barButtonItem style="plain" systemItem="flexibleSpace" id="GCT-Zy-PVt"/>
- </items>
- <color key="tintColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </toolbar>
- </subviews>
- <viewLayoutGuide key="safeArea" id="9A9-l3-cE9"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="TEJ-4m-gTF" firstAttribute="leading" secondItem="9A9-l3-cE9" secondAttribute="leading" id="0wy-Et-xPm"/>
- <constraint firstItem="TEJ-4m-gTF" firstAttribute="bottom" secondItem="9A9-l3-cE9" secondAttribute="bottom" id="HDi-LI-gfD"/>
- <constraint firstItem="VoW-od-XKq" firstAttribute="centerY" secondItem="l8z-x6-eMf" secondAttribute="centerY" id="KyC-mN-Xs3"/>
- <constraint firstItem="Bod-ih-aFz" firstAttribute="trailing" secondItem="9A9-l3-cE9" secondAttribute="trailing" id="ON6-wM-68H"/>
- <constraint firstItem="P7H-gM-8cZ" firstAttribute="centerX" secondItem="l8z-x6-eMf" secondAttribute="centerX" id="Pz2-3o-UPc"/>
- <constraint firstItem="TEJ-4m-gTF" firstAttribute="trailing" secondItem="9A9-l3-cE9" secondAttribute="trailing" id="RQs-R0-TJD"/>
- <constraint firstItem="Bod-ih-aFz" firstAttribute="leading" secondItem="9A9-l3-cE9" secondAttribute="leading" id="STo-5t-b3M"/>
- <constraint firstItem="Bod-ih-aFz" firstAttribute="top" secondItem="9A9-l3-cE9" secondAttribute="top" id="XCg-bR-os6"/>
- <constraint firstItem="P7H-gM-8cZ" firstAttribute="centerY" secondItem="l8z-x6-eMf" secondAttribute="centerY" id="XuB-N4-Qys"/>
- <constraint firstItem="TEJ-4m-gTF" firstAttribute="top" secondItem="Bod-ih-aFz" secondAttribute="bottom" id="kbX-1g-yLb"/>
- <constraint firstItem="VoW-od-XKq" firstAttribute="centerX" secondItem="l8z-x6-eMf" secondAttribute="centerX" id="tld-nd-ODf"/>
- </constraints>
- </view>
- <connections>
- <outlet property="btnAddtoCart" destination="nkH-wk-LKl" id="qv8-L1-WS9"/>
- <outlet property="btnselect" destination="4ut-I6-lhS" id="fBU-bd-mXV"/>
- <outlet property="emailBtn" destination="d4C-NX-kua" id="mn5-pm-tCk"/>
- <outlet property="itemListTable" destination="Bod-ih-aFz" id="8co-dm-KPz"/>
- <outlet property="label_net_err" destination="VoW-od-XKq" id="AxP-Qf-bN0"/>
- <outlet property="mum" destination="P7H-gM-8cZ" id="V5L-M8-XG2"/>
- <outlet property="printBtn" destination="ElH-Kz-wRI" id="cxR-aA-76k"/>
- <outlet property="toolbar" destination="TEJ-4m-gTF" id="LR0-Lb-tMy"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="dde-Oc-fqI" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-248.4375" y="-1649.4140625"/>
- </scene>
- <!--Sales Navigation Controller-->
- <scene sceneID="gmF-am-6mB">
- <objects>
- <navigationController storyboardIdentifier="iSalesNavigationController" definesPresentationContext="YES" useStoryboardIdentifierAsRestorationIdentifier="YES" id="jsC-F8-zYF" customClass="iSalesNavigationController" sceneMemberID="viewController">
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="gCJ-vt-f01">
- <rect key="frame" x="0.0" y="24" width="744" height="50"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <connections>
- <segue destination="BYZ-38-t0r" kind="relationship" relationship="rootViewController" id="WXk-4e-Kuu"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="5Jd-Qo-yfT" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="196.09375" y="-129.4921875"/>
- </scene>
- <!--Sign_in-->
- <scene sceneID="nj3-gQ-5tx">
- <objects>
- <viewController storyboardIdentifier="LoginViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Q1j-qK-Nq8" userLabel="Sign_in" customClass="LoginViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="vfL-PU-G6Q">
- <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="User" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="e4L-J6-NNX">
- <rect key="frame" x="60" y="127" width="360" height="30"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="y7F-m4-eUT"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <textInputTraits key="textInputTraits" autocorrectionType="no"/>
- <connections>
- <outlet property="delegate" destination="Q1j-qK-Nq8" id="uSE-GC-A0y"/>
- </connections>
- </textField>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Password" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="oCu-XS-jr9">
- <rect key="frame" x="60" y="166" width="360" height="34"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <textInputTraits key="textInputTraits" secureTextEntry="YES"/>
- </textField>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="B5F-AY-BkK">
- <rect key="frame" x="60" y="224" width="360" height="22"/>
- <constraints>
- <constraint firstAttribute="height" constant="22" id="CFK-iY-Os2"/>
- </constraints>
- <inset key="contentEdgeInsets" minX="4" minY="0.0" maxX="0.0" maxY="0.0"/>
- <inset key="imageEdgeInsets" minX="-4" minY="0.0" maxX="0.0" maxY="0.0"/>
- <state key="normal" title="Save password" image="checkbox">
- <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- </button>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="20z-6W-PvH">
- <rect key="frame" x="296" y="224" width="124" height="22"/>
- <constraints>
- <constraint firstAttribute="height" constant="22" id="LG5-Yp-tPQ"/>
- </constraints>
- <inset key="contentEdgeInsets" minX="4" minY="0.0" maxX="0.0" maxY="0.0"/>
- <inset key="imageEdgeInsets" minX="-4" minY="0.0" maxX="0.0" maxY="0.0"/>
- <state key="normal" title="Offline mode" image="checkbox">
- <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- </button>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Sign in" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="2AI-yS-Vfe">
- <rect key="frame" x="60" y="91" width="59" height="26"/>
- <constraints>
- <constraint firstAttribute="height" constant="26" id="wGm-YM-Mtp"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="20"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="right" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="pO9-Lj-YQb">
- <rect key="frame" x="294" y="89.5" width="126" height="30"/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="zLX-yr-Dvk"/>
- </constraints>
- <state key="normal" title="Retrieve password">
- <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <connections>
- <action selector="onRetrievePassword:" destination="Q1j-qK-Nq8" eventType="touchUpInside" id="y8v-bK-749"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="CZM-O3-JlR" customClass="DefaultImageButton">
- <rect key="frame" x="358" y="250" width="102" height="30"/>
- <constraints>
- <constraint firstAttribute="width" constant="102" id="ANs-ln-cLS"/>
- <constraint firstAttribute="height" constant="30" id="P45-ke-sKG"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="20"/>
- <state key="normal" title="Sign in" backgroundImage="btn_signin">
- <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
- <integer key="value" value="19"/>
- </userDefinedRuntimeAttribute>
- </userDefinedRuntimeAttributes>
- <connections>
- <action selector="onLoginClick:" destination="Q1j-qK-Nq8" eventType="touchUpInside" id="u09-UA-ScX"/>
- </connections>
- </button>
- <tableView hidden="YES" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="3dj-qP-iVc">
- <rect key="frame" x="60" y="157" width="360" height="85"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="LoginListCell" textLabel="AxX-hS-Jtg" style="IBUITableViewCellStyleDefault" id="kAP-gb-Gce">
- <rect key="frame" x="0.0" y="50" width="360" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="kAP-gb-Gce" id="Ilc-6o-RhI">
- <rect key="frame" x="0.0" y="0.0" width="360" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="AxX-hS-Jtg">
- <rect key="frame" x="16" y="0.0" width="328" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="16"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="Q1j-qK-Nq8" id="xu3-jC-atg"/>
- <outlet property="delegate" destination="Q1j-qK-Nq8" id="N2l-yO-mxO"/>
- </connections>
- </tableView>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="FqB-9p-WZO">
- <rect key="frame" x="228" y="250" width="100" height="30"/>
- <constraints>
- <constraint firstAttribute="width" constant="100" id="rVB-KF-ePd"/>
- <constraint firstAttribute="height" constant="30" id="y7g-Tz-bPx"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <state key="normal" title="Request Login">
- <color key="titleColor" red="0.60000002379999995" green="0.40000000600000002" blue="0.20000000300000001" alpha="1" colorSpace="calibratedRGB"/>
- </state>
- <connections>
- <action selector="requestLoginBtnClicked:" destination="Q1j-qK-Nq8" eventType="touchUpInside" id="Er6-GZ-JiA"/>
- </connections>
- </button>
- </subviews>
- <viewLayoutGuide key="safeArea" id="E3s-Bo-qWx"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="e4L-J6-NNX" firstAttribute="leading" secondItem="E3s-Bo-qWx" secondAttribute="leading" constant="60" id="5rN-Bq-Gp0"/>
- <constraint firstItem="3dj-qP-iVc" firstAttribute="leading" secondItem="2AI-yS-Vfe" secondAttribute="leading" id="8YV-ca-ONJ"/>
- <constraint firstItem="CZM-O3-JlR" firstAttribute="centerY" secondItem="FqB-9p-WZO" secondAttribute="centerY" id="BFh-sl-lkW"/>
- <constraint firstItem="CZM-O3-JlR" firstAttribute="leading" secondItem="FqB-9p-WZO" secondAttribute="trailing" constant="30" id="C4e-ia-JDM"/>
- <constraint firstItem="B5F-AY-BkK" firstAttribute="leading" secondItem="2AI-yS-Vfe" secondAttribute="leading" id="C5V-5F-xxp"/>
- <constraint firstItem="20z-6W-PvH" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" id="F8M-cK-QME"/>
- <constraint firstItem="CZM-O3-JlR" firstAttribute="top" secondItem="3dj-qP-iVc" secondAttribute="bottom" constant="8" id="FSS-Qf-IC9"/>
- <constraint firstItem="E3s-Bo-qWx" firstAttribute="trailing" secondItem="CZM-O3-JlR" secondAttribute="trailing" constant="20" id="QNS-eu-p2q"/>
- <constraint firstItem="E3s-Bo-qWx" firstAttribute="bottom" secondItem="CZM-O3-JlR" secondAttribute="bottom" constant="20" id="RFM-nE-ZoK"/>
- <constraint firstItem="2AI-yS-Vfe" firstAttribute="top" secondItem="E3s-Bo-qWx" secondAttribute="top" constant="67" id="X4o-Ve-shM"/>
- <constraint firstItem="oCu-XS-jr9" firstAttribute="leading" secondItem="2AI-yS-Vfe" secondAttribute="leading" id="XPY-Xr-orm"/>
- <constraint firstItem="e4L-J6-NNX" firstAttribute="leading" secondItem="2AI-yS-Vfe" secondAttribute="leading" id="cdu-6c-yVK"/>
- <constraint firstItem="B5F-AY-BkK" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" id="eaR-VW-73d"/>
- <constraint firstItem="pO9-Lj-YQb" firstAttribute="firstBaseline" secondItem="2AI-yS-Vfe" secondAttribute="firstBaseline" id="ek0-eD-CdQ"/>
- <constraint firstItem="20z-6W-PvH" firstAttribute="top" secondItem="oCu-XS-jr9" secondAttribute="bottom" constant="24" id="m0g-cr-Isk"/>
- <constraint firstItem="3dj-qP-iVc" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" id="nvE-gE-XeQ"/>
- <constraint firstItem="20z-6W-PvH" firstAttribute="bottom" secondItem="B5F-AY-BkK" secondAttribute="bottom" id="oiO-3K-qoF"/>
- <constraint firstItem="pO9-Lj-YQb" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" id="p1K-RF-wFX"/>
- <constraint firstItem="E3s-Bo-qWx" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" constant="60" id="pN5-Nz-h0t"/>
- <constraint firstItem="oCu-XS-jr9" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" id="x8C-kd-WnK"/>
- <constraint firstItem="3dj-qP-iVc" firstAttribute="top" secondItem="e4L-J6-NNX" secondAttribute="bottom" id="xIq-bZ-ffe"/>
- <constraint firstItem="oCu-XS-jr9" firstAttribute="top" secondItem="e4L-J6-NNX" secondAttribute="bottom" constant="9" id="xiC-xJ-kR0"/>
- <constraint firstItem="e4L-J6-NNX" firstAttribute="top" secondItem="2AI-yS-Vfe" secondAttribute="bottom" constant="10" id="zWZ-Ih-Z7f"/>
- </constraints>
- </view>
- <navigationItem key="navigationItem" title="NPD" id="InA-1X-4Kd">
- <barButtonItem key="rightBarButtonItem" image="close" id="Rl4-6e-kHm">
- <connections>
- <action selector="CloseClick:" destination="Q1j-qK-Nq8" id="pAM-ui-IMx"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
- <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
- <size key="freeformSize" width="480" height="320"/>
- <connections>
- <outlet property="Loginlist" destination="3dj-qP-iVc" id="XaJ-eX-qBn"/>
- <outlet property="bb_close" destination="Rl4-6e-kHm" id="0Mj-Do-OjV"/>
- <outlet property="btnLogin" destination="CZM-O3-JlR" id="unz-tZ-32M"/>
- <outlet property="checkOfflineMode" destination="20z-6W-PvH" id="dce-H9-djn"/>
- <outlet property="checkSavePassword" destination="B5F-AY-BkK" id="zzE-TR-Jcm"/>
- <outlet property="editpass" destination="oCu-XS-jr9" id="Tqo-ji-zau"/>
- <outlet property="edituser" destination="e4L-J6-NNX" id="MPR-BH-UPe"/>
- <outlet property="requestLoginBtn" destination="FqB-9p-WZO" id="hGJ-jt-j5G"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="LPP-1Z-0yh" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1167.96875" y="-935.15624999999989"/>
- </scene>
- <!--Home View Controller-->
- <scene sceneID="ooR-wa-PJg">
- <objects>
- <viewController storyboardIdentifier="HomeViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="qnc-8g-ecq" customClass="HomeViewController" sceneMemberID="viewController">
- <view key="view" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" id="uyL-pB-aij">
- <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <view hidden="YES" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="hF1-Cm-X4t" userLabel="home category menu">
- <rect key="frame" x="-281" y="-1" width="257" height="1134"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" heightSizable="YES" flexibleMaxY="YES"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <tableView clipsSubviews="YES" contentMode="scaleToFill" fixedFrame="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" translatesAutoresizingMaskIntoConstraints="NO" id="nqT-Hf-Ep7" userLabel="home content table">
- <rect key="frame" x="-1" y="-1" width="744" height="1134"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES" flexibleMaxY="YES"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="HomeTableViewCellSlide" id="c21-Hy-QJU" customClass="HomeTableViewCellSlide">
- <rect key="frame" x="0.0" y="50" width="744" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="c21-Hy-QJU" id="2Mt-ve-YI4">
- <rect key="frame" x="0.0" y="0.0" width="744" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" restorationIdentifier="HomeTableViewCellBanner" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="HomeTableViewCellBanner" rowHeight="317" id="rvl-UX-dny" customClass="HomeTableViewCellBanner">
- <rect key="frame" x="0.0" y="94" width="744" height="317"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="rvl-UX-dny" id="ULg-i3-NWf">
- <rect key="frame" x="0.0" y="0.0" width="744" height="317"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3Rk-k3-zwC">
- <rect key="frame" x="9" y="-13" width="746" height="308"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="BannerImageView" destination="3Rk-k3-zwC" id="Lyx-HU-JK1"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" restorationIdentifier="HomeTableViewCellButtonBanner" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="HomeTableViewCellButtonBanner" rowHeight="317" id="Put-35-LxJ" customClass="HomeTableViewCellButtonBanner">
- <rect key="frame" x="0.0" y="411" width="744" height="317"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Put-35-LxJ" id="Lai-zl-Z6Z">
- <rect key="frame" x="0.0" y="0.0" width="744" height="317"/>
- <autoresizingMask key="autoresizingMask"/>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" restorationIdentifier="HomeTableViewCellTopic" selectionStyle="default" indentationWidth="10" reuseIdentifier="HomeTableViewCellTopic" rowHeight="310" id="Pbg-ua-PLt" customClass="HomeTableViewCellTopic">
- <rect key="frame" x="0.0" y="728" width="744" height="310"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Pbg-ua-PLt" id="dGe-fL-Pfl">
- <rect key="frame" x="0.0" y="0.0" width="744" height="310"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="AJc-gj-4ib">
- <rect key="frame" x="-5" y="11" width="744" height="15"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <collectionView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" fixedFrame="YES" minimumZoomScale="0.0" maximumZoomScale="0.0" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="YZB-OJ-1Vt">
- <rect key="frame" x="-5" y="16" width="744" height="268"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <collectionViewFlowLayout key="collectionViewLayout" scrollDirection="horizontal" minimumLineSpacing="10" minimumInteritemSpacing="10" id="saz-yz-bIb">
- <size key="itemSize" width="175" height="234"/>
- <size key="headerReferenceSize" width="0.0" height="0.0"/>
- <size key="footerReferenceSize" width="0.0" height="0.0"/>
- <inset key="sectionInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
- </collectionViewFlowLayout>
- <cells>
- <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="RelatedModelCell" id="uoK-xx-tpx" customClass="CategoryCellSmall">
- <rect key="frame" x="0.0" y="17" width="175" height="234"/>
- <autoresizingMask key="autoresizingMask"/>
- <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
- <rect key="frame" x="0.0" y="0.0" width="175" height="234"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="mhk-as-czM">
- <rect key="frame" x="1" y="1" width="173" height="172"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="Label" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="WFK-py-itc" userLabel="Label -description">
- <rect key="frame" x="8" y="195" width="159" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </view>
- <color key="backgroundColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <connections>
- <outlet property="cellDescription" destination="WFK-py-itc" id="LSc-M2-YzH"/>
- <outlet property="cellImageView" destination="mhk-as-czM" id="uwx-Yj-WTi"/>
- </connections>
- </collectionViewCell>
- </cells>
- <connections>
- <outlet property="dataSource" destination="Pbg-ua-PLt" id="0dK-Wn-1rU"/>
- <outlet property="delegate" destination="Pbg-ua-PLt" id="gFa-AT-pP5"/>
- </connections>
- </collectionView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="Title" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="QPi-DJ-gSR">
- <rect key="frame" x="0.0" y="11" width="768" height="21"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="label_title" destination="QPi-DJ-gSR" id="FQ2-0h-DvQ"/>
- <outlet property="topicCollectionView" destination="YZB-OJ-1Vt" id="njr-zM-l0b"/>
- </connections>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="qnc-8g-ecq" id="4tg-zU-tQk"/>
- <outlet property="delegate" destination="qnc-8g-ecq" id="AG3-4l-k38"/>
- </connections>
- </tableView>
- <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" fixedFrame="YES" hidesWhenStopped="YES" animating="YES" style="whiteLarge" translatesAutoresizingMaskIntoConstraints="NO" id="Fnh-SM-ihl">
- <rect key="frame" x="353" y="547" width="37" height="37"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
- <color key="color" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </activityIndicatorView>
- <label hidden="YES" opaque="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="Cannot get data from server.
Tap to try again." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="95F-9e-vAS">
- <rect key="frame" x="232" y="530" width="277" height="73"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="19"/>
- <color key="textColor" red="0.33333333333333331" green="0.33333333333333331" blue="0.33333333333333331" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <viewLayoutGuide key="safeArea" id="zyS-ws-jOo"/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- </view>
- <toolbarItems/>
- <connections>
- <outlet property="homeTable" destination="nqT-Hf-Ep7" id="qZ3-Q2-bgS"/>
- <outlet property="label_net_err" destination="95F-9e-vAS" id="gkX-k5-PJE"/>
- <outlet property="mum" destination="Fnh-SM-ihl" id="72b-Kj-R5h"/>
- <outlet property="treeContainer" destination="hF1-Cm-X4t" id="68v-WT-wDe"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="k7p-uv-DeY" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1792.96875" y="-100.1953125"/>
- </scene>
- <!--ScannerViewController-->
- <scene sceneID="tgY-Nq-Wd9">
- <objects>
- <viewController storyboardIdentifier="ScannerViewController" title="ScannerViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="EIb-H4-v4U" customClass="ScannerViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="NHM-5E-iC6">
- <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="G66-bZ-5AK" customClass="ScannerControllerView">
- <rect key="frame" x="0.0" y="24" width="744" height="1089"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="wordWrap" translatesAutoresizingMaskIntoConstraints="NO" id="dHM-WV-ZSO" userLabel="Button scan">
- <rect key="frame" x="589" y="726" width="108" height="108"/>
- <color key="backgroundColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="width" constant="108" id="cxB-uv-UGA"/>
- <constraint firstAttribute="height" constant="108" id="vqs-UD-ndn"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="0.0"/>
- <state key="normal">
- <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
- <integer key="value" value="54"/>
- </userDefinedRuntimeAttribute>
- </userDefinedRuntimeAttributes>
- <connections>
- <action selector="ScanButtonClick:" destination="EIb-H4-v4U" eventType="touchUpInside" id="xkf-x8-8N4"/>
- </connections>
- </button>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="pick_bg" translatesAutoresizingMaskIntoConstraints="NO" id="nxQ-Fb-gF5">
- <rect key="frame" x="122" y="394.5" width="500" height="300"/>
- <constraints>
- <constraint firstAttribute="width" constant="500" id="1g6-UG-b63"/>
- <constraint firstAttribute="height" constant="300" id="Ep8-fT-FON"/>
- </constraints>
- </imageView>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Zfm-0K-VDC">
- <rect key="frame" x="122" y="754.5" width="500" height="51"/>
- <constraints>
- <constraint firstAttribute="height" constant="51" id="b8K-xQ-vVg"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" weight="heavy" pointSize="20"/>
- <state key="normal" title="Target: Model Detail"/>
- <connections>
- <action selector="TargetButtonClick:" destination="EIb-H4-v4U" eventType="touchUpInside" id="9Mf-ms-ZCb"/>
- </connections>
- </button>
- <button hidden="YES" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="5z7-HK-0WT">
- <rect key="frame" x="282" y="305" width="180" height="34.5"/>
- <state key="normal" title="Button"/>
- <buttonConfiguration key="configuration" style="plain" title="Type: Model Name">
- <fontDescription key="titleFontDescription" type="system" weight="heavy" pointSize="17"/>
- </buttonConfiguration>
- <connections>
- <action selector="TypeButtonClick:" destination="EIb-H4-v4U" eventType="touchUpInside" id="ike-GD-8aF"/>
- </connections>
- </button>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="dHM-WV-ZSO" firstAttribute="centerY" secondItem="Zfm-0K-VDC" secondAttribute="centerY" id="3Tu-om-no6"/>
- <constraint firstItem="5z7-HK-0WT" firstAttribute="centerX" secondItem="G66-bZ-5AK" secondAttribute="centerX" id="Ak3-eD-Z7Y"/>
- <constraint firstItem="nxQ-Fb-gF5" firstAttribute="centerX" secondItem="G66-bZ-5AK" secondAttribute="centerX" id="BnE-cg-2FL"/>
- <constraint firstAttribute="trailing" secondItem="dHM-WV-ZSO" secondAttribute="trailing" constant="47" id="CkA-Dv-7BS"/>
- <constraint firstItem="nxQ-Fb-gF5" firstAttribute="centerY" secondItem="G66-bZ-5AK" secondAttribute="centerY" id="E1I-kP-Upr"/>
- <constraint firstItem="Zfm-0K-VDC" firstAttribute="trailing" secondItem="nxQ-Fb-gF5" secondAttribute="trailing" id="Nxl-G2-3f7"/>
- <constraint firstItem="Zfm-0K-VDC" firstAttribute="leading" secondItem="nxQ-Fb-gF5" secondAttribute="leading" id="dPZ-Wb-EbB"/>
- <constraint firstItem="Zfm-0K-VDC" firstAttribute="top" secondItem="nxQ-Fb-gF5" secondAttribute="bottom" constant="60" id="fzg-pY-V2d"/>
- <constraint firstItem="nxQ-Fb-gF5" firstAttribute="top" secondItem="5z7-HK-0WT" secondAttribute="bottom" constant="55" id="j0b-GP-MEZ"/>
- </constraints>
- </view>
- </subviews>
- <viewLayoutGuide key="safeArea" id="qfZ-AN-nm6"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="G66-bZ-5AK" firstAttribute="top" secondItem="qfZ-AN-nm6" secondAttribute="top" id="A0p-mk-G29"/>
- <constraint firstItem="G66-bZ-5AK" firstAttribute="bottom" secondItem="qfZ-AN-nm6" secondAttribute="bottom" id="R2y-gL-KVz"/>
- <constraint firstItem="G66-bZ-5AK" firstAttribute="leading" secondItem="qfZ-AN-nm6" secondAttribute="leading" id="hSP-Fa-Pn5"/>
- <constraint firstItem="G66-bZ-5AK" firstAttribute="trailing" secondItem="qfZ-AN-nm6" secondAttribute="trailing" id="i7z-Nr-ZrM"/>
- </constraints>
- </view>
- <navigationItem key="navigationItem" title="Scanner" id="E95-sd-zz2"/>
- <connections>
- <outlet property="backgroundView" destination="G66-bZ-5AK" id="SO2-aS-Hjz"/>
- <outlet property="focusZone" destination="nxQ-Fb-gF5" id="mgU-R3-NhT"/>
- <outlet property="scanButton" destination="dHM-WV-ZSO" id="zJA-gj-H7R"/>
- <outlet property="targetButton" destination="Zfm-0K-VDC" id="REG-YG-Zej"/>
- <outlet property="typeButton" destination="5z7-HK-0WT" id="Kfn-X4-VnO"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="5qg-tr-rF5" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2221.875" y="-2534.1796875"/>
- </scene>
- <!--Cache-->
- <scene sceneID="1T2-gR-ILK">
- <objects>
- <tableViewController storyboardIdentifier="CacheViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="SCh-P5-b9w" customClass="CacheViewController" sceneMemberID="viewController">
- <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" id="ESr-hp-wy1">
- <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="Dxk-o0-QTQ">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="QWz-EJ-Yzy">
- <rect key="frame" x="0.0" y="50" width="744" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="QWz-EJ-Yzy" id="E1L-su-dvV">
- <rect key="frame" x="0.0" y="0.0" width="744" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="PJV-YE-GvQ">
- <rect key="frame" x="680" y="6" width="51" height="31"/>
- <connections>
- <action selector="cacheSwitchChanged:" destination="SCh-P5-b9w" eventType="valueChanged" id="Qx0-8P-8Gq"/>
- </connections>
- </switch>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Enable cache" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qKR-8L-xrc">
- <rect key="frame" x="20" y="11" width="102" height="21"/>
- <constraints>
- <constraint firstAttribute="height" constant="21" id="9Dl-FZ-2gr"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="qKR-8L-xrc" secondAttribute="bottom" constant="12" id="EFz-o0-YVX"/>
- <constraint firstItem="qKR-8L-xrc" firstAttribute="leading" secondItem="E1L-su-dvV" secondAttribute="leading" constant="20" id="Jg5-6V-X6C"/>
- <constraint firstItem="PJV-YE-GvQ" firstAttribute="top" secondItem="E1L-su-dvV" secondAttribute="top" constant="6" id="O5K-GW-h4E"/>
- <constraint firstAttribute="trailing" secondItem="PJV-YE-GvQ" secondAttribute="trailing" constant="15" id="ft6-bR-Std"/>
- <constraint firstAttribute="bottom" secondItem="PJV-YE-GvQ" secondAttribute="bottom" constant="7" id="kNR-v5-XsK"/>
- <constraint firstItem="qKR-8L-xrc" firstAttribute="top" secondItem="E1L-su-dvV" secondAttribute="top" constant="11" id="oPE-GW-FM7"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="TID-OY-afi">
- <rect key="frame" x="0.0" y="94" width="744" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="TID-OY-afi" id="yuC-0D-Ebs">
- <rect key="frame" x="0.0" y="0.0" width="744" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Diskspace" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pVO-Tx-wMs">
- <rect key="frame" x="20" y="11" width="100" height="21"/>
- <constraints>
- <constraint firstAttribute="width" constant="100" id="Bju-ob-q4a"/>
- <constraint firstAttribute="height" constant="21" id="j82-Bi-Gpi"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="el1-Tc-PkB">
- <rect key="frame" x="474" y="11" width="255" height="21"/>
- <constraints>
- <constraint firstAttribute="width" constant="255" id="eVQ-NU-rQp"/>
- <constraint firstAttribute="height" constant="21" id="g09-MR-GgQ"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" hidesWhenStopped="YES" animating="YES" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="D0F-Ed-Wng">
- <rect key="frame" x="119" y="12" width="20" height="20"/>
- <constraints>
- <constraint firstAttribute="height" constant="20" id="3hA-JL-hmO"/>
- <constraint firstAttribute="width" constant="20" id="WbA-UI-86q"/>
- </constraints>
- <color key="color" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </activityIndicatorView>
- </subviews>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="el1-Tc-PkB" secondAttribute="bottom" constant="12" id="0gc-DT-htb"/>
- <constraint firstItem="pVO-Tx-wMs" firstAttribute="top" secondItem="yuC-0D-Ebs" secondAttribute="top" constant="11" id="3UI-gz-YvE"/>
- <constraint firstAttribute="bottom" secondItem="D0F-Ed-Wng" secondAttribute="bottom" constant="12" id="98y-fg-NAY"/>
- <constraint firstAttribute="trailing" secondItem="el1-Tc-PkB" secondAttribute="trailing" constant="15" id="BwW-nS-sCh"/>
- <constraint firstItem="D0F-Ed-Wng" firstAttribute="top" secondItem="yuC-0D-Ebs" secondAttribute="top" constant="12" id="Ji8-Jf-bBZ"/>
- <constraint firstItem="D0F-Ed-Wng" firstAttribute="leading" secondItem="yuC-0D-Ebs" secondAttribute="leadingMargin" constant="99" id="KaA-Tr-zhF"/>
- <constraint firstAttribute="bottom" secondItem="pVO-Tx-wMs" secondAttribute="bottom" constant="12" id="VZz-Tt-uSj"/>
- <constraint firstItem="el1-Tc-PkB" firstAttribute="top" secondItem="yuC-0D-Ebs" secondAttribute="top" constant="11" id="X6e-Vb-WxL"/>
- <constraint firstItem="pVO-Tx-wMs" firstAttribute="leading" secondItem="yuC-0D-Ebs" secondAttribute="leading" constant="20" id="nce-yw-8xF"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Pol-lE-P45">
- <rect key="frame" x="0.0" y="138" width="744" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Pol-lE-P45" id="FAm-1c-nX0">
- <rect key="frame" x="0.0" y="0.0" width="713.5" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Clean Cache" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AHm-p1-51h">
- <rect key="frame" x="20" y="11" width="120" height="21"/>
- <constraints>
- <constraint firstAttribute="width" constant="120" id="S5w-mj-bdv"/>
- <constraint firstAttribute="height" constant="21" id="fAE-p9-tse"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="AHm-p1-51h" firstAttribute="leading" secondItem="FAm-1c-nX0" secondAttribute="leading" constant="20" id="8ZZ-3L-je6"/>
- <constraint firstItem="AHm-p1-51h" firstAttribute="top" secondItem="FAm-1c-nX0" secondAttribute="top" constant="11" id="PVx-Cs-UHa"/>
- <constraint firstAttribute="bottom" secondItem="AHm-p1-51h" secondAttribute="bottom" constant="12" id="lks-1h-E4B"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="SCh-P5-b9w" id="V7V-Rb-Kav"/>
- <outlet property="delegate" destination="SCh-P5-b9w" id="B4H-r7-aS3"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Cache" id="IG0-Dw-a0J"/>
- <connections>
- <outlet property="catchSwitch" destination="PJV-YE-GvQ" id="2N3-Pq-QXJ"/>
- <outlet property="mum" destination="D0F-Ed-Wng" id="1mp-TU-vTM"/>
- <outlet property="sizeLabel" destination="el1-Tc-PkB" id="ooE-we-dgL"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="FEW-hW-hPv" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="937.5" y="-2527.1484375"/>
- </scene>
- <!--Popup Navigation Controller-->
- <scene sceneID="huE-IR-N6G">
- <objects>
- <navigationController storyboardIdentifier="PopupNavi" definesPresentationContext="YES" useStoryboardIdentifierAsRestorationIdentifier="YES" id="O4f-Xf-sca" customClass="PopupNavigationController" sceneMemberID="viewController">
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="jDv-A4-an8">
- <rect key="frame" x="0.0" y="24" width="744" height="50"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="Tew-5G-eJV" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-453.125" y="-816.796875"/>
- </scene>
- <!--Black Box-->
- <scene sceneID="cVU-iS-CVg">
- <objects>
- <viewController storyboardIdentifier="FunctionTestViewController" title="Black Box" useStoryboardIdentifierAsRestorationIdentifier="YES" id="kPm-vh-Xir" customClass="FunctionTestViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="c5B-Gi-I5E">
- <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="f2s-mC-wXH">
- <rect key="frame" x="60" y="262" width="250" height="30"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" title="Background print"/>
- <connections>
- <action selector="onBackgroundprintClick:" destination="kPm-vh-Xir" eventType="touchUpInside" id="ADx-Bs-IY1"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="3Vw-af-LUM">
- <rect key="frame" x="60" y="201" width="250" height="30"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" title="Printer Setting"/>
- <connections>
- <action selector="onPrintersettingClick:" destination="kPm-vh-Xir" eventType="touchUpInside" id="ign-k9-WDe"/>
- </connections>
- </button>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="printer will show here" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="hx4-8E-afz">
- <rect key="frame" x="342" y="210" width="190" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="4aT-F9-r30">
- <rect key="frame" x="94" y="388" width="183" height="30"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" title="Print"/>
- <connections>
- <action selector="OnPrintParamsClick:" destination="kPm-vh-Xir" eventType="touchUpInside" id="5NP-He-9AA"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="es7-3g-P9E">
- <rect key="frame" x="106" y="444" width="97" height="35"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" title="Button"/>
- <buttonConfiguration key="configuration" style="plain" title="Signature"/>
- <connections>
- <action selector="onSignature:" destination="kPm-vh-Xir" eventType="touchUpInside" id="w6A-I5-XgS"/>
- </connections>
- </button>
- </subviews>
- <viewLayoutGuide key="safeArea" id="TDE-LW-r8Y"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <connections>
- <outlet property="labelPrintername" destination="hx4-8E-afz" id="Uu8-1I-s5L"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="SqT-Vo-cY8" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="949.21875" y="2638.4765625"/>
- </scene>
- <!--Upload Photo-->
- <scene sceneID="kaQ-l6-cav">
- <objects>
- <viewController storyboardIdentifier="ImageUploadViewController" title="Upload Photo" useStoryboardIdentifierAsRestorationIdentifier="YES" id="yoP-dB-tvg" customClass="ImageUploadViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="Jl1-Pm-bf5">
- <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" insetsLayoutMarginsFromSafeArea="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5ri-5V-GiE">
- <rect key="frame" x="84" y="144" width="576" height="809"/>
- <color key="backgroundColor" red="0.79277843236923218" green="0.79277843236923218" blue="0.79277843236923218" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </imageView>
- <button opaque="NO" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Na7-Cn-iPo">
- <rect key="frame" x="82" y="989" width="48" height="48"/>
- <constraints>
- <constraint firstAttribute="height" constant="48" id="U6r-4X-yDY"/>
- <constraint firstAttribute="width" constant="48" id="n8g-R9-DsX"/>
- </constraints>
- <state key="normal" image="album"/>
- <connections>
- <action selector="onClickAlbum:" destination="yoP-dB-tvg" eventType="touchUpInside" id="r6T-zf-AOR"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="t9M-g5-jQa">
- <rect key="frame" x="173" y="989" width="48" height="48"/>
- <constraints>
- <constraint firstAttribute="height" constant="48" id="acz-Es-WzN"/>
- <constraint firstAttribute="width" constant="48" id="bc7-FB-hAx"/>
- </constraints>
- <state key="normal" image="camera"/>
- <connections>
- <action selector="onClickCamera:" destination="yoP-dB-tvg" eventType="touchUpInside" id="I9k-Sb-ExD"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8fL-NB-sPV">
- <rect key="frame" x="611" y="989" width="48" height="48"/>
- <constraints>
- <constraint firstAttribute="width" constant="48" id="78F-O0-z56"/>
- <constraint firstAttribute="height" constant="48" id="AaV-ZZ-MJT"/>
- </constraints>
- <state key="normal" image="upload"/>
- <connections>
- <action selector="onClickUpload:" destination="yoP-dB-tvg" eventType="touchUpInside" id="gwB-hs-npR"/>
- </connections>
- </button>
- <progressView opaque="NO" contentMode="scaleToFill" verticalHuggingPriority="750" insetsLayoutMarginsFromSafeArea="NO" progressViewStyle="bar" translatesAutoresizingMaskIntoConstraints="NO" id="N7c-8k-EE4">
- <rect key="frame" x="84" y="968" width="576" height="4"/>
- <color key="backgroundColor" red="0.081770886230000006" green="0.40781933069999998" blue="0.094417002809999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="3" id="1Yh-dZ-FJ4"/>
- </constraints>
- </progressView>
- </subviews>
- <viewLayoutGuide key="safeArea" id="IAj-uF-ECE"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="IAj-uF-ECE" firstAttribute="bottom" secondItem="8fL-NB-sPV" secondAttribute="bottom" constant="76" id="0eH-FM-71C"/>
- <constraint firstItem="N7c-8k-EE4" firstAttribute="top" secondItem="5ri-5V-GiE" secondAttribute="bottom" constant="15" id="2PS-5E-slp"/>
- <constraint firstItem="IAj-uF-ECE" firstAttribute="bottom" secondItem="Na7-Cn-iPo" secondAttribute="bottom" constant="76" id="3rv-Do-e6v"/>
- <constraint firstItem="IAj-uF-ECE" firstAttribute="trailing" secondItem="8fL-NB-sPV" secondAttribute="trailing" constant="85" id="Iqg-OS-LcZ"/>
- <constraint firstItem="Na7-Cn-iPo" firstAttribute="leading" secondItem="IAj-uF-ECE" secondAttribute="leading" constant="82" id="TW0-dW-ONy"/>
- <constraint firstItem="N7c-8k-EE4" firstAttribute="leading" secondItem="Jl1-Pm-bf5" secondAttribute="leading" constant="84" id="WV3-sb-COE"/>
- <constraint firstAttribute="trailing" secondItem="N7c-8k-EE4" secondAttribute="trailing" constant="84" id="cDi-0d-udq"/>
- <constraint firstItem="Na7-Cn-iPo" firstAttribute="top" secondItem="N7c-8k-EE4" secondAttribute="bottom" constant="18" id="gO1-oX-3mT"/>
- <constraint firstItem="t9M-g5-jQa" firstAttribute="leading" secondItem="Na7-Cn-iPo" secondAttribute="trailing" constant="43" id="lio-Uh-NDK"/>
- <constraint firstItem="5ri-5V-GiE" firstAttribute="leading" secondItem="IAj-uF-ECE" secondAttribute="leading" constant="84" id="scL-Br-dHn"/>
- <constraint firstItem="5ri-5V-GiE" firstAttribute="top" secondItem="IAj-uF-ECE" secondAttribute="top" constant="120" id="uKF-tN-2Mh"/>
- <constraint firstItem="IAj-uF-ECE" firstAttribute="trailing" secondItem="5ri-5V-GiE" secondAttribute="trailing" constant="84" id="voQ-ho-iap"/>
- <constraint firstItem="IAj-uF-ECE" firstAttribute="bottom" secondItem="t9M-g5-jQa" secondAttribute="bottom" constant="76" id="z4T-7B-jfS"/>
- </constraints>
- </view>
- <connections>
- <outlet property="buttonAlbum" destination="Na7-Cn-iPo" id="69T-ox-Obc"/>
- <outlet property="buttonCamera" destination="t9M-g5-jQa" id="Q5w-84-qiU"/>
- <outlet property="buttonUpload" destination="8fL-NB-sPV" id="nt7-iR-m69"/>
- <outlet property="imgview" destination="5ri-5V-GiE" id="DVk-hE-8i0"/>
- <outlet property="uploadProgress" destination="N7c-8k-EE4" id="lZo-Gc-okV"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="t9J-cc-PR0" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="5323.4375" y="445.89843749999994"/>
- </scene>
- <!--RetrievePassViewController-->
- <scene sceneID="UaH-26-0Pi">
- <objects>
- <viewController storyboardIdentifier="RetrievePassViewController" title="RetrievePassViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="A7H-cd-cEh" customClass="RetrievePassViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="8T3-kQ-dJ2">
- <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="User" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="qk3-tB-bW0">
- <rect key="frame" x="60" y="168" width="360" height="34"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <textInputTraits key="textInputTraits"/>
- </textField>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Email" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="bZG-Uc-zBh">
- <rect key="frame" x="60" y="217" width="360" height="34"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <textInputTraits key="textInputTraits" keyboardType="emailAddress"/>
- </textField>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Fill Username and email address, then click Retrieve button.Reset password email will be sent to your email address shortly." lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Hyd-5M-IPx">
- <rect key="frame" x="60" y="84" width="360" height="74"/>
- <constraints>
- <constraint firstAttribute="height" constant="74" id="ywg-QF-UYx"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="NtX-di-oxp" customClass="DefaultImageButton">
- <rect key="frame" x="358" y="250" width="102" height="30"/>
- <constraints>
- <constraint firstAttribute="width" constant="102" id="gCp-Ua-0Pb"/>
- <constraint firstAttribute="height" constant="30" id="kBg-ZD-rin"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="20"/>
- <state key="normal" title="Retrieve" backgroundImage="btn_retrieve">
- <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
- <integer key="value" value="19"/>
- </userDefinedRuntimeAttribute>
- </userDefinedRuntimeAttributes>
- <connections>
- <action selector="onLoginClick:" destination="Q1j-qK-Nq8" eventType="touchUpInside" id="Ypk-0a-iRJ"/>
- <action selector="onRetrieveClicked:" destination="A7H-cd-cEh" eventType="touchUpInside" id="2P5-4Y-0SI"/>
- </connections>
- </button>
- </subviews>
- <viewLayoutGuide key="safeArea" id="pDW-qe-5Kr"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="pDW-qe-5Kr" firstAttribute="trailing" secondItem="NtX-di-oxp" secondAttribute="trailing" constant="20" id="DE6-Ut-aCG"/>
- <constraint firstItem="Hyd-5M-IPx" firstAttribute="top" secondItem="pDW-qe-5Kr" secondAttribute="top" constant="60" id="Loc-rI-fja"/>
- <constraint firstItem="pDW-qe-5Kr" firstAttribute="trailing" secondItem="qk3-tB-bW0" secondAttribute="trailing" constant="60" id="RYG-7U-HVf"/>
- <constraint firstItem="bZG-Uc-zBh" firstAttribute="leading" secondItem="pDW-qe-5Kr" secondAttribute="leading" constant="60" id="f4m-aM-TV8"/>
- <constraint firstItem="pDW-qe-5Kr" firstAttribute="trailing" secondItem="Hyd-5M-IPx" secondAttribute="trailing" constant="60" id="lTI-dt-cIC"/>
- <constraint firstItem="Hyd-5M-IPx" firstAttribute="leading" secondItem="pDW-qe-5Kr" secondAttribute="leading" constant="60" id="mVk-qY-5bG"/>
- <constraint firstItem="pDW-qe-5Kr" firstAttribute="bottom" secondItem="NtX-di-oxp" secondAttribute="bottom" constant="20" id="mqm-s6-Vzl"/>
- <constraint firstItem="qk3-tB-bW0" firstAttribute="top" secondItem="Hyd-5M-IPx" secondAttribute="bottom" constant="10" id="nkN-4f-g9E"/>
- <constraint firstItem="bZG-Uc-zBh" firstAttribute="top" secondItem="qk3-tB-bW0" secondAttribute="bottom" constant="15" id="ogb-oR-mXK"/>
- <constraint firstItem="pDW-qe-5Kr" firstAttribute="trailing" secondItem="bZG-Uc-zBh" secondAttribute="trailing" constant="60" id="vkd-E1-zxy"/>
- <constraint firstItem="qk3-tB-bW0" firstAttribute="leading" secondItem="pDW-qe-5Kr" secondAttribute="leading" constant="60" id="wfW-1p-qls"/>
- </constraints>
- </view>
- <navigationItem key="navigationItem" title="Retrieve password" id="DaL-NM-hQp"/>
- <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
- <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
- <size key="freeformSize" width="480" height="320"/>
- <connections>
- <outlet property="buttonRetrieve" destination="NtX-di-oxp" id="hnp-du-mwt"/>
- <outlet property="editEmail" destination="bZG-Uc-zBh" id="aXN-c2-1og"/>
- <outlet property="editUser" destination="qk3-tB-bW0" id="kx5-yH-QAZ"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="VMB-gd-nbo" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1135.9375" y="-669.140625"/>
- </scene>
- <!--Scanner Setting-->
- <scene sceneID="Q8f-rb-b7i">
- <objects>
- <viewController storyboardIdentifier="ScannerSettingViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Vzz-Pc-fRk" customClass="ScannerSettingViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="bSK-wT-Xlu">
- <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="VyB-jG-KP0">
- <rect key="frame" x="15" y="136" width="714" height="180"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="180" id="2cR-CK-9h6"/>
- </constraints>
- <prototypes>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="device_cell" textLabel="HwF-54-hzr" style="IBUITableViewCellStyleDefault" id="nP5-gn-0Jl">
- <rect key="frame" x="0.0" y="50" width="714" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="nP5-gn-0Jl" id="MCy-CI-ivv">
- <rect key="frame" x="0.0" y="0.0" width="714" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="HwF-54-hzr">
- <rect key="frame" x="16" y="0.0" width="682" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="16"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="Vzz-Pc-fRk" id="1Ij-sX-H77"/>
- <outlet property="delegate" destination="Vzz-Pc-fRk" id="vLi-BX-e7c"/>
- </connections>
- </tableView>
- <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="OJ7-LV-Bht">
- <rect key="frame" x="163" y="44" width="51" height="31"/>
- <connections>
- <action selector="onSwitchChanged:" destination="Vzz-Pc-fRk" eventType="valueChanged" id="gnp-Sn-kzz"/>
- </connections>
- </switch>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Enable scanner" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZiN-wp-62B">
- <rect key="frame" x="15" y="49" width="140" height="21"/>
- <constraints>
- <constraint firstAttribute="width" constant="140" id="N1G-pB-rq5"/>
- <constraint firstAttribute="height" constant="21" id="b2y-i9-FAs"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <activityIndicatorView hidden="YES" opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" hidesWhenStopped="YES" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="LCZ-qf-CXh">
- <rect key="frame" x="220" y="49.5" width="20" height="20"/>
- <constraints>
- <constraint firstAttribute="width" constant="20" id="Mtf-Nd-fgo"/>
- <constraint firstAttribute="height" constant="20" id="e6k-Ig-ObT"/>
- </constraints>
- </activityIndicatorView>
- <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" showsHorizontalScrollIndicator="NO" textAlignment="natural" translatesAutoresizingMaskIntoConstraints="NO" id="JYl-x5-cTc">
- <rect key="frame" x="15" y="402.5" width="714" height="645.5"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" type="system" pointSize="16"/>
- <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
- </textView>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Scan result should display here" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="fWr-gY-E10">
- <rect key="frame" x="163" y="331" width="566" height="34"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <textInputTraits key="textInputTraits"/>
- </textField>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Off" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bOR-xy-Td3">
- <rect key="frame" x="248" y="49" width="481" height="21"/>
- <constraints>
- <constraint firstAttribute="height" constant="21" id="Egj-ta-wwE"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Test Scanner" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ECq-fH-MLi">
- <rect key="frame" x="15" y="337.5" width="140" height="21"/>
- <constraints>
- <constraint firstAttribute="width" constant="140" id="5He-AN-tMo"/>
- <constraint firstAttribute="height" constant="21" id="P8f-wS-lXd"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="right" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="iby-OM-AKk">
- <rect key="frame" x="650" y="1063" width="74" height="30"/>
- <constraints>
- <constraint firstAttribute="width" constant="74" id="CsX-ar-pk3"/>
- <constraint firstAttribute="height" constant="30" id="sDj-r5-vnF"/>
- </constraints>
- <state key="normal" title="Send Log"/>
- <connections>
- <action selector="onEmailClicked:" destination="Vzz-Pc-fRk" eventType="touchUpInside" id="Zpf-p1-pzw"/>
- </connections>
- </button>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Enable on launch" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MT9-hb-STe">
- <rect key="frame" x="15" y="95" width="140" height="21"/>
- <constraints>
- <constraint firstAttribute="height" constant="21" id="2KN-V5-vPB"/>
- <constraint firstAttribute="width" constant="140" id="9ES-CD-8Az"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="LjS-4t-q6l">
- <rect key="frame" x="163" y="90" width="51" height="31"/>
- <connections>
- <action selector="onChangeAutolaunch:" destination="Vzz-Pc-fRk" eventType="valueChanged" id="lNd-bl-eYL"/>
- </connections>
- </switch>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Log" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="mDb-R3-eZv">
- <rect key="frame" x="15" y="373.5" width="140" height="21"/>
- <constraints>
- <constraint firstAttribute="height" constant="21" id="2mG-Th-8Cu"/>
- <constraint firstAttribute="width" constant="140" id="JKa-Fa-yML"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <viewLayoutGuide key="safeArea" id="KKD-kZ-g9f"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="iby-OM-AKk" firstAttribute="top" secondItem="JYl-x5-cTc" secondAttribute="bottom" constant="15" id="2GK-lD-nDa"/>
- <constraint firstItem="KKD-kZ-g9f" firstAttribute="bottom" secondItem="iby-OM-AKk" secondAttribute="bottom" constant="20" id="7bN-jC-jEs"/>
- <constraint firstItem="OJ7-LV-Bht" firstAttribute="centerY" secondItem="ZiN-wp-62B" secondAttribute="centerY" id="AbP-bp-XFs"/>
- <constraint firstItem="fWr-gY-E10" firstAttribute="trailing" secondItem="VyB-jG-KP0" secondAttribute="trailing" id="BOV-e1-Btb"/>
- <constraint firstItem="ZiN-wp-62B" firstAttribute="leading" secondItem="KKD-kZ-g9f" secondAttribute="leading" constant="15" id="Bx5-1Q-mtz"/>
- <constraint firstItem="KKD-kZ-g9f" firstAttribute="trailing" secondItem="bOR-xy-Td3" secondAttribute="trailing" constant="15" id="Cax-ct-94Z"/>
- <constraint firstItem="KKD-kZ-g9f" firstAttribute="trailing" secondItem="iby-OM-AKk" secondAttribute="trailing" constant="20" id="CtY-aV-NHm"/>
- <constraint firstItem="bOR-xy-Td3" firstAttribute="leading" secondItem="LCZ-qf-CXh" secondAttribute="trailing" constant="8" id="Euw-Ug-Yhf"/>
- <constraint firstItem="LjS-4t-q6l" firstAttribute="centerY" secondItem="MT9-hb-STe" secondAttribute="centerY" id="IMq-O5-zbI"/>
- <constraint firstItem="bOR-xy-Td3" firstAttribute="trailing" secondItem="VyB-jG-KP0" secondAttribute="trailing" id="IxN-FF-hts"/>
- <constraint firstItem="ZiN-wp-62B" firstAttribute="top" secondItem="KKD-kZ-g9f" secondAttribute="top" constant="25" id="JGh-sx-eLE"/>
- <constraint firstItem="JYl-x5-cTc" firstAttribute="top" secondItem="mDb-R3-eZv" secondAttribute="bottom" constant="8" id="MDe-RS-kEl"/>
- <constraint firstItem="mDb-R3-eZv" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="leading" id="NI9-6l-uOW"/>
- <constraint firstItem="ECq-fH-MLi" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="leading" id="NyU-gc-tV6"/>
- <constraint firstItem="JYl-x5-cTc" firstAttribute="trailing" secondItem="VyB-jG-KP0" secondAttribute="trailing" id="PZN-wV-4cr"/>
- <constraint firstItem="LjS-4t-q6l" firstAttribute="top" secondItem="OJ7-LV-Bht" secondAttribute="bottom" constant="15" id="Pr4-Fs-Qqa"/>
- <constraint firstItem="LCZ-qf-CXh" firstAttribute="centerY" secondItem="ZiN-wp-62B" secondAttribute="centerY" id="V5V-lZ-Y4K"/>
- <constraint firstItem="bOR-xy-Td3" firstAttribute="centerY" secondItem="ZiN-wp-62B" secondAttribute="centerY" id="Vd4-v6-ox5"/>
- <constraint firstItem="mDb-R3-eZv" firstAttribute="top" secondItem="ECq-fH-MLi" secondAttribute="bottom" constant="15" id="ZCb-pX-JWm"/>
- <constraint firstItem="fWr-gY-E10" firstAttribute="leading" secondItem="ECq-fH-MLi" secondAttribute="trailing" constant="8" id="cqX-Gb-Kf2"/>
- <constraint firstItem="fWr-gY-E10" firstAttribute="top" secondItem="VyB-jG-KP0" secondAttribute="bottom" constant="15" id="dDp-P8-94U"/>
- <constraint firstItem="VyB-jG-KP0" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="leading" id="gqI-kj-WDN"/>
- <constraint firstItem="MT9-hb-STe" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="leading" id="j8e-Xt-tM4"/>
- <constraint firstItem="LjS-4t-q6l" firstAttribute="leading" secondItem="MT9-hb-STe" secondAttribute="trailing" constant="8" id="p6f-pu-RiZ"/>
- <constraint firstItem="VyB-jG-KP0" firstAttribute="top" secondItem="LjS-4t-q6l" secondAttribute="bottom" constant="15" id="syM-xg-CQk"/>
- <constraint firstItem="LCZ-qf-CXh" firstAttribute="leading" secondItem="OJ7-LV-Bht" secondAttribute="trailing" constant="8" id="vaa-eq-qxO"/>
- <constraint firstItem="fWr-gY-E10" firstAttribute="centerY" secondItem="ECq-fH-MLi" secondAttribute="centerY" id="vqb-Zw-fEe"/>
- <constraint firstItem="JYl-x5-cTc" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="leading" id="xIx-5T-HaU"/>
- <constraint firstItem="OJ7-LV-Bht" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="trailing" constant="8" id="xmI-Sx-xFm"/>
- </constraints>
- </view>
- <navigationItem key="navigationItem" title="Scanner Setting" id="0x7-eV-68o"/>
- <connections>
- <outlet property="Entry" destination="fWr-gY-E10" id="UMk-lh-s7b"/>
- <outlet property="Status" destination="bOR-xy-Td3" id="juN-iS-3Oq"/>
- <outlet property="auto_launch_switch" destination="LjS-4t-q6l" id="qmB-PX-xvu"/>
- <outlet property="dev_table" destination="VyB-jG-KP0" id="WgJ-Ad-WdL"/>
- <outlet property="scan_switch" destination="OJ7-LV-Bht" id="ZuE-wH-ueW"/>
- <outlet property="tv_info" destination="JYl-x5-cTc" id="usE-t3-8di"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="VLx-Vj-QtX" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-1217.1875" y="-231.44531249999997"/>
- </scene>
- <!--UserList-->
- <scene sceneID="Wq4-cC-3aA">
- <objects>
- <viewController storyboardIdentifier="UserListViewController" title="User List" useStoryboardIdentifierAsRestorationIdentifier="YES" id="7jS-F0-BYF" userLabel="UserList" customClass="UserListViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="ejd-Pb-3pQ">
- <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="3aO-EE-nul" customClass="DefaultImageButton">
- <rect key="frame" x="358" y="250" width="102" height="30"/>
- <constraints>
- <constraint firstAttribute="width" constant="102" id="Lrd-BO-vRu"/>
- <constraint firstAttribute="height" constant="30" id="pkH-Zw-uEn"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="20"/>
- <state key="normal" title="Cancel" backgroundImage="btn_cancel">
- <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
- <integer key="value" value="19"/>
- </userDefinedRuntimeAttribute>
- </userDefinedRuntimeAttributes>
- <connections>
- <action selector="CloseClick:" destination="7jS-F0-BYF" eventType="touchUpInside" id="jCk-Zm-feM"/>
- </connections>
- </button>
- <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="PEc-Rn-eBz">
- <rect key="frame" x="20" y="44" width="440" height="198"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="LoginListCell" textLabel="NOt-hZ-Ysa" style="IBUITableViewCellStyleDefault" id="FV6-lD-g7T">
- <rect key="frame" x="0.0" y="50" width="440" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="FV6-lD-g7T" id="FCT-G6-wmp">
- <rect key="frame" x="0.0" y="0.0" width="440" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="NOt-hZ-Ysa">
- <rect key="frame" x="16" y="0.0" width="408" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="16"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="7jS-F0-BYF" id="BAQ-lr-809"/>
- <outlet property="delegate" destination="7jS-F0-BYF" id="PIs-xH-kbx"/>
- </connections>
- </tableView>
- </subviews>
- <viewLayoutGuide key="safeArea" id="Beg-sK-fzg"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="Beg-sK-fzg" firstAttribute="trailing" secondItem="PEc-Rn-eBz" secondAttribute="trailing" constant="20" id="1r6-xs-UTS"/>
- <constraint firstItem="3aO-EE-nul" firstAttribute="top" secondItem="PEc-Rn-eBz" secondAttribute="bottom" constant="8" id="Ghn-tl-3rf"/>
- <constraint firstItem="PEc-Rn-eBz" firstAttribute="top" secondItem="Beg-sK-fzg" secondAttribute="top" constant="20" id="OhA-gF-8Hj"/>
- <constraint firstItem="PEc-Rn-eBz" firstAttribute="leading" secondItem="Beg-sK-fzg" secondAttribute="leading" constant="20" id="dfG-DC-Q7J"/>
- <constraint firstItem="Beg-sK-fzg" firstAttribute="bottom" secondItem="3aO-EE-nul" secondAttribute="bottom" constant="20" id="oyl-5q-jiX"/>
- <constraint firstItem="Beg-sK-fzg" firstAttribute="trailing" secondItem="3aO-EE-nul" secondAttribute="trailing" constant="20" id="uTj-HD-d87"/>
- </constraints>
- </view>
- <navigationItem key="navigationItem" title="NPD" id="5uK-LV-Wk4">
- <barButtonItem key="rightBarButtonItem" image="close" id="3MC-QS-uFr">
- <connections>
- <action selector="CloseClick:" destination="7jS-F0-BYF" id="his-7P-5QX"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
- <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
- <size key="freeformSize" width="480" height="320"/>
- <connections>
- <outlet property="bb_close" destination="3MC-QS-uFr" id="4Ww-1Z-bhS"/>
- <outlet property="btnclose" destination="3aO-EE-nul" id="suf-9R-p6N"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="xUX-Lu-v8H" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1548.4375" y="-1224.0234375"/>
- </scene>
- <!--About us-->
- <scene sceneID="L5K-JL-t01">
- <objects>
- <viewController storyboardIdentifier="AboutViewController" title="About us" useStoryboardIdentifierAsRestorationIdentifier="YES" id="BJK-Xc-rOI" customClass="AboutViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="Tg0-Yd-fvX">
- <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="cA7-od-VYw">
- <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="NPD Mobile" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="u8k-9F-gQG">
- <rect key="frame" x="139" y="33" width="306" height="21"/>
- <constraints>
- <constraint firstAttribute="height" constant="21" id="Ifh-bc-FmB"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="about" translatesAutoresizingMaskIntoConstraints="NO" id="tQE-Kl-1v3">
- <rect key="frame" x="35" y="19" width="96" height="96"/>
- <constraints>
- <constraint firstAttribute="width" constant="96" id="CbL-zf-w1P"/>
- <constraint firstAttribute="height" constant="96" id="kzE-hA-dq5"/>
- </constraints>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="New Pacific Direct" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Jh9-JO-Lbj">
- <rect key="frame" x="139" y="54" width="306" height="61"/>
- <fontDescription key="fontDescription" type="system" pointSize="24"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="red_ant_logo" translatesAutoresizingMaskIntoConstraints="NO" id="7er-Pu-WBZ">
- <rect key="frame" x="35" y="236" width="36" height="36"/>
- <constraints>
- <constraint firstAttribute="width" constant="36" id="EKI-by-JCU"/>
- <constraint firstAttribute="height" constant="36" id="eWz-Oq-rWf"/>
- </constraints>
- </imageView>
- <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" editable="NO" textAlignment="natural" translatesAutoresizingMaskIntoConstraints="NO" id="4Fi-0g-FiI">
- <rect key="frame" x="35" y="115" width="409" height="60"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="60" id="xaf-0H-Hqr"/>
- </constraints>
- <string key="text">Sales: sales@newpacificdirect.com
- Phone: 510.818.9388</string>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
- <dataDetectorType key="dataDetectorTypes" phoneNumber="YES" link="YES"/>
- </textView>
- <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" scrollEnabled="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" editable="NO" translatesAutoresizingMaskIntoConstraints="NO" id="dd8-jB-tBc">
- <rect key="frame" x="79" y="202" width="366" height="78"/>
- <constraints>
- <constraint firstAttribute="height" constant="78" id="vl3-wA-qey"/>
- </constraints>
- <string key="text">Developed & Copyright:
- United Software Applications, Inc
- Email: redantsupport@united-us.net</string>
- <fontDescription key="fontDescription" name="HelveticaNeue" family="Helvetica Neue" pointSize="17"/>
- <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
- <dataDetectorType key="dataDetectorTypes" phoneNumber="YES" link="YES" address="YES" calendarEvent="YES"/>
- </textView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ver_info" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="E4o-71-lCF">
- <rect key="frame" x="35" y="291" width="410" height="21"/>
- <constraints>
- <constraint firstAttribute="height" constant="21" id="rZR-aI-6gz"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="Jh9-JO-Lbj" firstAttribute="bottom" secondItem="tQE-Kl-1v3" secondAttribute="bottom" id="30T-aa-DX3"/>
- <constraint firstItem="tQE-Kl-1v3" firstAttribute="top" secondItem="cA7-od-VYw" secondAttribute="top" constant="19" id="5D2-z5-yzm"/>
- <constraint firstAttribute="bottom" secondItem="7er-Pu-WBZ" secondAttribute="bottom" constant="48" id="6O1-uP-rKx"/>
- <constraint firstItem="Jh9-JO-Lbj" firstAttribute="leading" secondItem="tQE-Kl-1v3" secondAttribute="trailing" constant="8" id="HhC-Bt-opW"/>
- <constraint firstItem="4Fi-0g-FiI" firstAttribute="top" secondItem="tQE-Kl-1v3" secondAttribute="bottom" id="Ov7-7q-WJk"/>
- <constraint firstItem="7er-Pu-WBZ" firstAttribute="leading" secondItem="tQE-Kl-1v3" secondAttribute="leading" id="PFN-CZ-AHd"/>
- <constraint firstItem="4Fi-0g-FiI" firstAttribute="leading" secondItem="tQE-Kl-1v3" secondAttribute="leading" id="SMw-y6-DXY"/>
- <constraint firstAttribute="trailing" secondItem="dd8-jB-tBc" secondAttribute="trailing" constant="35" id="Sok-zA-gtO"/>
- <constraint firstItem="dd8-jB-tBc" firstAttribute="leading" secondItem="7er-Pu-WBZ" secondAttribute="trailing" constant="8" id="V8R-pV-uvV"/>
- <constraint firstItem="u8k-9F-gQG" firstAttribute="leading" secondItem="tQE-Kl-1v3" secondAttribute="trailing" constant="8" id="YoF-cp-eWd"/>
- <constraint firstItem="E4o-71-lCF" firstAttribute="leading" secondItem="cA7-od-VYw" secondAttribute="leading" constant="35" id="au8-di-wNh"/>
- <constraint firstAttribute="trailing" secondItem="u8k-9F-gQG" secondAttribute="trailing" constant="35" id="e2B-3d-Aux"/>
- <constraint firstItem="Jh9-JO-Lbj" firstAttribute="top" secondItem="u8k-9F-gQG" secondAttribute="bottom" id="ixV-8Q-ANq"/>
- <constraint firstItem="dd8-jB-tBc" firstAttribute="bottom" secondItem="7er-Pu-WBZ" secondAttribute="bottom" constant="8" id="jD4-6d-bqe"/>
- <constraint firstItem="u8k-9F-gQG" firstAttribute="top" secondItem="cA7-od-VYw" secondAttribute="top" constant="33" id="kO7-vX-yhS"/>
- <constraint firstAttribute="trailing" secondItem="E4o-71-lCF" secondAttribute="trailing" constant="35" id="mYM-nL-C7f"/>
- <constraint firstAttribute="bottom" secondItem="E4o-71-lCF" secondAttribute="bottom" constant="8" id="nRR-WB-1lb"/>
- <constraint firstItem="tQE-Kl-1v3" firstAttribute="leading" secondItem="cA7-od-VYw" secondAttribute="leading" constant="35" id="pek-99-Bvi"/>
- <constraint firstAttribute="trailing" secondItem="4Fi-0g-FiI" secondAttribute="trailing" constant="36" id="tEH-Sm-Shg"/>
- <constraint firstAttribute="trailing" secondItem="Jh9-JO-Lbj" secondAttribute="trailing" constant="35" id="vac-8t-Kb9"/>
- </constraints>
- </view>
- </subviews>
- <viewLayoutGuide key="safeArea" id="MLg-3B-Q9I"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="cA7-od-VYw" secondAttribute="bottom" id="3Jd-sf-6fc"/>
- <constraint firstItem="cA7-od-VYw" firstAttribute="top" secondItem="Tg0-Yd-fvX" secondAttribute="top" id="BI4-xi-PuA"/>
- <constraint firstItem="cA7-od-VYw" firstAttribute="leading" secondItem="MLg-3B-Q9I" secondAttribute="leading" id="es4-Br-1DK"/>
- <constraint firstItem="cA7-od-VYw" firstAttribute="trailing" secondItem="MLg-3B-Q9I" secondAttribute="trailing" id="nr1-h2-LSv"/>
- </constraints>
- </view>
- <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
- <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
- <size key="freeformSize" width="480" height="320"/>
- <connections>
- <outlet property="labelVer" destination="E4o-71-lCF" id="uEy-Ie-10w"/>
- <outlet property="label_appname" destination="u8k-9F-gQG" id="nmY-Pl-ApC"/>
- <outlet property="label_company" destination="Jh9-JO-Lbj" id="vSQ-Cw-qPC"/>
- <outlet property="tvcompany" destination="4Fi-0g-FiI" id="fyw-Lq-CBg"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="awE-OU-fB9" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="4485.9375" y="365.0390625"/>
- </scene>
- </scenes>
- <resources>
- <image name="about" width="72" height="72"/>
- <image name="album" width="48" height="48"/>
- <image name="btn_cancel" width="102" height="30"/>
- <image name="btn_retrieve" width="102" height="30"/>
- <image name="btn_signin" width="100" height="30"/>
- <image name="camera" width="48" height="48"/>
- <image name="cart_empty" width="72" height="72"/>
- <image name="category" width="72" height="72"/>
- <image name="check_1_24" width="24" height="24"/>
- <image name="checkbox" width="16" height="16"/>
- <image name="close" width="40" height="40"/>
- <image name="contact" width="72" height="72"/>
- <image name="menu_open" width="72" height="72"/>
- <image name="npd_logo" width="110" height="13"/>
- <image name="order" width="72" height="72"/>
- <image name="pick_bg" width="280" height="280"/>
- <image name="profle" width="64" height="64"/>
- <image name="red_ant_logo" width="72" height="72"/>
- <image name="scan" width="72" height="72"/>
- <image name="search" width="72" height="72"/>
- <image name="upload" width="48" height="48"/>
- <image name="wishlist" width="72" height="72"/>
- </resources>
- </document>
|